diff options
Diffstat (limited to '')
128 files changed, 5903 insertions, 6743 deletions
diff --git a/linden/indra/SConstruct b/linden/indra/SConstruct index 629656f..9353317 100644 --- a/linden/indra/SConstruct +++ b/linden/indra/SConstruct | |||
@@ -349,7 +349,7 @@ for build_target in targets: | |||
349 | strip_cmd = '/opt/crosstool/gcc-4.0.2-glibc-2.3.6/x86_64-unknown-linux-gnu/x86_64-unknown-linux-gnu/bin/strip -S -o $TARGET $SOURCE' | 349 | strip_cmd = '/opt/crosstool/gcc-4.0.2-glibc-2.3.6/x86_64-unknown-linux-gnu/x86_64-unknown-linux-gnu/bin/strip -S -o $TARGET $SOURCE' |
350 | 350 | ||
351 | else: | 351 | else: |
352 | gcc_bin = 'g++-3.4' | 352 | gcc_bin = 'g++-4.1' |
353 | 353 | ||
354 | # Are we using the Intel compiler? | 354 | # Are we using the Intel compiler? |
355 | if gcc_bin.find('icpc') >= 0: | 355 | if gcc_bin.find('icpc') >= 0: |
@@ -370,8 +370,8 @@ for build_target in targets: | |||
370 | releasenoopt_cflags = cflags + '-O0 ' | 370 | releasenoopt_cflags = cflags + '-O0 ' |
371 | releasenoopt_cxxflags = cxxflags + '-O0 ' | 371 | releasenoopt_cxxflags = cxxflags + '-O0 ' |
372 | releasenoopt_cppflags = cppflags + '-DNDEBUG -DLL_RELEASE=1 ' | 372 | releasenoopt_cppflags = cppflags + '-DNDEBUG -DLL_RELEASE=1 ' |
373 | releasefordownload_cflags = cflags + '-O2 ' | 373 | releasefordownload_cflags = cflags + '-O2 -fno-stack-protector ' |
374 | releasefordownload_cxxflags = cxxflags + '-O2 ' | 374 | releasefordownload_cxxflags = cxxflags + '-O2 -fno-stack-protector ' |
375 | releasefordownload_cppflags = cppflags + '-DNDEBUG -DLL_RELEASE=1 -DLL_RELEASE_FOR_DOWNLOAD=1 ' | 375 | releasefordownload_cppflags = cppflags + '-DNDEBUG -DLL_RELEASE=1 -DLL_RELEASE_FOR_DOWNLOAD=1 ' |
376 | 376 | ||
377 | ################ | 377 | ################ |
@@ -476,6 +476,7 @@ for build_target in targets: | |||
476 | env['ENV']['DISTCC_HOSTS'] = hosts | 476 | env['ENV']['DISTCC_HOSTS'] = hosts |
477 | env['ENV']['USER'] = os.environ['USER'] | 477 | env['ENV']['USER'] = os.environ['USER'] |
478 | env['ENV']['HOME'] = os.environ['HOME'] | 478 | env['ENV']['HOME'] = os.environ['HOME'] |
479 | #env['ENV']['SSH_AUTH_SOCK'] = os.environ['SSH_AUTH_SOCK'] | ||
479 | 480 | ||
480 | if enable_colorgcc: | 481 | if enable_colorgcc: |
481 | env['ENV']['PATH'] = os.environ['PATH'] | 482 | env['ENV']['PATH'] = os.environ['PATH'] |
diff --git a/linden/indra/llaudio/audioengine.cpp b/linden/indra/llaudio/audioengine.cpp index 021c940..05636c1 100644 --- a/linden/indra/llaudio/audioengine.cpp +++ b/linden/indra/llaudio/audioengine.cpp | |||
@@ -1621,6 +1621,8 @@ 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) ; | ||
1625 | llassert_always(gAssetStorage) ; | ||
1624 | 1626 | ||
1625 | if (gAudiop->hasDecodedFile(uuid)) | 1627 | if (gAudiop->hasDecodedFile(uuid)) |
1626 | { | 1628 | { |
diff --git a/linden/indra/llaudio/audioengine_fmod.cpp b/linden/indra/llaudio/audioengine_fmod.cpp index 271074e..cc2042d 100644 --- a/linden/indra/llaudio/audioengine_fmod.cpp +++ b/linden/indra/llaudio/audioengine_fmod.cpp | |||
@@ -538,7 +538,7 @@ void LLAudioChannelFMOD::update3DPosition() | |||
538 | float_pos.setVec(mCurrentSourcep->getPositionGlobal()); | 538 | float_pos.setVec(mCurrentSourcep->getPositionGlobal()); |
539 | if (!FSOUND_3D_SetAttributes(mChannelID, float_pos.mV, mCurrentSourcep->getVelocity().mV)) | 539 | if (!FSOUND_3D_SetAttributes(mChannelID, float_pos.mV, mCurrentSourcep->getVelocity().mV)) |
540 | { | 540 | { |
541 | llwarns << "LLAudioChannelFMOD::update3DPosition error: " << FMOD_ErrorString(FSOUND_GetError()) << llendl; | 541 | LL_DEBUGS("FMOD") << "LLAudioChannelFMOD::update3DPosition error: " << FMOD_ErrorString(FSOUND_GetError()) << LL_ENDL; |
542 | } | 542 | } |
543 | } | 543 | } |
544 | } | 544 | } |
@@ -576,7 +576,7 @@ void LLAudioChannelFMOD::cleanup() | |||
576 | //llinfos << "Cleaning up channel: " << mChannelID << llendl; | 576 | //llinfos << "Cleaning up channel: " << mChannelID << llendl; |
577 | if (!FSOUND_StopSound(mChannelID)) | 577 | if (!FSOUND_StopSound(mChannelID)) |
578 | { | 578 | { |
579 | llwarns << "LLAudioChannelFMOD::cleanup error: " << FMOD_ErrorString(FSOUND_GetError()) << llendl; | 579 | LL_DEBUGS("FMOD") << "LLAudioChannelFMOD::cleanup error: " << FMOD_ErrorString(FSOUND_GetError()) << llendl; |
580 | } | 580 | } |
581 | 581 | ||
582 | mCurrentBufferp = NULL; | 582 | mCurrentBufferp = NULL; |
diff --git a/linden/indra/llcommon/files.lst b/linden/indra/llcommon/files.lst index fd6a07c..d698773 100644 --- a/linden/indra/llcommon/files.lst +++ b/linden/indra/llcommon/files.lst | |||
@@ -21,7 +21,6 @@ llcommon/llindraconfigfile.cpp | |||
21 | llcommon/lllog.cpp | 21 | llcommon/lllog.cpp |
22 | llcommon/llliveappconfig.cpp | 22 | llcommon/llliveappconfig.cpp |
23 | llcommon/lllivefile.cpp | 23 | llcommon/lllivefile.cpp |
24 | llcommon/lllog.cpp | ||
25 | llcommon/llmemory.cpp | 24 | llcommon/llmemory.cpp |
26 | llcommon/llmemorystream.cpp | 25 | llcommon/llmemorystream.cpp |
27 | llcommon/llmetrics.cpp | 26 | llcommon/llmetrics.cpp |
diff --git a/linden/indra/llcommon/llmemory.cpp b/linden/indra/llcommon/llmemory.cpp index 5edeb4b..8fa324f 100644 --- a/linden/indra/llcommon/llmemory.cpp +++ b/linden/indra/llcommon/llmemory.cpp | |||
@@ -314,72 +314,77 @@ U64 getCurrentRSS() | |||
314 | 314 | ||
315 | #elif defined(LL_DARWIN) | 315 | #elif defined(LL_DARWIN) |
316 | 316 | ||
317 | static U32 getPageSize() | 317 | // This can cause bad stalls! Replace with fast version |
318 | { | 318 | |
319 | int ctl[2] = { CTL_HW, HW_PAGESIZE }; | 319 | // static U32 getPageSize() |
320 | int page_size; | 320 | // { |
321 | size_t size = sizeof(page_size); | 321 | // int ctl[2] = { CTL_HW, HW_PAGESIZE }; |
322 | 322 | // int page_size; | |
323 | if (sysctl(ctl, 2, &page_size, &size, NULL, 0) == -1) | 323 | // size_t size = sizeof(page_size); |
324 | { | 324 | |
325 | llwarns << "Couldn't get page size" << llendl; | 325 | // if (sysctl(ctl, 2, &page_size, &size, NULL, 0) == -1) |
326 | return 0; | 326 | // { |
327 | } else { | 327 | // llwarns << "Couldn't get page size" << llendl; |
328 | return page_size; | 328 | // return 0; |
329 | } | 329 | // } else { |
330 | } | 330 | // return page_size; |
331 | // } | ||
332 | // } | ||
331 | 333 | ||
332 | U64 getCurrentRSS() | 334 | U64 getCurrentRSS() |
333 | { | 335 | { |
334 | task_t task = mach_task_self(); | 336 | // Stalls!!! |
335 | vm_address_t addr = VM_MIN_ADDRESS; | 337 | |
336 | vm_size_t size = 0; | 338 | // task_t task = mach_task_self(); |
337 | U64 residentPages = 0; | 339 | // vm_address_t addr = VM_MIN_ADDRESS; |
338 | 340 | // vm_size_t size = 0; | |
339 | while (true) | 341 | // U64 residentPages = 0; |
340 | { | 342 | |
341 | mach_msg_type_number_t bcount = VM_REGION_BASIC_INFO_COUNT; | 343 | // while (true) |
342 | vm_region_basic_info binfo; | 344 | // { |
343 | mach_port_t bobj; | 345 | // mach_msg_type_number_t bcount = VM_REGION_BASIC_INFO_COUNT; |
344 | kern_return_t ret; | 346 | // vm_region_basic_info binfo; |
347 | // mach_port_t bobj; | ||
348 | // kern_return_t ret; | ||
345 | 349 | ||
346 | addr += size; | 350 | // addr += size; |
347 | 351 | ||
348 | ret = vm_region(task, &addr, &size, VM_REGION_BASIC_INFO, | 352 | // ret = vm_region(task, &addr, &size, VM_REGION_BASIC_INFO, |
349 | (vm_region_info_t) &binfo, &bcount, &bobj); | 353 | // (vm_region_info_t) &binfo, &bcount, &bobj); |
350 | 354 | ||
351 | if (ret != KERN_SUCCESS) | 355 | // if (ret != KERN_SUCCESS) |
352 | { | 356 | // { |
353 | break; | 357 | // break; |
354 | } | 358 | // } |
355 | 359 | ||
356 | if (bobj != MACH_PORT_NULL) | 360 | // if (bobj != MACH_PORT_NULL) |
357 | { | 361 | // { |
358 | mach_port_deallocate(task, bobj); | 362 | // mach_port_deallocate(task, bobj); |
359 | } | 363 | // } |
360 | 364 | ||
361 | mach_msg_type_number_t ecount = VM_REGION_EXTENDED_INFO_COUNT; | 365 | // mach_msg_type_number_t ecount = VM_REGION_EXTENDED_INFO_COUNT; |
362 | vm_region_extended_info einfo; | 366 | // vm_region_extended_info einfo; |
363 | mach_port_t eobj; | 367 | // mach_port_t eobj; |
364 | 368 | ||
365 | ret = vm_region(task, &addr, &size, VM_REGION_EXTENDED_INFO, | 369 | // ret = vm_region(task, &addr, &size, VM_REGION_EXTENDED_INFO, |
366 | (vm_region_info_t) &einfo, &ecount, &eobj); | 370 | // (vm_region_info_t) &einfo, &ecount, &eobj); |
367 | 371 | ||
368 | if (ret != KERN_SUCCESS) | 372 | // if (ret != KERN_SUCCESS) |
369 | { | 373 | // { |
370 | llwarns << "vm_region failed" << llendl; | 374 | // llwarns << "vm_region failed" << llendl; |
371 | return 0; | 375 | // return 0; |
372 | } | 376 | // } |
373 | 377 | ||
374 | if (eobj != MACH_PORT_NULL) | 378 | // if (eobj != MACH_PORT_NULL) |
375 | { | 379 | // { |
376 | mach_port_deallocate(task, eobj); | 380 | // mach_port_deallocate(task, eobj); |
377 | } | 381 | // } |
378 | 382 | ||
379 | residentPages += einfo.pages_resident; | 383 | // residentPages += einfo.pages_resident; |
380 | } | 384 | // } |
381 | 385 | ||
382 | return residentPages * getPageSize(); | 386 | // return residentPages * getPageSize(); |
387 | return 0; | ||
383 | } | 388 | } |
384 | 389 | ||
385 | #elif defined(LL_LINUX) | 390 | #elif defined(LL_LINUX) |
diff --git a/linden/indra/llcommon/llversionviewer.h b/linden/indra/llcommon/llversionviewer.h index 95548db..036d34b 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 = 8; | 37 | const S32 LL_VERSION_PATCH = 9; |
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/llrender/llimagegl.cpp b/linden/indra/llrender/llimagegl.cpp index fd934b9..454a5bb 100644 --- a/linden/indra/llrender/llimagegl.cpp +++ b/linden/indra/llrender/llimagegl.cpp | |||
@@ -61,6 +61,8 @@ S32 LLImageGL::sCount = 0; | |||
61 | BOOL LLImageGL::sGlobalUseAnisotropic = FALSE; | 61 | BOOL LLImageGL::sGlobalUseAnisotropic = FALSE; |
62 | F32 LLImageGL::sLastFrameTime = 0.f; | 62 | F32 LLImageGL::sLastFrameTime = 0.f; |
63 | 63 | ||
64 | BOOL LLImageGL::sRefCheck = TRUE ; | ||
65 | |||
64 | std::set<LLImageGL*> LLImageGL::sImageList; | 66 | std::set<LLImageGL*> LLImageGL::sImageList; |
65 | 67 | ||
66 | //---------------------------------------------------------------------------- | 68 | //---------------------------------------------------------------------------- |
@@ -276,7 +278,10 @@ LLImageGL::LLImageGL(const LLImageRaw* imageraw, BOOL usemipmaps) | |||
276 | setSize(0, 0, 0); | 278 | setSize(0, 0, 0); |
277 | sImageList.insert(this); | 279 | sImageList.insert(this); |
278 | sCount++; | 280 | sCount++; |
281 | |||
282 | sRefCheck = FALSE ; | ||
279 | createGLTexture(0, imageraw); | 283 | createGLTexture(0, imageraw); |
284 | sRefCheck = TRUE ; | ||
280 | } | 285 | } |
281 | 286 | ||
282 | LLImageGL::~LLImageGL() | 287 | LLImageGL::~LLImageGL() |
@@ -333,17 +338,19 @@ void LLImageGL::cleanup() | |||
333 | 338 | ||
334 | //---------------------------------------------------------------------------- | 339 | //---------------------------------------------------------------------------- |
335 | 340 | ||
341 | //this function is used to check the size of a texture image. | ||
342 | //so dim should be a positive number | ||
336 | static bool check_power_of_two(S32 dim) | 343 | static bool check_power_of_two(S32 dim) |
337 | { | 344 | { |
338 | while(dim > 1) | 345 | if(dim < 0) |
339 | { | 346 | { |
340 | if (dim & 1) | 347 | return false ; |
341 | { | ||
342 | return false; | ||
343 | } | ||
344 | dim >>= 1; | ||
345 | } | 348 | } |
346 | return true; | 349 | if(!dim)//0 is a power-of-two number |
350 | { | ||
351 | return true ; | ||
352 | } | ||
353 | return !(dim & (dim - 1)) ; | ||
347 | } | 354 | } |
348 | 355 | ||
349 | //static | 356 | //static |
@@ -420,6 +427,8 @@ void LLImageGL::dump() | |||
420 | 427 | ||
421 | BOOL LLImageGL::bindTextureInternal(const S32 stage) const | 428 | BOOL LLImageGL::bindTextureInternal(const S32 stage) const |
422 | { | 429 | { |
430 | llassert_always(!sRefCheck || (getNumRefs() > 0 && getNumRefs() < 100000)) ; | ||
431 | |||
423 | if (gGLManager.mIsDisabled) | 432 | if (gGLManager.mIsDisabled) |
424 | { | 433 | { |
425 | llwarns << "Trying to bind a texture while GL is disabled!" << llendl; | 434 | llwarns << "Trying to bind a texture while GL is disabled!" << llendl; |
diff --git a/linden/indra/llrender/llimagegl.h b/linden/indra/llrender/llimagegl.h index 3f231ee..99a6e49 100644 --- a/linden/indra/llrender/llimagegl.h +++ b/linden/indra/llrender/llimagegl.h | |||
@@ -207,6 +207,9 @@ public: | |||
207 | #else | 207 | #else |
208 | BOOL getMissed() const { return FALSE; }; | 208 | BOOL getMissed() const { return FALSE; }; |
209 | #endif | 209 | #endif |
210 | |||
211 | private://paranoia error check | ||
212 | static BOOL sRefCheck ; | ||
210 | }; | 213 | }; |
211 | 214 | ||
212 | #endif // LL_LLIMAGEGL_H | 215 | #endif // LL_LLIMAGEGL_H |
diff --git a/linden/indra/llui/llscrolllistctrl.cpp b/linden/indra/llui/llscrolllistctrl.cpp index 9693df4..41b50c2 100644 --- a/linden/indra/llui/llscrolllistctrl.cpp +++ b/linden/indra/llui/llscrolllistctrl.cpp | |||
@@ -1112,6 +1112,8 @@ BOOL LLScrollListCtrl::selectItemRange( S32 first_index, S32 last_index ) | |||
1112 | for (item_list::iterator iter = mItemList.begin(); iter != mItemList.end(); iter++) | 1112 | for (item_list::iterator iter = mItemList.begin(); iter != mItemList.end(); iter++) |
1113 | { | 1113 | { |
1114 | LLScrollListItem *itemp = *iter; | 1114 | LLScrollListItem *itemp = *iter; |
1115 | |||
1116 | llassert_always(itemp) ; | ||
1115 | if( index >= first_index && index <= last_index ) | 1117 | if( index >= first_index && index <= last_index ) |
1116 | { | 1118 | { |
1117 | if( itemp->getEnabled() ) | 1119 | if( itemp->getEnabled() ) |
diff --git a/linden/indra/llui/llstyle.cpp b/linden/indra/llui/llstyle.cpp index 7c46114..58cf200 100644 --- a/linden/indra/llui/llstyle.cpp +++ b/linden/indra/llui/llstyle.cpp | |||
@@ -102,7 +102,7 @@ LLStyle &LLStyle::operator=(const LLStyle &rhs) | |||
102 | mItalic = rhs.mItalic; | 102 | mItalic = rhs.mItalic; |
103 | mBold = rhs.mBold; | 103 | mBold = rhs.mBold; |
104 | mUnderline = rhs.mUnderline; | 104 | mUnderline = rhs.mUnderline; |
105 | mDropShadow = rhs.mUnderline; | 105 | mDropShadow = rhs.mDropShadow; |
106 | mIsEmbeddedItem = rhs.mIsEmbeddedItem; | 106 | mIsEmbeddedItem = rhs.mIsEmbeddedItem; |
107 | } | 107 | } |
108 | 108 | ||
diff --git a/linden/indra/llwindow/llwindowwin32.cpp b/linden/indra/llwindow/llwindowwin32.cpp index f2a2727..af96a80 100644 --- a/linden/indra/llwindow/llwindowwin32.cpp +++ b/linden/indra/llwindow/llwindowwin32.cpp | |||
@@ -607,8 +607,6 @@ LLWindowWin32::LLWindowWin32(char *title, char *name, S32 x, S32 y, S32 width, | |||
607 | // Initialize (boot strap) the Language text input management, | 607 | // Initialize (boot strap) the Language text input management, |
608 | // based on the system's (or user's) default settings. | 608 | // based on the system's (or user's) default settings. |
609 | allowLanguageTextInput(NULL, FALSE); | 609 | allowLanguageTextInput(NULL, FALSE); |
610 | |||
611 | SetTimer( mWindowHandle, 0, 1000 / 30, NULL ); // 30 fps timer | ||
612 | } | 610 | } |
613 | 611 | ||
614 | 612 | ||
@@ -1351,6 +1349,8 @@ BOOL LLWindowWin32::switchContext(BOOL fullscreen, const LLCoordScreen &size, BO | |||
1351 | //make sure multi sampling is disabled by default | 1349 | //make sure multi sampling is disabled by default |
1352 | glDisable(GL_MULTISAMPLE_ARB); | 1350 | glDisable(GL_MULTISAMPLE_ARB); |
1353 | 1351 | ||
1352 | //register joystick timer callback | ||
1353 | SetTimer( mWindowHandle, 0, 1000 / 30, NULL ); // 30 fps timer | ||
1354 | 1354 | ||
1355 | // ok to post quit messages now | 1355 | // ok to post quit messages now |
1356 | mPostQuit = TRUE; | 1356 | mPostQuit = TRUE; |
diff --git a/linden/indra/newview/app_settings/settings.xml b/linden/indra/newview/app_settings/settings.xml index f5e57a5..b93f826 100644 --- a/linden/indra/newview/app_settings/settings.xml +++ b/linden/indra/newview/app_settings/settings.xml | |||
@@ -1910,17 +1910,6 @@ | |||
1910 | <key>Value</key> | 1910 | <key>Value</key> |
1911 | <integer>1</integer> | 1911 | <integer>1</integer> |
1912 | </map> | 1912 | </map> |
1913 | <key>CrashLogBehavior</key> | ||
1914 | <map> | ||
1915 | <key>Comment</key> | ||
1916 | <string>Controls behavior when viewer (0 = ask before sending crash report, 1 = always send crash report, 2 = never send crash report)</string> | ||
1917 | <key>Persist</key> | ||
1918 | <integer>0</integer> | ||
1919 | <key>Type</key> | ||
1920 | <string>S32</string> | ||
1921 | <key>Value</key> | ||
1922 | <integer>1</integer> | ||
1923 | </map> | ||
1924 | <key>CreateToolCopyCenters</key> | 1913 | <key>CreateToolCopyCenters</key> |
1925 | <map> | 1914 | <map> |
1926 | <key>Comment</key> | 1915 | <key>Comment</key> |
@@ -2419,7 +2408,7 @@ | |||
2419 | <key>Type</key> | 2408 | <key>Type</key> |
2420 | <string>F32</string> | 2409 | <string>F32</string> |
2421 | <key>Value</key> | 2410 | <key>Value</key> |
2422 | <real>10.0</real> | 2411 | <real>60.0</real> |
2423 | </map> | 2412 | </map> |
2424 | <key>FilterItemsPerFrame</key> | 2413 | <key>FilterItemsPerFrame</key> |
2425 | <map> | 2414 | <map> |
@@ -4445,7 +4434,7 @@ | |||
4445 | <key>Type</key> | 4434 | <key>Type</key> |
4446 | <string>F32</string> | 4435 | <string>F32</string> |
4447 | <key>Value</key> | 4436 | <key>Value</key> |
4448 | <real>10.0</real> | 4437 | <real>20.0</real> |
4449 | </map> | 4438 | </map> |
4450 | <key>MapOverlayIndex</key> | 4439 | <key>MapOverlayIndex</key> |
4451 | <map> | 4440 | <map> |
@@ -4623,6 +4612,17 @@ | |||
4623 | <key>Value</key> | 4612 | <key>Value</key> |
4624 | <integer>0</integer> | 4613 | <integer>0</integer> |
4625 | </map> | 4614 | </map> |
4615 | <key>MemoryLogFrequency</key> | ||
4616 | <map> | ||
4617 | <key>Comment</key> | ||
4618 | <string>Seconds between display of Memory in log (0 for never)</string> | ||
4619 | <key>Persist</key> | ||
4620 | <integer>1</integer> | ||
4621 | <key>Type</key> | ||
4622 | <string>F32</string> | ||
4623 | <key>Value</key> | ||
4624 | <real>600.0</real> | ||
4625 | </map> | ||
4626 | <key>MenuAccessKeyTime</key> | 4626 | <key>MenuAccessKeyTime</key> |
4627 | <map> | 4627 | <map> |
4628 | <key>Comment</key> | 4628 | <key>Comment</key> |
@@ -6941,7 +6941,7 @@ | |||
6941 | <key>Type</key> | 6941 | <key>Type</key> |
6942 | <string>Boolean</string> | 6942 | <string>Boolean</string> |
6943 | <key>Value</key> | 6943 | <key>Value</key> |
6944 | <integer>1</integer> | 6944 | <integer>0</integer> |
6945 | </map> | 6945 | </map> |
6946 | <key>ShowMovementControls</key> | 6946 | <key>ShowMovementControls</key> |
6947 | <map> | 6947 | <map> |
diff --git a/linden/indra/newview/llappviewer.cpp b/linden/indra/newview/llappviewer.cpp index a461dcb..f39610f 100644 --- a/linden/indra/newview/llappviewer.cpp +++ b/linden/indra/newview/llappviewer.cpp | |||
@@ -269,6 +269,7 @@ BOOL gUseWireframe = FALSE; | |||
269 | LLVFS* gStaticVFS = NULL; | 269 | LLVFS* gStaticVFS = NULL; |
270 | 270 | ||
271 | LLMemoryInfo gSysMemory; | 271 | LLMemoryInfo gSysMemory; |
272 | U64 gMemoryAllocated = 0; // updated in display_stats() in llviewerdisplay.cpp | ||
272 | 273 | ||
273 | LLString gLastVersionChannel; | 274 | LLString gLastVersionChannel; |
274 | 275 | ||
@@ -285,6 +286,7 @@ BOOL gPeriodicSlowFrame = FALSE; | |||
285 | BOOL gCrashOnStartup = FALSE; | 286 | BOOL gCrashOnStartup = FALSE; |
286 | BOOL gLLErrorActivated = FALSE; | 287 | BOOL gLLErrorActivated = FALSE; |
287 | BOOL gLogoutInProgress = FALSE; | 288 | BOOL gLogoutInProgress = FALSE; |
289 | |||
288 | //////////////////////////////////////////////////////////// | 290 | //////////////////////////////////////////////////////////// |
289 | // Internal globals... that should be removed. | 291 | // Internal globals... that should be removed. |
290 | static LLString gArgs; | 292 | static LLString gArgs; |
@@ -320,6 +322,48 @@ void idle_afk_check() | |||
320 | } | 322 | } |
321 | } | 323 | } |
322 | 324 | ||
325 | //this function checks if the system can allocate (num_chunk)MB memory successfully. | ||
326 | //if this check fails, the allocated memory is NOT freed. | ||
327 | void idle_mem_check(S32 num_chunk) | ||
328 | { | ||
329 | //this flag signals if memory allocation check is necessary | ||
330 | static BOOL check = TRUE ; | ||
331 | |||
332 | if(!check) //if memory check fails before, do not repeat it. | ||
333 | { | ||
334 | return ; | ||
335 | } | ||
336 | check = FALSE ; //before memory check for this frame, turn off check signal for the next frame. | ||
337 | |||
338 | S32 i = 0 ; | ||
339 | char**p = new char*[num_chunk] ; | ||
340 | if(!p) | ||
341 | { | ||
342 | return ; | ||
343 | } | ||
344 | for(i = 0 ; i < num_chunk ; i++) | ||
345 | { | ||
346 | //1MB per chunk | ||
347 | //if the allocation fails, the system should catch it. | ||
348 | p[i] = new char[1024 * 1024] ; | ||
349 | |||
350 | if(!p[i]) //in case that system try-catch is turned off | ||
351 | { | ||
352 | return ; | ||
353 | } | ||
354 | } | ||
355 | |||
356 | //release memory if the allocation check does not fail. | ||
357 | for(i = 0 ; i < num_chunk ; i++) | ||
358 | { | ||
359 | delete[] p[i] ; | ||
360 | } | ||
361 | delete[] p ; | ||
362 | |||
363 | //memory check for this frame succeeds, turn on next frame check. | ||
364 | check = TRUE ; | ||
365 | } | ||
366 | |||
323 | // A callback set in LLAppViewer::init() | 367 | // A callback set in LLAppViewer::init() |
324 | static void ui_audio_callback(const LLUUID& uuid) | 368 | static void ui_audio_callback(const LLUUID& uuid) |
325 | { | 369 | { |
@@ -351,6 +395,24 @@ void request_initial_instant_messages() | |||
351 | } | 395 | } |
352 | } | 396 | } |
353 | 397 | ||
398 | // A settings system callback for CrashSubmitBehavior | ||
399 | bool handleCrashSubmitBehaviorChanged(const LLSD& newvalue) | ||
400 | { | ||
401 | S32 cb = newvalue.asInteger(); | ||
402 | const S32 NEVER_SUBMIT_REPORT = 2; | ||
403 | if(cb == NEVER_SUBMIT_REPORT) | ||
404 | { | ||
405 | // LLWatchdog::getInstance()->cleanup(); // SJB: cleaning up a running watchdog is unsafe | ||
406 | LLAppViewer::instance()->destroyMainloopTimeout(); | ||
407 | } | ||
408 | else if(gSavedSettings.getBOOL("WatchdogEnabled") == TRUE) | ||
409 | { | ||
410 | // LLWatchdog::getInstance()->init(); | ||
411 | // LLAppViewer::instance()->initMainloopTimeout("Mainloop Resume"); | ||
412 | } | ||
413 | return true; | ||
414 | } | ||
415 | |||
354 | // Use these strictly for things that are constructed at startup, | 416 | // Use these strictly for things that are constructed at startup, |
355 | // or for things that are performance critical. JC | 417 | // or for things that are performance critical. JC |
356 | static void settings_to_globals() | 418 | static void settings_to_globals() |
@@ -457,9 +519,8 @@ void LLAppViewer::initGridChoice() | |||
457 | std::string grid_choice = gSavedSettings.getString("CmdLineGridChoice"); | 519 | std::string grid_choice = gSavedSettings.getString("CmdLineGridChoice"); |
458 | LLViewerLogin::getInstance()->setGridChoice(grid_choice); | 520 | LLViewerLogin::getInstance()->setGridChoice(grid_choice); |
459 | 521 | ||
460 | #if !LL_RELEASE_FOR_DOWNLOAD | 522 | // Load last server choice by default |
461 | // Development version: load last server choice by default | 523 | // ignored if the command line grid choice has been set |
462 | // ignored is the command line grid choice has been set | ||
463 | if(grid_choice.empty()) | 524 | if(grid_choice.empty()) |
464 | { | 525 | { |
465 | S32 server = gSavedSettings.getS32("ServerChoice"); | 526 | S32 server = gSavedSettings.getS32("ServerChoice"); |
@@ -474,7 +535,6 @@ void LLAppViewer::initGridChoice() | |||
474 | LLViewerLogin::getInstance()->setGridChoice((EGridInfo)server); | 535 | LLViewerLogin::getInstance()->setGridChoice((EGridInfo)server); |
475 | } | 536 | } |
476 | } | 537 | } |
477 | #endif | ||
478 | } | 538 | } |
479 | 539 | ||
480 | bool send_url_to_other_instance(const std::string& url) | 540 | bool send_url_to_other_instance(const std::string& url) |
@@ -521,7 +581,6 @@ LLTextureFetch* LLAppViewer::sTextureFetch = NULL; | |||
521 | 581 | ||
522 | LLAppViewer::LLAppViewer() : | 582 | LLAppViewer::LLAppViewer() : |
523 | mMarkerFile(NULL), | 583 | mMarkerFile(NULL), |
524 | mCrashBehavior(CRASH_BEHAVIOR_ASK), | ||
525 | mReportedCrash(false), | 584 | mReportedCrash(false), |
526 | mNumSessions(0), | 585 | mNumSessions(0), |
527 | mPurgeCache(false), | 586 | mPurgeCache(false), |
@@ -543,12 +602,7 @@ LLAppViewer::LLAppViewer() : | |||
543 | 602 | ||
544 | LLAppViewer::~LLAppViewer() | 603 | LLAppViewer::~LLAppViewer() |
545 | { | 604 | { |
546 | if(mMainloopTimeout) | 605 | destroyMainloopTimeout(); |
547 | { | ||
548 | // delete the mainloop timeout. | ||
549 | delete mMainloopTimeout; | ||
550 | mMainloopTimeout = NULL; | ||
551 | } | ||
552 | 606 | ||
553 | // If we got to this destructor somehow, the app didn't hang. | 607 | // If we got to this destructor somehow, the app didn't hang. |
554 | removeMarkerFile(); | 608 | removeMarkerFile(); |
@@ -860,6 +914,8 @@ bool LLAppViewer::mainLoop() | |||
860 | { | 914 | { |
861 | LLFastTimer t(LLFastTimer::FTM_FRAME); | 915 | LLFastTimer t(LLFastTimer::FTM_FRAME); |
862 | 916 | ||
917 | pingMainloopTimeout("Main:GatherInput"); | ||
918 | |||
863 | { | 919 | { |
864 | LLFastTimer t2(LLFastTimer::FTM_MESSAGES); | 920 | LLFastTimer t2(LLFastTimer::FTM_MESSAGES); |
865 | #if LL_WINDOWS | 921 | #if LL_WINDOWS |
@@ -880,8 +936,13 @@ bool LLAppViewer::mainLoop() | |||
880 | } | 936 | } |
881 | #endif | 937 | #endif |
882 | 938 | ||
939 | //at the beginning of every frame, check if the system can successfully allocate 10 * 1 MB memory. | ||
940 | idle_mem_check(10) ; | ||
941 | |||
883 | if (!LLApp::isExiting()) | 942 | if (!LLApp::isExiting()) |
884 | { | 943 | { |
944 | pingMainloopTimeout("Main:JoystickKeyboard"); | ||
945 | |||
885 | // Scan keyboard for movement keys. Command keys and typing | 946 | // Scan keyboard for movement keys. Command keys and typing |
886 | // are handled by windows callbacks. Don't do this until we're | 947 | // are handled by windows callbacks. Don't do this until we're |
887 | // done initializing. JC | 948 | // done initializing. JC |
@@ -896,6 +957,8 @@ bool LLAppViewer::mainLoop() | |||
896 | gKeyboard->scanKeyboard(); | 957 | gKeyboard->scanKeyboard(); |
897 | } | 958 | } |
898 | 959 | ||
960 | pingMainloopTimeout("Main:Messages"); | ||
961 | |||
899 | // Update state based on messages, user input, object idle. | 962 | // Update state based on messages, user input, object idle. |
900 | { | 963 | { |
901 | LLFastTimer t3(LLFastTimer::FTM_IDLE); | 964 | LLFastTimer t3(LLFastTimer::FTM_IDLE); |
@@ -912,25 +975,32 @@ bool LLAppViewer::mainLoop() | |||
912 | 975 | ||
913 | if (gDoDisconnect && (LLStartUp::getStartupState() == STATE_STARTED)) | 976 | if (gDoDisconnect && (LLStartUp::getStartupState() == STATE_STARTED)) |
914 | { | 977 | { |
978 | pauseMainloopTimeout(); | ||
915 | saveFinalSnapshot(); | 979 | saveFinalSnapshot(); |
916 | disconnectViewer(); | 980 | disconnectViewer(); |
981 | resumeMainloopTimeout(); | ||
917 | } | 982 | } |
918 | 983 | ||
919 | // Render scene. | 984 | // Render scene. |
920 | if (!LLApp::isExiting()) | 985 | if (!LLApp::isExiting()) |
921 | { | 986 | { |
987 | pingMainloopTimeout("Main:Display"); | ||
922 | display(); | 988 | display(); |
923 | 989 | ||
990 | pingMainloopTimeout("Main:Snapshot"); | ||
924 | LLFloaterSnapshot::update(); // take snapshots | 991 | LLFloaterSnapshot::update(); // take snapshots |
925 | 992 | ||
926 | #if LL_WINDOWS && LL_LCD_COMPILE | 993 | #if LL_WINDOWS && LL_LCD_COMPILE |
927 | // update LCD Screen | 994 | // update LCD Screen |
995 | pingMainloopTimeout("Main:LCD"); | ||
928 | gLcdScreen->UpdateDisplay(); | 996 | gLcdScreen->UpdateDisplay(); |
929 | #endif | 997 | #endif |
930 | } | 998 | } |
931 | 999 | ||
932 | } | 1000 | } |
933 | 1001 | ||
1002 | pingMainloopTimeout("Main:Sleep"); | ||
1003 | |||
934 | pauseMainloopTimeout(); | 1004 | pauseMainloopTimeout(); |
935 | 1005 | ||
936 | // Sleep and run background threads | 1006 | // Sleep and run background threads |
@@ -1017,7 +1087,7 @@ bool LLAppViewer::mainLoop() | |||
1017 | 1087 | ||
1018 | resumeMainloopTimeout(); | 1088 | resumeMainloopTimeout(); |
1019 | 1089 | ||
1020 | pingMainloopTimeout("Mainloop"); | 1090 | pingMainloopTimeout("Main:End"); |
1021 | } | 1091 | } |
1022 | 1092 | ||
1023 | } | 1093 | } |
@@ -1042,11 +1112,7 @@ bool LLAppViewer::mainLoop() | |||
1042 | 1112 | ||
1043 | delete gServicePump; | 1113 | delete gServicePump; |
1044 | 1114 | ||
1045 | if(mMainloopTimeout) | 1115 | destroyMainloopTimeout(); |
1046 | { | ||
1047 | delete mMainloopTimeout; | ||
1048 | mMainloopTimeout = NULL; | ||
1049 | } | ||
1050 | 1116 | ||
1051 | llinfos << "Exiting main_loop" << llendflush; | 1117 | llinfos << "Exiting main_loop" << llendflush; |
1052 | 1118 | ||
@@ -1350,7 +1416,7 @@ bool LLAppViewer::initThreads() | |||
1350 | 1416 | ||
1351 | const S32 NEVER_SUBMIT_REPORT = 2; | 1417 | const S32 NEVER_SUBMIT_REPORT = 2; |
1352 | if(TRUE == gSavedSettings.getBOOL("WatchdogEnabled") | 1418 | if(TRUE == gSavedSettings.getBOOL("WatchdogEnabled") |
1353 | && (gCrashSettings.getS32("CrashSubmitBehavior") != NEVER_SUBMIT_REPORT)) | 1419 | && (gCrashSettings.getS32(CRASH_BEHAVIOR_SETTING) != NEVER_SUBMIT_REPORT)) |
1354 | { | 1420 | { |
1355 | LLWatchdog::getInstance()->init(); | 1421 | LLWatchdog::getInstance()->init(); |
1356 | } | 1422 | } |
@@ -1512,10 +1578,16 @@ bool LLAppViewer::initConfiguration() | |||
1512 | //*FIX:Mani - Set default to disabling watchdog mainloop | 1578 | //*FIX:Mani - Set default to disabling watchdog mainloop |
1513 | // timeout for mac and linux. There is no call stack info | 1579 | // timeout for mac and linux. There is no call stack info |
1514 | // on these platform to help debug. | 1580 | // on these platform to help debug. |
1581 | #ifndef LL_RELEASE_FOR_DOWNLOAD | ||
1582 | gSavedSettings.setBOOL("WatchdogEnabled", FALSE); | ||
1583 | #endif | ||
1584 | |||
1515 | #ifndef LL_WINDOWS | 1585 | #ifndef LL_WINDOWS |
1516 | gSavedSettings.setBOOL("WatchdogEnabled", FALSE); | 1586 | gSavedSettings.setBOOL("WatchdogEnabled", FALSE); |
1517 | #endif | 1587 | #endif |
1518 | 1588 | ||
1589 | gCrashSettings.getControl(CRASH_BEHAVIOR_SETTING)->getSignal()->connect(boost::bind(&handleCrashSubmitBehaviorChanged, _1)); | ||
1590 | |||
1519 | // These are warnings that appear on the first experience of that condition. | 1591 | // These are warnings that appear on the first experience of that condition. |
1520 | // They are already set in the settings_default.xml file, but still need to be added to LLFirstUse | 1592 | // They are already set in the settings_default.xml file, but still need to be added to LLFirstUse |
1521 | // for disable/reset ability | 1593 | // for disable/reset ability |
@@ -2153,9 +2225,10 @@ void LLAppViewer::writeSystemInfo() | |||
2153 | gDebugInfo["CPUInfo"]["CPUSSE"] = gSysCPU.hasSSE(); | 2225 | gDebugInfo["CPUInfo"]["CPUSSE"] = gSysCPU.hasSSE(); |
2154 | gDebugInfo["CPUInfo"]["CPUSSE2"] = gSysCPU.hasSSE2(); | 2226 | gDebugInfo["CPUInfo"]["CPUSSE2"] = gSysCPU.hasSSE2(); |
2155 | 2227 | ||
2156 | gDebugInfo["RAMInfo"] = llformat("%u", gSysMemory.getPhysicalMemoryKB()); | 2228 | gDebugInfo["RAMInfo"]["Physical"] = (LLSD::Integer)(gSysMemory.getPhysicalMemoryKB()); |
2229 | gDebugInfo["RAMInfo"]["Allocated"] = (LLSD::Integer)(gMemoryAllocated>>10); // MB -> KB | ||
2157 | gDebugInfo["OSInfo"] = getOSInfo().getOSStringSimple(); | 2230 | gDebugInfo["OSInfo"] = getOSInfo().getOSStringSimple(); |
2158 | 2231 | ||
2159 | // *FIX:Mani - move this ddown in llappviewerwin32 | 2232 | // *FIX:Mani - move this ddown in llappviewerwin32 |
2160 | #ifdef LL_WINDOWS | 2233 | #ifdef LL_WINDOWS |
2161 | DWORD thread_id = GetCurrentThreadId(); | 2234 | DWORD thread_id = GetCurrentThreadId(); |
@@ -2191,7 +2264,10 @@ void LLAppViewer::handleSyncViewerCrash() | |||
2191 | void LLAppViewer::handleViewerCrash() | 2264 | void LLAppViewer::handleViewerCrash() |
2192 | { | 2265 | { |
2193 | llinfos << "Handle viewer crash entry." << llendl; | 2266 | llinfos << "Handle viewer crash entry." << llendl; |
2194 | 2267 | ||
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 | |||
2195 | LLAppViewer* pApp = LLAppViewer::instance(); | 2271 | LLAppViewer* pApp = LLAppViewer::instance(); |
2196 | if (pApp->beingDebugged()) | 2272 | if (pApp->beingDebugged()) |
2197 | { | 2273 | { |
@@ -2315,12 +2391,6 @@ void LLAppViewer::handleViewerCrash() | |||
2315 | return; | 2391 | return; |
2316 | } | 2392 | } |
2317 | 2393 | ||
2318 | void LLAppViewer::setCrashBehavior(S32 cb) | ||
2319 | { | ||
2320 | mCrashBehavior = cb; | ||
2321 | gCrashSettings.setS32(CRASH_BEHAVIOR_SETTING, mCrashBehavior); | ||
2322 | } | ||
2323 | |||
2324 | bool LLAppViewer::anotherInstanceRunning() | 2394 | bool LLAppViewer::anotherInstanceRunning() |
2325 | { | 2395 | { |
2326 | // We create a marker file when the program starts and remove the file when it finishes. | 2396 | // We create a marker file when the program starts and remove the file when it finishes. |
@@ -3618,6 +3688,15 @@ void LLAppViewer::initMainloopTimeout(const std::string& state, F32 secs) | |||
3618 | } | 3688 | } |
3619 | } | 3689 | } |
3620 | 3690 | ||
3691 | void LLAppViewer::destroyMainloopTimeout() | ||
3692 | { | ||
3693 | if(mMainloopTimeout) | ||
3694 | { | ||
3695 | delete mMainloopTimeout; | ||
3696 | mMainloopTimeout = NULL; | ||
3697 | } | ||
3698 | } | ||
3699 | |||
3621 | void LLAppViewer::resumeMainloopTimeout(const std::string& state, F32 secs) | 3700 | void LLAppViewer::resumeMainloopTimeout(const std::string& state, F32 secs) |
3622 | { | 3701 | { |
3623 | if(mMainloopTimeout) | 3702 | if(mMainloopTimeout) |
diff --git a/linden/indra/newview/llappviewer.h b/linden/indra/newview/llappviewer.h index 9f9deb6..02406be 100644 --- a/linden/indra/newview/llappviewer.h +++ b/linden/indra/newview/llappviewer.h | |||
@@ -77,8 +77,6 @@ public: | |||
77 | // Report true if under the control of a debugger. A null-op default. | 77 | // Report true if under the control of a debugger. A null-op default. |
78 | virtual bool beingDebugged() { return false; } | 78 | virtual bool beingDebugged() { return false; } |
79 | 79 | ||
80 | S32 getCrashBehavior() const { return mCrashBehavior; } | ||
81 | void setCrashBehavior(S32 cb); | ||
82 | virtual void handleCrashReporting() = 0; // What to do with crash report? | 80 | virtual void handleCrashReporting() = 0; // What to do with crash report? |
83 | virtual void handleSyncCrashTrace() = 0; // any low-level crash-prep that has to happen in the context of the crashing thread before the crash report is delivered. | 81 | virtual void handleSyncCrashTrace() = 0; // any low-level crash-prep that has to happen in the context of the crashing thread before the crash report is delivered. |
84 | static void handleViewerCrash(); // Hey! The viewer crashed. Do this, soon. | 82 | static void handleViewerCrash(); // Hey! The viewer crashed. Do this, soon. |
@@ -132,6 +130,7 @@ public: | |||
132 | // llstartup needs to control init. | 130 | // llstartup needs to control init. |
133 | // llworld, send_agent_pause() also controls pause/resume. | 131 | // llworld, send_agent_pause() also controls pause/resume. |
134 | void initMainloopTimeout(const std::string& state, F32 secs = -1.0f); | 132 | void initMainloopTimeout(const std::string& state, F32 secs = -1.0f); |
133 | void destroyMainloopTimeout(); | ||
135 | void pauseMainloopTimeout(); | 134 | void pauseMainloopTimeout(); |
136 | void resumeMainloopTimeout(const std::string& state = "", F32 secs = -1.0f); | 135 | void resumeMainloopTimeout(const std::string& state = "", F32 secs = -1.0f); |
137 | void pingMainloopTimeout(const std::string& state, F32 secs = -1.0f); | 136 | void pingMainloopTimeout(const std::string& state, F32 secs = -1.0f); |
@@ -186,7 +185,6 @@ private: | |||
186 | 185 | ||
187 | 186 | ||
188 | LLOSInfo mSysOSInfo; | 187 | LLOSInfo mSysOSInfo; |
189 | S32 mCrashBehavior; | ||
190 | bool mReportedCrash; | 188 | bool mReportedCrash; |
191 | 189 | ||
192 | // Thread objects. | 190 | // Thread objects. |
@@ -287,6 +285,7 @@ extern BOOL gUseWireframe; | |||
287 | extern LLVFS *gStaticVFS; | 285 | extern LLVFS *gStaticVFS; |
288 | 286 | ||
289 | extern LLMemoryInfo gSysMemory; | 287 | extern LLMemoryInfo gSysMemory; |
288 | extern U64 gMemoryAllocated; | ||
290 | 289 | ||
291 | extern LLString gLastVersionChannel; | 290 | extern LLString gLastVersionChannel; |
292 | 291 | ||
diff --git a/linden/indra/newview/llappviewerlinux.cpp b/linden/indra/newview/llappviewerlinux.cpp index e41c505..5537687 100644 --- a/linden/indra/newview/llappviewerlinux.cpp +++ b/linden/indra/newview/llappviewerlinux.cpp | |||
@@ -333,13 +333,15 @@ void LLAppViewerLinux::handleSyncCrashTrace() | |||
333 | 333 | ||
334 | void LLAppViewerLinux::handleCrashReporting() | 334 | void LLAppViewerLinux::handleCrashReporting() |
335 | { | 335 | { |
336 | const S32 cb = gCrashSettings.getS32(CRASH_BEHAVIOR_SETTING); | ||
337 | |||
336 | // Always generate the report, have the logger do the asking, and | 338 | // Always generate the report, have the logger do the asking, and |
337 | // don't wait for the logger before exiting (-> total cleanup). | 339 | // don't wait for the logger before exiting (-> total cleanup). |
338 | if (CRASH_BEHAVIOR_NEVER_SEND != LLAppViewer::instance()->getCrashBehavior()) | 340 | if (CRASH_BEHAVIOR_NEVER_SEND != cb) |
339 | { | 341 | { |
340 | // launch the actual crash logger | 342 | // launch the actual crash logger |
341 | char* ask_dialog = "-dialog"; | 343 | char* ask_dialog = "-dialog"; |
342 | if (CRASH_BEHAVIOR_ASK != LLAppViewer::instance()->getCrashBehavior()) | 344 | if (CRASH_BEHAVIOR_ASK != cb) |
343 | ask_dialog = ""; // omit '-dialog' option | 345 | ask_dialog = ""; // omit '-dialog' option |
344 | std::string cmd =gDirUtilp->getAppRODataDir(); | 346 | std::string cmd =gDirUtilp->getAppRODataDir(); |
345 | cmd += gDirUtilp->getDirDelimiter(); | 347 | cmd += gDirUtilp->getDirDelimiter(); |
diff --git a/linden/indra/newview/llappviewerwin32.cpp b/linden/indra/newview/llappviewerwin32.cpp index 59883e5..e90887e 100644 --- a/linden/indra/newview/llappviewerwin32.cpp +++ b/linden/indra/newview/llappviewerwin32.cpp | |||
@@ -421,8 +421,9 @@ void LLAppViewerWin32::handleCrashReporting() | |||
421 | 421 | ||
422 | std::string arg_string = "-user "; | 422 | std::string arg_string = "-user "; |
423 | arg_string += LLViewerLogin::getInstance()->getGridLabel(); | 423 | arg_string += LLViewerLogin::getInstance()->getGridLabel(); |
424 | 424 | ||
425 | switch(getCrashBehavior()) | 425 | S32 cb = gCrashSettings.getS32(CRASH_BEHAVIOR_SETTING); |
426 | switch(cb) | ||
426 | { | 427 | { |
427 | case CRASH_BEHAVIOR_ASK: | 428 | case CRASH_BEHAVIOR_ASK: |
428 | default: | 429 | default: |
diff --git a/linden/indra/newview/llchatbar.cpp b/linden/indra/newview/llchatbar.cpp index bbbdb93..f5aba70 100644 --- a/linden/indra/newview/llchatbar.cpp +++ b/linden/indra/newview/llchatbar.cpp | |||
@@ -382,6 +382,7 @@ void LLChatBar::sendChat( EChatType type ) | |||
382 | LLWString text; | 382 | LLWString text; |
383 | if (mInputEditor) text = mInputEditor->getWText(); | 383 | if (mInputEditor) text = mInputEditor->getWText(); |
384 | LLWString::trim(text); | 384 | LLWString::trim(text); |
385 | LLWString::replaceChar(text,182,'\n'); // Convert paragraph symbols back into newlines. | ||
385 | 386 | ||
386 | if (!text.empty()) | 387 | if (!text.empty()) |
387 | { | 388 | { |
diff --git a/linden/indra/newview/lldrawable.cpp b/linden/indra/newview/lldrawable.cpp index ba7d6b9..db57509 100644 --- a/linden/indra/newview/lldrawable.cpp +++ b/linden/indra/newview/lldrawable.cpp | |||
@@ -122,6 +122,7 @@ void LLDrawable::destroy() | |||
122 | sNumZombieDrawables--; | 122 | sNumZombieDrawables--; |
123 | } | 123 | } |
124 | 124 | ||
125 | LLFace::sDeleteLock = mFaces.size() ; | ||
125 | std::for_each(mFaces.begin(), mFaces.end(), DeletePointer()); | 126 | std::for_each(mFaces.begin(), mFaces.end(), DeletePointer()); |
126 | mFaces.clear(); | 127 | mFaces.clear(); |
127 | 128 | ||
@@ -184,6 +185,7 @@ void LLDrawable::cleanupReferences() | |||
184 | { | 185 | { |
185 | LLFastTimer t(LLFastTimer::FTM_PIPELINE); | 186 | LLFastTimer t(LLFastTimer::FTM_PIPELINE); |
186 | 187 | ||
188 | LLFace::sDeleteLock = mFaces.size() ; | ||
187 | std::for_each(mFaces.begin(), mFaces.end(), DeletePointer()); | 189 | std::for_each(mFaces.begin(), mFaces.end(), DeletePointer()); |
188 | mFaces.clear(); | 190 | mFaces.clear(); |
189 | 191 | ||
@@ -277,6 +279,7 @@ void LLDrawable::setNumFaces(const S32 newFaces, LLFacePool *poolp, LLViewerImag | |||
277 | } | 279 | } |
278 | else if (newFaces < (S32)mFaces.size()) | 280 | else if (newFaces < (S32)mFaces.size()) |
279 | { | 281 | { |
282 | LLFace::sDeleteLock = (S32)mFaces.size() - newFaces ; | ||
280 | std::for_each(mFaces.begin() + newFaces, mFaces.end(), DeletePointer()); | 283 | std::for_each(mFaces.begin() + newFaces, mFaces.end(), DeletePointer()); |
281 | mFaces.erase(mFaces.begin() + newFaces, mFaces.end()); | 284 | mFaces.erase(mFaces.begin() + newFaces, mFaces.end()); |
282 | } | 285 | } |
@@ -288,6 +291,8 @@ void LLDrawable::setNumFaces(const S32 newFaces, LLFacePool *poolp, LLViewerImag | |||
288 | addFace(poolp, texturep); | 291 | addFace(poolp, texturep); |
289 | } | 292 | } |
290 | } | 293 | } |
294 | |||
295 | llassert_always(mFaces.size() == newFaces); | ||
291 | } | 296 | } |
292 | 297 | ||
293 | void LLDrawable::setNumFacesFast(const S32 newFaces, LLFacePool *poolp, LLViewerImage *texturep) | 298 | void LLDrawable::setNumFacesFast(const S32 newFaces, LLFacePool *poolp, LLViewerImage *texturep) |
@@ -298,6 +303,7 @@ void LLDrawable::setNumFacesFast(const S32 newFaces, LLFacePool *poolp, LLViewer | |||
298 | } | 303 | } |
299 | else if (newFaces < (S32)mFaces.size()) | 304 | else if (newFaces < (S32)mFaces.size()) |
300 | { | 305 | { |
306 | LLFace::sDeleteLock = (S32)mFaces.size() - newFaces ; | ||
301 | std::for_each(mFaces.begin() + newFaces, mFaces.end(), DeletePointer()); | 307 | std::for_each(mFaces.begin() + newFaces, mFaces.end(), DeletePointer()); |
302 | mFaces.erase(mFaces.begin() + newFaces, mFaces.end()); | 308 | mFaces.erase(mFaces.begin() + newFaces, mFaces.end()); |
303 | } | 309 | } |
@@ -309,6 +315,8 @@ void LLDrawable::setNumFacesFast(const S32 newFaces, LLFacePool *poolp, LLViewer | |||
309 | addFace(poolp, texturep); | 315 | addFace(poolp, texturep); |
310 | } | 316 | } |
311 | } | 317 | } |
318 | |||
319 | llassert_always(mFaces.size() == newFaces) ; | ||
312 | } | 320 | } |
313 | 321 | ||
314 | void LLDrawable::mergeFaces(LLDrawable* src) | 322 | void LLDrawable::mergeFaces(LLDrawable* src) |
@@ -329,8 +337,13 @@ void LLDrawable::deleteFaces(S32 offset, S32 count) | |||
329 | { | 337 | { |
330 | face_list_t::iterator face_begin = mFaces.begin() + offset; | 338 | face_list_t::iterator face_begin = mFaces.begin() + offset; |
331 | face_list_t::iterator face_end = face_begin + count; | 339 | face_list_t::iterator face_end = face_begin + count; |
340 | |||
341 | S32 end = (S32)mFaces.size() ; | ||
342 | LLFace::sDeleteLock = count ; | ||
332 | std::for_each(face_begin, face_end, DeletePointer()); | 343 | std::for_each(face_begin, face_end, DeletePointer()); |
333 | mFaces.erase(face_begin, face_end); | 344 | mFaces.erase(face_begin, face_end); |
345 | |||
346 | llassert_always(mFaces.size() == end - count) ; | ||
334 | } | 347 | } |
335 | 348 | ||
336 | void LLDrawable::update() | 349 | void LLDrawable::update() |
diff --git a/linden/indra/newview/lldrawpoolalpha.cpp b/linden/indra/newview/lldrawpoolalpha.cpp index ca8f3b4..efe774f 100644 --- a/linden/indra/newview/lldrawpoolalpha.cpp +++ b/linden/indra/newview/lldrawpoolalpha.cpp | |||
@@ -230,6 +230,7 @@ void LLDrawPoolAlpha::renderGroupAlpha(LLSpatialGroup* group, U32 type, U32 mask | |||
230 | 230 | ||
231 | if (texture && params.mTexture.notNull()) | 231 | if (texture && params.mTexture.notNull()) |
232 | { | 232 | { |
233 | llassert_always(gGL.getTexUnit(0)) ; | ||
233 | gGL.getTexUnit(0)->activate(); | 234 | gGL.getTexUnit(0)->activate(); |
234 | params.mTexture->bind(); | 235 | params.mTexture->bind(); |
235 | params.mTexture->addTextureStats(params.mVSize); | 236 | params.mTexture->addTextureStats(params.mVSize); |
diff --git a/linden/indra/newview/lldrawpoolbump.cpp b/linden/indra/newview/lldrawpoolbump.cpp index 303b8d5..c7c19d9 100644 --- a/linden/indra/newview/lldrawpoolbump.cpp +++ b/linden/indra/newview/lldrawpoolbump.cpp | |||
@@ -607,6 +607,10 @@ BOOL LLDrawPoolBump::bindBumpMap(LLDrawInfo& params) | |||
607 | if( tex ) | 607 | if( tex ) |
608 | { | 608 | { |
609 | bump = gBumpImageList.getBrightnessDarknessImage( tex, bump_code ); | 609 | bump = gBumpImageList.getBrightnessDarknessImage( tex, bump_code ); |
610 | //------------------------------------------ | ||
611 | //error check to make sure bump is valid | ||
612 | llassert_always(!bump || bump->getNumRefs() == 1) ; | ||
613 | //------------------------------------------ | ||
610 | } | 614 | } |
611 | break; | 615 | break; |
612 | 616 | ||
@@ -621,6 +625,11 @@ BOOL LLDrawPoolBump::bindBumpMap(LLDrawInfo& params) | |||
621 | 625 | ||
622 | if (bump) | 626 | if (bump) |
623 | { | 627 | { |
628 | //------------------------------------------ | ||
629 | //error check to make sure bump is valid | ||
630 | llassert_always(bump->getNumRefs() > 0 && bump->getNumRefs() < 100000) ; | ||
631 | //------------------------------------------ | ||
632 | |||
624 | bump->bind(1); | 633 | bump->bind(1); |
625 | bump->bind(0); | 634 | bump->bind(0); |
626 | return TRUE; | 635 | return TRUE; |
@@ -863,9 +872,15 @@ LLImageGL* LLBumpImageList::getBrightnessDarknessImage(LLViewerImage* src_image, | |||
863 | { | 872 | { |
864 | LLPointer<LLImageRaw> raw = new LLImageRaw(1,1,1); | 873 | LLPointer<LLImageRaw> raw = new LLImageRaw(1,1,1); |
865 | raw->clear(0x77, 0x77, 0x77, 0xFF); | 874 | raw->clear(0x77, 0x77, 0x77, 0xFF); |
875 | |||
876 | //------------------------------ | ||
866 | bump = new LLImageGL( raw, TRUE); | 877 | bump = new LLImageGL( raw, TRUE); |
867 | bump->setExplicitFormat(GL_ALPHA8, GL_ALPHA); | 878 | //immediately assign bump to a global smart pointer in case some local smart pointer |
879 | //accidently releases it. | ||
868 | (*entries_list)[src_image->getID()] = bump; | 880 | (*entries_list)[src_image->getID()] = bump; |
881 | //------------------------------ | ||
882 | |||
883 | bump->setExplicitFormat(GL_ALPHA8, GL_ALPHA); | ||
869 | 884 | ||
870 | // Note: this may create an LLImageGL immediately | 885 | // Note: this may create an LLImageGL immediately |
871 | src_image->setLoadedCallback( callback_func, 0, TRUE, new LLUUID(src_image->getID()) ); | 886 | src_image->setLoadedCallback( callback_func, 0, TRUE, new LLUUID(src_image->getID()) ); |
@@ -1020,10 +1035,15 @@ void LLBumpImageList::onSourceLoaded( BOOL success, LLViewerImage *src_vi, LLIma | |||
1020 | } | 1035 | } |
1021 | } | 1036 | } |
1022 | 1037 | ||
1038 | //--------------------------------------------------- | ||
1023 | LLImageGL* bump = new LLImageGL( TRUE); | 1039 | LLImageGL* bump = new LLImageGL( TRUE); |
1024 | bump->setExplicitFormat(GL_ALPHA8, GL_ALPHA); | 1040 | //immediately assign bump to a global smart pointer in case some local smart pointer |
1025 | bump->createGLTexture(0, dst_image); | 1041 | //accidently releases it. |
1026 | iter->second = bump; // derefs (and deletes) old image | 1042 | iter->second = bump; // derefs (and deletes) old image |
1043 | //--------------------------------------------------- | ||
1044 | |||
1045 | bump->setExplicitFormat(GL_ALPHA8, GL_ALPHA); | ||
1046 | bump->createGLTexture(0, dst_image); | ||
1027 | } | 1047 | } |
1028 | else | 1048 | else |
1029 | { | 1049 | { |
diff --git a/linden/indra/newview/lldynamictexture.cpp b/linden/indra/newview/lldynamictexture.cpp index f77187d..a724d88 100644 --- a/linden/indra/newview/lldynamictexture.cpp +++ b/linden/indra/newview/lldynamictexture.cpp | |||
@@ -42,8 +42,6 @@ | |||
42 | #include "llviewerdisplay.h" | 42 | #include "llviewerdisplay.h" |
43 | #include "llrender.h" | 43 | #include "llrender.h" |
44 | 44 | ||
45 | void render_ui_and_swap_if_needed(); | ||
46 | |||
47 | // static | 45 | // static |
48 | LLDynamicTexture::instance_list_t LLDynamicTexture::sInstances[ LLDynamicTexture::ORDER_COUNT ]; | 46 | LLDynamicTexture::instance_list_t LLDynamicTexture::sInstances[ LLDynamicTexture::ORDER_COUNT ]; |
49 | S32 LLDynamicTexture::sNumRenders = 0; | 47 | S32 LLDynamicTexture::sNumRenders = 0; |
@@ -219,9 +217,8 @@ BOOL LLDynamicTexture::updateAllInstances() | |||
219 | LLDynamicTexture *dynamicTexture = *iter; | 217 | LLDynamicTexture *dynamicTexture = *iter; |
220 | if (dynamicTexture->needsRender()) | 218 | if (dynamicTexture->needsRender()) |
221 | { | 219 | { |
222 | render_ui_and_swap_if_needed(); | ||
223 | glClear(GL_DEPTH_BUFFER_BIT); | 220 | glClear(GL_DEPTH_BUFFER_BIT); |
224 | gDisplaySwapBuffers = FALSE; | 221 | gDepthDirty = TRUE; |
225 | 222 | ||
226 | 223 | ||
227 | gGL.color4f(1,1,1,1); | 224 | gGL.color4f(1,1,1,1); |
diff --git a/linden/indra/newview/llface.cpp b/linden/indra/newview/llface.cpp index 3e0c5b2..77251ce 100644 --- a/linden/indra/newview/llface.cpp +++ b/linden/indra/newview/llface.cpp | |||
@@ -57,6 +57,7 @@ | |||
57 | extern BOOL gPickFaces; | 57 | extern BOOL gPickFaces; |
58 | 58 | ||
59 | BOOL LLFace::sSafeRenderSelect = TRUE; // FALSE | 59 | BOOL LLFace::sSafeRenderSelect = TRUE; // FALSE |
60 | S32 LLFace::sDeleteLock = 0 ; | ||
60 | 61 | ||
61 | #define DOTVEC(a,b) (a.mV[0]*b.mV[0] + a.mV[1]*b.mV[1] + a.mV[2]*b.mV[2]) | 62 | #define DOTVEC(a,b) (a.mV[0]*b.mV[0] + a.mV[1]*b.mV[1] + a.mV[2]*b.mV[2]) |
62 | 63 | ||
@@ -177,6 +178,9 @@ void LLFace::init(LLDrawable* drawablep, LLViewerObject* objp) | |||
177 | 178 | ||
178 | void LLFace::destroy() | 179 | void LLFace::destroy() |
179 | { | 180 | { |
181 | llassert_always(sDeleteLock >= 1); | ||
182 | --sDeleteLock; | ||
183 | |||
180 | mDrawablep = NULL; | 184 | mDrawablep = NULL; |
181 | mVObjp = NULL; | 185 | mVObjp = NULL; |
182 | 186 | ||
diff --git a/linden/indra/newview/llface.h b/linden/indra/newview/llface.h index 533851c..35063a0 100644 --- a/linden/indra/newview/llface.h +++ b/linden/indra/newview/llface.h | |||
@@ -296,6 +296,9 @@ public: | |||
296 | lhs->getTexture() < rhs->getTexture(); | 296 | lhs->getTexture() < rhs->getTexture(); |
297 | } | 297 | } |
298 | }; | 298 | }; |
299 | |||
300 | public://paranoia check only | ||
301 | static S32 sDeleteLock ; | ||
299 | }; | 302 | }; |
300 | 303 | ||
301 | #endif // LL_LLFACE_H | 304 | #endif // LL_LLFACE_H |
diff --git a/linden/indra/newview/llfirstuse.cpp b/linden/indra/newview/llfirstuse.cpp index e6dee2c..b3d383d 100644 --- a/linden/indra/newview/llfirstuse.cpp +++ b/linden/indra/newview/llfirstuse.cpp | |||
@@ -37,6 +37,7 @@ | |||
37 | #include "indra_constants.h" | 37 | #include "indra_constants.h" |
38 | 38 | ||
39 | // viewer includes | 39 | // viewer includes |
40 | #include "llagent.h" // for gAgent.inPrelude() | ||
40 | #include "llnotify.h" | 41 | #include "llnotify.h" |
41 | #include "llviewercontrol.h" | 42 | #include "llviewercontrol.h" |
42 | #include "llui.h" | 43 | #include "llui.h" |
@@ -107,12 +108,14 @@ void LLFirstUse::useBalanceDecrease(S32 delta) | |||
107 | // static | 108 | // static |
108 | void LLFirstUse::useSit() | 109 | void LLFirstUse::useSit() |
109 | { | 110 | { |
110 | if (gSavedSettings.getWarning("FirstSit")) | 111 | // Our orientation island uses sitting to teach vehicle driving |
111 | { | 112 | // so just never show this message. JC |
112 | gSavedSettings.setWarning("FirstSit", FALSE); | 113 | //if (gSavedSettings.getWarning("FirstSit")) |
113 | 114 | //{ | |
114 | LLNotifyBox::showXml("FirstSit"); | 115 | // gSavedSettings.setWarning("FirstSit", FALSE); |
115 | } | 116 | |
117 | // LLNotifyBox::showXml("FirstSit"); | ||
118 | //} | ||
116 | } | 119 | } |
117 | 120 | ||
118 | // static | 121 | // static |
@@ -168,11 +171,16 @@ void LLFirstUse::useTeleport() | |||
168 | // static | 171 | // static |
169 | void LLFirstUse::useOverrideKeys() | 172 | void LLFirstUse::useOverrideKeys() |
170 | { | 173 | { |
171 | if (gSavedSettings.getWarning("FirstOverrideKeys")) | 174 | // Our orientation island uses key overrides to teach vehicle driving |
175 | // so don't show this message until you get off OI. JC | ||
176 | if (!gAgent.inPrelude()) | ||
172 | { | 177 | { |
173 | gSavedSettings.setWarning("FirstOverrideKeys", FALSE); | 178 | if (gSavedSettings.getWarning("FirstOverrideKeys")) |
179 | { | ||
180 | gSavedSettings.setWarning("FirstOverrideKeys", FALSE); | ||
174 | 181 | ||
175 | LLNotifyBox::showXml("FirstOverrideKeys"); | 182 | LLNotifyBox::showXml("FirstOverrideKeys"); |
183 | } | ||
176 | } | 184 | } |
177 | } | 185 | } |
178 | 186 | ||
diff --git a/linden/indra/newview/llflexibleobject.cpp b/linden/indra/newview/llflexibleobject.cpp index ec49c1a..95e6d17 100644 --- a/linden/indra/newview/llflexibleobject.cpp +++ b/linden/indra/newview/llflexibleobject.cpp | |||
@@ -305,7 +305,7 @@ BOOL LLVolumeImplFlexible::doIdleUpdate(LLAgent &agent, LLWorld &world, const F6 | |||
305 | new_res = mRenderRes; | 305 | new_res = mRenderRes; |
306 | } | 306 | } |
307 | 307 | ||
308 | if (!mInitialized) | 308 | if (!mInitialized || (mSimulateRes != new_res)) |
309 | { | 309 | { |
310 | mSimulateRes = new_res; | 310 | mSimulateRes = new_res; |
311 | setAttributesOfAllSections(); | 311 | setAttributesOfAllSections(); |
diff --git a/linden/indra/newview/llfloateranimpreview.cpp b/linden/indra/newview/llfloateranimpreview.cpp index 82729e9..ca6982b 100644 --- a/linden/indra/newview/llfloateranimpreview.cpp +++ b/linden/indra/newview/llfloateranimpreview.cpp | |||
@@ -1037,7 +1037,7 @@ LLPreviewAnimation::LLPreviewAnimation(S32 width, S32 height) : LLDynamicTexture | |||
1037 | mDummyAvatar = (LLVOAvatar*)gObjectList.createObjectViewer(LL_PCODE_LEGACY_AVATAR, gAgent.getRegion()); | 1037 | mDummyAvatar = (LLVOAvatar*)gObjectList.createObjectViewer(LL_PCODE_LEGACY_AVATAR, gAgent.getRegion()); |
1038 | mDummyAvatar->createDrawable(&gPipeline); | 1038 | mDummyAvatar->createDrawable(&gPipeline); |
1039 | mDummyAvatar->mIsDummy = TRUE; | 1039 | mDummyAvatar->mIsDummy = TRUE; |
1040 | mDummyAvatar->mSpecialRenderMode = 1; | 1040 | mDummyAvatar->mSpecialRenderMode = 2; |
1041 | mDummyAvatar->setPositionAgent(LLVector3::zero); | 1041 | mDummyAvatar->setPositionAgent(LLVector3::zero); |
1042 | mDummyAvatar->slamPosition(); | 1042 | mDummyAvatar->slamPosition(); |
1043 | mDummyAvatar->updateJointLODs(); | 1043 | mDummyAvatar->updateJointLODs(); |
diff --git a/linden/indra/newview/llfloateravatarinfo.cpp b/linden/indra/newview/llfloateravatarinfo.cpp index 942a394..d4b0b1c 100644 --- a/linden/indra/newview/llfloateravatarinfo.cpp +++ b/linden/indra/newview/llfloateravatarinfo.cpp | |||
@@ -120,6 +120,7 @@ LLFloaterAvatarInfo::LLFloaterAvatarInfo(const std::string& name, const LLRect & | |||
120 | mPanelAvatarp->selectTab(0); | 120 | mPanelAvatarp->selectTab(0); |
121 | } | 121 | } |
122 | 122 | ||
123 | llassert_always(!gAvatarInfoInstances.checkData(mAvatarID));//if not inserted. | ||
123 | gAvatarInfoInstances.addData(avatar_id, this); | 124 | gAvatarInfoInstances.addData(avatar_id, this); |
124 | 125 | ||
125 | 126 | ||
@@ -128,8 +129,12 @@ LLFloaterAvatarInfo::LLFloaterAvatarInfo(const std::string& name, const LLRect & | |||
128 | // virtual | 129 | // virtual |
129 | LLFloaterAvatarInfo::~LLFloaterAvatarInfo() | 130 | LLFloaterAvatarInfo::~LLFloaterAvatarInfo() |
130 | { | 131 | { |
132 | llassert_always(gAvatarInfoInstances.checkData(mAvatarID));//if there | ||
133 | llinfos << "to remove profile floater for avatar " << mAvatarID << llendl ; | ||
131 | // child views automatically deleted | 134 | // child views automatically deleted |
132 | gAvatarInfoInstances.removeData(mAvatarID); | 135 | gAvatarInfoInstances.removeData(mAvatarID); |
136 | |||
137 | llinfos << "successfully removed profile floater for avatar " << mAvatarID << llendl ; | ||
133 | 138 | ||
134 | } | 139 | } |
135 | 140 | ||
diff --git a/linden/indra/newview/llfloaterchat.cpp b/linden/indra/newview/llfloaterchat.cpp index d05b231..383a33e 100644 --- a/linden/indra/newview/llfloaterchat.cpp +++ b/linden/indra/newview/llfloaterchat.cpp | |||
@@ -207,7 +207,8 @@ void add_timestamped_line(LLViewerTextEditor* edit, const LLChat &chat, const LL | |||
207 | { | 207 | { |
208 | line = line.substr(chat.mFromName.length()); | 208 | line = line.substr(chat.mFromName.length()); |
209 | const LLStyleSP &sourceStyle = LLStyleMap::instance().lookup(chat.mFromID); | 209 | const LLStyleSP &sourceStyle = LLStyleMap::instance().lookup(chat.mFromID); |
210 | edit->appendStyledText(chat.mFromName, false, false, &sourceStyle); | 210 | edit->appendStyledText(chat.mFromName, false, prepend_newline, &sourceStyle); |
211 | prepend_newline = false; | ||
211 | } | 212 | } |
212 | edit->appendColoredText(line, false, prepend_newline, color); | 213 | edit->appendColoredText(line, false, prepend_newline, color); |
213 | } | 214 | } |
diff --git a/linden/indra/newview/llfloaterreporter.cpp b/linden/indra/newview/llfloaterreporter.cpp index 9c43f35..49c6e83 100644 --- a/linden/indra/newview/llfloaterreporter.cpp +++ b/linden/indra/newview/llfloaterreporter.cpp | |||
@@ -898,7 +898,7 @@ void LLFloaterReporter::takeScreenshot() | |||
898 | mResourceDatap->mAssetInfo.mType); | 898 | mResourceDatap->mAssetInfo.mType); |
899 | 899 | ||
900 | // store in the image list so it doesn't try to fetch from the server | 900 | // store in the image list so it doesn't try to fetch from the server |
901 | LLViewerImage* image_in_list = new LLViewerImage(mResourceDatap->mAssetInfo.mUuid, TRUE); | 901 | LLPointer<LLViewerImage> image_in_list = new LLViewerImage(mResourceDatap->mAssetInfo.mUuid, TRUE); |
902 | image_in_list->createGLTexture(0, raw); | 902 | image_in_list->createGLTexture(0, raw); |
903 | gImageList.addImage(image_in_list); | 903 | gImageList.addImage(image_in_list); |
904 | 904 | ||
diff --git a/linden/indra/newview/llfloatertos.cpp b/linden/indra/newview/llfloatertos.cpp index 920ef4c..e4073f1 100644 --- a/linden/indra/newview/llfloatertos.cpp +++ b/linden/indra/newview/llfloatertos.cpp | |||
@@ -215,7 +215,7 @@ LLFloaterTOS::~LLFloaterTOS() | |||
215 | LLWebBrowserCtrl* web_browser = getChild<LLWebBrowserCtrl>("tos_html"); | 215 | LLWebBrowserCtrl* web_browser = getChild<LLWebBrowserCtrl>("tos_html"); |
216 | if ( web_browser ) | 216 | if ( web_browser ) |
217 | { | 217 | { |
218 | web_browser->addObserver( this ); | 218 | web_browser->remObserver( this ); |
219 | }; | 219 | }; |
220 | 220 | ||
221 | // tell the responder we're not here anymore | 221 | // tell the responder we're not here anymore |
diff --git a/linden/indra/newview/llfloaterworldmap.cpp b/linden/indra/newview/llfloaterworldmap.cpp index 75fbff2..e8b6caa 100644 --- a/linden/indra/newview/llfloaterworldmap.cpp +++ b/linden/indra/newview/llfloaterworldmap.cpp | |||
@@ -871,6 +871,8 @@ 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) ; | ||
874 | } | 876 | } |
875 | 877 | ||
876 | mLandmarkItemIDList.reset(); | 878 | mLandmarkItemIDList.reset(); |
diff --git a/linden/indra/newview/llfolderview.cpp b/linden/indra/newview/llfolderview.cpp index b543e31..4833c12 100644 --- a/linden/indra/newview/llfolderview.cpp +++ b/linden/indra/newview/llfolderview.cpp | |||
@@ -349,10 +349,10 @@ void LLFolderViewItem::arrangeFromRoot() | |||
349 | // UI. If open is TRUE, then folders are opened up along the way to | 349 | // UI. If open is TRUE, then folders are opened up along the way to |
350 | // the selection. | 350 | // the selection. |
351 | void LLFolderViewItem::setSelectionFromRoot(LLFolderViewItem* selection, | 351 | void LLFolderViewItem::setSelectionFromRoot(LLFolderViewItem* selection, |
352 | BOOL open, /* Flawfinder: ignore */ | 352 | BOOL openitem, |
353 | BOOL take_keyboard_focus) | 353 | BOOL take_keyboard_focus) |
354 | { | 354 | { |
355 | getRoot()->setSelection(selection, open, take_keyboard_focus); /* Flawfinder: ignore */ | 355 | getRoot()->setSelection(selection, openitem, take_keyboard_focus); |
356 | } | 356 | } |
357 | 357 | ||
358 | // helper function to change the selection from the root. | 358 | // helper function to change the selection from the root. |
@@ -368,7 +368,7 @@ void LLFolderViewItem::extendSelectionFromRoot(LLFolderViewItem* selection) | |||
368 | getRoot()->extendSelection(selection, NULL, selected_items); | 368 | getRoot()->extendSelection(selection, NULL, selected_items); |
369 | } | 369 | } |
370 | 370 | ||
371 | EInventorySortGroup LLFolderViewItem::getSortGroup() | 371 | EInventorySortGroup LLFolderViewItem::getSortGroup() const |
372 | { | 372 | { |
373 | return SG_ITEM; | 373 | return SG_ITEM; |
374 | } | 374 | } |
@@ -442,7 +442,7 @@ void LLFolderViewItem::dirtyFilter() | |||
442 | // means 'deselect' for a leaf item. Do this optimization after | 442 | // means 'deselect' for a leaf item. Do this optimization after |
443 | // multiple selection is implemented to make sure it all plays nice | 443 | // multiple selection is implemented to make sure it all plays nice |
444 | // together. | 444 | // together. |
445 | BOOL LLFolderViewItem::setSelection(LLFolderViewItem* selection, BOOL open, BOOL take_keyboard_focus) | 445 | BOOL LLFolderViewItem::setSelection(LLFolderViewItem* selection, BOOL openitem, BOOL take_keyboard_focus) |
446 | { | 446 | { |
447 | if( selection == this ) | 447 | if( selection == this ) |
448 | { | 448 | { |
@@ -548,7 +548,7 @@ void LLFolderViewItem::buildContextMenu(LLMenuGL& menu, U32 flags) | |||
548 | } | 548 | } |
549 | } | 549 | } |
550 | 550 | ||
551 | void LLFolderViewItem::open( void ) /* Flawfinder: ignore */ | 551 | void LLFolderViewItem::openItem( void ) |
552 | { | 552 | { |
553 | if( mListener ) | 553 | if( mListener ) |
554 | { | 554 | { |
@@ -989,9 +989,6 @@ LLFolderViewFolder::LLFolderViewFolder( const LLString& name, LLUIImagePtr icon, | |||
989 | mMostFilteredDescendantGeneration(-1) | 989 | mMostFilteredDescendantGeneration(-1) |
990 | { | 990 | { |
991 | mType = "(folder)"; | 991 | mType = "(folder)"; |
992 | |||
993 | //mItems.setInsertBefore( &sort_item_name ); | ||
994 | //mFolders.setInsertBefore( &folder_insert_before ); | ||
995 | } | 992 | } |
996 | 993 | ||
997 | // Destroys the object | 994 | // Destroys the object |
@@ -1000,10 +997,6 @@ LLFolderViewFolder::~LLFolderViewFolder( void ) | |||
1000 | // The LLView base class takes care of object destruction. make sure that we | 997 | // The LLView base class takes care of object destruction. make sure that we |
1001 | // don't have mouse or keyboard focus | 998 | // don't have mouse or keyboard focus |
1002 | gFocusMgr.releaseFocusIfNeeded( this ); // calls onCommit() | 999 | gFocusMgr.releaseFocusIfNeeded( this ); // calls onCommit() |
1003 | |||
1004 | //mItems.reset(); | ||
1005 | //mItems.removeAllNodes(); | ||
1006 | //mFolders.removeAllNodes(); | ||
1007 | } | 1000 | } |
1008 | 1001 | ||
1009 | // addToFolder() returns TRUE if it succeeds. FALSE otherwise | 1002 | // addToFolder() returns TRUE if it succeeds. FALSE otherwise |
@@ -1048,9 +1041,7 @@ S32 LLFolderViewFolder::arrange( S32* width, S32* height, S32 filter_generation) | |||
1048 | // Add sizes of children | 1041 | // Add sizes of children |
1049 | S32 parent_item_height = getRect().getHeight(); | 1042 | S32 parent_item_height = getRect().getHeight(); |
1050 | 1043 | ||
1051 | folders_t::iterator fit = mFolders.begin(); | 1044 | for(folders_t::iterator fit = mFolders.begin(); fit != mFolders.end(); ++fit) |
1052 | folders_t::iterator fend = mFolders.end(); | ||
1053 | for(; fit < fend; ++fit) | ||
1054 | { | 1045 | { |
1055 | LLFolderViewFolder* folderp = (*fit); | 1046 | LLFolderViewFolder* folderp = (*fit); |
1056 | if (getRoot()->getDebugFilters()) | 1047 | if (getRoot()->getDebugFilters()) |
@@ -1076,9 +1067,8 @@ S32 LLFolderViewFolder::arrange( S32* width, S32* height, S32 filter_generation) | |||
1076 | folderp->setOrigin( 0, child_top - folderp->getRect().getHeight() ); | 1067 | folderp->setOrigin( 0, child_top - folderp->getRect().getHeight() ); |
1077 | } | 1068 | } |
1078 | } | 1069 | } |
1079 | items_t::iterator iit = mItems.begin(); | 1070 | for(items_t::iterator iit = mItems.begin(); |
1080 | items_t::iterator iend = mItems.end(); | 1071 | iit != mItems.end(); ++iit) |
1081 | for(;iit < iend; ++iit) | ||
1082 | { | 1072 | { |
1083 | LLFolderViewItem* itemp = (*iit); | 1073 | LLFolderViewItem* itemp = (*iit); |
1084 | if (getRoot()->getDebugFilters()) | 1074 | if (getRoot()->getDebugFilters()) |
@@ -1354,7 +1344,7 @@ BOOL LLFolderViewFolder::hasFilteredDescendants() | |||
1354 | 1344 | ||
1355 | // Passes selection information on to children and record selection | 1345 | // Passes selection information on to children and record selection |
1356 | // information if necessary. | 1346 | // information if necessary. |
1357 | BOOL LLFolderViewFolder::setSelection(LLFolderViewItem* selection, BOOL open, /* Flawfinder: ignore */ | 1347 | BOOL LLFolderViewFolder::setSelection(LLFolderViewItem* selection, BOOL openitem, |
1358 | BOOL take_keyboard_focus) | 1348 | BOOL take_keyboard_focus) |
1359 | { | 1349 | { |
1360 | BOOL rv = FALSE; | 1350 | BOOL rv = FALSE; |
@@ -1378,7 +1368,7 @@ BOOL LLFolderViewFolder::setSelection(LLFolderViewItem* selection, BOOL open, / | |||
1378 | iter != mFolders.end();) | 1368 | iter != mFolders.end();) |
1379 | { | 1369 | { |
1380 | folders_t::iterator fit = iter++; | 1370 | folders_t::iterator fit = iter++; |
1381 | if((*fit)->setSelection(selection, open, take_keyboard_focus)) /* Flawfinder: ignore */ | 1371 | if((*fit)->setSelection(selection, openitem, take_keyboard_focus)) |
1382 | { | 1372 | { |
1383 | rv = TRUE; | 1373 | rv = TRUE; |
1384 | child_selected = TRUE; | 1374 | child_selected = TRUE; |
@@ -1389,14 +1379,14 @@ BOOL LLFolderViewFolder::setSelection(LLFolderViewItem* selection, BOOL open, / | |||
1389 | iter != mItems.end();) | 1379 | iter != mItems.end();) |
1390 | { | 1380 | { |
1391 | items_t::iterator iit = iter++; | 1381 | items_t::iterator iit = iter++; |
1392 | if((*iit)->setSelection(selection, open, take_keyboard_focus)) /* Flawfinder: ignore */ | 1382 | if((*iit)->setSelection(selection, openitem, take_keyboard_focus)) |
1393 | { | 1383 | { |
1394 | rv = TRUE; | 1384 | rv = TRUE; |
1395 | child_selected = TRUE; | 1385 | child_selected = TRUE; |
1396 | mNumDescendantsSelected++; | 1386 | mNumDescendantsSelected++; |
1397 | } | 1387 | } |
1398 | } | 1388 | } |
1399 | if(open && child_selected) /* Flawfinder: ignore */ | 1389 | if(openitem && child_selected) |
1400 | { | 1390 | { |
1401 | setOpenArrangeRecursively(TRUE); | 1391 | setOpenArrangeRecursively(TRUE); |
1402 | } | 1392 | } |
@@ -1636,11 +1626,9 @@ void LLFolderViewFolder::destroyView() | |||
1636 | while (!mFolders.empty()) | 1626 | while (!mFolders.empty()) |
1637 | { | 1627 | { |
1638 | LLFolderViewFolder *folderp = mFolders.back(); | 1628 | LLFolderViewFolder *folderp = mFolders.back(); |
1639 | folderp->destroyView(); | 1629 | folderp->destroyView(); // removes entry from mFolders |
1640 | } | 1630 | } |
1641 | 1631 | ||
1642 | mFolders.clear(); | ||
1643 | |||
1644 | deleteAllChildren(); | 1632 | deleteAllChildren(); |
1645 | 1633 | ||
1646 | if (mParentFolder) | 1634 | if (mParentFolder) |
@@ -1711,11 +1699,11 @@ void LLFolderViewFolder::extractItem( LLFolderViewItem* item ) | |||
1711 | // This is only called for renaming an object because it won't work for date | 1699 | // This is only called for renaming an object because it won't work for date |
1712 | void LLFolderViewFolder::resort(LLFolderViewItem* item) | 1700 | void LLFolderViewFolder::resort(LLFolderViewItem* item) |
1713 | { | 1701 | { |
1714 | std::sort(mItems.begin(), mItems.end(), mSortFunction); | 1702 | mItems.sort(mSortFunction); |
1715 | std::sort(mFolders.begin(), mFolders.end(), mSortFunction); | 1703 | mFolders.sort(mSortFunction); |
1716 | } | 1704 | } |
1717 | 1705 | ||
1718 | bool LLFolderViewFolder::isTrash() | 1706 | bool LLFolderViewFolder::isTrash() const |
1719 | { | 1707 | { |
1720 | if (mAmTrash == LLFolderViewFolder::UNKNOWN) | 1708 | if (mAmTrash == LLFolderViewFolder::UNKNOWN) |
1721 | { | 1709 | { |
@@ -1740,8 +1728,8 @@ void LLFolderViewFolder::sortBy(U32 order) | |||
1740 | (*fit)->sortBy(order); | 1728 | (*fit)->sortBy(order); |
1741 | } | 1729 | } |
1742 | 1730 | ||
1743 | std::sort(mFolders.begin(), mFolders.end(), mSortFunction); | 1731 | mFolders.sort(mSortFunction); |
1744 | std::sort(mItems.begin(), mItems.end(), mSortFunction); | 1732 | mItems.sort(mSortFunction); |
1745 | 1733 | ||
1746 | if (order & LLInventoryFilter::SO_DATE) | 1734 | if (order & LLInventoryFilter::SO_DATE) |
1747 | { | 1735 | { |
@@ -1776,12 +1764,12 @@ void LLFolderViewFolder::setItemSortOrder(U32 ordering) | |||
1776 | (*fit)->setItemSortOrder(ordering); | 1764 | (*fit)->setItemSortOrder(ordering); |
1777 | } | 1765 | } |
1778 | 1766 | ||
1779 | std::sort(mFolders.begin(), mFolders.end(), mSortFunction); | 1767 | mFolders.sort(mSortFunction); |
1780 | std::sort(mItems.begin(), mItems.end(), mSortFunction); | 1768 | mItems.sort(mSortFunction); |
1781 | } | 1769 | } |
1782 | } | 1770 | } |
1783 | 1771 | ||
1784 | EInventorySortGroup LLFolderViewFolder::getSortGroup() | 1772 | EInventorySortGroup LLFolderViewFolder::getSortGroup() const |
1785 | { | 1773 | { |
1786 | if (isTrash()) | 1774 | if (isTrash()) |
1787 | { | 1775 | { |
@@ -1928,16 +1916,16 @@ void LLFolderViewFolder::toggleOpen() | |||
1928 | } | 1916 | } |
1929 | 1917 | ||
1930 | // Force a folder open or closed | 1918 | // Force a folder open or closed |
1931 | void LLFolderViewFolder::setOpen(BOOL open) /* Flawfinder: ignore */ | 1919 | void LLFolderViewFolder::setOpen(BOOL openitem) |
1932 | { | 1920 | { |
1933 | setOpenArrangeRecursively(open); /* Flawfinder: ignore */ | 1921 | setOpenArrangeRecursively(openitem); |
1934 | } | 1922 | } |
1935 | 1923 | ||
1936 | void LLFolderViewFolder::setOpenArrangeRecursively(BOOL open, ERecurseType recurse) /* Flawfinder: ignore */ | 1924 | void LLFolderViewFolder::setOpenArrangeRecursively(BOOL openitem, ERecurseType recurse) |
1937 | { | 1925 | { |
1938 | BOOL was_open = mIsOpen; | 1926 | BOOL was_open = mIsOpen; |
1939 | mIsOpen = open; /* Flawfinder: ignore */ | 1927 | mIsOpen = openitem; |
1940 | if(!was_open && open) /* Flawfinder: ignore */ | 1928 | if(!was_open && openitem) |
1941 | { | 1929 | { |
1942 | if(mListener) | 1930 | if(mListener) |
1943 | { | 1931 | { |
@@ -1951,12 +1939,12 @@ void LLFolderViewFolder::setOpenArrangeRecursively(BOOL open, ERecurseType recur | |||
1951 | iter != mFolders.end();) | 1939 | iter != mFolders.end();) |
1952 | { | 1940 | { |
1953 | folders_t::iterator fit = iter++; | 1941 | folders_t::iterator fit = iter++; |
1954 | (*fit)->setOpenArrangeRecursively(open, RECURSE_DOWN); /* Flawfinder: ignore */ | 1942 | (*fit)->setOpenArrangeRecursively(openitem, RECURSE_DOWN); /* Flawfinder: ignore */ |
1955 | } | 1943 | } |
1956 | } | 1944 | } |
1957 | if (mParentFolder && (recurse == RECURSE_UP || recurse == RECURSE_UP_DOWN)) | 1945 | if (mParentFolder && (recurse == RECURSE_UP || recurse == RECURSE_UP_DOWN)) |
1958 | { | 1946 | { |
1959 | mParentFolder->setOpenArrangeRecursively(open, RECURSE_UP); /* Flawfinder: ignore */ | 1947 | mParentFolder->setOpenArrangeRecursively(openitem, RECURSE_UP); |
1960 | } | 1948 | } |
1961 | 1949 | ||
1962 | if (was_open != mIsOpen) | 1950 | if (was_open != mIsOpen) |
@@ -1989,7 +1977,7 @@ BOOL LLFolderViewFolder::handleDragAndDropFromChild(MASK mask, | |||
1989 | return TRUE; | 1977 | return TRUE; |
1990 | } | 1978 | } |
1991 | 1979 | ||
1992 | void LLFolderViewFolder::open( void ) /* Flawfinder: ignore */ | 1980 | void LLFolderViewFolder::openItem( void ) |
1993 | { | 1981 | { |
1994 | toggleOpen(); | 1982 | toggleOpen(); |
1995 | } | 1983 | } |
@@ -2687,10 +2675,10 @@ void LLFolderView::openFolder(const LLString& foldername) | |||
2687 | } | 2675 | } |
2688 | } | 2676 | } |
2689 | 2677 | ||
2690 | void LLFolderView::setOpenArrangeRecursively(BOOL open, ERecurseType recurse) /* Flawfinder: ignore */ | 2678 | void LLFolderView::setOpenArrangeRecursively(BOOL openitem, ERecurseType recurse) |
2691 | { | 2679 | { |
2692 | // call base class to do proper recursion | 2680 | // call base class to do proper recursion |
2693 | LLFolderViewFolder::setOpenArrangeRecursively(open, recurse); /* Flawfinder: ignore */ | 2681 | LLFolderViewFolder::setOpenArrangeRecursively(openitem, recurse); |
2694 | // make sure root folder is always open | 2682 | // make sure root folder is always open |
2695 | mIsOpen = TRUE; | 2683 | mIsOpen = TRUE; |
2696 | } | 2684 | } |
@@ -2866,7 +2854,7 @@ LLFolderViewItem* LLFolderView::getCurSelectedItem( void ) | |||
2866 | 2854 | ||
2867 | 2855 | ||
2868 | // Record the selected item and pass it down the hierachy. | 2856 | // Record the selected item and pass it down the hierachy. |
2869 | BOOL LLFolderView::setSelection(LLFolderViewItem* selection, BOOL open, /* Flawfinder: ignore */ | 2857 | BOOL LLFolderView::setSelection(LLFolderViewItem* selection, BOOL openitem, |
2870 | BOOL take_keyboard_focus) | 2858 | BOOL take_keyboard_focus) |
2871 | { | 2859 | { |
2872 | if( selection == this ) | 2860 | if( selection == this ) |
@@ -2888,8 +2876,8 @@ BOOL LLFolderView::setSelection(LLFolderViewItem* selection, BOOL open, /* Flaw | |||
2888 | addToSelectionList(selection); | 2876 | addToSelectionList(selection); |
2889 | } | 2877 | } |
2890 | 2878 | ||
2891 | BOOL rv = LLFolderViewFolder::setSelection(selection, open, take_keyboard_focus); | 2879 | BOOL rv = LLFolderViewFolder::setSelection(selection, openitem, take_keyboard_focus); |
2892 | if(open && selection) | 2880 | if(openitem && selection) |
2893 | { | 2881 | { |
2894 | selection->getParentFolder()->requestArrange(); | 2882 | selection->getParentFolder()->requestArrange(); |
2895 | } | 2883 | } |
@@ -3349,7 +3337,7 @@ void LLFolderView::openSelectedItems( void ) | |||
3349 | { | 3337 | { |
3350 | if (mSelectedItems.size() == 1) | 3338 | if (mSelectedItems.size() == 1) |
3351 | { | 3339 | { |
3352 | mSelectedItems.front()->open(); /* Flawfinder: ignore */ | 3340 | mSelectedItems.front()->openItem(); |
3353 | } | 3341 | } |
3354 | else | 3342 | else |
3355 | { | 3343 | { |
@@ -3371,7 +3359,7 @@ void LLFolderView::openSelectedItems( void ) | |||
3371 | LLFloater::setFloaterHost(multi_propertiesp); | 3359 | LLFloater::setFloaterHost(multi_propertiesp); |
3372 | else | 3360 | else |
3373 | LLFloater::setFloaterHost(multi_previewp); | 3361 | LLFloater::setFloaterHost(multi_previewp); |
3374 | (*item_it)->open(); | 3362 | (*item_it)->openItem(); |
3375 | } | 3363 | } |
3376 | 3364 | ||
3377 | LLFloater::setFloaterHost(NULL); | 3365 | LLFloater::setFloaterHost(NULL); |
@@ -4358,7 +4346,7 @@ bool LLInventorySort::updateSort(U32 order) | |||
4358 | return false; | 4346 | return false; |
4359 | } | 4347 | } |
4360 | 4348 | ||
4361 | bool LLInventorySort::operator()(LLFolderViewItem* a, LLFolderViewItem* b) | 4349 | bool LLInventorySort::operator()(const LLFolderViewItem* const& a, const LLFolderViewItem* const& b) |
4362 | { | 4350 | { |
4363 | // We sort by name if we aren't sorting by date | 4351 | // We sort by name if we aren't sorting by date |
4364 | // OR if these are folders and we are sorting folders by name. | 4352 | // OR if these are folders and we are sorting folders by name. |
diff --git a/linden/indra/newview/llfolderview.h b/linden/indra/newview/llfolderview.h index bbf4b1d..3858388 100644 --- a/linden/indra/newview/llfolderview.h +++ b/linden/indra/newview/llfolderview.h | |||
@@ -295,7 +295,7 @@ public: | |||
295 | bool updateSort(U32 order); | 295 | bool updateSort(U32 order); |
296 | U32 getSort() { return mSortOrder; } | 296 | U32 getSort() { return mSortOrder; } |
297 | 297 | ||
298 | bool operator()(LLFolderViewItem* a, LLFolderViewItem* b); | 298 | bool operator()(const LLFolderViewItem* const& a, const LLFolderViewItem* const& b); |
299 | private: | 299 | private: |
300 | U32 mSortOrder; | 300 | U32 mSortOrder; |
301 | bool mByDate; | 301 | bool mByDate; |
@@ -361,7 +361,7 @@ protected: | |||
361 | // the specified selected item appropriately for display and use | 361 | // the specified selected item appropriately for display and use |
362 | // in the UI. If open is TRUE, then folders are opened up along | 362 | // in the UI. If open is TRUE, then folders are opened up along |
363 | // the way to the selection. | 363 | // the way to the selection. |
364 | void setSelectionFromRoot(LLFolderViewItem* selection, BOOL open, /* Flawfinder: ignore */ | 364 | void setSelectionFromRoot(LLFolderViewItem* selection, BOOL openitem, |
365 | BOOL take_keyboard_focus = TRUE); | 365 | BOOL take_keyboard_focus = TRUE); |
366 | 366 | ||
367 | // helper function to change the selection from the root. | 367 | // helper function to change the selection from the root. |
@@ -390,7 +390,7 @@ public: | |||
390 | enum { ARRANGE = TRUE, DO_NOT_ARRANGE = FALSE }; | 390 | enum { ARRANGE = TRUE, DO_NOT_ARRANGE = FALSE }; |
391 | virtual BOOL addToFolder(LLFolderViewFolder* folder, LLFolderView* root); | 391 | virtual BOOL addToFolder(LLFolderViewFolder* folder, LLFolderView* root); |
392 | 392 | ||
393 | virtual EInventorySortGroup getSortGroup(); | 393 | virtual EInventorySortGroup getSortGroup() const; |
394 | 394 | ||
395 | // Finds width and height of this object and it's children. Also | 395 | // Finds width and height of this object and it's children. Also |
396 | // makes sure that this view and it's children are the right size. | 396 | // makes sure that this view and it's children are the right size. |
@@ -409,7 +409,7 @@ public: | |||
409 | // ignore. Returns TRUE if this object was affected. If open is | 409 | // ignore. Returns TRUE if this object was affected. If open is |
410 | // TRUE, then folders are opened up along the way to the | 410 | // TRUE, then folders are opened up along the way to the |
411 | // selection. | 411 | // selection. |
412 | virtual BOOL setSelection(LLFolderViewItem* selection, BOOL open, /* Flawfinder: ignore */ | 412 | virtual BOOL setSelection(LLFolderViewItem* selection, BOOL openitem, |
413 | BOOL take_keyboard_focus); | 413 | BOOL take_keyboard_focus); |
414 | 414 | ||
415 | // This method is used to toggle the selection of an item. If | 415 | // This method is used to toggle the selection of an item. If |
@@ -479,7 +479,7 @@ public: | |||
479 | void rename(const LLString& new_name); | 479 | void rename(const LLString& new_name); |
480 | 480 | ||
481 | // open | 481 | // open |
482 | virtual void open( void ); /* Flawfinder: ignore */ | 482 | virtual void openItem( void ); |
483 | virtual void preview(void); | 483 | virtual void preview(void); |
484 | 484 | ||
485 | // Show children (unfortunate that this is called "open") | 485 | // Show children (unfortunate that this is called "open") |
@@ -544,8 +544,8 @@ public: | |||
544 | } ETrash; | 544 | } ETrash; |
545 | 545 | ||
546 | protected: | 546 | protected: |
547 | typedef std::vector<LLFolderViewItem*> items_t; | 547 | typedef std::list<LLFolderViewItem*> items_t; |
548 | typedef std::vector<LLFolderViewFolder*> folders_t; | 548 | typedef std::list<LLFolderViewFolder*> folders_t; |
549 | items_t mItems; | 549 | items_t mItems; |
550 | folders_t mFolders; | 550 | folders_t mFolders; |
551 | LLInventorySort mSortFunction; | 551 | LLInventorySort mSortFunction; |
@@ -556,7 +556,7 @@ protected: | |||
556 | F32 mTargetHeight; | 556 | F32 mTargetHeight; |
557 | F32 mAutoOpenCountdown; | 557 | F32 mAutoOpenCountdown; |
558 | U32 mSubtreeCreationDate; | 558 | U32 mSubtreeCreationDate; |
559 | ETrash mAmTrash; | 559 | mutable ETrash mAmTrash; |
560 | S32 mLastArrangeGeneration; | 560 | S32 mLastArrangeGeneration; |
561 | S32 mLastCalculatedWidth; | 561 | S32 mLastCalculatedWidth; |
562 | S32 mCompletedFilterGeneration; | 562 | S32 mCompletedFilterGeneration; |
@@ -590,7 +590,7 @@ public: | |||
590 | BOOL needsArrange(); | 590 | BOOL needsArrange(); |
591 | 591 | ||
592 | // Returns the sort group (system, trash, folder) for this folder. | 592 | // Returns the sort group (system, trash, folder) for this folder. |
593 | virtual EInventorySortGroup getSortGroup(); | 593 | virtual EInventorySortGroup getSortGroup() const; |
594 | 594 | ||
595 | virtual void setCompletedFilterGeneration(S32 generation, BOOL recurse_up); | 595 | virtual void setCompletedFilterGeneration(S32 generation, BOOL recurse_up); |
596 | virtual S32 getCompletedFilterGeneration() { return mCompletedFilterGeneration; } | 596 | virtual S32 getCompletedFilterGeneration() { return mCompletedFilterGeneration; } |
@@ -606,8 +606,8 @@ public: | |||
606 | // Passes selection information on to children and record | 606 | // Passes selection information on to children and record |
607 | // selection information if necessary. Returns TRUE if this object | 607 | // selection information if necessary. Returns TRUE if this object |
608 | // (or a child) was affected. | 608 | // (or a child) was affected. |
609 | virtual BOOL setSelection(LLFolderViewItem* selection, BOOL open, /* Flawfinder: ignore */ | 609 | virtual BOOL setSelection(LLFolderViewItem* selection, BOOL openitem, |
610 | BOOL take_keyboard_focus); | 610 | BOOL take_keyboard_focus); |
611 | 611 | ||
612 | // This method is used to change the selection of an item. If | 612 | // This method is used to change the selection of an item. If |
613 | // selection is 'this', then note selection as true. Returns TRUE | 613 | // selection is 'this', then note selection as true. Returns TRUE |
@@ -660,7 +660,7 @@ public: | |||
660 | virtual void toggleOpen(); | 660 | virtual void toggleOpen(); |
661 | 661 | ||
662 | // Force a folder open or closed | 662 | // Force a folder open or closed |
663 | virtual void setOpen(BOOL open = TRUE); /* Flawfinder: ignore */ | 663 | virtual void setOpen(BOOL openitem = TRUE); |
664 | 664 | ||
665 | // Called when a child is refreshed. | 665 | // Called when a child is refreshed. |
666 | // don't rearrange child folder contents unless explicitly requested | 666 | // don't rearrange child folder contents unless explicitly requested |
@@ -670,7 +670,7 @@ public: | |||
670 | // method was written because the list iterators destroy the state | 670 | // method was written because the list iterators destroy the state |
671 | // of other iterations, thus, we can't arrange while iterating | 671 | // of other iterations, thus, we can't arrange while iterating |
672 | // through the children (such as when setting which is selected. | 672 | // through the children (such as when setting which is selected. |
673 | virtual void setOpenArrangeRecursively(BOOL open, ERecurseType recurse = RECURSE_NO); /* Flawfinder: ignore */ | 673 | virtual void setOpenArrangeRecursively(BOOL openitem, ERecurseType recurse = RECURSE_NO); |
674 | 674 | ||
675 | // Get the current state of the folder. | 675 | // Get the current state of the folder. |
676 | virtual BOOL isOpen() { return mIsOpen; } | 676 | virtual BOOL isOpen() { return mIsOpen; } |
@@ -686,7 +686,7 @@ public: | |||
686 | void applyFunctorRecursively(LLFolderViewFunctor& functor); | 686 | void applyFunctorRecursively(LLFolderViewFunctor& functor); |
687 | virtual void applyListenerFunctorRecursively(LLFolderViewListenerFunctor& functor); | 687 | virtual void applyListenerFunctorRecursively(LLFolderViewListenerFunctor& functor); |
688 | 688 | ||
689 | virtual void open( void ); /* Flawfinder: ignore */ | 689 | virtual void openItem( void ); |
690 | virtual BOOL addItem(LLFolderViewItem* item); | 690 | virtual BOOL addItem(LLFolderViewItem* item); |
691 | virtual BOOL addFolder( LLFolderViewFolder* folder); | 691 | virtual BOOL addFolder( LLFolderViewFolder* folder); |
692 | 692 | ||
@@ -703,7 +703,7 @@ public: | |||
703 | virtual void draw(); | 703 | virtual void draw(); |
704 | 704 | ||
705 | U32 getCreationDate() const; | 705 | U32 getCreationDate() const; |
706 | bool isTrash(); | 706 | bool isTrash() const; |
707 | }; | 707 | }; |
708 | 708 | ||
709 | 709 | ||
@@ -752,7 +752,7 @@ public: | |||
752 | void openFolder(const LLString& foldername); | 752 | void openFolder(const LLString& foldername); |
753 | 753 | ||
754 | virtual void toggleOpen() {}; | 754 | virtual void toggleOpen() {}; |
755 | virtual void setOpenArrangeRecursively(BOOL open, ERecurseType recurse); /* Flawfinder: ignore */ | 755 | virtual void setOpenArrangeRecursively(BOOL openitem, ERecurseType recurse); |
756 | virtual BOOL addFolder( LLFolderViewFolder* folder); | 756 | virtual BOOL addFolder( LLFolderViewFolder* folder); |
757 | 757 | ||
758 | // Finds width and height of this object and it's children. Also | 758 | // Finds width and height of this object and it's children. Also |
@@ -769,7 +769,7 @@ public: | |||
769 | virtual LLFolderViewItem* getCurSelectedItem( void ); | 769 | virtual LLFolderViewItem* getCurSelectedItem( void ); |
770 | 770 | ||
771 | // Record the selected item and pass it down the hierachy. | 771 | // Record the selected item and pass it down the hierachy. |
772 | virtual BOOL setSelection(LLFolderViewItem* selection, BOOL open, /* Flawfinder: ignore */ | 772 | virtual BOOL setSelection(LLFolderViewItem* selection, BOOL openitem, |
773 | BOOL take_keyboard_focus); | 773 | BOOL take_keyboard_focus); |
774 | 774 | ||
775 | // This method is used to toggle the selection of an item. Walks | 775 | // This method is used to toggle the selection of an item. Walks |
diff --git a/linden/indra/newview/llgroupnotify.cpp b/linden/indra/newview/llgroupnotify.cpp index d760e8b..bef8eb5 100644 --- a/linden/indra/newview/llgroupnotify.cpp +++ b/linden/indra/newview/llgroupnotify.cpp | |||
@@ -414,7 +414,14 @@ void LLGroupNotifyBox::moveToBack() | |||
414 | if (sGroupNotifyBoxCount > 1) | 414 | if (sGroupNotifyBoxCount > 1) |
415 | { | 415 | { |
416 | LLView* view = gNotifyBoxView->getFirstChild(); | 416 | LLView* view = gNotifyBoxView->getFirstChild(); |
417 | |||
418 | llassert_always(view) ; | ||
419 | llassert_always(view->getName() == "groupnotify"); | ||
420 | |||
417 | LLGroupNotifyBox* front = (LLGroupNotifyBox*)view; | 421 | LLGroupNotifyBox* front = (LLGroupNotifyBox*)view; |
422 | |||
423 | llassert_always(front->mNextBtn) ; | ||
424 | |||
418 | front->mNextBtn->setVisible(TRUE); | 425 | front->mNextBtn->setVisible(TRUE); |
419 | } | 426 | } |
420 | } | 427 | } |
diff --git a/linden/indra/newview/llimpanel.cpp b/linden/indra/newview/llimpanel.cpp index 2e3682d..d354dbb 100644 --- a/linden/indra/newview/llimpanel.cpp +++ b/linden/indra/newview/llimpanel.cpp | |||
@@ -1488,14 +1488,15 @@ void LLFloaterIMPanel::addHistoryLine(const std::string &utf8msg, const LLColor4 | |||
1488 | // Don't hotlink any messages from the system (e.g. "Second Life:"), so just add those in plain text. | 1488 | // Don't hotlink any messages from the system (e.g. "Second Life:"), so just add those in plain text. |
1489 | if (!strcmp(name,SYSTEM_FROM)) | 1489 | if (!strcmp(name,SYSTEM_FROM)) |
1490 | { | 1490 | { |
1491 | mHistoryEditor->appendColoredText(name,false,false,color); | 1491 | mHistoryEditor->appendColoredText(name,false,prepend_newline,color); |
1492 | } | 1492 | } |
1493 | else | 1493 | else |
1494 | { | 1494 | { |
1495 | // Convert the name to a hotlink and add to message. | 1495 | // Convert the name to a hotlink and add to message. |
1496 | const LLStyleSP &source_style = LLStyleMap::instance().lookup(source); | 1496 | const LLStyleSP &source_style = LLStyleMap::instance().lookup(source); |
1497 | mHistoryEditor->appendStyledText(name, false, false, &source_style); | 1497 | mHistoryEditor->appendStyledText(name,false,prepend_newline,&source_style); |
1498 | } | 1498 | } |
1499 | prepend_newline = false; | ||
1499 | } | 1500 | } |
1500 | mHistoryEditor->appendColoredText(utf8msg, false, prepend_newline, color); | 1501 | mHistoryEditor->appendColoredText(utf8msg, false, prepend_newline, color); |
1501 | 1502 | ||
diff --git a/linden/indra/newview/llpaneldirfind.cpp b/linden/indra/newview/llpaneldirfind.cpp index 9bf71d9..92964ba 100644 --- a/linden/indra/newview/llpaneldirfind.cpp +++ b/linden/indra/newview/llpaneldirfind.cpp | |||
@@ -236,12 +236,20 @@ std::string LLPanelDirFind::buildSearchURL(const std::string& search_text, const | |||
236 | 236 | ||
237 | url = gSavedSettings.getString("SearchURLQuery"); | 237 | url = gSavedSettings.getString("SearchURLQuery"); |
238 | std::string substring = "[QUERY]"; | 238 | std::string substring = "[QUERY]"; |
239 | url.replace(url.find(substring), substring.length(), query); | 239 | std::string::size_type where = url.find(substring); |
240 | if (where != std::string::npos) | ||
241 | { | ||
242 | url.replace(where, substring.length(), query); | ||
243 | } | ||
240 | 244 | ||
241 | // replace the collection name with the one selected from the combo box | 245 | // replace the collection name with the one selected from the combo box |
242 | // std::string selected_collection = childGetValue( "Category" ).asString(); | 246 | // std::string selected_collection = childGetValue( "Category" ).asString(); |
243 | substring = "[COLLECTION]"; | 247 | substring = "[COLLECTION]"; |
244 | url.replace(url.find(substring), substring.length(), collection); | 248 | where = url.find(substring); |
249 | if (where != std::string::npos) | ||
250 | { | ||
251 | url.replace(where, substring.length(), collection); | ||
252 | } | ||
245 | 253 | ||
246 | llinfos << "url " << url << llendl; | 254 | llinfos << "url " << url << llendl; |
247 | } | 255 | } |
diff --git a/linden/indra/newview/llpaneldirplaces.cpp b/linden/indra/newview/llpaneldirplaces.cpp index 3980fb4..b75218b 100644 --- a/linden/indra/newview/llpaneldirplaces.cpp +++ b/linden/indra/newview/llpaneldirplaces.cpp | |||
@@ -33,37 +33,173 @@ | |||
33 | 33 | ||
34 | #include "llpaneldirplaces.h" | 34 | #include "llpaneldirplaces.h" |
35 | 35 | ||
36 | #include "llwebbrowserctrl.h" | 36 | // linden library includes |
37 | //#include "llfontgl.h" | ||
38 | #include "message.h" | ||
39 | //#include "lldir.h" | ||
40 | #include "llparcel.h" // parcel categories | ||
41 | //#include "llregionflags.h" | ||
42 | #include "llqueryflags.h" | ||
43 | |||
44 | // viewer project includes | ||
45 | #include "llagent.h" // getID(), isTeen() | ||
46 | //#include "llbutton.h" | ||
47 | //#include "llcheckboxctrl.h" | ||
48 | //#include "llcombobox.h" | ||
49 | //#include "llfloaterdirectory.h" | ||
50 | //#include "lllineeditor.h" | ||
51 | #include "llviewerwindow.h" // alertXml() | ||
52 | #include "llpaneldirbrowser.h" | ||
53 | //#include "lltextbox.h" | ||
54 | //#include "lluiconstants.h" | ||
55 | #include "llviewercontrol.h" // gSavedSettings | ||
56 | #include "llviewermessage.h" | ||
57 | //#include "llworldmap.h" | ||
37 | 58 | ||
38 | LLPanelDirPlaces::LLPanelDirPlaces(const std::string& name, LLFloaterDirectory* floater) | 59 | LLPanelDirPlaces::LLPanelDirPlaces(const std::string& name, LLFloaterDirectory* floater) |
39 | : LLPanelDirFind(name, floater, "places_browser") | 60 | : LLPanelDirBrowser(name, floater) |
61 | { | ||
62 | // MBW -- HACK!!! | ||
63 | // This looks like some sort of compiler bug. We have a mysterious crash during initialization on powerpc boxes. | ||
64 | // The crash seems unrelated to this code, but the commit that introduced it was narrowed down to this file. | ||
65 | // Adding llinfos calls to both the constructor and destructor here makes the crash go away, even though they don't get called before the point of the crash. | ||
66 | // This is wrong on many levels and scares the hell out of me. | ||
67 | llinfos << "called" << llendl; | ||
68 | mMinSearchChars = 3; | ||
69 | } | ||
70 | |||
71 | BOOL LLPanelDirPlaces::postBuild() | ||
72 | { | ||
73 | LLPanelDirBrowser::postBuild(); | ||
74 | |||
75 | childSetKeystrokeCallback("name", &LLPanelDirBrowser::onKeystrokeName, this); | ||
76 | |||
77 | childSetAction("Search", &LLPanelDirBrowser::onClickSearchCore, this); | ||
78 | childDisable("Search"); | ||
79 | |||
80 | mCurrentSortColumn = "dwell"; | ||
81 | mCurrentSortAscending = FALSE; | ||
82 | |||
83 | // Don't prepopulate the places list, as it hurts the database as of 2006-12-04. JC | ||
84 | // initialQuery(); | ||
85 | |||
86 | return TRUE; | ||
87 | } | ||
88 | |||
89 | LLPanelDirPlaces::~LLPanelDirPlaces() | ||
40 | { | 90 | { |
91 | // MBW -- HACK!!! | ||
92 | // This looks like some sort of compiler bug. We have a mysterious crash during initialization on powerpc boxes. | ||
93 | // The crash seems unrelated to this code, but the commit that introduced it was narrowed down to this file. | ||
94 | // Adding llinfos calls to both the constructor and destructor here makes the crash go away, even though they don't get called before the point of the crash. | ||
95 | // This is wrong on many levels and scares the hell out of me. | ||
96 | llinfos << "called" << llendl; | ||
97 | // Children all cleaned up by default view destructor. | ||
41 | } | 98 | } |
42 | 99 | ||
43 | 100 | ||
44 | void LLPanelDirPlaces::search(const std::string& search_text) | 101 | // virtual |
102 | void LLPanelDirPlaces::draw() | ||
103 | { | ||
104 | // You only have a choice if you are mature | ||
105 | childSetVisible("incmature", !gAgent.isTeen()); | ||
106 | childSetValue("incmature", gSavedSettings.getBOOL("ShowMatureSims")); | ||
107 | |||
108 | LLPanelDirBrowser::draw(); | ||
109 | } | ||
110 | |||
111 | // virtual | ||
112 | void LLPanelDirPlaces::performQuery() | ||
45 | { | 113 | { |
46 | if (!search_text.empty()) | 114 | LLString place_name = childGetValue("name").asString(); |
115 | if (place_name.length() < mMinSearchChars) | ||
47 | { | 116 | { |
48 | bool mature = childGetValue( "mature_check" ).asBoolean(); | 117 | return; |
49 | std::string selected_collection = "Places"; | 118 | } |
50 | std::string url = buildSearchURL(search_text, selected_collection, mature); | 119 | |
51 | if (mWebBrowser) | 120 | // "hi " is three chars but not a long-enough search |
52 | { | 121 | std::string query_string = place_name; |
53 | mWebBrowser->navigateTo(url); | 122 | LLString::trim( query_string ); |
54 | } | 123 | bool query_was_filtered = (query_string != place_name); |
124 | |||
125 | // possible we threw away all the short words in the query so check length | ||
126 | if ( query_string.length() < mMinSearchChars ) | ||
127 | { | ||
128 | gViewerWindow->alertXml("SeachFilteredOnShortWordsEmpty"); | ||
129 | return; | ||
130 | }; | ||
131 | |||
132 | // if we filtered something out, display a popup | ||
133 | if ( query_was_filtered ) | ||
134 | { | ||
135 | LLString::format_map_t args; | ||
136 | args["[FINALQUERY]"] = query_string; | ||
137 | gViewerWindow->alertXml("SeachFilteredOnShortWords", args); | ||
138 | }; | ||
139 | |||
140 | LLString catstring = childGetValue("Category").asString(); | ||
141 | |||
142 | // Because LLParcel::C_ANY is -1, must do special check | ||
143 | S32 category = 0; | ||
144 | if (catstring == "any") | ||
145 | { | ||
146 | category = LLParcel::C_ANY; | ||
55 | } | 147 | } |
56 | else | 148 | else |
57 | { | 149 | { |
58 | // empty search text | 150 | category = LLParcel::getCategoryFromString(catstring.c_str()); |
59 | navigateToDefaultPage(); | ||
60 | } | 151 | } |
61 | 152 | ||
62 | childSetText("search_editor", search_text); | 153 | BOOL pg_only = !gSavedSettings.getBOOL("ShowMatureSims") |
154 | || gAgent.isTeen(); | ||
155 | |||
156 | queryCore(query_string, category, pg_only); | ||
63 | } | 157 | } |
64 | 158 | ||
65 | LLPanelDirPlaces::~LLPanelDirPlaces() | 159 | void LLPanelDirPlaces::initialQuery() |
66 | { | 160 | { |
67 | // Children all cleaned up by default view destructor. | 161 | // All Linden locations in PG/Mature sims, any name. |
162 | const BOOL pg_only = FALSE; | ||
163 | queryCore("", LLParcel::C_LINDEN, pg_only); | ||
164 | } | ||
165 | |||
166 | void LLPanelDirPlaces::queryCore(const LLString& name, | ||
167 | S32 category, | ||
168 | BOOL pg_only) | ||
169 | { | ||
170 | setupNewSearch(); | ||
171 | |||
172 | // send the message | ||
173 | U32 flags = 0x0; | ||
174 | |||
175 | if (pg_only) | ||
176 | { | ||
177 | flags |= DFQ_PG_PARCELS_ONLY; | ||
178 | } | ||
179 | |||
180 | // JC: Sorting by dwell severely impacts the performance of the query. | ||
181 | // Instead of sorting on the dataserver, we sort locally once the results | ||
182 | // are received. | ||
183 | // IW: Re-enabled dwell sort based on new 3-character minimum description | ||
184 | // Hopefully we'll move to next-gen Find before this becomes a big problem | ||
185 | |||
186 | flags |= DFQ_DWELL_SORT; | ||
187 | |||
188 | LLMessageSystem* msg = gMessageSystem; | ||
189 | |||
190 | msg->newMessage("DirPlacesQuery"); | ||
191 | msg->nextBlock("AgentData"); | ||
192 | msg->addUUID("AgentID", gAgent.getID()); | ||
193 | msg->addUUID("SessionID", gAgent.getSessionID()); | ||
194 | msg->nextBlock("QueryData"); | ||
195 | msg->addUUID("QueryID", getSearchID()); | ||
196 | msg->addString("QueryText", name); | ||
197 | msg->addU32("QueryFlags", flags); | ||
198 | msg->addS8("Category", (S8)category); | ||
199 | // No longer support queries by region name, too many regions | ||
200 | // for combobox, no easy way to do autocomplete. JC | ||
201 | msg->addString("SimName", ""); | ||
202 | msg->addS32Fast(_PREHASH_QueryStart,mSearchStart); | ||
203 | gAgent.sendReliableMessage(); | ||
68 | } | 204 | } |
69 | 205 | ||
diff --git a/linden/indra/newview/llpaneldirplaces.h b/linden/indra/newview/llpaneldirplaces.h index 4785f94..7bc2b08 100644 --- a/linden/indra/newview/llpaneldirplaces.h +++ b/linden/indra/newview/llpaneldirplaces.h | |||
@@ -32,17 +32,31 @@ | |||
32 | #ifndef LL_LLPANELDIRPLACES_H | 32 | #ifndef LL_LLPANELDIRPLACES_H |
33 | #define LL_LLPANELDIRPLACES_H | 33 | #define LL_LLPANELDIRPLACES_H |
34 | 34 | ||
35 | #include "llpaneldirfind.h" | 35 | #include "llpaneldirbrowser.h" |
36 | 36 | ||
37 | // UI class forward declarations | 37 | // UI class forward declarations |
38 | class LLLineEditor; | ||
38 | 39 | ||
39 | class LLPanelDirPlaces : public LLPanelDirFind | 40 | class LLPanelDirPlaces : public LLPanelDirBrowser |
40 | { | 41 | { |
41 | public: | 42 | public: |
42 | LLPanelDirPlaces(const std::string& name, LLFloaterDirectory* floater); | 43 | LLPanelDirPlaces(const std::string& name, LLFloaterDirectory* floater); |
43 | virtual ~LLPanelDirPlaces(); | 44 | virtual ~LLPanelDirPlaces(); |
44 | 45 | ||
45 | /*virtual*/ void search(const std::string& search_text); | 46 | /*virtual*/ void draw(); |
46 | 47 | ||
48 | virtual BOOL postBuild(); | ||
49 | |||
50 | static void onClickSearch(void *userdata); | ||
51 | static void onKeystrokeName(LLLineEditor* line, void* data); | ||
52 | |||
53 | void performQuery(); | ||
54 | |||
55 | // Initially fill in some data for the panel. | ||
56 | void initialQuery(); | ||
57 | |||
58 | private: | ||
59 | void queryCore(const LLString& name, S32 category, BOOL pg_only); | ||
47 | }; | 60 | }; |
61 | |||
48 | #endif | 62 | #endif |
diff --git a/linden/indra/newview/llpanelgeneral.cpp b/linden/indra/newview/llpanelgeneral.cpp index 17fca4e..ee676b0 100644 --- a/linden/indra/newview/llpanelgeneral.cpp +++ b/linden/indra/newview/llpanelgeneral.cpp | |||
@@ -55,9 +55,7 @@ | |||
55 | #include "llui.h" | 55 | #include "llui.h" |
56 | #include "llurlsimstring.h" | 56 | #include "llurlsimstring.h" |
57 | #include "llviewercontrol.h" | 57 | #include "llviewercontrol.h" |
58 | #include "llappviewer.h" | ||
59 | #include "llurlsimstring.h" | 58 | #include "llurlsimstring.h" |
60 | #include "llappviewer.h" | ||
61 | 59 | ||
62 | #include "llcheckboxctrl.h" | 60 | #include "llcheckboxctrl.h" |
63 | #include "llradiogroup.h" | 61 | #include "llradiogroup.h" |
@@ -85,7 +83,7 @@ static void set_render_name_fade_out(LLUICtrl* ctrl, void* data) | |||
85 | 83 | ||
86 | void set_crash_behavior(LLUICtrl* ctrl, void* data) | 84 | void set_crash_behavior(LLUICtrl* ctrl, void* data) |
87 | { | 85 | { |
88 | LLAppViewer::instance()->setCrashBehavior(((LLComboBox*) ctrl)->getCurrentIndex()); | 86 | gCrashSettings.setS32(CRASH_BEHAVIOR_SETTING, ((LLComboBox*) ctrl)->getCurrentIndex()); |
89 | } | 87 | } |
90 | 88 | ||
91 | void set_language(LLUICtrl* ctrl, void* data) | 89 | void set_language(LLUICtrl* ctrl, void* data) |
@@ -145,7 +143,7 @@ BOOL LLPanelGeneral::postBuild() | |||
145 | combo = getChild<LLComboBox>( "crash_behavior_combobox"); | 143 | combo = getChild<LLComboBox>( "crash_behavior_combobox"); |
146 | if (combo) | 144 | if (combo) |
147 | { | 145 | { |
148 | combo->setCurrentByIndex( LLAppViewer::instance()->getCrashBehavior() ); | 146 | combo->setCurrentByIndex( gCrashSettings.getS32(CRASH_BEHAVIOR_SETTING) ); |
149 | combo->setCommitCallback( &set_crash_behavior ); | 147 | combo->setCommitCallback( &set_crash_behavior ); |
150 | } | 148 | } |
151 | 149 | ||
@@ -181,11 +179,11 @@ void LLPanelGeneral::refresh() | |||
181 | mLoginLocation = combo->getValue().asString(); | 179 | mLoginLocation = combo->getValue().asString(); |
182 | } | 180 | } |
183 | 181 | ||
184 | mCrashBehavior = LLAppViewer::instance()->getCrashBehavior(); | 182 | mOldCrashBehavior = gCrashSettings.getS32(CRASH_BEHAVIOR_SETTING); |
185 | combo = getChild<LLComboBox>( "crash_behavior_combobox"); | 183 | combo = getChild<LLComboBox>( "crash_behavior_combobox"); |
186 | if (combo) | 184 | if (combo) |
187 | { | 185 | { |
188 | combo->setCurrentByIndex( LLAppViewer::instance()->getCrashBehavior() ); | 186 | combo->setCurrentByIndex( mOldCrashBehavior ); |
189 | } | 187 | } |
190 | 188 | ||
191 | mRenderName = gSavedSettings.getS32("RenderName"); | 189 | mRenderName = gSavedSettings.getS32("RenderName"); |
@@ -235,7 +233,7 @@ void LLPanelGeneral::cancel() | |||
235 | 233 | ||
236 | LLURLSimString::setString(mLoginLocation); | 234 | LLURLSimString::setString(mLoginLocation); |
237 | 235 | ||
238 | LLAppViewer::instance()->setCrashBehavior(mCrashBehavior); | 236 | gCrashSettings.setS32(CRASH_BEHAVIOR_SETTING, mOldCrashBehavior); |
239 | } | 237 | } |
240 | 238 | ||
241 | void LLPanelGeneral::clickShowStartLocation(LLUICtrl*, void* user_data) | 239 | void LLPanelGeneral::clickShowStartLocation(LLUICtrl*, void* user_data) |
diff --git a/linden/indra/newview/llpanelgeneral.h b/linden/indra/newview/llpanelgeneral.h index d84aa20..df9e10e 100644 --- a/linden/indra/newview/llpanelgeneral.h +++ b/linden/indra/newview/llpanelgeneral.h | |||
@@ -71,7 +71,7 @@ protected: | |||
71 | F32 mUIScaleFactor; | 71 | F32 mUIScaleFactor; |
72 | BOOL mUIAutoScale; | 72 | BOOL mUIAutoScale; |
73 | BOOL mMiniMapRotate; | 73 | BOOL mMiniMapRotate; |
74 | S32 mCrashBehavior; | 74 | S32 mOldCrashBehavior; |
75 | LLString mLoginLocation; | 75 | LLString mLoginLocation; |
76 | LLString mLanguage; | 76 | LLString mLanguage; |
77 | }; | 77 | }; |
diff --git a/linden/indra/newview/llpanellogin.cpp b/linden/indra/newview/llpanellogin.cpp index 334e9f4..d8da3c0 100644 --- a/linden/indra/newview/llpanellogin.cpp +++ b/linden/indra/newview/llpanellogin.cpp | |||
@@ -290,7 +290,15 @@ class LLIamHereLogin : public LLHTTPClient::Responder | |||
290 | { | 290 | { |
291 | mParent = parentIn; | 291 | mParent = parentIn; |
292 | }; | 292 | }; |
293 | 293 | ||
294 | // We don't actually expect LLSD back, so need to override completedRaw | ||
295 | virtual void completedRaw(U32 status, const std::string& reason, | ||
296 | const LLChannelDescriptors& channels, | ||
297 | const LLIOPipe::buffer_ptr_t& buffer) | ||
298 | { | ||
299 | completed(status, reason, LLSD()); // will call result() or error() | ||
300 | } | ||
301 | |||
294 | virtual void result( const LLSD& content ) | 302 | virtual void result( const LLSD& content ) |
295 | { | 303 | { |
296 | if ( mParent ) | 304 | if ( mParent ) |
@@ -939,10 +947,13 @@ void LLPanelLogin::loadLoginPage() | |||
939 | 947 | ||
940 | gViewerWindow->setMenuBackgroundColor(false, !LLViewerLogin::getInstance()->isInProductionGrid()); | 948 | gViewerWindow->setMenuBackgroundColor(false, !LLViewerLogin::getInstance()->isInProductionGrid()); |
941 | gLoginMenuBarView->setBackgroundColor(gMenuBarView->getBackgroundColor()); | 949 | gLoginMenuBarView->setBackgroundColor(gMenuBarView->getBackgroundColor()); |
942 | 950 | ||
943 | char* curl_grid = curl_escape(grid.c_str(), 0); | 951 | if (!grid.empty()) |
944 | oStr << "&grid=" << curl_grid; | 952 | { |
945 | curl_free(curl_grid); | 953 | char* curl_grid = curl_escape(grid.c_str(), 0); |
954 | oStr << "&grid=" << curl_grid; | ||
955 | curl_free(curl_grid); | ||
956 | } | ||
946 | 957 | ||
947 | #if USE_VIEWER_AUTH | 958 | #if USE_VIEWER_AUTH |
948 | LLURLSimString::sInstance.parse(); | 959 | LLURLSimString::sInstance.parse(); |
diff --git a/linden/indra/newview/llselectmgr.cpp b/linden/indra/newview/llselectmgr.cpp index 4488a46..1aad3e2 100644 --- a/linden/indra/newview/llselectmgr.cpp +++ b/linden/indra/newview/llselectmgr.cpp | |||
@@ -4824,11 +4824,21 @@ void LLSelectMgr::renderSilhouettes(BOOL for_hud) | |||
4824 | if (mSelectedObjects->getNumNodes()) | 4824 | if (mSelectedObjects->getNumNodes()) |
4825 | { | 4825 | { |
4826 | LLUUID inspect_item_id = LLFloaterInspect::getSelectedUUID(); | 4826 | LLUUID inspect_item_id = LLFloaterInspect::getSelectedUUID(); |
4827 | |||
4827 | for (S32 pass = 0; pass < 2; pass++) | 4828 | for (S32 pass = 0; pass < 2; pass++) |
4828 | { | 4829 | { |
4830 | LLObjectSelection::iterator end_ = mSelectedObjects->end(); | ||
4831 | S32 num_nodes = mSelectedObjects->getNumNodes() ; | ||
4832 | LLObjectSelection::iterator prev_iter = mSelectedObjects->end(); | ||
4829 | for (LLObjectSelection::iterator iter = mSelectedObjects->begin(); | 4833 | for (LLObjectSelection::iterator iter = mSelectedObjects->begin(); |
4830 | iter != mSelectedObjects->end(); iter++) | 4834 | iter != mSelectedObjects->end(); iter++) |
4831 | { | 4835 | { |
4836 | llassert_always(end_ == mSelectedObjects->end()) ;//mSelectedObjects should not grow | ||
4837 | llassert_always(prev_iter != iter) ; //iter should move | ||
4838 | llassert_always(num_nodes > 0) ; //iter should not circle inside mSelectedObjects. | ||
4839 | num_nodes-- ; | ||
4840 | prev_iter = iter ; | ||
4841 | |||
4832 | LLSelectNode* node = *iter; | 4842 | LLSelectNode* node = *iter; |
4833 | LLViewerObject* objectp = node->getObject(); | 4843 | LLViewerObject* objectp = node->getObject(); |
4834 | if (!objectp) | 4844 | if (!objectp) |
diff --git a/linden/indra/newview/llspatialpartition.cpp b/linden/indra/newview/llspatialpartition.cpp index 520501e..250575c 100644 --- a/linden/indra/newview/llspatialpartition.cpp +++ b/linden/indra/newview/llspatialpartition.cpp | |||
@@ -60,6 +60,7 @@ const F32 SG_OCCLUSION_FUDGE = 1.01f; | |||
60 | 60 | ||
61 | static U32 sZombieGroups = 0; | 61 | static U32 sZombieGroups = 0; |
62 | U32 LLSpatialGroup::sNodeCount = 0; | 62 | U32 LLSpatialGroup::sNodeCount = 0; |
63 | BOOL LLSpatialGroup::sNoDelete = FALSE; | ||
63 | 64 | ||
64 | static F32 sLastMaxTexPriority = 1.f; | 65 | static F32 sLastMaxTexPriority = 1.f; |
65 | static F32 sCurMaxTexPriority = 1.f; | 66 | static F32 sCurMaxTexPriority = 1.f; |
@@ -295,6 +296,11 @@ S32 LLSphereAABB(const LLVector3& center, const LLVector3& size, const LLVector3 | |||
295 | 296 | ||
296 | LLSpatialGroup::~LLSpatialGroup() | 297 | LLSpatialGroup::~LLSpatialGroup() |
297 | { | 298 | { |
299 | if (sNoDelete) | ||
300 | { | ||
301 | llerrs << "Illegal deletion of LLSpatialGroup!" << llendl; | ||
302 | } | ||
303 | |||
298 | if (isState(DEAD)) | 304 | if (isState(DEAD)) |
299 | { | 305 | { |
300 | sZombieGroups--; | 306 | sZombieGroups--; |
@@ -2619,7 +2625,10 @@ LLDrawInfo::LLDrawInfo(U16 start, U16 end, U32 count, U32 offset, | |||
2619 | 2625 | ||
2620 | LLDrawInfo::~LLDrawInfo() | 2626 | LLDrawInfo::~LLDrawInfo() |
2621 | { | 2627 | { |
2622 | 2628 | if (LLSpatialGroup::sNoDelete) | |
2629 | { | ||
2630 | llerrs << "LLDrawInfo deleted illegally!" << llendl; | ||
2631 | } | ||
2623 | } | 2632 | } |
2624 | 2633 | ||
2625 | LLVertexBuffer* LLGeometryManager::createVertexBuffer(U32 type_mask, U32 usage) | 2634 | LLVertexBuffer* LLGeometryManager::createVertexBuffer(U32 type_mask, U32 usage) |
@@ -2813,7 +2822,16 @@ void LLCullResult::pushDrawInfo(U32 type, LLDrawInfo* draw_info) | |||
2813 | } | 2822 | } |
2814 | 2823 | ||
2815 | 2824 | ||
2816 | 2825 | void LLCullResult::assertDrawMapsEmpty() | |
2826 | { | ||
2827 | for (U32 i = 0; i < LLRenderPass::NUM_RENDER_TYPES; i++) | ||
2828 | { | ||
2829 | if (mRenderMapSize[i] != 0) | ||
2830 | { | ||
2831 | llerrs << "Stale LLDrawInfo's in LLCullResult!" << llendl; | ||
2832 | } | ||
2833 | } | ||
2834 | } | ||
2817 | 2835 | ||
2818 | 2836 | ||
2819 | 2837 | ||
diff --git a/linden/indra/newview/llspatialpartition.h b/linden/indra/newview/llspatialpartition.h index a38e3fe..bbd4add 100644 --- a/linden/indra/newview/llspatialpartition.h +++ b/linden/indra/newview/llspatialpartition.h | |||
@@ -127,6 +127,7 @@ class LLSpatialGroup : public LLOctreeListener<LLDrawable> | |||
127 | friend class LLSpatialPartition; | 127 | friend class LLSpatialPartition; |
128 | public: | 128 | public: |
129 | static U32 sNodeCount; | 129 | static U32 sNodeCount; |
130 | static BOOL sNoDelete; //deletion of spatial groups and draw info not allowed if TRUE | ||
130 | 131 | ||
131 | typedef std::vector<LLPointer<LLSpatialGroup> > sg_vector_t; | 132 | typedef std::vector<LLPointer<LLSpatialGroup> > sg_vector_t; |
132 | typedef std::set<LLPointer<LLSpatialGroup> > sg_set_t; | 133 | typedef std::set<LLPointer<LLSpatialGroup> > sg_set_t; |
@@ -421,7 +422,7 @@ public: | |||
421 | void pushDrawable(LLDrawable* drawable); | 422 | void pushDrawable(LLDrawable* drawable); |
422 | void pushBridge(LLSpatialBridge* bridge); | 423 | void pushBridge(LLSpatialBridge* bridge); |
423 | void pushDrawInfo(U32 type, LLDrawInfo* draw_info); | 424 | void pushDrawInfo(U32 type, LLDrawInfo* draw_info); |
424 | 425 | ||
425 | U32 getVisibleGroupsSize() { return mVisibleGroupsSize; } | 426 | U32 getVisibleGroupsSize() { return mVisibleGroupsSize; } |
426 | U32 getAlphaGroupsSize() { return mAlphaGroupsSize; } | 427 | U32 getAlphaGroupsSize() { return mAlphaGroupsSize; } |
427 | U32 getDrawableGroupsSize() { return mDrawableGroupsSize; } | 428 | U32 getDrawableGroupsSize() { return mDrawableGroupsSize; } |
@@ -429,6 +430,8 @@ public: | |||
429 | U32 getVisibleBridgeSize() { return mVisibleBridgeSize; } | 430 | U32 getVisibleBridgeSize() { return mVisibleBridgeSize; } |
430 | U32 getRenderMapSize(U32 type) { return mRenderMapSize[type]; } | 431 | U32 getRenderMapSize(U32 type) { return mRenderMapSize[type]; } |
431 | 432 | ||
433 | void assertDrawMapsEmpty(); | ||
434 | |||
432 | private: | 435 | private: |
433 | U32 mVisibleGroupsSize; | 436 | U32 mVisibleGroupsSize; |
434 | U32 mAlphaGroupsSize; | 437 | U32 mAlphaGroupsSize; |
diff --git a/linden/indra/newview/llstartup.cpp b/linden/indra/newview/llstartup.cpp index 4dca600..009cdd2 100644 --- a/linden/indra/newview/llstartup.cpp +++ b/linden/indra/newview/llstartup.cpp | |||
@@ -1278,7 +1278,6 @@ BOOL idle_startup() | |||
1278 | save_password_to_disk(NULL); | 1278 | save_password_to_disk(NULL); |
1279 | } | 1279 | } |
1280 | gSavedSettings.setBOOL("RememberPassword", remember_password); | 1280 | gSavedSettings.setBOOL("RememberPassword", remember_password); |
1281 | gSavedSettings.setBOOL("LoginLastLocation", gSavedSettings.getBOOL("LoginLastLocation")); | ||
1282 | 1281 | ||
1283 | text = LLUserAuth::getInstance()->getResponse("agent_access"); | 1282 | text = LLUserAuth::getInstance()->getResponse("agent_access"); |
1284 | if(text && (text[0] == 'M')) | 1283 | if(text && (text[0] == 'M')) |
diff --git a/linden/indra/newview/lltoolbrush.cpp b/linden/indra/newview/lltoolbrush.cpp index 9958d50..89cb0b6 100644 --- a/linden/indra/newview/lltoolbrush.cpp +++ b/linden/indra/newview/lltoolbrush.cpp | |||
@@ -94,7 +94,6 @@ LLToolBrushLand::LLToolBrushLand() | |||
94 | mMouseX( 0 ), | 94 | mMouseX( 0 ), |
95 | mMouseY(0), | 95 | mMouseY(0), |
96 | mGotHover(FALSE), | 96 | mGotHover(FALSE), |
97 | mLastShowParcelOwners(FALSE), | ||
98 | mBrushSelected(FALSE) | 97 | mBrushSelected(FALSE) |
99 | { | 98 | { |
100 | mBrushIndex = gSavedSettings.getS32("RadioLandBrushSize"); | 99 | mBrushIndex = gSavedSettings.getS32("RadioLandBrushSize"); |
@@ -104,7 +103,8 @@ void LLToolBrushLand::modifyLandAtPointGlobal(const LLVector3d &pos_global, | |||
104 | MASK mask) | 103 | MASK mask) |
105 | { | 104 | { |
106 | S32 radioAction = gSavedSettings.getS32("RadioLandBrushAction"); | 105 | S32 radioAction = gSavedSettings.getS32("RadioLandBrushAction"); |
107 | 106 | ||
107 | mLastAffectedRegions.clear(); | ||
108 | determineAffectedRegions(mLastAffectedRegions, pos_global); | 108 | determineAffectedRegions(mLastAffectedRegions, pos_global); |
109 | for(region_list_t::iterator iter = mLastAffectedRegions.begin(); | 109 | for(region_list_t::iterator iter = mLastAffectedRegions.begin(); |
110 | iter != mLastAffectedRegions.end(); ++iter) | 110 | iter != mLastAffectedRegions.end(); ++iter) |
@@ -418,8 +418,6 @@ void LLToolBrushLand::handleSelect() | |||
418 | gFloaterTools->setStatusText("modifyland"); | 418 | gFloaterTools->setStatusText("modifyland"); |
419 | // if (!mBrushSelected) | 419 | // if (!mBrushSelected) |
420 | { | 420 | { |
421 | mLastShowParcelOwners = gSavedSettings.getBOOL("ShowParcelOwners"); | ||
422 | gSavedSettings.setBOOL("ShowParcelOwners", mLastShowParcelOwners); | ||
423 | mBrushSelected = TRUE; | 421 | mBrushSelected = TRUE; |
424 | } | 422 | } |
425 | } | 423 | } |
@@ -431,8 +429,6 @@ void LLToolBrushLand::handleDeselect() | |||
431 | { | 429 | { |
432 | gEditMenuHandler = NULL; | 430 | gEditMenuHandler = NULL; |
433 | } | 431 | } |
434 | mLastShowParcelOwners = gSavedSettings.getBOOL("ShowParcelOwners"); | ||
435 | gSavedSettings.setBOOL("ShowParcelOwners", mLastShowParcelOwners); | ||
436 | LLViewerParcelMgr::getInstance()->setSelectionVisible(TRUE); | 432 | LLViewerParcelMgr::getInstance()->setSelectionVisible(TRUE); |
437 | mBrushSelected = FALSE; | 433 | mBrushSelected = FALSE; |
438 | } | 434 | } |
diff --git a/linden/indra/newview/lltoolbrush.h b/linden/indra/newview/lltoolbrush.h index b3a5576..0ba6db4 100644 --- a/linden/indra/newview/lltoolbrush.h +++ b/linden/indra/newview/lltoolbrush.h | |||
@@ -97,7 +97,6 @@ protected: | |||
97 | S32 mMouseY; | 97 | S32 mMouseY; |
98 | S32 mBrushIndex; | 98 | S32 mBrushIndex; |
99 | BOOL mGotHover; | 99 | BOOL mGotHover; |
100 | BOOL mLastShowParcelOwners; | ||
101 | BOOL mBrushSelected; | 100 | BOOL mBrushSelected; |
102 | // Order doesn't matter and we do check for existance of regions, so use a set | 101 | // Order doesn't matter and we do check for existance of regions, so use a set |
103 | region_list_t mLastAffectedRegions; | 102 | region_list_t mLastAffectedRegions; |
diff --git a/linden/indra/newview/lltoolpie.cpp b/linden/indra/newview/lltoolpie.cpp index a9e733a..6879198 100644 --- a/linden/indra/newview/lltoolpie.cpp +++ b/linden/indra/newview/lltoolpie.cpp | |||
@@ -309,6 +309,7 @@ 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 | gPieSelf->show(x, y, mPieMouseButtonDown); | 313 | gPieSelf->show(x, y, mPieMouseButtonDown); |
313 | } | 314 | } |
314 | else if (object) | 315 | else if (object) |
diff --git a/linden/indra/newview/lltoolselectland.cpp b/linden/indra/newview/lltoolselectland.cpp index 96e0de1..78c4c24 100644 --- a/linden/indra/newview/lltoolselectland.cpp +++ b/linden/indra/newview/lltoolselectland.cpp | |||
@@ -61,8 +61,7 @@ LLToolSelectLand::LLToolSelectLand( ) | |||
61 | mDragEndY(0), | 61 | mDragEndY(0), |
62 | mMouseOutsideSlop(FALSE), | 62 | mMouseOutsideSlop(FALSE), |
63 | mWestSouthBottom(), | 63 | mWestSouthBottom(), |
64 | mEastNorthTop(), | 64 | mEastNorthTop() |
65 | mLastShowParcelOwners(FALSE) | ||
66 | { } | 65 | { } |
67 | 66 | ||
68 | LLToolSelectLand::~LLToolSelectLand() | 67 | LLToolSelectLand::~LLToolSelectLand() |
@@ -216,17 +215,12 @@ void LLToolSelectLand::render() | |||
216 | void LLToolSelectLand::handleSelect() | 215 | void LLToolSelectLand::handleSelect() |
217 | { | 216 | { |
218 | gFloaterTools->setStatusText("selectland"); | 217 | gFloaterTools->setStatusText("selectland"); |
219 | mLastShowParcelOwners = gSavedSettings.getBOOL("ShowParcelOwners"); | ||
220 | gSavedSettings.setBOOL("ShowParcelOwners", mLastShowParcelOwners); | ||
221 | } | 218 | } |
222 | 219 | ||
223 | 220 | ||
224 | void LLToolSelectLand::handleDeselect() | 221 | void LLToolSelectLand::handleDeselect() |
225 | { | 222 | { |
226 | mSelection = NULL; | 223 | mSelection = NULL; |
227 | mLastShowParcelOwners = gSavedSettings.getBOOL("ShowParcelOwners"); | ||
228 | //LLViewerParcelMgr::getInstance()->deselectLand(); | ||
229 | gSavedSettings.setBOOL("ShowParcelOwners", mLastShowParcelOwners); | ||
230 | } | 224 | } |
231 | 225 | ||
232 | 226 | ||
diff --git a/linden/indra/newview/lltoolselectland.h b/linden/indra/newview/lltoolselectland.h index 1e1462b..19a86b7 100644 --- a/linden/indra/newview/lltoolselectland.h +++ b/linden/indra/newview/lltoolselectland.h | |||
@@ -74,7 +74,6 @@ protected: | |||
74 | LLVector3d mWestSouthBottom; // global coords, from drag | 74 | LLVector3d mWestSouthBottom; // global coords, from drag |
75 | LLVector3d mEastNorthTop; // global coords, from drag | 75 | LLVector3d mEastNorthTop; // global coords, from drag |
76 | 76 | ||
77 | BOOL mLastShowParcelOwners; // store last Show Parcel Owners setting | ||
78 | LLSafeHandle<LLParcelSelection> mSelection; // hold on to a parcel selection | 77 | LLSafeHandle<LLParcelSelection> mSelection; // hold on to a parcel selection |
79 | }; | 78 | }; |
80 | 79 | ||
diff --git a/linden/indra/newview/llviewerdisplay.cpp b/linden/indra/newview/llviewerdisplay.cpp index 47c9c32..b9a5986 100644 --- a/linden/indra/newview/llviewerdisplay.cpp +++ b/linden/indra/newview/llviewerdisplay.cpp | |||
@@ -81,8 +81,6 @@ | |||
81 | #include "llpostprocess.h" | 81 | #include "llpostprocess.h" |
82 | 82 | ||
83 | extern LLPointer<LLImageGL> gStartImageGL; | 83 | extern LLPointer<LLImageGL> gStartImageGL; |
84 | extern BOOL gDisplaySwapBuffers; | ||
85 | |||
86 | 84 | ||
87 | LLPointer<LLImageGL> gDisconnectedImagep = NULL; | 85 | LLPointer<LLImageGL> gDisconnectedImagep = NULL; |
88 | 86 | ||
@@ -96,17 +94,18 @@ const F32 RESTORE_GL_TIME = 5.f; // Wait this long while reloading textures bef | |||
96 | 94 | ||
97 | BOOL gForceRenderLandFence = FALSE; | 95 | BOOL gForceRenderLandFence = FALSE; |
98 | BOOL gDisplaySwapBuffers = FALSE; | 96 | BOOL gDisplaySwapBuffers = FALSE; |
97 | BOOL gDepthDirty = FALSE; | ||
99 | BOOL gResizeScreenTexture = FALSE; | 98 | BOOL gResizeScreenTexture = FALSE; |
100 | BOOL gSnapshot = FALSE; | 99 | BOOL gSnapshot = FALSE; |
101 | 100 | ||
102 | U32 gRecentFrameCount = 0; // number of 'recent' frames | 101 | U32 gRecentFrameCount = 0; // number of 'recent' frames |
103 | LLFrameTimer gRecentTime; | 102 | LLFrameTimer gRecentFPSTime; |
103 | LLFrameTimer gRecentMemoryTime; | ||
104 | 104 | ||
105 | // Rendering stuff | 105 | // Rendering stuff |
106 | void pre_show_depth_buffer(); | 106 | void pre_show_depth_buffer(); |
107 | void post_show_depth_buffer(); | 107 | void post_show_depth_buffer(); |
108 | void render_ui_and_swap(); | 108 | void render_ui_and_swap(); |
109 | void render_ui_and_swap_if_needed(); | ||
110 | void render_hud_attachments(); | 109 | void render_hud_attachments(); |
111 | void render_ui_3d(); | 110 | void render_ui_3d(); |
112 | void render_ui_2d(); | 111 | void render_ui_2d(); |
@@ -187,13 +186,21 @@ void display_update_camera() | |||
187 | // Write some stats to llinfos | 186 | // Write some stats to llinfos |
188 | void display_stats() | 187 | void display_stats() |
189 | { | 188 | { |
190 | F32 log_freq = gSavedSettings.getF32("FPSLogFrequency"); | 189 | F32 fps_log_freq = gSavedSettings.getF32("FPSLogFrequency"); |
191 | if (log_freq > 0.f && gRecentTime.getElapsedTimeF32() >= log_freq) | 190 | if (fps_log_freq > 0.f && gRecentFPSTime.getElapsedTimeF32() >= fps_log_freq) |
192 | { | 191 | { |
193 | F32 fps = gRecentFrameCount / log_freq; | 192 | F32 fps = gRecentFrameCount / fps_log_freq; |
194 | llinfos << llformat("FPS: %.02f", fps) << llendl; | 193 | llinfos << llformat("FPS: %.02f", fps) << llendl; |
195 | gRecentFrameCount = 0; | 194 | gRecentFrameCount = 0; |
196 | gRecentTime.reset(); | 195 | gRecentFPSTime.reset(); |
196 | } | ||
197 | F32 mem_log_freq = gSavedSettings.getF32("MemoryLogFrequency"); | ||
198 | if (mem_log_freq > 0.f && gRecentMemoryTime.getElapsedTimeF32() >= mem_log_freq) | ||
199 | { | ||
200 | gMemoryAllocated = getCurrentRSS(); | ||
201 | U32 memory = (U32)(gMemoryAllocated / (1024*1024)); | ||
202 | llinfos << llformat("MEMORY: %d MB", memory) << llendl; | ||
203 | gRecentMemoryTime.reset(); | ||
197 | } | 204 | } |
198 | } | 205 | } |
199 | 206 | ||
@@ -237,9 +244,11 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
237 | 244 | ||
238 | gViewerWindow->checkSettings(); | 245 | gViewerWindow->checkSettings(); |
239 | 246 | ||
247 | LLAppViewer::instance()->pingMainloopTimeout("Display:Pick"); | ||
240 | gViewerWindow->performPick(); | 248 | gViewerWindow->performPick(); |
241 | 249 | ||
242 | 250 | ||
251 | LLAppViewer::instance()->pingMainloopTimeout("Display:CheckStates"); | ||
243 | LLGLState::checkStates(); | 252 | LLGLState::checkStates(); |
244 | LLGLState::checkTextureChannels(); | 253 | LLGLState::checkTextureChannels(); |
245 | 254 | ||
@@ -271,6 +280,7 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
271 | // | 280 | // |
272 | if (LLStartUp::getStartupState() < STATE_STARTED) | 281 | if (LLStartUp::getStartupState() < STATE_STARTED) |
273 | { | 282 | { |
283 | LLAppViewer::instance()->pingMainloopTimeout("Display:Startup"); | ||
274 | display_startup(); | 284 | display_startup(); |
275 | return; | 285 | return; |
276 | } | 286 | } |
@@ -282,6 +292,7 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
282 | // Update GL Texture statistics (used for discard logic?) | 292 | // Update GL Texture statistics (used for discard logic?) |
283 | // | 293 | // |
284 | 294 | ||
295 | LLAppViewer::instance()->pingMainloopTimeout("Display:TextureStats"); | ||
285 | gFrameStats.start(LLFrameStats::UPDATE_TEX_STATS); | 296 | gFrameStats.start(LLFrameStats::UPDATE_TEX_STATS); |
286 | stop_glerror(); | 297 | stop_glerror(); |
287 | 298 | ||
@@ -305,6 +316,7 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
305 | 316 | ||
306 | if (gTeleportDisplay) | 317 | if (gTeleportDisplay) |
307 | { | 318 | { |
319 | LLAppViewer::instance()->pingMainloopTimeout("Display:Teleport"); | ||
308 | const F32 TELEPORT_ARRIVAL_DELAY = 2.f; // Time to preload the world before raising the curtain after we've actually already arrived. | 320 | const F32 TELEPORT_ARRIVAL_DELAY = 2.f; // Time to preload the world before raising the curtain after we've actually already arrived. |
309 | 321 | ||
310 | S32 attach_count = 0; | 322 | S32 attach_count = 0; |
@@ -383,6 +395,7 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
383 | } | 395 | } |
384 | else if(LLAppViewer::instance()->logoutRequestSent()) | 396 | else if(LLAppViewer::instance()->logoutRequestSent()) |
385 | { | 397 | { |
398 | LLAppViewer::instance()->pingMainloopTimeout("Display:Logout"); | ||
386 | F32 percent_done = gLogoutTimer.getElapsedTimeF32() * 100.f / gLogoutMaxTime; | 399 | F32 percent_done = gLogoutTimer.getElapsedTimeF32() * 100.f / gLogoutMaxTime; |
387 | if (percent_done > 100.f) | 400 | if (percent_done > 100.f) |
388 | { | 401 | { |
@@ -399,6 +412,7 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
399 | else | 412 | else |
400 | if (gRestoreGL) | 413 | if (gRestoreGL) |
401 | { | 414 | { |
415 | LLAppViewer::instance()->pingMainloopTimeout("Display:RestoreGL"); | ||
402 | F32 percent_done = gRestoreGLTimer.getElapsedTimeF32() * 100.f / RESTORE_GL_TIME; | 416 | F32 percent_done = gRestoreGLTimer.getElapsedTimeF32() * 100.f / RESTORE_GL_TIME; |
403 | if( percent_done > 100.f ) | 417 | if( percent_done > 100.f ) |
404 | { | 418 | { |
@@ -428,6 +442,7 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
428 | // | 442 | // |
429 | // | 443 | // |
430 | 444 | ||
445 | LLAppViewer::instance()->pingMainloopTimeout("Display:Camera"); | ||
431 | LLViewerCamera::getInstance()->setZoomParameters(zoom_factor, subfield); | 446 | LLViewerCamera::getInstance()->setZoomParameters(zoom_factor, subfield); |
432 | LLViewerCamera::getInstance()->setNear(MIN_NEAR_PLANE); | 447 | LLViewerCamera::getInstance()->setNear(MIN_NEAR_PLANE); |
433 | 448 | ||
@@ -439,9 +454,8 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
439 | 454 | ||
440 | if (gDisconnected) | 455 | if (gDisconnected) |
441 | { | 456 | { |
442 | render_ui_and_swap_if_needed(); | 457 | LLAppViewer::instance()->pingMainloopTimeout("Display:Disconnected"); |
443 | gDisplaySwapBuffers = TRUE; | 458 | render_ui_and_swap(); |
444 | |||
445 | render_disconnected_background(); | 459 | render_disconnected_background(); |
446 | } | 460 | } |
447 | 461 | ||
@@ -450,6 +464,7 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
450 | // Set rendering options | 464 | // Set rendering options |
451 | // | 465 | // |
452 | // | 466 | // |
467 | LLAppViewer::instance()->pingMainloopTimeout("Display:RenderSetup"); | ||
453 | stop_glerror(); | 468 | stop_glerror(); |
454 | if (gSavedSettings.getBOOL("ShowDepthBuffer")) | 469 | if (gSavedSettings.getBOOL("ShowDepthBuffer")) |
455 | { | 470 | { |
@@ -478,6 +493,7 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
478 | // do render-to-texture stuff here | 493 | // do render-to-texture stuff here |
479 | if (gPipeline.hasRenderDebugFeatureMask(LLPipeline::RENDER_DEBUG_FEATURE_DYNAMIC_TEXTURES)) | 494 | if (gPipeline.hasRenderDebugFeatureMask(LLPipeline::RENDER_DEBUG_FEATURE_DYNAMIC_TEXTURES)) |
480 | { | 495 | { |
496 | LLAppViewer::instance()->pingMainloopTimeout("Display:DynamicTextures"); | ||
481 | LLFastTimer t(LLFastTimer::FTM_UPDATE_TEXTURES); | 497 | LLFastTimer t(LLFastTimer::FTM_UPDATE_TEXTURES); |
482 | if (LLDynamicTexture::updateAllInstances()) | 498 | if (LLDynamicTexture::updateAllInstances()) |
483 | { | 499 | { |
@@ -490,6 +506,7 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
490 | 506 | ||
491 | if (!gDisconnected) | 507 | if (!gDisconnected) |
492 | { | 508 | { |
509 | LLAppViewer::instance()->pingMainloopTimeout("Display:Update"); | ||
493 | if (gPipeline.hasRenderType(LLPipeline::RENDER_TYPE_HUD)) | 510 | if (gPipeline.hasRenderType(LLPipeline::RENDER_TYPE_HUD)) |
494 | { //don't draw hud objects in this frame | 511 | { //don't draw hud objects in this frame |
495 | gPipeline.toggleRenderType(LLPipeline::RENDER_TYPE_HUD); | 512 | gPipeline.toggleRenderType(LLPipeline::RENDER_TYPE_HUD); |
@@ -527,9 +544,12 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
527 | } | 544 | } |
528 | } | 545 | } |
529 | 546 | ||
547 | LLAppViewer::instance()->pingMainloopTimeout("Display:Cull"); | ||
548 | |||
530 | //Increment drawable frame counter | 549 | //Increment drawable frame counter |
531 | LLDrawable::incrementVisible(); | 550 | LLDrawable::incrementVisible(); |
532 | 551 | ||
552 | LLSpatialGroup::sNoDelete = TRUE; | ||
533 | LLPipeline::sUseOcclusion = | 553 | LLPipeline::sUseOcclusion = |
534 | (!gUseWireframe | 554 | (!gUseWireframe |
535 | && LLFeatureManager::getInstance()->isFeatureAvailable("UseOcclusion") | 555 | && LLFeatureManager::getInstance()->isFeatureAvailable("UseOcclusion") |
@@ -540,10 +560,11 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
540 | LLVOAvatar::sMaxVisible = gSavedSettings.getS32("RenderAvatarMaxVisible"); | 560 | LLVOAvatar::sMaxVisible = gSavedSettings.getS32("RenderAvatarMaxVisible"); |
541 | 561 | ||
542 | S32 occlusion = LLPipeline::sUseOcclusion; | 562 | S32 occlusion = LLPipeline::sUseOcclusion; |
543 | if (!gDisplaySwapBuffers) | 563 | if (gDepthDirty) |
544 | { //depth buffer is invalid, don't overwrite occlusion state | 564 | { //depth buffer is invalid, don't overwrite occlusion state |
545 | LLPipeline::sUseOcclusion = llmin(occlusion, 1); | 565 | LLPipeline::sUseOcclusion = llmin(occlusion, 1); |
546 | } | 566 | } |
567 | gDepthDirty = FALSE; | ||
547 | 568 | ||
548 | static LLCullResult result; | 569 | static LLCullResult result; |
549 | gPipeline.updateCull(*LLViewerCamera::getInstance(), result, water_clip); | 570 | gPipeline.updateCull(*LLViewerCamera::getInstance(), result, water_clip); |
@@ -553,6 +574,8 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
553 | gPipeline.canUseVertexShaders() && | 574 | gPipeline.canUseVertexShaders() && |
554 | LLPipeline::sRenderGlow; | 575 | LLPipeline::sRenderGlow; |
555 | 576 | ||
577 | LLAppViewer::instance()->pingMainloopTimeout("Display:Swap"); | ||
578 | |||
556 | // now do the swap buffer (just before rendering to framebuffer) | 579 | // now do the swap buffer (just before rendering to framebuffer) |
557 | { //swap and flush state from previous frame | 580 | { //swap and flush state from previous frame |
558 | { | 581 | { |
@@ -571,9 +594,6 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
571 | 594 | ||
572 | if (!for_snapshot) | 595 | if (!for_snapshot) |
573 | { | 596 | { |
574 | render_ui_and_swap_if_needed(); | ||
575 | gDisplaySwapBuffers = TRUE; | ||
576 | |||
577 | glh::matrix4f proj = glh_get_current_projection(); | 597 | glh::matrix4f proj = glh_get_current_projection(); |
578 | glh::matrix4f mod = glh_get_current_modelview(); | 598 | glh::matrix4f mod = glh_get_current_modelview(); |
579 | glViewport(0,0,512,512); | 599 | glViewport(0,0,512,512); |
@@ -592,6 +612,7 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
592 | 612 | ||
593 | if (!for_snapshot) | 613 | if (!for_snapshot) |
594 | { | 614 | { |
615 | LLAppViewer::instance()->pingMainloopTimeout("Display:Imagery"); | ||
595 | gPipeline.processImagery(*LLViewerCamera::getInstance()); | 616 | gPipeline.processImagery(*LLViewerCamera::getInstance()); |
596 | gPipeline.generateWaterReflection(*LLViewerCamera::getInstance()); | 617 | gPipeline.generateWaterReflection(*LLViewerCamera::getInstance()); |
597 | } | 618 | } |
@@ -603,6 +624,7 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
603 | // Can put objects onto the retextured list. | 624 | // Can put objects onto the retextured list. |
604 | // | 625 | // |
605 | // Doing this here gives hardware occlusion queries extra time to complete | 626 | // Doing this here gives hardware occlusion queries extra time to complete |
627 | LLAppViewer::instance()->pingMainloopTimeout("Display:UpdateImages"); | ||
606 | gFrameStats.start(LLFrameStats::IMAGE_UPDATE); | 628 | gFrameStats.start(LLFrameStats::IMAGE_UPDATE); |
607 | 629 | ||
608 | { | 630 | { |
@@ -626,6 +648,7 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
626 | // In the case of alpha objects, z-sorts them first. | 648 | // In the case of alpha objects, z-sorts them first. |
627 | // Also creates special lists for outlines and selected face rendering. | 649 | // Also creates special lists for outlines and selected face rendering. |
628 | // | 650 | // |
651 | LLAppViewer::instance()->pingMainloopTimeout("Display:StateSort"); | ||
629 | { | 652 | { |
630 | gFrameStats.start(LLFrameStats::STATE_SORT); | 653 | gFrameStats.start(LLFrameStats::STATE_SORT); |
631 | gPipeline.stateSort(*LLViewerCamera::getInstance(), result); | 654 | gPipeline.stateSort(*LLViewerCamera::getInstance(), result); |
@@ -647,6 +670,7 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
647 | LLPipeline::sUseOcclusion = occlusion; | 670 | LLPipeline::sUseOcclusion = occlusion; |
648 | 671 | ||
649 | { | 672 | { |
673 | LLAppViewer::instance()->pingMainloopTimeout("Display:Sky"); | ||
650 | LLFastTimer t(LLFastTimer::FTM_UPDATE_SKY); | 674 | LLFastTimer t(LLFastTimer::FTM_UPDATE_SKY); |
651 | gSky.updateSky(); | 675 | gSky.updateSky(); |
652 | } | 676 | } |
@@ -658,6 +682,8 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
658 | glPolygonMode(GL_FRONT_AND_BACK, GL_LINE); | 682 | glPolygonMode(GL_FRONT_AND_BACK, GL_LINE); |
659 | } | 683 | } |
660 | 684 | ||
685 | LLAppViewer::instance()->pingMainloopTimeout("Display:Render"); | ||
686 | |||
661 | //// render frontmost floater opaque for occlusion culling purposes | 687 | //// render frontmost floater opaque for occlusion culling purposes |
662 | //LLFloater* frontmost_floaterp = gFloaterView->getFrontmost(); | 688 | //LLFloater* frontmost_floaterp = gFloaterView->getFrontmost(); |
663 | //// assumes frontmost floater with focus is opaque | 689 | //// assumes frontmost floater with focus is opaque |
@@ -731,11 +757,19 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
731 | /// Using render to texture would be faster/better, but I don't have a | 757 | /// Using render to texture would be faster/better, but I don't have a |
732 | /// grasp of their full display stack just yet. | 758 | /// grasp of their full display stack just yet. |
733 | // gPostProcess->apply(gViewerWindow->getWindowDisplayWidth(), gViewerWindow->getWindowDisplayHeight()); | 759 | // gPostProcess->apply(gViewerWindow->getWindowDisplayWidth(), gViewerWindow->getWindowDisplayHeight()); |
760 | |||
761 | if (!for_snapshot) | ||
762 | { | ||
763 | render_ui_and_swap(); | ||
764 | } | ||
765 | |||
766 | LLSpatialGroup::sNoDelete = FALSE; | ||
734 | } | 767 | } |
735 | gFrameStats.start(LLFrameStats::RENDER_UI); | 768 | gFrameStats.start(LLFrameStats::RENDER_UI); |
736 | 769 | ||
737 | if (gHandleKeysAsync) | 770 | if (gHandleKeysAsync) |
738 | { | 771 | { |
772 | LLAppViewer::instance()->pingMainloopTimeout("Display:Keystrokes"); | ||
739 | process_keystrokes_async(); | 773 | process_keystrokes_async(); |
740 | stop_glerror(); | 774 | stop_glerror(); |
741 | } | 775 | } |
@@ -750,6 +784,8 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
750 | } | 784 | } |
751 | 785 | ||
752 | display_stats(); | 786 | display_stats(); |
787 | |||
788 | LLAppViewer::instance()->pingMainloopTimeout("Display:Done"); | ||
753 | } | 789 | } |
754 | 790 | ||
755 | void render_hud_attachments() | 791 | void render_hud_attachments() |
@@ -944,19 +980,13 @@ void render_ui_and_swap() | |||
944 | 980 | ||
945 | glh_set_current_modelview(saved_view); | 981 | glh_set_current_modelview(saved_view); |
946 | glPopMatrix(); | 982 | glPopMatrix(); |
947 | } | ||
948 | 983 | ||
949 | void render_ui_and_swap_if_needed() | ||
950 | { | ||
951 | if (gDisplaySwapBuffers) | 984 | if (gDisplaySwapBuffers) |
952 | { | 985 | { |
953 | render_ui_and_swap(); | 986 | LLFastTimer t(LLFastTimer::FTM_SWAP); |
954 | 987 | gViewerWindow->mWindow->swapBuffers(); | |
955 | { | ||
956 | LLFastTimer t(LLFastTimer::FTM_SWAP); | ||
957 | gViewerWindow->mWindow->swapBuffers(); | ||
958 | } | ||
959 | } | 988 | } |
989 | gDisplaySwapBuffers = TRUE; | ||
960 | } | 990 | } |
961 | 991 | ||
962 | void renderCoordinateAxes() | 992 | void renderCoordinateAxes() |
diff --git a/linden/indra/newview/llviewerdisplay.h b/linden/indra/newview/llviewerdisplay.h index 22c31b7..d4b36aa 100644 --- a/linden/indra/newview/llviewerdisplay.h +++ b/linden/indra/newview/llviewerdisplay.h | |||
@@ -40,6 +40,7 @@ void display_cleanup(); | |||
40 | void display(BOOL rebuild = TRUE, F32 zoom_factor = 1.f, int subfield = 0, BOOL for_snapshot = FALSE); | 40 | void display(BOOL rebuild = TRUE, F32 zoom_factor = 1.f, int subfield = 0, BOOL for_snapshot = FALSE); |
41 | 41 | ||
42 | extern BOOL gDisplaySwapBuffers; | 42 | extern BOOL gDisplaySwapBuffers; |
43 | extern BOOL gDepthDirty; | ||
43 | extern BOOL gTeleportDisplay; | 44 | extern BOOL gTeleportDisplay; |
44 | extern LLFrameTimer gTeleportDisplayTimer; | 45 | extern LLFrameTimer gTeleportDisplayTimer; |
45 | extern BOOL gForceRenderLandFence; | 46 | extern BOOL gForceRenderLandFence; |
diff --git a/linden/indra/newview/llviewerimage.cpp b/linden/indra/newview/llviewerimage.cpp index 0316c10..a564352 100644 --- a/linden/indra/newview/llviewerimage.cpp +++ b/linden/indra/newview/llviewerimage.cpp | |||
@@ -88,7 +88,7 @@ void LLViewerImage::initClass() | |||
88 | sNullImagep->createGLTexture(0, raw); | 88 | sNullImagep->createGLTexture(0, raw); |
89 | 89 | ||
90 | #if 1 | 90 | #if 1 |
91 | LLViewerImage* imagep = new LLViewerImage(IMG_DEFAULT, TRUE); | 91 | LLPointer<LLViewerImage> imagep = new LLViewerImage(IMG_DEFAULT, TRUE); |
92 | sDefaultImagep = imagep; | 92 | sDefaultImagep = imagep; |
93 | const S32 dim = 128; | 93 | const S32 dim = 128; |
94 | LLPointer<LLImageRaw> image_raw = new LLImageRaw(dim,dim,3); | 94 | LLPointer<LLImageRaw> image_raw = new LLImageRaw(dim,dim,3); |
diff --git a/linden/indra/newview/llviewerimagelist.cpp b/linden/indra/newview/llviewerimagelist.cpp index a824b29..44c592a 100644 --- a/linden/indra/newview/llviewerimagelist.cpp +++ b/linden/indra/newview/llviewerimagelist.cpp | |||
@@ -708,6 +708,10 @@ void LLViewerImageList::updateImagesUpdateStats() | |||
708 | iter != mImageList.end(); ) | 708 | iter != mImageList.end(); ) |
709 | { | 709 | { |
710 | LLViewerImage* imagep = *iter++; | 710 | LLViewerImage* imagep = *iter++; |
711 | |||
712 | llassert_always(imagep) ; | ||
713 | llassert_always(imagep->getNumRefs() > 0 && imagep->getNumRefs() < 100000) ; | ||
714 | |||
711 | imagep->resetTextureStats(mForceResetTextureStats); | 715 | imagep->resetTextureStats(mForceResetTextureStats); |
712 | } | 716 | } |
713 | mUpdateStats = FALSE; | 717 | mUpdateStats = FALSE; |
diff --git a/linden/indra/newview/llviewerobject.cpp b/linden/indra/newview/llviewerobject.cpp index 54114e4..a989c9d 100644 --- a/linden/indra/newview/llviewerobject.cpp +++ b/linden/indra/newview/llviewerobject.cpp | |||
@@ -292,7 +292,7 @@ void LLViewerObject::markDead() | |||
292 | LLViewerObject *childp; | 292 | LLViewerObject *childp; |
293 | while (mChildList.size() > 0) | 293 | while (mChildList.size() > 0) |
294 | { | 294 | { |
295 | childp = mChildList[0]; | 295 | childp = mChildList.back(); |
296 | if (childp->getPCode() != LL_PCODE_LEGACY_AVATAR) | 296 | if (childp->getPCode() != LL_PCODE_LEGACY_AVATAR) |
297 | { | 297 | { |
298 | //llinfos << "Marking child " << childp->getLocalID() << " as dead." << llendl; | 298 | //llinfos << "Marking child " << childp->getLocalID() << " as dead." << llendl; |
@@ -307,7 +307,7 @@ void LLViewerObject::markDead() | |||
307 | ((LLVOAvatar*)childp)->getOffObject(); | 307 | ((LLVOAvatar*)childp)->getOffObject(); |
308 | childp->setParent(NULL); // LLViewerObject::markDead 2 | 308 | childp->setParent(NULL); // LLViewerObject::markDead 2 |
309 | } | 309 | } |
310 | mChildList.erase(mChildList.begin()); | 310 | mChildList.pop_back(); |
311 | } | 311 | } |
312 | 312 | ||
313 | if (mDrawable.notNull()) | 313 | if (mDrawable.notNull()) |
@@ -4217,13 +4217,15 @@ void LLViewerObject::updateDrawable(BOOL force_damped) | |||
4217 | { | 4217 | { |
4218 | BOOL damped_motion = | 4218 | BOOL damped_motion = |
4219 | !isChanged(SHIFTED) && // not shifted between regions this frame and... | 4219 | !isChanged(SHIFTED) && // not shifted between regions this frame and... |
4220 | (force_damped || // ...forced into damped motion by application logic or... | 4220 | ( force_damped || // ...forced into damped motion by application logic or... |
4221 | (!isSelected() && // ...not selected and... | 4221 | ( !isSelected() && // ...not selected and... |
4222 | (mDrawable->isRoot() || // ... is root or ... | 4222 | ( mDrawable->isRoot() || // ... is root or ... |
4223 | !((LLViewerObject*)getParent())->isSelected()) && // ... parent is not selected and ... | 4223 | (getParent() && !((LLViewerObject*)getParent())->isSelected())// ... parent is not selected and ... |
4224 | ) && | ||
4224 | getPCode() == LL_PCODE_VOLUME && // ...is a volume object and... | 4225 | getPCode() == LL_PCODE_VOLUME && // ...is a volume object and... |
4225 | getVelocity().isExactlyZero() && // ...is not moving physically and... | 4226 | getVelocity().isExactlyZero() && // ...is not moving physically and... |
4226 | mDrawable->getGeneration() != -1) // ...was not created this frame. | 4227 | mDrawable->getGeneration() != -1 // ...was not created this frame. |
4228 | ) | ||
4227 | ); | 4229 | ); |
4228 | gPipeline.markMoved(mDrawable, damped_motion); | 4230 | gPipeline.markMoved(mDrawable, damped_motion); |
4229 | } | 4231 | } |
diff --git a/linden/indra/newview/llviewerobjectlist.cpp b/linden/indra/newview/llviewerobjectlist.cpp index bd8ed97..84475ab 100644 --- a/linden/indra/newview/llviewerobjectlist.cpp +++ b/linden/indra/newview/llviewerobjectlist.cpp | |||
@@ -685,6 +685,7 @@ void LLViewerObjectList::update(LLAgent &agent, LLWorld &world) | |||
685 | idle_iter != idle_list.end(); idle_iter++) | 685 | idle_iter != idle_list.end(); idle_iter++) |
686 | { | 686 | { |
687 | objectp = *idle_iter; | 687 | objectp = *idle_iter; |
688 | llassert_always(objectp) ; | ||
688 | if (!objectp->idleUpdate(agent, world, frame_time)) | 689 | if (!objectp->idleUpdate(agent, world, frame_time)) |
689 | { | 690 | { |
690 | // If Idle Update returns false, kill object! | 691 | // If Idle Update returns false, kill object! |
diff --git a/linden/indra/newview/llviewerregion.cpp b/linden/indra/newview/llviewerregion.cpp index e1590cc..f745aca 100644 --- a/linden/indra/newview/llviewerregion.cpp +++ b/linden/indra/newview/llviewerregion.cpp | |||
@@ -76,7 +76,74 @@ extern BOOL gNoRender; | |||
76 | const F32 WATER_TEXTURE_SCALE = 8.f; // Number of times to repeat the water texture across a region | 76 | const F32 WATER_TEXTURE_SCALE = 8.f; // Number of times to repeat the water texture across a region |
77 | const S16 MAX_MAP_DIST = 10; | 77 | const S16 MAX_MAP_DIST = 10; |
78 | 78 | ||
79 | class BaseCapabilitiesComplete : public LLHTTPClient::Responder | ||
80 | { | ||
81 | LOG_CLASS(BaseCapabilitiesComplete); | ||
82 | public: | ||
83 | BaseCapabilitiesComplete(LLViewerRegion* region) | ||
84 | : mRegion(region) | ||
85 | { } | ||
86 | virtual ~BaseCapabilitiesComplete() | ||
87 | { | ||
88 | if(mRegion) | ||
89 | { | ||
90 | mRegion->setHttpResponderPtrNULL() ; | ||
91 | } | ||
92 | } | ||
79 | 93 | ||
94 | void setRegion(LLViewerRegion* region) | ||
95 | { | ||
96 | mRegion = region ; | ||
97 | } | ||
98 | |||
99 | void error(U32 statusNum, const std::string& reason) | ||
100 | { | ||
101 | LL_WARNS2("AppInit", "Capabilities") << statusNum << ": " << reason << LL_ENDL; | ||
102 | |||
103 | if (STATE_SEED_GRANTED_WAIT == LLStartUp::getStartupState()) | ||
104 | { | ||
105 | LLStartUp::setStartupState( STATE_SEED_CAP_GRANTED ); | ||
106 | } | ||
107 | } | ||
108 | |||
109 | void result(const LLSD& content) | ||
110 | { | ||
111 | if(!mRegion || this != mRegion->getHttpResponderPtr())//region is removed or responder is not created. | ||
112 | { | ||
113 | return ; | ||
114 | } | ||
115 | |||
116 | LLSD::map_const_iterator iter; | ||
117 | for(iter = content.beginMap(); iter != content.endMap(); ++iter) | ||
118 | { | ||
119 | mRegion->setCapability(iter->first, iter->second); | ||
120 | LL_DEBUGS2("AppInit", "Capabilities") << "got capability for " | ||
121 | << iter->first << LL_ENDL; | ||
122 | |||
123 | /* HACK we're waiting for the ServerReleaseNotes */ | ||
124 | if ((iter->first == "ServerReleaseNotes") && (LLFloaterReleaseMsg::sDisplayMessage)) | ||
125 | { | ||
126 | LLFloaterReleaseMsg::show(); | ||
127 | LLFloaterReleaseMsg::sDisplayMessage = false; | ||
128 | } | ||
129 | } | ||
130 | |||
131 | if (STATE_SEED_GRANTED_WAIT == LLStartUp::getStartupState()) | ||
132 | { | ||
133 | LLStartUp::setStartupState( STATE_SEED_CAP_GRANTED ); | ||
134 | } | ||
135 | } | ||
136 | |||
137 | static boost::intrusive_ptr<BaseCapabilitiesComplete> build( | ||
138 | LLViewerRegion* region) | ||
139 | { | ||
140 | return boost::intrusive_ptr<BaseCapabilitiesComplete>( | ||
141 | new BaseCapabilitiesComplete(region)); | ||
142 | } | ||
143 | |||
144 | private: | ||
145 | LLViewerRegion* mRegion; | ||
146 | }; | ||
80 | 147 | ||
81 | 148 | ||
82 | LLViewerRegion::LLViewerRegion(const U64 &handle, | 149 | LLViewerRegion::LLViewerRegion(const U64 &handle, |
@@ -103,7 +170,6 @@ LLViewerRegion::LLViewerRegion(const U64 &handle, | |||
103 | mEventPoll(NULL) | 170 | mEventPoll(NULL) |
104 | { | 171 | { |
105 | mWidth = region_width_meters; | 172 | mWidth = region_width_meters; |
106 | |||
107 | mOriginGlobal = from_region_handle(handle); | 173 | mOriginGlobal = from_region_handle(handle); |
108 | updateRenderMatrix(); | 174 | updateRenderMatrix(); |
109 | 175 | ||
@@ -170,10 +236,13 @@ void LLViewerRegion::initStats() | |||
170 | mAlive = FALSE; // can become false if circuit disconnects | 236 | mAlive = FALSE; // can become false if circuit disconnects |
171 | } | 237 | } |
172 | 238 | ||
173 | |||
174 | |||
175 | LLViewerRegion::~LLViewerRegion() | 239 | LLViewerRegion::~LLViewerRegion() |
176 | { | 240 | { |
241 | if(mHttpResponderPtr) | ||
242 | { | ||
243 | (static_cast<BaseCapabilitiesComplete*>(mHttpResponderPtr.get()))->setRegion(NULL) ; | ||
244 | } | ||
245 | |||
177 | gVLManager.cleanupData(this); | 246 | gVLManager.cleanupData(this); |
178 | // Can't do this on destruction, because the neighbor pointers might be invalid. | 247 | // Can't do this on destruction, because the neighbor pointers might be invalid. |
179 | // This should be reference counted... | 248 | // This should be reference counted... |
@@ -1303,61 +1372,6 @@ void LLViewerRegion::unpackRegionHandshake() | |||
1303 | msg->sendReliable(host); | 1372 | msg->sendReliable(host); |
1304 | } | 1373 | } |
1305 | 1374 | ||
1306 | |||
1307 | |||
1308 | class BaseCapabilitiesComplete : public LLHTTPClient::Responder | ||
1309 | { | ||
1310 | LOG_CLASS(BaseCapabilitiesComplete); | ||
1311 | public: | ||
1312 | BaseCapabilitiesComplete(LLViewerRegion* region) | ||
1313 | : mRegion(region) | ||
1314 | { } | ||
1315 | |||
1316 | void error(U32 statusNum, const std::string& reason) | ||
1317 | { | ||
1318 | LL_WARNS2("AppInit", "Capabilities") << statusNum << ": " << reason << LL_ENDL; | ||
1319 | |||
1320 | if (STATE_SEED_GRANTED_WAIT == LLStartUp::getStartupState()) | ||
1321 | { | ||
1322 | LLStartUp::setStartupState( STATE_SEED_CAP_GRANTED ); | ||
1323 | } | ||
1324 | } | ||
1325 | |||
1326 | void result(const LLSD& content) | ||
1327 | { | ||
1328 | LLSD::map_const_iterator iter; | ||
1329 | for(iter = content.beginMap(); iter != content.endMap(); ++iter) | ||
1330 | { | ||
1331 | mRegion->setCapability(iter->first, iter->second); | ||
1332 | LL_DEBUGS2("AppInit", "Capabilities") << "got capability for " | ||
1333 | << iter->first << LL_ENDL; | ||
1334 | |||
1335 | /* HACK we're waiting for the ServerReleaseNotes */ | ||
1336 | if ((iter->first == "ServerReleaseNotes") && (LLFloaterReleaseMsg::sDisplayMessage)) | ||
1337 | { | ||
1338 | LLFloaterReleaseMsg::show(); | ||
1339 | LLFloaterReleaseMsg::sDisplayMessage = false; | ||
1340 | } | ||
1341 | } | ||
1342 | |||
1343 | if (STATE_SEED_GRANTED_WAIT == LLStartUp::getStartupState()) | ||
1344 | { | ||
1345 | LLStartUp::setStartupState( STATE_SEED_CAP_GRANTED ); | ||
1346 | } | ||
1347 | } | ||
1348 | |||
1349 | static boost::intrusive_ptr<BaseCapabilitiesComplete> build( | ||
1350 | LLViewerRegion* region) | ||
1351 | { | ||
1352 | return boost::intrusive_ptr<BaseCapabilitiesComplete>( | ||
1353 | new BaseCapabilitiesComplete(region)); | ||
1354 | } | ||
1355 | |||
1356 | private: | ||
1357 | LLViewerRegion* mRegion; | ||
1358 | }; | ||
1359 | |||
1360 | |||
1361 | void LLViewerRegion::setSeedCapability(const std::string& url) | 1375 | void LLViewerRegion::setSeedCapability(const std::string& url) |
1362 | { | 1376 | { |
1363 | if (getCapability("Seed") == url) | 1377 | if (getCapability("Seed") == url) |
@@ -1408,7 +1422,8 @@ void LLViewerRegion::setSeedCapability(const std::string& url) | |||
1408 | 1422 | ||
1409 | llinfos << "posting to seed " << url << llendl; | 1423 | llinfos << "posting to seed " << url << llendl; |
1410 | 1424 | ||
1411 | LLHTTPClient::post(url, capabilityNames, BaseCapabilitiesComplete::build(this)); | 1425 | mHttpResponderPtr = BaseCapabilitiesComplete::build(this) ; |
1426 | LLHTTPClient::post(url, capabilityNames, mHttpResponderPtr); | ||
1412 | } | 1427 | } |
1413 | 1428 | ||
1414 | void LLViewerRegion::setCapability(const std::string& name, const std::string& url) | 1429 | void LLViewerRegion::setCapability(const std::string& name, const std::string& url) |
diff --git a/linden/indra/newview/llviewerregion.h b/linden/indra/newview/llviewerregion.h index d4032cf..c2d11f5 100644 --- a/linden/indra/newview/llviewerregion.h +++ b/linden/indra/newview/llviewerregion.h | |||
@@ -208,6 +208,9 @@ public: | |||
208 | 208 | ||
209 | U32 getPacketsLost() const; | 209 | U32 getPacketsLost() const; |
210 | 210 | ||
211 | void setHttpResponderPtrNULL() {mHttpResponderPtr = NULL ;} | ||
212 | const LLHTTPClient::ResponderPtr getHttpResponderPtr() const {return mHttpResponderPtr ;} | ||
213 | |||
211 | // Get/set named capability URLs for this region. | 214 | // Get/set named capability URLs for this region. |
212 | void setSeedCapability(const std::string& url); | 215 | void setSeedCapability(const std::string& url); |
213 | void setCapability(const std::string& name, const std::string& url); | 216 | void setCapability(const std::string& name, const std::string& url); |
@@ -373,6 +376,8 @@ protected: | |||
373 | private: | 376 | private: |
374 | //spatial partitions for objects in this region | 377 | //spatial partitions for objects in this region |
375 | std::vector<LLSpatialPartition*> mObjectPartition; | 378 | std::vector<LLSpatialPartition*> mObjectPartition; |
379 | |||
380 | LLHTTPClient::ResponderPtr mHttpResponderPtr ; | ||
376 | }; | 381 | }; |
377 | 382 | ||
378 | inline BOOL LLViewerRegion::getAllowDamage() const | 383 | inline BOOL LLViewerRegion::getAllowDamage() const |
diff --git a/linden/indra/newview/llviewerwindow.cpp b/linden/indra/newview/llviewerwindow.cpp index 9f091dc..d61fa59 100644 --- a/linden/indra/newview/llviewerwindow.cpp +++ b/linden/indra/newview/llviewerwindow.cpp | |||
@@ -192,12 +192,12 @@ | |||
192 | // | 192 | // |
193 | // Globals | 193 | // Globals |
194 | // | 194 | // |
195 | void render_ui_and_swap_if_needed(); | ||
196 | void render_ui_and_swap(); | 195 | void render_ui_and_swap(); |
197 | LLBottomPanel* gBottomPanel = NULL; | 196 | LLBottomPanel* gBottomPanel = NULL; |
198 | 197 | ||
199 | extern BOOL gDebugClicks; | 198 | extern BOOL gDebugClicks; |
200 | extern BOOL gDisplaySwapBuffers; | 199 | extern BOOL gDisplaySwapBuffers; |
200 | extern BOOL gDepthDirty; | ||
201 | extern BOOL gResizeScreenTexture; | 201 | extern BOOL gResizeScreenTexture; |
202 | extern S32 gJamesInt; | 202 | extern S32 gJamesInt; |
203 | 203 | ||
@@ -3387,9 +3387,8 @@ void LLViewerWindow::hitObjectOrLandGlobalAsync(S32 x, S32 y_from_bot, MASK mask | |||
3387 | return; | 3387 | return; |
3388 | } | 3388 | } |
3389 | 3389 | ||
3390 | render_ui_and_swap_if_needed(); | ||
3391 | glClear(GL_DEPTH_BUFFER_BIT); | 3390 | glClear(GL_DEPTH_BUFFER_BIT); |
3392 | gDisplaySwapBuffers = FALSE; | 3391 | gDepthDirty = TRUE; |
3393 | 3392 | ||
3394 | S32 scaled_x = llround((F32)x * mDisplayScale.mV[VX]); | 3393 | S32 scaled_x = llround((F32)x * mDisplayScale.mV[VX]); |
3395 | S32 scaled_y = llround((F32)y_from_bot * mDisplayScale.mV[VY]); | 3394 | S32 scaled_y = llround((F32)y_from_bot * mDisplayScale.mV[VY]); |
@@ -4282,7 +4281,8 @@ BOOL LLViewerWindow::thumbnailSnapshot(LLImageRaw *raw, S32 preview_width, S32 p | |||
4282 | LLRect window_rect = mWindowRect; | 4281 | LLRect window_rect = mWindowRect; |
4283 | mWindowRect.set(0, h, w, 0); | 4282 | mWindowRect.set(0, h, w, 0); |
4284 | 4283 | ||
4285 | gDisplaySwapBuffers = FALSE; | 4284 | gDisplaySwapBuffers = FALSE; |
4285 | gDepthDirty = TRUE; | ||
4286 | glClearColor(0.f, 0.f, 0.f, 0.f); | 4286 | glClearColor(0.f, 0.f, 0.f, 0.f); |
4287 | glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT | GL_STENCIL_BUFFER_BIT); | 4287 | glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT | GL_STENCIL_BUFFER_BIT); |
4288 | setup3DRender(); | 4288 | setup3DRender(); |
@@ -4350,6 +4350,7 @@ BOOL LLViewerWindow::thumbnailSnapshot(LLImageRaw *raw, S32 preview_width, S32 p | |||
4350 | setup3DRender(); | 4350 | setup3DRender(); |
4351 | setupViewport(); | 4351 | setupViewport(); |
4352 | gDisplaySwapBuffers = FALSE; | 4352 | gDisplaySwapBuffers = FALSE; |
4353 | gDepthDirty = TRUE; | ||
4353 | 4354 | ||
4354 | // POST SNAPSHOT | 4355 | // POST SNAPSHOT |
4355 | if (!gPipeline.hasRenderDebugFeatureMask(LLPipeline::RENDER_DEBUG_FEATURE_UI)) | 4356 | if (!gPipeline.hasRenderDebugFeatureMask(LLPipeline::RENDER_DEBUG_FEATURE_UI)) |
@@ -4389,7 +4390,6 @@ BOOL LLViewerWindow::rawSnapshot(LLImageRaw *raw, S32 image_width, S32 image_hei | |||
4389 | } | 4390 | } |
4390 | 4391 | ||
4391 | // PRE SNAPSHOT | 4392 | // PRE SNAPSHOT |
4392 | render_ui_and_swap_if_needed(); | ||
4393 | gDisplaySwapBuffers = FALSE; | 4393 | gDisplaySwapBuffers = FALSE; |
4394 | 4394 | ||
4395 | glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT | GL_STENCIL_BUFFER_BIT); | 4395 | glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT | GL_STENCIL_BUFFER_BIT); |
@@ -4420,6 +4420,7 @@ BOOL LLViewerWindow::rawSnapshot(LLImageRaw *raw, S32 image_width, S32 image_hei | |||
4420 | LLRect window_rect = mWindowRect; | 4420 | LLRect window_rect = mWindowRect; |
4421 | BOOL use_fbo = FALSE; | 4421 | BOOL use_fbo = FALSE; |
4422 | 4422 | ||
4423 | LLRenderTarget target; | ||
4423 | F32 scale_factor = 1.0f ; | 4424 | F32 scale_factor = 1.0f ; |
4424 | if(!keep_window_aspect) //image cropping | 4425 | if(!keep_window_aspect) //image cropping |
4425 | { | 4426 | { |
@@ -4428,37 +4429,39 @@ BOOL LLViewerWindow::rawSnapshot(LLImageRaw *raw, S32 image_width, S32 image_hei | |||
4428 | snapshot_height = (S32)(ratio * image_height) ; | 4429 | snapshot_height = (S32)(ratio * image_height) ; |
4429 | scale_factor = llmax(1.0f, 1.0f / ratio) ; | 4430 | scale_factor = llmax(1.0f, 1.0f / ratio) ; |
4430 | } | 4431 | } |
4431 | 4432 | else //the scene(window) proportion needs to be maintained. | |
4432 | LLRenderTarget target; | 4433 | { |
4433 | if (gGLManager.mHasFramebufferObject && | 4434 | if(image_width > window_width || image_height > window_height) //need to enlarge the scene |
4434 | (image_width > window_width || | ||
4435 | image_height > window_height) && | ||
4436 | !show_ui && | ||
4437 | keep_window_aspect) | ||
4438 | { | ||
4439 | GLint max_size = 0; | ||
4440 | glGetIntegerv(GL_MAX_RENDERBUFFER_SIZE_EXT, &max_size); | ||
4441 | |||
4442 | if (image_width <= max_size && image_height <= max_size) | ||
4443 | { | ||
4444 | use_fbo = TRUE; | ||
4445 | |||
4446 | snapshot_width = image_width; | ||
4447 | snapshot_height = image_height; | ||
4448 | target.allocate(snapshot_width, snapshot_height, GL_RGBA, TRUE, GL_TEXTURE_RECTANGLE_ARB, TRUE); | ||
4449 | window_width = snapshot_width; | ||
4450 | window_height = snapshot_height; | ||
4451 | scale_factor = 1.f; | ||
4452 | mWindowRect.set(0, 0, snapshot_width, snapshot_height); | ||
4453 | target.bindTarget(); | ||
4454 | } | ||
4455 | else //tiling | ||
4456 | { | 4435 | { |
4457 | F32 ratio = llmin( (F32)window_width / image_width , (F32)window_height / image_height) ; | 4436 | if (gGLManager.mHasFramebufferObject && !show_ui) |
4458 | snapshot_width = (S32)(ratio * image_width) ; | 4437 | { |
4459 | snapshot_height = (S32)(ratio * image_height) ; | 4438 | GLint max_size = 0; |
4460 | scale_factor = llmax(1.0f, 1.0f / ratio) ; | 4439 | glGetIntegerv(GL_MAX_RENDERBUFFER_SIZE_EXT, &max_size); |
4440 | |||
4441 | if (image_width <= max_size && image_height <= max_size) //re-project the scene | ||
4442 | { | ||
4443 | use_fbo = TRUE; | ||
4444 | |||
4445 | snapshot_width = image_width; | ||
4446 | snapshot_height = image_height; | ||
4447 | target.allocate(snapshot_width, snapshot_height, GL_RGBA, TRUE, GL_TEXTURE_RECTANGLE_ARB, TRUE); | ||
4448 | window_width = snapshot_width; | ||
4449 | window_height = snapshot_height; | ||
4450 | scale_factor = 1.f; | ||
4451 | mWindowRect.set(0, 0, snapshot_width, snapshot_height); | ||
4452 | target.bindTarget(); | ||
4453 | } | ||
4454 | } | ||
4455 | |||
4456 | if(!use_fbo) //no re-projection, so tiling the scene | ||
4457 | { | ||
4458 | F32 ratio = llmin( (F32)window_width / image_width , (F32)window_height / image_height) ; | ||
4459 | snapshot_width = (S32)(ratio * image_width) ; | ||
4460 | snapshot_height = (S32)(ratio * image_height) ; | ||
4461 | scale_factor = llmax(1.0f, 1.0f / ratio) ; | ||
4462 | } | ||
4461 | } | 4463 | } |
4464 | //else: keep the current scene scale, re-scale it if necessary after reading out. | ||
4462 | } | 4465 | } |
4463 | 4466 | ||
4464 | S32 buffer_x_offset = llfloor(((window_width - snapshot_width) * scale_factor) / 2.f); | 4467 | S32 buffer_x_offset = llfloor(((window_width - snapshot_width) * scale_factor) / 2.f); |
@@ -4503,6 +4506,7 @@ BOOL LLViewerWindow::rawSnapshot(LLImageRaw *raw, S32 image_width, S32 image_hei | |||
4503 | for (int subimage_x = 0; subimage_x < scale_factor; ++subimage_x) | 4506 | for (int subimage_x = 0; subimage_x < scale_factor; ++subimage_x) |
4504 | { | 4507 | { |
4505 | gDisplaySwapBuffers = FALSE; | 4508 | gDisplaySwapBuffers = FALSE; |
4509 | gDepthDirty = TRUE; | ||
4506 | if (type == SNAPSHOT_TYPE_OBJECT_ID) | 4510 | if (type == SNAPSHOT_TYPE_OBJECT_ID) |
4507 | { | 4511 | { |
4508 | glClearColor(0.f, 0.f, 0.f, 0.f); | 4512 | glClearColor(0.f, 0.f, 0.f, 0.f); |
@@ -4586,6 +4590,7 @@ BOOL LLViewerWindow::rawSnapshot(LLImageRaw *raw, S32 image_width, S32 image_hei | |||
4586 | glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, 0); | 4590 | glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, 0); |
4587 | } | 4591 | } |
4588 | gDisplaySwapBuffers = FALSE; | 4592 | gDisplaySwapBuffers = FALSE; |
4593 | gDepthDirty = TRUE; | ||
4589 | 4594 | ||
4590 | // POST SNAPSHOT | 4595 | // POST SNAPSHOT |
4591 | if (!gPipeline.hasRenderDebugFeatureMask(LLPipeline::RENDER_DEBUG_FEATURE_UI)) | 4596 | if (!gPipeline.hasRenderDebugFeatureMask(LLPipeline::RENDER_DEBUG_FEATURE_UI)) |
diff --git a/linden/indra/newview/llvovolume.cpp b/linden/indra/newview/llvovolume.cpp index 6b5b9bb..a6d3c0b 100644 --- a/linden/indra/newview/llvovolume.cpp +++ b/linden/indra/newview/llvovolume.cpp | |||
@@ -1841,7 +1841,7 @@ F32 LLVOVolume::getBinRadius() | |||
1841 | } | 1841 | } |
1842 | else | 1842 | else |
1843 | { | 1843 | { |
1844 | radius = 32.f; | 1844 | radius = llmax(mDrawable->getRadius(), 32.f); |
1845 | } | 1845 | } |
1846 | } | 1846 | } |
1847 | else | 1847 | else |
diff --git a/linden/indra/newview/llwatchdog.cpp b/linden/indra/newview/llwatchdog.cpp index d92d381..55975ee 100644 --- a/linden/indra/newview/llwatchdog.cpp +++ b/linden/indra/newview/llwatchdog.cpp | |||
@@ -33,6 +33,8 @@ | |||
33 | #include "llviewerprecompiledheaders.h" | 33 | #include "llviewerprecompiledheaders.h" |
34 | #include "llwatchdog.h" | 34 | #include "llwatchdog.h" |
35 | 35 | ||
36 | const U32 WATCHDOG_SLEEP_TIME_USEC = 1000000; | ||
37 | |||
36 | // This class runs the watchdog timing thread. | 38 | // This class runs the watchdog timing thread. |
37 | class LLWatchdogTimerThread : public LLThread | 39 | class LLWatchdogTimerThread : public LLThread |
38 | { | 40 | { |
@@ -105,6 +107,11 @@ bool LLWatchdogTimeout::isAlive() const | |||
105 | return (mTimer.getStarted() && !mTimer.hasExpired()); | 107 | return (mTimer.getStarted() && !mTimer.hasExpired()); |
106 | } | 108 | } |
107 | 109 | ||
110 | void LLWatchdogTimeout::reset() | ||
111 | { | ||
112 | mTimer.setTimerExpirySec(mTimeout); | ||
113 | } | ||
114 | |||
108 | void LLWatchdogTimeout::setTimeout(F32 d) | 115 | void LLWatchdogTimeout::setTimeout(F32 d) |
109 | { | 116 | { |
110 | mTimeout = d; | 117 | mTimeout = d; |
@@ -132,13 +139,14 @@ void LLWatchdogTimeout::ping(const std::string& state) | |||
132 | { | 139 | { |
133 | mPingState = state; | 140 | mPingState = state; |
134 | } | 141 | } |
135 | mTimer.setTimerExpirySec(mTimeout); | 142 | reset(); |
136 | } | 143 | } |
137 | 144 | ||
138 | // LlWatchdog | 145 | // LLWatchdog |
139 | LLWatchdog::LLWatchdog() : | 146 | LLWatchdog::LLWatchdog() : |
140 | mSuspectsAccessMutex(NULL), | 147 | mSuspectsAccessMutex(NULL), |
141 | mTimer(NULL) | 148 | mTimer(NULL), |
149 | mLastClockCount(0) | ||
142 | { | 150 | { |
143 | } | 151 | } |
144 | 152 | ||
@@ -166,7 +174,11 @@ void LLWatchdog::init() | |||
166 | { | 174 | { |
167 | mSuspectsAccessMutex = new LLMutex(NULL); | 175 | mSuspectsAccessMutex = new LLMutex(NULL); |
168 | mTimer = new LLWatchdogTimerThread(); | 176 | mTimer = new LLWatchdogTimerThread(); |
169 | mTimer->setSleepTime(1000); | 177 | mTimer->setSleepTime(WATCHDOG_SLEEP_TIME_USEC / 1000); |
178 | mLastClockCount = LLTimer::getTotalTime(); | ||
179 | |||
180 | // mTimer->start() kicks off the thread, any code after | ||
181 | // start needs to use the mSuspectsAccessMutex | ||
170 | mTimer->start(); | 182 | mTimer->start(); |
171 | } | 183 | } |
172 | } | 184 | } |
@@ -177,40 +189,64 @@ void LLWatchdog::cleanup() | |||
177 | { | 189 | { |
178 | mTimer->stop(); | 190 | mTimer->stop(); |
179 | delete mTimer; | 191 | delete mTimer; |
192 | mTimer = NULL; | ||
180 | } | 193 | } |
181 | 194 | ||
182 | if(mSuspectsAccessMutex) | 195 | if(mSuspectsAccessMutex) |
183 | { | 196 | { |
184 | delete mSuspectsAccessMutex; | 197 | delete mSuspectsAccessMutex; |
198 | mSuspectsAccessMutex = NULL; | ||
185 | } | 199 | } |
200 | |||
201 | mLastClockCount = 0; | ||
186 | } | 202 | } |
187 | 203 | ||
188 | void LLWatchdog::run() | 204 | void LLWatchdog::run() |
189 | { | 205 | { |
190 | lockThread(); | 206 | lockThread(); |
207 | |||
208 | // Check the time since the last call to run... | ||
209 | // If the time elapsed is two times greater than the regualr sleep time | ||
210 | // reset the active timeouts. | ||
211 | const U32 TIME_ELAPSED_MULTIPLIER = 2; | ||
212 | U64 current_time = LLTimer::getTotalTime(); | ||
213 | U64 current_run_delta = current_time - mLastClockCount; | ||
214 | mLastClockCount = current_time; | ||
191 | 215 | ||
192 | SuspectsRegistry::iterator result = | 216 | if(current_run_delta > (WATCHDOG_SLEEP_TIME_USEC * TIME_ELAPSED_MULTIPLIER)) |
193 | std::find_if(mSuspects.begin(), | 217 | { |
218 | llinfos << "Watchdog thread delayed: resetting entries." << llendl; | ||
219 | std::for_each(mSuspects.begin(), | ||
194 | mSuspects.end(), | 220 | mSuspects.end(), |
195 | std::not1(std::mem_fun(&LLWatchdogEntry::isAlive)) | 221 | std::mem_fun(&LLWatchdogEntry::reset) |
196 | ); | 222 | ); |
197 | 223 | } | |
198 | if(result != mSuspects.end()) | 224 | else |
199 | { | 225 | { |
200 | // error!!! | 226 | SuspectsRegistry::iterator result = |
201 | if(mTimer) | 227 | std::find_if(mSuspects.begin(), |
228 | mSuspects.end(), | ||
229 | std::not1(std::mem_fun(&LLWatchdogEntry::isAlive)) | ||
230 | ); | ||
231 | |||
232 | if(result != mSuspects.end()) | ||
202 | { | 233 | { |
203 | mTimer->stop(); | 234 | // error!!! |
204 | } | 235 | if(mTimer) |
236 | { | ||
237 | mTimer->stop(); | ||
238 | } | ||
205 | 239 | ||
206 | llinfos << "Watchdog detected error:" << llendl; | 240 | llinfos << "Watchdog detected error:" << llendl; |
207 | #ifdef LL_WINDOWS | 241 | #ifdef LL_WINDOWS |
208 | RaiseException(0,0,0,0); | 242 | RaiseException(0,0,0,0); |
209 | #else | 243 | #else |
210 | raise(SIGQUIT); | 244 | raise(SIGQUIT); |
211 | #endif | 245 | #endif |
246 | } | ||
212 | } | 247 | } |
213 | 248 | ||
249 | |||
214 | unlockThread(); | 250 | unlockThread(); |
215 | } | 251 | } |
216 | 252 | ||
diff --git a/linden/indra/newview/llwatchdog.h b/linden/indra/newview/llwatchdog.h index c1f2b94..d196486 100644 --- a/linden/indra/newview/llwatchdog.h +++ b/linden/indra/newview/llwatchdog.h | |||
@@ -48,6 +48,7 @@ public: | |||
48 | // This may mean that resources used by | 48 | // This may mean that resources used by |
49 | // isAlive and other method may need synchronization. | 49 | // isAlive and other method may need synchronization. |
50 | virtual bool isAlive() const = 0; | 50 | virtual bool isAlive() const = 0; |
51 | virtual void reset() = 0; | ||
51 | virtual void start(); | 52 | virtual void start(); |
52 | virtual void stop(); | 53 | virtual void stop(); |
53 | }; | 54 | }; |
@@ -59,6 +60,7 @@ public: | |||
59 | virtual ~LLWatchdogTimeout(); | 60 | virtual ~LLWatchdogTimeout(); |
60 | 61 | ||
61 | /* virtual */ bool isAlive() const; | 62 | /* virtual */ bool isAlive() const; |
63 | /* virtual */ void reset(); | ||
62 | /* virtual */ void start(const std::string& state); | 64 | /* virtual */ void start(const std::string& state); |
63 | /* virtual */ void stop(); | 65 | /* virtual */ void stop(); |
64 | 66 | ||
@@ -95,6 +97,7 @@ private: | |||
95 | SuspectsRegistry mSuspects; | 97 | SuspectsRegistry mSuspects; |
96 | LLMutex* mSuspectsAccessMutex; | 98 | LLMutex* mSuspectsAccessMutex; |
97 | LLWatchdogTimerThread* mTimer; | 99 | LLWatchdogTimerThread* mTimer; |
100 | U64 mLastClockCount; | ||
98 | }; | 101 | }; |
99 | 102 | ||
100 | #endif // LL_LLTHREADWATCHDOG_H | 103 | #endif // LL_LLTHREADWATCHDOG_H |
diff --git a/linden/indra/newview/llwearable.cpp b/linden/indra/newview/llwearable.cpp index 6e8123a..27811e8 100644 --- a/linden/indra/newview/llwearable.cpp +++ b/linden/indra/newview/llwearable.cpp | |||
@@ -846,7 +846,7 @@ struct LLWearableSaveData | |||
846 | void LLWearable::saveNewAsset() | 846 | void LLWearable::saveNewAsset() |
847 | { | 847 | { |
848 | // llinfos << "LLWearable::saveNewAsset() type: " << getTypeName() << llendl; | 848 | // llinfos << "LLWearable::saveNewAsset() type: " << getTypeName() << llendl; |
849 | //dump(); | 849 | //llinfos << *this << llendl; |
850 | 850 | ||
851 | char new_asset_id_string[UUID_STR_LENGTH]; /* Flawfinder: ignore */ | 851 | char new_asset_id_string[UUID_STR_LENGTH]; /* Flawfinder: ignore */ |
852 | mAssetID.toString(new_asset_id_string); | 852 | mAssetID.toString(new_asset_id_string); |
@@ -949,31 +949,32 @@ BOOL LLWearable::isMatchedToInventoryItem( LLViewerInventoryItem* item ) | |||
949 | ( mSaleInfo == item->getSaleInfo() ); | 949 | ( mSaleInfo == item->getSaleInfo() ); |
950 | } | 950 | } |
951 | 951 | ||
952 | void LLWearable::dump() | 952 | std::ostream& operator<<(std::ostream &s, const LLWearable &w) |
953 | { | 953 | { |
954 | llinfos << "wearable " << LLWearable::typeToTypeName( mType ) << llendl; | 954 | s << "wearable " << LLWearable::typeToTypeName( w.mType ) << "\n"; |
955 | llinfos << " Name: " << mName << llendl; | 955 | s << " Name: " << w.mName << "\n"; |
956 | llinfos << " Desc: " << mDescription << llendl; | 956 | s << " Desc: " << w.mDescription << "\n"; |
957 | //mPermissions | 957 | //w.mPermissions |
958 | //mSaleInfo | 958 | //w.mSaleInfo |
959 | 959 | ||
960 | llinfos << " Params:" << llendl; | 960 | s << " Params:" << "\n"; |
961 | for (param_map_t::iterator iter = mVisualParamMap.begin(); | 961 | for (LLWearable::param_map_t::const_iterator iter = w.mVisualParamMap.begin(); |
962 | iter != mVisualParamMap.end(); ++iter) | 962 | iter != w.mVisualParamMap.end(); ++iter) |
963 | { | 963 | { |
964 | S32 param_id = iter->first; | 964 | S32 param_id = iter->first; |
965 | F32 param_weight = iter->second; | 965 | F32 param_weight = iter->second; |
966 | llinfos << " " << param_id << " " << param_weight << llendl; | 966 | s << " " << param_id << " " << param_weight << "\n"; |
967 | } | 967 | } |
968 | 968 | ||
969 | llinfos << " Textures:" << llendl; | 969 | s << " Textures:" << "\n"; |
970 | for (te_map_t::iterator iter = mTEMap.begin(); | 970 | for (LLWearable::te_map_t::const_iterator iter = w.mTEMap.begin(); |
971 | iter != mTEMap.end(); ++iter) | 971 | iter != w.mTEMap.end(); ++iter) |
972 | { | 972 | { |
973 | S32 te = iter->first; | 973 | S32 te = iter->first; |
974 | LLUUID& image_id = iter->second; | 974 | const LLUUID& image_id = iter->second; |
975 | llinfos << " " << te << " " << image_id << llendl; | 975 | s << " " << te << " " << image_id << "\n"; |
976 | } | 976 | } |
977 | return s; | ||
977 | } | 978 | } |
978 | 979 | ||
979 | 980 | ||
diff --git a/linden/indra/newview/llwearable.h b/linden/indra/newview/llwearable.h index 63243eb..977d29b 100644 --- a/linden/indra/newview/llwearable.h +++ b/linden/indra/newview/llwearable.h | |||
@@ -118,7 +118,7 @@ public: | |||
118 | 118 | ||
119 | static void setCurrentDefinitionVersion( S32 version ) { LLWearable::sCurrentDefinitionVersion = version; } | 119 | static void setCurrentDefinitionVersion( S32 version ) { LLWearable::sCurrentDefinitionVersion = version; } |
120 | 120 | ||
121 | void dump(); | 121 | friend std::ostream& operator<<(std::ostream &s, const LLWearable &w); |
122 | 122 | ||
123 | private: | 123 | private: |
124 | static S32 sCurrentDefinitionVersion; // Depends on the current state of the avatar_lad.xml. | 124 | static S32 sCurrentDefinitionVersion; // Depends on the current state of the avatar_lad.xml. |
diff --git a/linden/indra/newview/llwearablelist.cpp b/linden/indra/newview/llwearablelist.cpp index cabf20a..75986c1 100644 --- a/linden/indra/newview/llwearablelist.cpp +++ b/linden/indra/newview/llwearablelist.cpp | |||
@@ -57,13 +57,15 @@ struct LLWearableArrivedData | |||
57 | mAssetType( asset_type ), | 57 | mAssetType( asset_type ), |
58 | mCallback( asset_arrived_callback ), | 58 | mCallback( asset_arrived_callback ), |
59 | mUserdata( userdata ), | 59 | mUserdata( userdata ), |
60 | mName( wearable_name ) | 60 | mName( wearable_name ), |
61 | mRetries(0) | ||
61 | {} | 62 | {} |
62 | 63 | ||
63 | LLAssetType::EType mAssetType; | 64 | LLAssetType::EType mAssetType; |
64 | void (*mCallback)(LLWearable*, void* userdata); | 65 | void (*mCallback)(LLWearable*, void* userdata); |
65 | void* mUserdata; | 66 | void* mUserdata; |
66 | LLString mName; | 67 | LLString mName; |
68 | S32 mRetries; | ||
67 | }; | 69 | }; |
68 | 70 | ||
69 | 71 | ||
@@ -99,12 +101,12 @@ void LLWearableList::getAsset( const LLAssetID& assetID, const LLString& wearabl | |||
99 | // static | 101 | // static |
100 | void LLWearableList::processGetAssetReply( const char* filename, const LLAssetID& uuid, void* userdata, S32 status, LLExtStat ext_status ) | 102 | void LLWearableList::processGetAssetReply( const char* filename, const LLAssetID& uuid, void* userdata, S32 status, LLExtStat ext_status ) |
101 | { | 103 | { |
102 | BOOL success = FALSE; | ||
103 | LLWearableArrivedData* data = (LLWearableArrivedData*) userdata; | 104 | LLWearableArrivedData* data = (LLWearableArrivedData*) userdata; |
104 | 105 | LLWearable* wearable = NULL; // NULL indicates failure | |
106 | |||
105 | if( !filename ) | 107 | if( !filename ) |
106 | { | 108 | { |
107 | llinfos << "Bad Wearable Asset: missing file." << llendl; | 109 | LL_WARNS("Wearable") << "Bad Wearable Asset: missing file." << LL_ENDL; |
108 | } | 110 | } |
109 | else | 111 | else |
110 | if( status >= 0 ) | 112 | if( status >= 0 ) |
@@ -113,38 +115,16 @@ void LLWearableList::processGetAssetReply( const char* filename, const LLAssetID | |||
113 | LLFILE* fp = LLFile::fopen(filename, "rb"); /*Flawfinder: ignore*/ | 115 | LLFILE* fp = LLFile::fopen(filename, "rb"); /*Flawfinder: ignore*/ |
114 | if( !fp ) | 116 | if( !fp ) |
115 | { | 117 | { |
116 | llinfos << "Bad Wearable Asset: unable to open file: '" << filename << "'" << llendl; | 118 | LL_WARNS("Wearable") << "Bad Wearable Asset: unable to open file: '" << filename << "'" << LL_ENDL; |
117 | } | 119 | } |
118 | else | 120 | else |
119 | { | 121 | { |
120 | LLWearable *wearable = new LLWearable(uuid); | 122 | wearable = new LLWearable(uuid); |
121 | if( wearable->importFile( fp ) ) | 123 | bool res = wearable->importFile( fp ); |
122 | { | 124 | if (!res) |
123 | // llinfos << "processGetAssetReply()" << llendl; | ||
124 | // wearable->dump(); | ||
125 | |||
126 | gWearableList.mList[ uuid ] = wearable; | ||
127 | if( data->mCallback ) | ||
128 | { | ||
129 | data->mCallback( wearable, data->mUserdata ); | ||
130 | } | ||
131 | success = TRUE; | ||
132 | } | ||
133 | else | ||
134 | { | 125 | { |
135 | LLString::format_map_t args; | ||
136 | // *TODO:translate | ||
137 | args["[TYPE]"] = LLAssetType::lookupHumanReadable(data->mAssetType); | ||
138 | if (data->mName.empty()) | ||
139 | { | ||
140 | LLNotifyBox::showXml("FailedToLoadWearableUnnamed", args); | ||
141 | } | ||
142 | else | ||
143 | { | ||
144 | args["[DESC]"] = data->mName; | ||
145 | LLNotifyBox::showXml("FailedToLoadWearable", args); | ||
146 | } | ||
147 | delete wearable; | 126 | delete wearable; |
127 | wearable = NULL; | ||
148 | } | 128 | } |
149 | 129 | ||
150 | fclose( fp ); | 130 | fclose( fp ); |
@@ -162,44 +142,64 @@ void LLWearableList::processGetAssetReply( const char* filename, const LLAssetID | |||
162 | } | 142 | } |
163 | LLViewerStats::getInstance()->incStat( LLViewerStats::ST_DOWNLOAD_FAILED ); | 143 | LLViewerStats::getInstance()->incStat( LLViewerStats::ST_DOWNLOAD_FAILED ); |
164 | 144 | ||
165 | llwarns << "Wearable download failed: " << LLAssetStorage::getErrorString( status ) << " " << uuid << llendl; | 145 | LL_WARNS("Wearable") << "Wearable download failed: " << LLAssetStorage::getErrorString( status ) << " " << uuid << LL_ENDL; |
166 | switch( status ) | 146 | switch( status ) |
167 | { | 147 | { |
168 | case LL_ERR_ASSET_REQUEST_NOT_IN_DATABASE: | 148 | case LL_ERR_ASSET_REQUEST_NOT_IN_DATABASE: |
169 | { | 149 | { |
170 | LLString::format_map_t args; | 150 | // Fail |
171 | // *TODO:translate | 151 | break; |
172 | args["[TYPE]"] = LLAssetType::lookupHumanReadable(data->mAssetType); | 152 | } |
173 | if (data->mName.empty()) | 153 | default: |
154 | { | ||
155 | static const S32 MAX_RETRIES = 3; | ||
156 | if (data->mRetries < MAX_RETRIES) | ||
174 | { | 157 | { |
175 | LLNotifyBox::showXml("FailedToFindWearableUnnamed", args); | 158 | // Try again |
159 | data->mRetries++; | ||
160 | gAssetStorage->getAssetData(uuid, | ||
161 | data->mAssetType, | ||
162 | LLWearableList::processGetAssetReply, | ||
163 | userdata); // re-use instead of deleting. | ||
164 | return; | ||
176 | } | 165 | } |
177 | else | 166 | else |
178 | { | 167 | { |
179 | args["[DESC]"] = data->mName; | 168 | // Fail |
180 | LLNotifyBox::showXml("FailedToFindWearable", args); | 169 | break; |
181 | } | 170 | } |
182 | |||
183 | // Asset does not exist in the database. | ||
184 | // Can't load asset, so return NULL | ||
185 | if( data->mCallback ) | ||
186 | { | ||
187 | data->mCallback( NULL, data->mUserdata ); | ||
188 | } | ||
189 | break; | ||
190 | } | ||
191 | default: | ||
192 | { | ||
193 | // Try again | ||
194 | gAssetStorage->getAssetData(uuid, | ||
195 | data->mAssetType, | ||
196 | LLWearableList::processGetAssetReply, | ||
197 | userdata); // re-use instead of deleting. | ||
198 | return; | ||
199 | } | 171 | } |
200 | } | 172 | } |
201 | } | 173 | } |
202 | 174 | ||
175 | if (wearable) // success | ||
176 | { | ||
177 | gWearableList.mList[ uuid ] = wearable; | ||
178 | LL_DEBUGS("Wearable") << "processGetAssetReply()" << LL_ENDL; | ||
179 | LL_DEBUGS("Wearable") << wearable << LL_ENDL; | ||
180 | } | ||
181 | else | ||
182 | { | ||
183 | LLString::format_map_t args; | ||
184 | // *TODO:translate | ||
185 | args["[TYPE]"] = LLAssetType::lookupHumanReadable(data->mAssetType); | ||
186 | if (data->mName.empty()) | ||
187 | { | ||
188 | LLNotifyBox::showXml("FailedToFindWearableUnnamed", args); | ||
189 | } | ||
190 | else | ||
191 | { | ||
192 | args["[DESC]"] = data->mName; | ||
193 | LLNotifyBox::showXml("FailedToFindWearable", args); | ||
194 | } | ||
195 | } | ||
196 | // Always call callback; wearable will be NULL if we failed | ||
197 | { | ||
198 | if( data->mCallback ) | ||
199 | { | ||
200 | data->mCallback( wearable, data->mUserdata ); | ||
201 | } | ||
202 | } | ||
203 | delete data; | 203 | delete data; |
204 | } | 204 | } |
205 | 205 | ||
diff --git a/linden/indra/newview/pipeline.cpp b/linden/indra/newview/pipeline.cpp index 20fd5a7..67bf647 100644 --- a/linden/indra/newview/pipeline.cpp +++ b/linden/indra/newview/pipeline.cpp | |||
@@ -108,8 +108,6 @@ | |||
108 | //#define DEBUG_INDICES | 108 | //#define DEBUG_INDICES |
109 | #endif | 109 | #endif |
110 | 110 | ||
111 | void render_ui_and_swap_if_needed(); | ||
112 | |||
113 | const F32 BACKLIGHT_DAY_MAGNITUDE_AVATAR = 0.2f; | 111 | const F32 BACKLIGHT_DAY_MAGNITUDE_AVATAR = 0.2f; |
114 | const F32 BACKLIGHT_NIGHT_MAGNITUDE_AVATAR = 0.1f; | 112 | const F32 BACKLIGHT_NIGHT_MAGNITUDE_AVATAR = 0.1f; |
115 | const F32 BACKLIGHT_DAY_MAGNITUDE_OBJECT = 0.1f; | 113 | const F32 BACKLIGHT_DAY_MAGNITUDE_OBJECT = 0.1f; |
@@ -1546,10 +1544,8 @@ void LLPipeline::shiftObjects(const LLVector3 &offset) | |||
1546 | 1544 | ||
1547 | assertInitialized(); | 1545 | assertInitialized(); |
1548 | 1546 | ||
1549 | //do a swap to indicate an invalid previous frame camera | ||
1550 | render_ui_and_swap_if_needed(); | ||
1551 | glClear(GL_DEPTH_BUFFER_BIT); | 1547 | glClear(GL_DEPTH_BUFFER_BIT); |
1552 | gDisplaySwapBuffers = FALSE; | 1548 | gDepthDirty = FALSE; |
1553 | 1549 | ||
1554 | for (LLDrawable::drawable_vector_t::iterator iter = mShiftList.begin(); | 1550 | for (LLDrawable::drawable_vector_t::iterator iter = mShiftList.begin(); |
1555 | iter != mShiftList.end(); iter++) | 1551 | iter != mShiftList.end(); iter++) |
@@ -1974,7 +1970,10 @@ void LLPipeline::postSort(LLCamera& camera) | |||
1974 | } | 1970 | } |
1975 | } | 1971 | } |
1976 | 1972 | ||
1977 | //build render map | 1973 | //rebuild groups |
1974 | sCull->assertDrawMapsEmpty(); | ||
1975 | |||
1976 | LLSpatialGroup::sNoDelete = FALSE; | ||
1978 | for (LLCullResult::sg_list_t::iterator i = sCull->beginVisibleGroups(); i != sCull->endVisibleGroups(); ++i) | 1977 | for (LLCullResult::sg_list_t::iterator i = sCull->beginVisibleGroups(); i != sCull->endVisibleGroups(); ++i) |
1979 | { | 1978 | { |
1980 | LLSpatialGroup* group = *i; | 1979 | LLSpatialGroup* group = *i; |
@@ -1985,6 +1984,18 @@ void LLPipeline::postSort(LLCamera& camera) | |||
1985 | } | 1984 | } |
1986 | 1985 | ||
1987 | group->rebuildGeom(); | 1986 | group->rebuildGeom(); |
1987 | } | ||
1988 | LLSpatialGroup::sNoDelete = TRUE; | ||
1989 | |||
1990 | //build render map | ||
1991 | for (LLCullResult::sg_list_t::iterator i = sCull->beginVisibleGroups(); i != sCull->endVisibleGroups(); ++i) | ||
1992 | { | ||
1993 | LLSpatialGroup* group = *i; | ||
1994 | if (sUseOcclusion && | ||
1995 | group->isState(LLSpatialGroup::OCCLUDED)) | ||
1996 | { | ||
1997 | continue; | ||
1998 | } | ||
1988 | 1999 | ||
1989 | for (LLSpatialGroup::draw_map_t::iterator j = group->mDrawMap.begin(); j != group->mDrawMap.end(); ++j) | 2000 | for (LLSpatialGroup::draw_map_t::iterator j = group->mDrawMap.begin(); j != group->mDrawMap.end(); ++j) |
1990 | { | 2001 | { |
@@ -2113,6 +2124,8 @@ void LLPipeline::postSort(LLCamera& camera) | |||
2113 | } func; | 2124 | } func; |
2114 | LLSelectMgr::getInstance()->getSelection()->applyToTEs(&func); | 2125 | LLSelectMgr::getInstance()->getSelection()->applyToTEs(&func); |
2115 | } | 2126 | } |
2127 | |||
2128 | LLSpatialGroup::sNoDelete = FALSE; | ||
2116 | } | 2129 | } |
2117 | 2130 | ||
2118 | 2131 | ||
diff --git a/linden/indra/newview/releasenotes.txt b/linden/indra/newview/releasenotes.txt index 12cd9fb..bbbe693 100644 --- a/linden/indra/newview/releasenotes.txt +++ b/linden/indra/newview/releasenotes.txt | |||
@@ -1,40 +1,103 @@ | |||
1 | +------------------------------------------------------+ | ||
2 | | Complete release notes for the | | ||
3 | | Release Candidate Viewer can also be found at | | ||
4 | | http://wiki.secondlife.com/wiki/Beta_Release_Notes | | ||
5 | +------------------------------------------------------+ | ||
6 | |||
7 | Release Notes for Second Life 1.20(9) May 30th, 2008 | ||
8 | ===================================== | ||
9 | |||
10 | Fixes: | ||
11 | * 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) | ||
13 | * 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 | ||
16 | * 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 | ||
18 | * Fixed: VWR-1352: A strange copy operation of LLStyle | ||
19 | * Fixed: VWR-6244: Building outlines get dissorted/out of position by one frame when moving the object with SpaceNavigator | ||
20 | * Fixed: VWR-6016: FMOD problem: update3dPosition error | ||
21 | * Fixed: VWR-7234: llcommon/files.lst has two entries for lllog.cpp | ||
22 | * Fixed: Pasting multiline clipboard content into chat loses newlines | ||
23 | * Fixed: RC7 doesnt show the release candidate login screen | ||
24 | * Fixed: RC7 grid selection doesn't persist | ||
25 | * Fixed: Change Linux viewer default compiler from gcc3.4 to gcc4.1 | ||
26 | * Fixed: crash in LLFolderViewFolder::setSelection | ||
27 | * 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 | ||
29 | * 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 | ||
33 | * 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 | ||
35 | * Fixed: Parcel tag overlaps image on Sell Land floater if longer than 36 characters | ||
36 | * Fixed: crash on LLSurface::resolvePatchRegion() | ||
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 | ||
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 | ||
41 | |||
42 | Localization Fixes: | ||
43 | * Fixed: Added new translation strings for German, Korean, Japanese | ||
44 | |||
45 | Release Notes for Second Life 1.20(8) May 22nd, 2008 | ||
46 | ===================================== | ||
47 | |||
48 | Fixes: | ||
49 | * Fixed: VWR-7347: 'For sale' amounts in objects' Hover Tips show a garbage character | ||
50 | * Fixed: RC7 is unable to buy Linden Dollars | ||
51 | * Fixed: Tuned behavior of thread monitoring (also called watchdog) to deal with extraneous crashing in RC7 | ||
52 | * Fixed: Disabled thread monitoring for Mac and linux versions | ||
53 | * Fixed: Fix the premature start of thread watchdog mainloop timeout | ||
54 | |||
1 | Release Notes for Second Life 1.20(7) May 16th, 2008 | 55 | Release Notes for Second Life 1.20(7) May 16th, 2008 |
2 | ===================================== | 56 | ===================================== |
3 | 57 | ||
4 | New features and changes: | 58 | New features and changes: |
5 | * Pasting multiline clipboard content into Chat will show a Paragraph symbol at newlines | ||
6 | * Moved "Set Window Size" options from File menu into Preferences > Graphics | 59 | * Moved "Set Window Size" options from File menu into Preferences > Graphics |
7 | * New users are rendered as a cloud, rather than naked, before they choose a gender | 60 | * Newly created avatars without a gender, or any avatar where "clothing is still downloading" are rendered as a cloud rather than naked/wrong body shape |
8 | * Directly interacting with a muted resident will unmute them, with a note logged in the Chat history (VWR-1735) | 61 | * Directly interacting with a muted resident will unmute them, with a note logged in the Chat history (VWR-1735) |
9 | * Fly button is now shown as disabled when you are sitting | 62 | * Fly button is now shown as disabled when you are sitting |
63 | * Pasting multiline clipboard content into Chat will show a Paragraph symbol at newlines (Partial Fix behavior) | ||
10 | * Group Info > Notices tab explains the storage limits of 200 notices and 14 days | 64 | * Group Info > Notices tab explains the storage limits of 200 notices and 14 days |
11 | * Added OpenGL monitoring via Advanced menu > Rendering > Debug GL option to turn on extra rendering error checking and help reproduce crashes | 65 | * Added OpenGL monitoring via Advanced menu > Rendering > Debug GL option to turn on extra rendering error checking and help reproduce crashes |
12 | * Added beta support for basic voice lipsync for voice visualization (VWR-4794) - via Advanced menu > Character | 66 | * Added beta support for basic voice lipsync for voice visualization (VWR-4794) - via Advanced menu > Character |
13 | * Changed resident names to be interactive in Chat/IM: | 67 | * The 'camera shutter' soundclip/animation plays whenever a new image is acquired by Snapshot Preview (this camera shutter sound indicates, like a real camera, that you have taken a new picture of the world). The sound does not play repeatedly if auto-snapshot is on |
14 | ** Clicking on resident names in Local Chat will open their Profile page | 68 | * Disabled the Snapshot Preview > Auto-snapshot checkbox, unless Freeze Frame checkbox is set. (This clarifies that Auto-snapshot previously only worked in this case.) |
15 | ** Clicking on resident names in a Group IM will open an individual IM | 69 | |
70 | * Clicking on resident names in Local Chat or in a Group IM will open their Profile page | ||
71 | ** The color of clickable resident names uses the same color as URL hyperlinks in chat. These may be changed in Preferences > Text Chat > color picker for "URLs" | ||
16 | 72 | ||
17 | * Added four texture constants for referencing in llSetLinkTexture in scripts: | 73 | * Added four texture constants for referencing in llSetLinkTexture: |
18 | ** TEXTURE_BLANK, TEXTURE_DEFAULT, TEXTURE_PLYWOOD and TEXTURE_TRANSPARENT | 74 | ** TEXTURE_BLANK is the non-transparent blank texture, equivalent to "5748decc-f629-461c-9a36-a35a221fe21f" |
19 | ** Note: Scripts using these constants will run in all Second Life viewers, however previous versions of the viewer will not be able to edit and recompile scripts using the new TEXTURE_BLANK constant; older versions trying to compile such a script will report "(XX,YY) : ERROR : Name not defined within scope." | 75 | ** TEXTURE_DEFAULT is the default Media texture, equivalent to "8b5fec65-8d8d-9dc5-cda8-8fdf2716e361" |
76 | ** TEXTURE_PLYWOOD is the plywood texture, equivalent to "89556747-24cb-43ed-920b-47caed15465f" | ||
77 | ** TEXTURE_TRANSPARENT is the default "white transparent" texture, equivalent to "59facb66-4a72-40a2-815c-7d9b42c56f60" | ||
78 | ** Note: Scripts using these constants will run smoothly in all Second Life viewers, however previous versions of the viewer will NOT be able to edit and recompile scripts using the new constants. Older versions will report "(XX,YY) : ERROR : Name not defined within scope" when trying to compile such a script. | ||
20 | 79 | ||
21 | * Thread monitoring to catch freezes | 80 | * Thread monitoring to catch freezes: |
22 | ** A new thread monitor will detect when the viewer application frozen for a period greater than 10 seconds and possibly force a crash with detailed logs | 81 | ** A new thread monitor (also referred to as a Watchdog) will detect when the viewer application frozen for a period greater than 10 seconds and possibly force a crash with detailed logs |
82 | ** Thread monitoring can be disabled by choosing to never report crashes, or with a command line setting "--set WatchdogEnabled 0" | ||
83 | ** The threshold timing of the thread monitor is set in the file /app_settings/settings.xml under the key "MainloopTimeoutDefault" | ||
23 | 84 | ||
24 | * Improved internationalization support: | 85 | * Improved internationalization support: |
25 | ** Make 'System Default' language option work on Linux and Windows. | 86 | ** Make 'System Default' language option work on Linux and Windows. |
26 | ** Make unicode system font support good on Linux | 87 | ** Make unicode system font support good on Linux |
27 | 88 | ||
28 | * Improvements to Search | 89 | * Improvements to Search: |
29 | ** Search > Popular Places is replaced by a Search > Showcase tab that points to the website Showcase | 90 | ** Search > Popular Places is replaced by a Search > Showcase tab that points to the website Showcase |
30 | ** Search > Places and Search > Groups use web-based search | 91 | ** Search > Places, and Search > Groups use web-based search |
31 | ** Classified ads have a drop-down menu to indicate Mature or Not Mature content | 92 | ** Classified ads have a drop-down menu to indicate Mature or Not Mature content |
32 | 93 | ||
33 | Changes: | 94 | Changes: |
34 | * VWR-4794: Basic voice lipsync for voice visualization | 95 | * VWR-4794: Basic voice lipsync for voice visualization |
35 | * VWR-4204: Clicking on names in Chat/Group IM history should open Profile page or IM | 96 | * VWR-4204: Clicking on names in Chat/Group IM history should open Profile page |
36 | * VWR-463: Blank is a pre-defined texture in client, but not in LSL | 97 | * VWR-463: Blank is a pre-defined texture in client, but not in LSL |
37 | * Updated library version for openssl | 98 | * Updated library version for openssl |
99 | * Added thread monitoring to the viewer | ||
100 | * Added a setting switch to completely disable thread monitoring | ||
38 | * New users are shown as a cloud rather than naked until they choose a gender. | 101 | * New users are shown as a cloud rather than naked until they choose a gender. |
39 | * Move "Set Window Size" options from File menu into Preferences > Graphics | 102 | * Move "Set Window Size" options from File menu into Preferences > Graphics |
40 | * Make clothing-still-downloading dialog into an ignorable alert dialog | 103 | * Make clothing-still-downloading dialog into an ignorable alert dialog |
@@ -44,6 +107,8 @@ Changes: | |||
44 | * Convert Search > Group tab to use HTML search | 107 | * Convert Search > Group tab to use HTML search |
45 | * Search: Require Mature/Not Mature in Classifieds | 108 | * Search: Require Mature/Not Mature in Classifieds |
46 | * Make strict GL debugging toggleable on-the-fly via Advanced menu > Rendering > Debug GL option - turns on extra rendering error checking and help reproduce crashes | 109 | * Make strict GL debugging toggleable on-the-fly via Advanced menu > Rendering > Debug GL option - turns on extra rendering error checking and help reproduce crashes |
110 | * The 'camera shutter' soundclip/animation plays whenever a new image is acquired by Snapshot Preview, but not repeatedly if auto-snapshot is on | ||
111 | * Disabled the Snapshot Preview > Auto-snapshot checkbox, unless Freeze Frame checkbox is set | ||
47 | 112 | ||
48 | Fixes: | 113 | Fixes: |
49 | * Fixed: VWR-104: Unused class LLVertexProgramGL should be removed | 114 | * Fixed: VWR-104: Unused class LLVertexProgramGL should be removed |
@@ -63,12 +128,17 @@ Fixes: | |||
63 | * Fixed: VWR-3857: Script (LSL) editor shows non Latin 1 characters as square boxes | 128 | * Fixed: VWR-3857: Script (LSL) editor shows non Latin 1 characters as square boxes |
64 | * Fixed: VWR-2275: Linux 1.18.3 Won't Link | 129 | * Fixed: VWR-2275: Linux 1.18.3 Won't Link |
65 | * Fixed: VWR-3813: gtk_check_version() API changed to return const gchar * - causes gcc ERROR | 130 | * Fixed: VWR-3813: gtk_check_version() API changed to return const gchar * - causes gcc ERROR |
131 | * Fixed: VWR-1735: Directly interacting with a muted resident should unmute them | ||
132 | * Fixed: VWR-2142: Parcel voice icon doesn't reflect disabled status if voice isn't used | ||
133 | * Fixed: VWR-5853: Double-Clicking on vertical edge of Inventory/Gesture window destroys the floating window. | ||
134 | * Fixed: VWR-2448: Snapshot Preview tool should respect 'Quiet Snapshots to Disk' | ||
66 | * Fixed: llrender.cpp export | 135 | * Fixed: llrender.cpp export |
136 | * Fixed: Clean up log messages in viewer to make crash logs more readable and useful | ||
67 | * Fixed: Create secondlife:///app/ URL to open my groups panel | 137 | * Fixed: Create secondlife:///app/ URL to open my groups panel |
68 | * Fixed: Create secondlife:///app/ URL to open create groups dialog | 138 | * Fixed: Create secondlife:///app/ URL to open create groups dialog |
69 | * Fixed: Display a message if LLWebBrowserCtrl blocks a secondlife:///app/* url | 139 | * Fixed: Display a message if LLWebBrowserCtrl blocks a secondlife:///app/* url |
70 | * Fixed: Abstract common glTexParameter calls | 140 | * Fixed: Abstract common glTexParameter calls |
71 | * Fixed: Orientation Island HUD select language texture is wrong for English in 1.20 | 141 | * Fixed: Orientation Island HUD select language texture is wrong for English version in 1.20 |
72 | * Fixed: Double-clicking border of communicate window makes window unrecoverable | 142 | * Fixed: Double-clicking border of communicate window makes window unrecoverable |
73 | * Fixed: Command line parser bug parsing "--multiple true" at beginning of a command line. | 143 | * Fixed: Command line parser bug parsing "--multiple true" at beginning of a command line. |
74 | * Fixed: --loginuri is not being handled correctly | 144 | * Fixed: --loginuri is not being handled correctly |
@@ -76,15 +146,13 @@ Fixes: | |||
76 | * Fixed: crash in LLMediaImplQuickTime::load | 146 | * Fixed: crash in LLMediaImplQuickTime::load |
77 | * Fixed: crash on LLViewerParcelMedia::update | 147 | * Fixed: crash on LLViewerParcelMedia::update |
78 | * Fixed: Pop-up menu width should try to accomodate the longest menu item (within reason) | 148 | * Fixed: Pop-up menu width should try to accomodate the longest menu item (within reason) |
79 | * Fixed: VWR-1735: Directly interacting with a muted resident should unmute them | ||
80 | * Fixed: VWR-2142: Parcel voice icon doesn't reflect disabled status if voice isn't used | ||
81 | * Fixed: VWR-5853: Double-Clicking on vertical edge of Inventory/Gesture window destroys the floating window. | ||
82 | * Fixed: VWR-2448: Snapshot Preview tool should respect 'Quiet Snapshots to Disk' | ||
83 | * Fixed: Can't change values with debug settings floater | 149 | * Fixed: Can't change values with debug settings floater |
84 | * Fixed: Focus > Zoom button can't be re-selected | 150 | * Fixed: Focus > Zoom button can't be re-selected |
85 | * Fixed: Debug Permissions displays overlap | 151 | * Fixed: Debug Permissions displays overlap |
86 | * Fixed: Objects with no group tagging show group tags of previously clicked items | 152 | * Fixed: Objects with no group tagging show group tags of previously clicked items |
87 | * Fixed: stop bundling libexpat with the linux viewer | 153 | * Fixed: stop bundling libexpat with the linux viewer |
154 | * Fixed: World Map's keyboard focus that jumps from Landmarks to Teleport is broken in 1.20 | ||
155 | * Fixed: text results for Search > People is displayed as white text | ||
88 | * Partial Fix: Pasting multiline clipboard content into chat loses newlines | 156 | * Partial Fix: Pasting multiline clipboard content into chat loses newlines |
89 | 157 | ||
90 | Localization Fixes: | 158 | Localization Fixes: |
@@ -334,141 +402,3 @@ Source changes: | |||
334 | * VWR-2645: Source typo RELEASE_FOR_DOWNLOAD should be LL_RELEASE_FOR_DOWNLOAD ? | 402 | * VWR-2645: Source typo RELEASE_FOR_DOWNLOAD should be LL_RELEASE_FOR_DOWNLOAD ? |
335 | * Fixed: g++ 4 viewer compile issues | 403 | * Fixed: g++ 4 viewer compile issues |
336 | * Dead code removal createLegacyWearableFromAvatar | 404 | * Dead code removal createLegacyWearableFromAvatar |
337 | |||
338 | |||
339 | Release Notes for Second Life 1.19.0(4) February 28th, 2008 | ||
340 | ===================================== | ||
341 | New features and changes: | ||
342 | * Voice | ||
343 | ** Voice Chat is now enabled by default to allow Residents to hear other Residents. | ||
344 | ** A microphone is required to speak to other Residents. | ||
345 | ** Push-to-Talk is the default mode for transmitting voice. | ||
346 | ** These settings can be modified via the Voice Chat tab of the Preferences dialog. | ||
347 | |||
348 | * Age Verification: | ||
349 | ** The user interface for parcel and estate access has been clarified and improved. | ||
350 | ** Added the ability to restrict access to parcels and estates to age verified adults. | ||
351 | ** Removed the ability to *ban* access to Residents who have provided payment info or who have used payment info. We continue to support the ability to *allow* access to only those who have provided payment info. | ||
352 | |||
353 | * Crash Reporter | ||
354 | ** The crash reporting mechanism has been improved. Following a crash, more useful information will be sent and reports should now take less than 10 seconds. | ||
355 | |||
356 | * VWR-210: Voice Support on Linux (EXPERIMENTAL) - see README-linux-voice.txt | ||
357 | |||
358 | * Other changes: | ||
359 | ** Change alert message that pops up when you set Busy | ||
360 | ** Add "Teleporting from SLURL to SLURL" to the chat history to provide quick and dirty "back" links | ||
361 | ** Print the name of the missing gesture in the error message | ||
362 | ** Remove "New Account..." and "Preferences" buttons from login screen for 1.19.0 | ||
363 | |||
364 | Fixes: | ||
365 | * SVC-930: Prims set for sale - prices are incorrectly set when multiple prims taken to inventory and rezzed | ||
366 | * SVC-1125: New Search: Beacons aren't shown when teleporting to regions with "Allow Direct Teleport" disabled | ||
367 | * VWR-1125: Clicking Title Bar While Mouselook'd Repositions SL Window | ||
368 | * VWR-1137: Inventory names out of sync after renaming via Properties window | ||
369 | * VWR-1145: Unable To Connect help not available | ||
370 | * VWR-1162: Land for sale includes L$1 parcels that are not actually for sale | ||
371 | * VWR-1350: Color settings do not appear to be applied to LSL default text | ||
372 | * VWR-1475: OpenJPEG always uploads single layer lossless images | ||
373 | * VWR-1590: Keyboard changes inventory selection after right-click | ||
374 | * VWR-1627: Classified metrics are reset to 0 when the ad is updated | ||
375 | * VWR-1651: Add ability to open a partners profile whilst viewing an avatar's profile | ||
376 | * VWR-1774: Some avatar positions result in no Z-axis arrow when editing attachments | ||
377 | * VWR-1873: Typos in en-us locale file | ||
378 | * VWR-1919: Remove texture UUID information from UI unless full-perm | ||
379 | * VWR-2030: Avatar only turns half-way in Appearance Mode | ||
380 | * VWR-2142: Parcel voice icon doesn't reflect disabled status if voice isn't used | ||
381 | * VWR-2256: Mac updater directory permission issues | ||
382 | * VWR-2367: Wrong handling of maximum length of Group Notice message | ||
383 | * VWR-2404: lossless texture compression on small textures not lossless | ||
384 | * VWR-2410: noise dot appear in chat window when clien running long with chatting. | ||
385 | * VWR-2411: Possible crash in pipeline.cpp | ||
386 | * VWR-2412: Possible crash drawpoolwater | ||
387 | * VWR-2421: ATI Radeon HD 2900 XT + Second Life = "Couldn't match GPU to a class","Setting GPU Class to Class0" | ||
388 | * VWR-2483: the macviewer.xcodeprj file doesn't create stripped binaries on Deployment or Universal | ||
389 | * VWR-250: Preedit (composition) strings are shown poorly when typing Japanese text on Windows | ||
390 | * VWR-2550: Scuplty vertex coordinates are size/256 meters too small on the positive faces | ||
391 | * VWR-2614: gActiveChannelSpeakerMgr not deleted at end of program in viewer.cpp | ||
392 | * VWR-2617: Adds LLSD support to flex/light/sculpt params for primitives | ||
393 | * VWR-2652: Changes needed to compile viewer against lastest libopenjpeg2000 | ||
394 | * VWR-2684: Minor leak in floaters using layoutstacks | ||
395 | * VWR-2722: Muting an object with pie menu only mutes the prim you select, not entire linkset | ||
396 | * VWR-2847: Wrong hover text in Japanese UI | ||
397 | * VWR-2854: Some sculpted prims render as balls on close zoom, which look fine in older clients | ||
398 | * VWR-2867: Eyes rotate unnaturally around their X axis. Clockwise/Counter-Clockwise | ||
399 | * VWR-289: URLs for video media streaming need to be URL-encoded or stream doesn't work | ||
400 | * VWR-2959: Windows (Visual Studio) solution file refers to a non-existing project "build_all" | ||
401 | * VWR-3088: Unchecking "Automatic Appearance Camera Movement" no longer has any effect | ||
402 | * VWR-3206: OpenJPEG svn478 causes slviewer to crash | ||
403 | * VWR-3428: Checking a users profile while editing a linked set causes viewer crash | ||
404 | * VWR-3458: Mouse cursor background is opaque white instead of transparent on big endian systems | ||
405 | * VWR-3558: llLoadURL cannot be muted | ||
406 | * VWR-356: Move delete to the bottom of context menus, separated by spacer | ||
407 | * VWR-3748: Builds fail on 1.18.6 RC if not using MOZLIB due to missing #if LL_LIBXUL_ENABLED in 3 places in indra/newview/llpanellogin.cpp | ||
408 | * VWR-3948: Underlayers no longer removable by pie menu in Windlight, release candidates | ||
409 | * VWR-412: Object editing arrows hidden but clickable on objects you can't edit. | ||
410 | * dialogs have extra vertical space | ||
411 | * Photo Album: name in Properties cut off some Japanese characters | ||
412 | * New gestures do not appear active in inventory | ||
413 | * Make parcel name in menu "look" active | ||
414 | * "Wear" pie option shows up for many objects even if resident does not own and cannot wear them. | ||
415 | * Textures on no-transfer objects can be transferred | ||
416 | * Deleted gestures still work | ||
417 | * Inventory description out of sync after renaming via Properties window | ||
418 | * Show private estate tiles when World Map is zoomed out | ||
419 | * Properties description not updated when preview description updated | ||
420 | * Buying object contents broken | ||
421 | * Improve window opening behavior, ensuring it is mostly on screen | ||
422 | * No-modify objects can be modified through Open pane | ||
423 | * Inventory names out of sync after renaming via Properties | ||
424 | * Japanese IME mode should be set and postiion of any input windows fixed for non-Japanese fields | ||
425 | * ctrl-shift-w doesn't work if no windows have focus | ||
426 | * Avatar falling in place - Alliez Mysterio | ||
427 | * Linux crash reporter does not run on next execution after forcing an infinite loop and forcefully exiting | ||
428 | * hitting enter should immediately set the value of a field | ||
429 | * Inventory Folder Loading state not clearly indicated | ||
430 | * Add warning dialog to the Land Sale process to warn against selling land to Anyone | ||
431 | * Legacy flossexception link needs to be fixed in source | ||
432 | * make link from client log in window to "Forgot Password" page | ||
433 | * Remove button under estate managers list enables after estate manager clicks in the list | ||
434 | * Changing search field should cancel current selection | ||
435 | * Estate tab within Tools / Region Estate has wrong settings for enable of Restrict Access upon initialization | ||
436 | * llEscapeURL and llUnescapeURL caps output to 255 characters | ||
437 | * XUI LoadFromXML function doesn't work | ||
438 | * Sanitize floater sizing behavior when SL window is made very small | ||
439 | * Animation won't stop if avatar teleports while animated | ||
440 | * Can't paste name of object into View > Mute List > Mute object by name | ||
441 | * pressing ctrl-F10 then Escape causes keyboard to be unresponsive | ||
442 | * Make SL viewer updater show a progress bar so that people know how long to wait | ||
443 | * Can't double-click on groups in profile after changing your active title | ||
444 | * Getting multiple copies of texture dragged onto prim | ||
445 | * blue dialog's 'next' widget steals focus | ||
446 | * Audio should be encoded for upload at a 'good enough' quality rather than a user-selected bitrate | ||
447 | * multiple preview windows open for a single texture/snapshot saved inside a note card | ||
448 | * Enhance Viewer to support new Age Verification feature | ||
449 | * Rename crash setting to cause crash logger to come up for all residents | ||
450 | * Change crash logger "Remember this choice" function to default to on | ||
451 | * Rework Ban tab of floater_about_land | ||
452 | * Windows IME positioning fixed | ||
453 | * Viewer crashes in assert when playing Sword Strike animation | ||
454 | * Unable to set 'Group Access' for land that is also 'Public Access' (Was VWR-3667) | ||
455 | * Disable QuickTime when the installed version is less than version with RTSP exploit | ||
456 | * Korean viewer crashes on startup | ||
457 | * Move fullscreen message from login screen to viewer prefs | ||
458 | * linux client doesn't recognise that a viewer is already running (slurl crapout) | ||
459 | * Search results window displays "s..." and "n..." instead of "searching..." and "none found" | ||
460 | * QuickTime disabled message can not be ignored | ||
461 | * Crash on login page when using Logitech LCD Keyboard | ||
462 | * SEC-17 Ability to Access Sculpted Prim Textures from Database without owning actual sculpt texture, allowing for people to "steal" sculpts. | ||
463 | * info window does not pop up when transitioning from a Havok1 to Havok4 region | ||
464 | * Repoint Report Bug... Viewer link to Pjira | ||
465 | * Upload Animation window: Button missing in Stopped window state | ||
466 | |||
467 | Source changes: | ||
468 | * Upgrade Win32 libvorbis to v1.2 | ||
469 | * VWR-2881: Bundled Mesa libs are not GPL compatible | ||
470 | * upgrade in-tree Linux GL headers to Mesa 7.x | ||
471 | * upgrade in-tree Win32 GL headers to version without SGI Free B license | ||
472 | * Rebuild and/or update libraries to use statically linked libs. | ||
473 | * Remove llfloaterhtmlhelp.cpp / h and floater_html_help.xml | ||
474 | |||
diff --git a/linden/indra/newview/skins/xui/de/alerts.xml b/linden/indra/newview/skins/xui/de/alerts.xml index 6a5635a..dcaaa0e 100644 --- a/linden/indra/newview/skins/xui/de/alerts.xml +++ b/linden/indra/newview/skins/xui/de/alerts.xml | |||
@@ -749,6 +749,9 @@ Sollte das Problem fortbestehen, finden Sie weitere Hilfestellung unter: http:// | |||
749 | MINDESTANF. | 749 | MINDESTANF. |
750 | Die Seite [_URL] für weitere Informationen öffnen? | 750 | Die Seite [_URL] für weitere Informationen öffnen? |
751 | </message> | 751 | </message> |
752 | <ignore name="ignore"> | ||
753 | Nicht unterstützte Hardware ignorieren | ||
754 | </ignore> | ||
752 | <option name="Yes"> | 755 | <option name="Yes"> |
753 | Ja | 756 | Ja |
754 | </option> | 757 | </option> |
@@ -781,6 +784,18 @@ Die Seite [_URL] für weitere Informationen öffnen? | |||
781 | 510 | 784 | 510 |
782 | </message> | 785 | </message> |
783 | </alert> | 786 | </alert> |
787 | <alert name="UnknownGPU"> | ||
788 | <message name="message"> | ||
789 | Ihr System verwendet eine uns zurzeit unbekannte Grafikkarte. | ||
790 | Dies ist häufig der Fall bei neuer Hardware, die wir noch nicht testen konnten. | ||
791 | Second Life funktioniert aller Voraussicht nach normal, möglicherweise | ||
792 | müssen Sie aber die Grafikeinstellungen anpassen. | ||
793 | (Bearbeiten > Einstellungen > Grafik). | ||
794 | </message> | ||
795 | <ignore name="ignore"> | ||
796 | Unbekannte Grafikkarte ignorieren | ||
797 | </ignore> | ||
798 | </alert> | ||
784 | <alert name="FreezeAvatarFullname"> | 799 | <alert name="FreezeAvatarFullname"> |
785 | <message name="message"> | 800 | <message name="message"> |
786 | [AVATAR_NAME] einfrieren? | 801 | [AVATAR_NAME] einfrieren? |
@@ -1388,6 +1403,34 @@ Bitte wählen Sie einen männlichen oder weiblichen Avatar. | |||
1388 | Problem beim Hinzufügen zu dieser Grundstücksliste. Bei mindestens einem Grundstück ist die Liste voll. | 1403 | Problem beim Hinzufügen zu dieser Grundstücksliste. Bei mindestens einem Grundstück ist die Liste voll. |
1389 | </message> | 1404 | </message> |
1390 | </alert> | 1405 | </alert> |
1406 | <alert name="SetClassifiedMature"> | ||
1407 | <message name="message"> | ||
1408 | Enthält diese Anzeige nicht jugendfreie Inhalte? | ||
1409 | </message> | ||
1410 | <option name="Mature"> | ||
1411 | Ja | ||
1412 | </option> | ||
1413 | <option name="Not Mature"> | ||
1414 | Nein | ||
1415 | </option> | ||
1416 | <option name="Cancel"> | ||
1417 | Abbrechen | ||
1418 | </option> | ||
1419 | </alert> | ||
1420 | <alert name="SetGroupMature"> | ||
1421 | <message name="message"> | ||
1422 | Beschäftigt sich diese Gruppe mit nicht jugendfreien Inhalten? | ||
1423 | </message> | ||
1424 | <option name="Mature"> | ||
1425 | Ja | ||
1426 | </option> | ||
1427 | <option name="Not Mature"> | ||
1428 | Nein | ||
1429 | </option> | ||
1430 | <option name="Cancel"> | ||
1431 | Abbrechen | ||
1432 | </option> | ||
1433 | </alert> | ||
1391 | <alert name="HelpRegionSearch" title="Nicht in Suche anzeigen"> | 1434 | <alert name="HelpRegionSearch" title="Nicht in Suche anzeigen"> |
1392 | <message name="message"> | 1435 | <message name="message"> |
1393 | Wenn Sie diese Option auswählen, können Parzelleneigentümer ihre Parzellen nicht in der Suche anzeigen lassen | 1436 | Wenn Sie diese Option auswählen, können Parzelleneigentümer ihre Parzellen nicht in der Suche anzeigen lassen |
@@ -1494,8 +1537,7 @@ Sie dieses Objekt anbieten? | |||
1494 | </alert> | 1537 | </alert> |
1495 | <alert name="NoItems"> | 1538 | <alert name="NoItems"> |
1496 | <message name="message"> | 1539 | <message name="message"> |
1497 | Sie sind nicht berechtigt, die ausgewählten | 1540 | Sie sind nicht berechtigt, die ausgewählten Objekte zu kopieren. |
1498 | Objekte zu kopieren. | ||
1499 | </message> | 1541 | </message> |
1500 | </alert> | 1542 | </alert> |
1501 | <alert name="CannotCopyCountItems"> | 1543 | <alert name="CannotCopyCountItems"> |
@@ -2670,10 +2712,12 @@ Sie wurden zur nächstgelegenen Region teleportiert. | |||
2670 | </alert> | 2712 | </alert> |
2671 | <alert name="ClothingLoading"> | 2713 | <alert name="ClothingLoading"> |
2672 | <message name="message"> | 2714 | <message name="message"> |
2673 | Ihre Kleidung wird noch heruntergeladen. | 2715 | Ihre Kleidung wird noch heruntergeladen. |
2674 | Sie können sich in der Welt normal verhalten und andere | 2716 | Sie können [SECOND_LIFE] normal verwenden. Andere Benutzer können Sie korrekt dargestellt sehen. |
2675 | Einwohner können Sie sehen. | ||
2676 | </message> | 2717 | </message> |
2718 | <ignore name="ignore"> | ||
2719 | Wenn das Herunterladen von Kleidung lange dauert | ||
2720 | </ignore> | ||
2677 | </alert> | 2721 | </alert> |
2678 | <alert name="FirstRun"> | 2722 | <alert name="FirstRun"> |
2679 | <message name="message"> | 2723 | <message name="message"> |
@@ -4583,7 +4627,7 @@ zu erleichtern, oder testen Sie sie, indem Sie sie in die Adressleiste Ihres Bro | |||
4583 | </alert> | 4627 | </alert> |
4584 | <alert name="GraphicsPreferencesHelp"> | 4628 | <alert name="GraphicsPreferencesHelp"> |
4585 | <message name="message"> | 4629 | <message name="message"> |
4586 | Die Optionen in diesem Dialog steuern Fenstergröße und Auflösung sowie die Qualität der Grafikdarstellung auf dem Client. Vier grundlegende Grafikeinstellungen stehen zur Wahl: Niedrig, Mittel, Hoch und Ultra. Wenn Sie das Kontrollkästchen "Benutzerdefiniert" anklicken, können Sie folgende Grafikeinstellungen selbst vornehmen: | 4630 | Die Optionen in diesem Dialog steuern Fenstergröße und Auflösung sowie die Qualität der Grafikdarstellung im Client. Im Fenster 'Einstellungen' > 'Grafik' stehen vier Grafikeinstellungen zur Wahl: Niedrig, Mittel, Hoch und Ultra. Die Grafikeinstellungen lassen sich auch individuell anpassen; aktivieren Sie das Kontrollkästchen 'Benutzerdefiniert', um die folgenden Einstellungen zu bearbeiten: |
4587 | 4631 | ||
4588 | Shader: Aktivieren oder deaktivieren Sie die verschiedenen Pixel-Shader. | 4632 | Shader: Aktivieren oder deaktivieren Sie die verschiedenen Pixel-Shader. |
4589 | 4633 | ||
@@ -4597,11 +4641,11 @@ Max. Partikelzahl: Legt fest, wie viele Partikel gleichzeitig berechnet und ange | |||
4597 | 4641 | ||
4598 | Post-Processing-Qualität: Legt fest, mit welcher Auflösung der Glüheffekt berechnet wird. | 4642 | Post-Processing-Qualität: Legt fest, mit welcher Auflösung der Glüheffekt berechnet wird. |
4599 | 4643 | ||
4600 | Gitterdetails: Legt den Detailgrad bei der Berechnung bestimmter Objekte fest. | 4644 | Gitterdetails: Legt den Detailgrad bzw. die Anzahl an Dreiecken bei der Berechnung bestimmter Objekte fest. Höhere Werte führen zu einer genaueren Darstellung, dauern aber länger in der Berechnung. |
4601 | 4645 | ||
4602 | Beleuchtungsdetails: Legt fest, welche Lichtquellen berechnet werden. | 4646 | Beleuchtungsdetails: Legt fest, welche Lichtquellen berechnet werden. |
4603 | 4647 | ||
4604 | Terraindetails: Legt den Detailgrad bei der Berechnung des Terrains fest. | 4648 | Terraindetails: Legt den Detailgrad bei der Berechnung der Terraintextur fest. |
4605 | </message> | 4649 | </message> |
4606 | </alert> | 4650 | </alert> |
4607 | <alert name="WLSavePresetAlert"> | 4651 | <alert name="WLSavePresetAlert"> |
@@ -5044,4 +5088,9 @@ Möchten Sie die Second Life Website öffnen, um diese Angaben zu hinterlegen? | |||
5044 | Nein | 5088 | Nein |
5045 | </option> | 5089 | </option> |
5046 | </alert> | 5090 | </alert> |
5091 | <alert name="MissingString"> | ||
5092 | <message name="message"> | ||
5093 | Der String [STRING_NAME] fehlt in strings.xml | ||
5094 | </message> | ||
5095 | </alert> | ||
5047 | </alerts> | 5096 | </alerts> |
diff --git a/linden/indra/newview/skins/xui/de/floater_directory.xml b/linden/indra/newview/skins/xui/de/floater_directory.xml index 506ed19..c149fb4 100644 --- a/linden/indra/newview/skins/xui/de/floater_directory.xml +++ b/linden/indra/newview/skins/xui/de/floater_directory.xml | |||
@@ -222,8 +222,7 @@ | |||
222 | <button label="< Vorherige" label_selected="< Vorherige" name="< Prev" /> | 222 | <button label="< Vorherige" label_selected="< Vorherige" name="< Prev" /> |
223 | <button label="Weiter >" label_selected="Weiter >" name="Next >" /> | 223 | <button label="Weiter >" label_selected="Weiter >" name="Next >" /> |
224 | <check_box label="Nur Orte mit Bildern anzeigen" name="incpictures" /> | 224 | <check_box label="Nur Orte mit Bildern anzeigen" name="incpictures" /> |
225 | <check_box | 225 | <check_box label="Parzellen mit zugangsbeschränkten Inhalten einschließen" |
226 | label="Parzellen mit zugangsbeschränkten Inhalten einschließen" | ||
227 | name="incmature" /> | 226 | name="incmature" /> |
228 | <text | 227 | <text |
229 | name="These are the most popular places in the world, as measured by traffic, the amount of time people spend there."> | 228 | name="These are the most popular places in the world, as measured by traffic, the amount of time people spend there."> |
@@ -237,6 +236,22 @@ Zeit gemessen, die Benutzer dort verbringen. | |||
237 | <column label="Traffic" name="dwell" /> | 236 | <column label="Traffic" name="dwell" /> |
238 | </scroll_list> | 237 | </scroll_list> |
239 | </panel> | 238 | </panel> |
239 | <panel label="Showcase" name="showcase_panel"> | ||
240 | <string name="searching_text"> | ||
241 | Suchen... | ||
242 | </string> | ||
243 | <string name="not_found_text"> | ||
244 | Nicht gefunden. | ||
245 | </string> | ||
246 | <button label="Zurück" name="back_btn" /> | ||
247 | <button label="Weiter" name="forward_btn" /> | ||
248 | <string name="loading_text"> | ||
249 | Wird geladen... | ||
250 | </string> | ||
251 | <string name="done_text"> | ||
252 | Fertig | ||
253 | </string> | ||
254 | </panel> | ||
240 | <panel label="Landverkauf" name="land_sales_panel"> | 255 | <panel label="Landverkauf" name="land_sales_panel"> |
241 | <string name="searching_text"> | 256 | <string name="searching_text"> |
242 | Suchen... | 257 | Suchen... |
@@ -396,6 +411,17 @@ Land in der Titelleiste auf den Namen. | |||
396 | <column label="Members" name="members" /> | 411 | <column label="Members" name="members" /> |
397 | <column label="" name="score" /> | 412 | <column label="" name="score" /> |
398 | </scroll_list> | 413 | </scroll_list> |
414 | <button label="Zurück" name="back_btn" /> | ||
415 | <button label="Weiter" name="forward_btn" /> | ||
416 | <line_editor label="Suchen" name="search_editor" tool_tip="Second Life durchsuchen" /> | ||
417 | <button label="Suchen" name="search_btn" /> | ||
418 | <check_box label="Ab-18-Inhalte einschließen" name="mature_check" /> | ||
419 | <string name="loading_text"> | ||
420 | Wird geladen... | ||
421 | </string> | ||
422 | <string name="done_text"> | ||
423 | Fertig | ||
424 | </string> | ||
399 | </panel> | 425 | </panel> |
400 | <panel label="Alle (alt)" name="find_all_old_panel"> | 426 | <panel label="Alle (alt)" name="find_all_old_panel"> |
401 | <string name="searching_text"> | 427 | <string name="searching_text"> |
diff --git a/linden/indra/newview/skins/xui/de/floater_im.xml b/linden/indra/newview/skins/xui/de/floater_im.xml index db5c580..573ff6e 100644 --- a/linden/indra/newview/skins/xui/de/floater_im.xml +++ b/linden/indra/newview/skins/xui/de/floater_im.xml | |||
@@ -6,6 +6,9 @@ | |||
6 | <text name="offline_message"> | 6 | <text name="offline_message"> |
7 | [FIRST] [LAST] ist offline. | 7 | [FIRST] [LAST] ist offline. |
8 | </text> | 8 | </text> |
9 | <string name="muted_message"> | ||
10 | [FIRST] [LAST] ist stummgeschaltet. | ||
11 | </string> | ||
9 | <text name="generic_request_error"> | 12 | <text name="generic_request_error"> |
10 | Fehler bei Anfrage, bitte versuchen Sie es später. | 13 | Fehler bei Anfrage, bitte versuchen Sie es später. |
11 | </text> | 14 | </text> |
diff --git a/linden/indra/newview/skins/xui/de/floater_script_debug.xml b/linden/indra/newview/skins/xui/de/floater_script_debug.xml index 1d13243..f8c1543 100644 --- a/linden/indra/newview/skins/xui/de/floater_script_debug.xml +++ b/linden/indra/newview/skins/xui/de/floater_script_debug.xml | |||
@@ -1,5 +1,5 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <multi_floater name="script debug floater" title="Skriptfehler/Warnung"> | 2 | <multi_floater name="script debug floater" title="Skriptwarnung/Fehler"> |
3 | <tab_container name="Preview Tabs"> | 3 | <tab_container name="Preview Tabs"> |
4 | <floater label="Skript" name="all_scripts" title="[All scripts]" /> | 4 | <floater label="Skript" name="all_scripts" title="[All scripts]" /> |
5 | </tab_container> | 5 | </tab_container> |
diff --git a/linden/indra/newview/skins/xui/de/floater_world_map.xml b/linden/indra/newview/skins/xui/de/floater_world_map.xml index e7a01e5..c3d203d 100644 --- a/linden/indra/newview/skins/xui/de/floater_world_map.xml +++ b/linden/indra/newview/skins/xui/de/floater_world_map.xml | |||
@@ -4,7 +4,7 @@ | |||
4 | <panel label="Objekte" name="objects_mapview" /> | 4 | <panel label="Objekte" name="objects_mapview" /> |
5 | <panel label="Terrain" name="terrain_mapview" /> | 5 | <panel label="Terrain" name="terrain_mapview" /> |
6 | </tab_container> | 6 | </tab_container> |
7 | <text name="land_for_sale_label" font="SansSerifSmall"> | 7 | <text font="SansSerifSmall" name="land_for_sale_label"> |
8 | Land erhaeltlich | 8 | Land erhaeltlich |
9 | </text> | 9 | </text> |
10 | <text name="auction_label"> | 10 | <text name="auction_label"> |
@@ -38,7 +38,7 @@ | |||
38 | Beliebt | 38 | Beliebt |
39 | </text> | 39 | </text> |
40 | <check_box label=" " name="popular_chk" /> | 40 | <check_box label=" " name="popular_chk" /> |
41 | <text name="land_for_sale_label2" font="SansSerifSmall"> | 41 | <text font="SansSerifSmall" name="land_for_sale_label2"> |
42 | Land erhaeltlich | 42 | Land erhaeltlich |
43 | </text> | 43 | </text> |
44 | <check_box label=" " name="land_for_sale_chk" /> | 44 | <check_box label=" " name="land_for_sale_chk" /> |
@@ -50,15 +50,14 @@ | |||
50 | Events (18+) | 50 | Events (18+) |
51 | </text> | 51 | </text> |
52 | <check_box label=" " name="event_mature_chk" /> | 52 | <check_box label=" " name="event_mature_chk" /> |
53 | <combo_box label="Meine Freunde" name="friend combo" tool_tip="Friend to Show on Map"> | 53 | <combo_box label="Online-Freunde" name="friend combo" tool_tip="Friend to Show on Map"> |
54 | <combo_item name="none_selected"> | 54 | <combo_item name="none_selected"> |
55 | Meine Freunde | 55 | Online-Freunde |
56 | </combo_item> | 56 | </combo_item> |
57 | </combo_box> | 57 | </combo_box> |
58 | <combo_box label="Meine Landmarken" name="landmark combo" | 58 | <combo_box label="Landmarken" name="landmark combo" tool_tip="Landmark to Show on Map"> |
59 | tool_tip="Landmark to Show on Map"> | ||
60 | <combo_item name="none_selected"> | 59 | <combo_item name="none_selected"> |
61 | Meine Landmarken | 60 | Landmarken |
62 | </combo_item> | 61 | </combo_item> |
63 | </combo_box> | 62 | </combo_box> |
64 | <line_editor label="Nach Regionsname suchen" name="location" | 63 | <line_editor label="Nach Regionsname suchen" name="location" |
@@ -79,19 +78,15 @@ | |||
79 | <spinner name="spin z" tool_tip="Z-Koordinate der Position auf der Karte" /> | 78 | <spinner name="spin z" tool_tip="Z-Koordinate der Position auf der Karte" /> |
80 | <button label="Teleportieren" label_selected="Teleportieren" name="Teleport" | 79 | <button label="Teleportieren" label_selected="Teleportieren" name="Teleport" |
81 | tool_tip="Zu ausgewählter Position teleportieren" /> | 80 | tool_tip="Zu ausgewählter Position teleportieren" /> |
82 | <!--button label="Ziel anzeigen" label_selected="Ziel anzeigen" name="Show Destination" | 81 | <button label="Gesuchte Position" label_selected="Ziel anzeigen" |
83 | tool_tip="Karte auf ausgewählte Position zentrieren" /--> | 82 | name="Show Destination" |
84 | <button label="Gesuchte Position" label_selected="Ziel anzeigen" name="Show Destination" | ||
85 | tool_tip="Karte auf ausgewählte Position zentrieren" /> | 83 | tool_tip="Karte auf ausgewählte Position zentrieren" /> |
86 | <button label="Löschen" label_selected="Löschen" name="Clear" | 84 | <button label="Löschen" label_selected="Löschen" name="Clear" |
87 | tool_tip="Verfolgung abschalten" /> | 85 | tool_tip="Verfolgung abschalten" /> |
88 | <!--button label="Meinen Standort anzeigen" label_selected="Wo bin ich?" | 86 | <button label="Meine Position" label_selected="Wo bin ich?" name="Show My Location" |
89 | name="Show My Location" | ||
90 | tool_tip="Karte auf Position Ihres Avatars zentrieren" /--> | ||
91 | <button label="Meine Position" label_selected="Wo bin ich?" | ||
92 | name="Show My Location" | ||
93 | tool_tip="Karte auf Position Ihres Avatars zentrieren" /> | 87 | tool_tip="Karte auf Position Ihres Avatars zentrieren" /> |
94 | <button label="SLURL in die Zwischenablage kopieren" name="copy_slurl" font="SansSerifSmall" | 88 | <button font="SansSerifSmall" label="SLURL in die Zwischenablage kopieren" |
89 | name="copy_slurl" | ||
95 | tool_tip="Kopiert die aktuelle Position als SLURL zur Verwendung im Web." /> | 90 | tool_tip="Kopiert die aktuelle Position als SLURL zur Verwendung im Web." /> |
96 | <slider label="Zoom" name="zoom slider" /> | 91 | <slider label="Zoom" name="zoom slider" /> |
97 | </floater> | 92 | </floater> |
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 75c8400..2e38d5f 100644 --- a/linden/indra/newview/skins/xui/de/need_to_long.xml +++ b/linden/indra/newview/skins/xui/de/need_to_long.xml | |||
@@ -1,117 +1,95 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>floater_about.xml</a_file> | 4 | <string><a_file>alerts.xml</a_file> |
5 | <b_path>/floater_about/credits_editor</b_path> | 5 | <b_path>//GraphicsPreferencesHelp/message</b_path> |
6 | <c_attribute></c_attribute> | 6 | <c_attribute></c_attribute> |
7 | <d_old> | 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. | 8 | This panel controls window size and resolution and the quality of the client's graphics. The graphics preferences interface allows you to choose between four graphics levels: Low, Mid, High, and Ultra. One may customize their graphics settings by checking the Custom checkbox and manipulating the following settings: |
9 | 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 | 10 | Shaders: Enable or disable various types of pixel shaders. |
11 | 11 | ||
12 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 12 | Reflection Detail: Sets the types of objects that water can reflect. |
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 | 13 | ||
27 | All rights reserved. See licenses.txt for details. | 14 | Avatar Rendering: Sets options that affect how the client renders avatars. |
28 | 15 | ||
29 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 16 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. |
30 | 17 | ||
18 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. | ||
31 | 19 | ||
32 | Happiness is a warm puppy. -- Charles M. Schulz | 20 | Post Process Quality: Sets the resolution with which Glow is rendered. |
33 | </d_old> | 21 | |
22 | Mesh Detail: Sets the amout of detail used in rendering certain objects. | ||
23 | |||
24 | Lighting Detail: Selects what types of lights you would like to render. | ||
25 | |||
26 | Terrain Detail: Sets the amount of terrain detail you would like to see. | ||
27 | |||
28 | Sky Detail: Sets the amount of tesselation of the sky dome. A higher value takes longer to render, but makes the sun look more rounded. | ||
29 | </d_old> | ||
34 | <e_new> | 30 | <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. | 31 | This panel controls window size and resolution and the quality of the client's graphics. The Preferences > Graphics interface allows you to choose between four graphics levels: Low, Mid, High, and Ultra. You may also customize your graphics settings by checking the Custom checkbox and manipulating the following settings: |
32 | |||
33 | Shaders: Enable or disable various types of pixel shaders. | ||
34 | |||
35 | Reflection Detail: Sets the types of objects that water can reflect. | ||
36 | |||
37 | Avatar Rendering: Sets options that affect how the client renders avatars. | ||
36 | 38 | ||
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 | 39 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. |
38 | 40 | ||
39 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | 41 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. |
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 | 42 | ||
55 | All rights reserved. See licenses.txt for details. | 43 | Post Process Quality: Sets the resolution with which Glow is rendered. |
56 | 44 | ||
57 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 45 | Mesh Detail: Sets the amount of detail or number of triangles used in rendering certain objects. A higher value takes longer to render, but makes these objects appear with more detail. |
58 | 46 | ||
47 | Lighting Detail: Selects what types of lights you would like to render. | ||
59 | 48 | ||
60 | Happiness is a warm puppy. -- Charles M. Schulz</e_new> | 49 | Terrain Detail: Sets the amount of detail you would like to see for the terrain texture. |
50 | </e_new> | ||
61 | <f_old_trans></f_old_trans> | 51 | <f_old_trans></f_old_trans> |
62 | <f_translation> | 52 | <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. | 53 | Die Optionen in diesem Dialog steuern Fenstergröße und Auflösung sowie die Qualität der Grafikdarstellung im Client. Im Fenster 'Einstellungen' > 'Grafik' stehen vier Grafikeinstellungen zur Wahl: Niedrig, Mittel, Hoch und Ultra. Die Grafikeinstellungen lassen sich auch individuell anpassen; aktivieren Sie das Kontrollkästchen 'Benutzerdefiniert', um die folgenden Einstellungen zu bearbeiten: |
64 | 54 | ||
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 | 55 | Shader: Aktivieren oder deaktivieren Sie die verschiedenen Pixel-Shader. |
66 | 56 | ||
67 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | 57 | Spiegelung: Legen Sie hier fest, welche Objekte sich in Wasser spiegeln. |
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 | 58 | ||
83 | Alle Rechte vorbehalten. Details siehe licenses.txt. | 59 | Avatar-Darstellung: Einige Optionen, die über die Darstellung Ihres Avatars bestimmen. |
84 | 60 | ||
85 | Voice-Chat-Audiocoding: Polycom(R) Siren14(TM) (ITU-T Empf. G.722.1 Anhang C) | 61 | Sichtweite: Legt fest, bis zu welcher Entfernung von Ihrem Avatar die Objekte in der Szene berechnet und dargestellt werden. |
86 | 62 | ||
63 | Max. Partikelzahl: Legt fest, wie viele Partikel gleichzeitig berechnet und angezeigt werden. | ||
87 | 64 | ||
88 | Happiness is a warm puppy. -- Charles M. Schulz</f_translation> | 65 | Post-Processing-Qualität: Legt fest, mit welcher Auflösung der Glüheffekt berechnet wird. |
66 | |||
67 | Gitterdetails: Legt den Detailgrad bzw. die Anzahl an Dreiecken bei der Berechnung bestimmter Objekte fest. Höhere Werte führen zu einer genaueren Darstellung, dauern aber länger in der Berechnung. | ||
68 | |||
69 | Beleuchtungsdetails: Legt fest, welche Lichtquellen berechnet werden. | ||
70 | |||
71 | Terraindetails: Legt den Detailgrad bei der Berechnung der Terraintextur fest. | ||
72 | </f_translation> | ||
89 | <f_old_trans> | 73 | <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. | 74 | Die Optionen in diesem Dialog steuern Fenstergröße und Auflösung sowie die Qualität der Grafikdarstellung auf dem Client. Vier grundlegende Grafikeinstellungen stehen zur Wahl: Niedrig, Mittel, Hoch und Ultra. Wenn Sie das Kontrollkästchen "Benutzerdefiniert" anklicken, können Sie folgende Grafikeinstellungen selbst vornehmen: |
75 | |||
76 | Shader: Aktivieren oder deaktivieren Sie die verschiedenen Pixel-Shader. | ||
77 | |||
78 | Spiegelung: Legen Sie hier fest, welche Objekte sich in Wasser spiegeln. | ||
79 | |||
80 | Avatar-Darstellung: Einige Optionen, die über die Darstellung Ihres Avatars bestimmen. | ||
91 | 81 | ||
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 | 82 | Sichtweite: Legt fest, bis zu welcher Entfernung von Ihrem Avatar die Objekte in der Szene berechnet und dargestellt werden. |
93 | 83 | ||
94 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 84 | Max. Partikelzahl: Legt fest, wie viele Partikel gleichzeitig berechnet und angezeigt werden. |
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 | 85 | ||
109 | Alle Rechte vorbehalten. Details siehe licenses.txt. | 86 | Post-Processing-Qualität: Legt fest, mit welcher Auflösung der Glüheffekt berechnet wird. |
110 | 87 | ||
111 | Voice-Chat-Audiocoding: Polycom(R) Siren14(TM) (ITU-T Empf. G.722.1 Anhang C) | 88 | Gitterdetails: Legt den Detailgrad bei der Berechnung bestimmter Objekte fest. |
112 | 89 | ||
90 | Beleuchtungsdetails: Legt fest, welche Lichtquellen berechnet werden. | ||
113 | 91 | ||
114 | Happiness is a warm puppy. -- Charles M. Schulz | 92 | Terraindetails: Legt den Detailgrad bei der Berechnung des Terrains fest. |
115 | </f_old_trans> | 93 | </f_old_trans> |
116 | </string> | 94 | </string> |
117 | </strings> | 95 | </strings> |
diff --git a/linden/indra/newview/skins/xui/de/need_to_translate.xml b/linden/indra/newview/skins/xui/de/need_to_translate.xml index b6a0ccf..bd9d2f2 100644 --- a/linden/indra/newview/skins/xui/de/need_to_translate.xml +++ b/linden/indra/newview/skins/xui/de/need_to_translate.xml | |||
@@ -2,2134 +2,1429 @@ | |||
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> | 5 | <b_path>//UnsupportedHardware/ignore</b_path> |
6 | <c_attribute></c_attribute> | 6 | <c_attribute></c_attribute> |
7 | <d_old></d_old> | 7 | <d_old></d_old> |
8 | <e_new> | 8 | <e_new> |
9 | No tutorial is currently available. | 9 | Ignore unsupported hardware |
10 | </e_new> | 10 | </e_new> |
11 | <f_old_trans></f_old_trans> | 11 | <f_old_trans></f_old_trans> |
12 | <f_translation> | 12 | <f_translation> |
13 | Derzeit ist kein Tutorial verfügbar. | 13 | Nicht unterstützte Hardware ignorieren |
14 | </f_translation> | 14 | </f_translation> |
15 | </string><string><a_file>alerts.xml</a_file> | 15 | </string><string><a_file>alerts.xml</a_file> |
16 | <b_path>//TutorialNotFound/OK</b_path> | 16 | <b_path>//UnknownGPU/message</b_path> |
17 | <c_attribute></c_attribute> | 17 | <c_attribute></c_attribute> |
18 | <d_old></d_old> | 18 | <d_old></d_old> |
19 | <e_new> | 19 | <e_new> |
20 | OK | 20 | Your system contains a graphics card that is unknown to us at this time. |
21 | This is often the case with new hardware we haven't had a chance to | ||
22 | test. Second Life will most likely run properly, but you may need to | ||
23 | adjust your graphics settings to something more appropriate. | ||
24 | (Edit > Preferences > Graphics). | ||
21 | </e_new> | 25 | </e_new> |
22 | <f_old_trans></f_old_trans> | 26 | <f_old_trans></f_old_trans> |
23 | <f_translation> | 27 | <f_translation> |
24 | OK | 28 | Ihr System verwendet eine uns zurzeit unbekannte Grafikkarte. |
25 | </f_translation> | 29 | Dies ist häufig der Fall bei neuer Hardware, die wir noch nicht testen konnten. |
30 | Second Life funktioniert aller Voraussicht nach normal, möglicherweise | ||
31 | müssen Sie aber die Grafikeinstellungen anpassen. | ||
32 | (Bearbeiten > Einstellungen > Grafik). | ||
33 | </f_translation> | ||
26 | </string><string><a_file>alerts.xml</a_file> | 34 | </string><string><a_file>alerts.xml</a_file> |
27 | <b_path>//FreezeAvatarFullname/message</b_path> | 35 | <b_path>//UnknownGPU/ignore</b_path> |
28 | <c_attribute></c_attribute> | 36 | <c_attribute></c_attribute> |
29 | <d_old></d_old> | 37 | <d_old></d_old> |
30 | <e_new> | 38 | <e_new> |
31 | Freeze [AVATAR_NAME]? | 39 | Ignore unknown graphics card |
32 | He or she will temporarily be unable to move, | ||
33 | chat, or interact with the world. | ||
34 | </e_new> | 40 | </e_new> |
35 | <f_old_trans></f_old_trans> | 41 | <f_old_trans></f_old_trans> |
36 | <f_translation> | 42 | <f_translation> |
37 | [AVATAR_NAME] einfrieren? | 43 | Unbekannte Grafikkarte ignorieren |
38 | Der Avatar wird außer Gefecht gesetzt und kann | ||
39 | sich nicht mehr bewegen, chatten oder mit der Welt interagieren. | ||
40 | </f_translation> | 44 | </f_translation> |
41 | </string><string><a_file>alerts.xml</a_file> | 45 | </string><string><a_file>alerts.xml</a_file> |
42 | <b_path>//FreezeAvatarFullname/Freeze</b_path> | 46 | <b_path>//ClothingLoading/ignore</b_path> |
43 | <c_attribute></c_attribute> | 47 | <c_attribute></c_attribute> |
44 | <d_old></d_old> | 48 | <d_old></d_old> |
45 | <e_new> | 49 | <e_new> |
46 | Freeze | 50 | When clothing is taking a long time to download |
47 | </e_new> | 51 | </e_new> |
48 | <f_old_trans></f_old_trans> | 52 | <f_old_trans></f_old_trans> |
49 | <f_translation> | 53 | <f_translation> |
50 | Einfrieren | 54 | Wenn das Herunterladen von Kleidung lange dauert |
51 | </f_translation> | 55 | </f_translation> |
52 | </string><string><a_file>alerts.xml</a_file> | 56 | </string><string><a_file>alerts.xml</a_file> |
53 | <b_path>//FreezeAvatarFullname/Unfreeze</b_path> | 57 | <b_path>//SetClassifiedMature/message</b_path> |
54 | <c_attribute></c_attribute> | 58 | <c_attribute></c_attribute> |
55 | <d_old></d_old> | 59 | <d_old></d_old> |
56 | <e_new> | 60 | <e_new> |
57 | Unfreeze | 61 | Does this classified contain Mature content? |
58 | </e_new> | 62 | </e_new> |
59 | <f_old_trans></f_old_trans> | 63 | <f_old_trans></f_old_trans> |
60 | <f_translation> | 64 | <f_translation> |
61 | Auftauen | 65 | Enthält diese Anzeige nicht jugendfreie Inhalte? |
62 | </f_translation> | 66 | </f_translation> |
63 | </string><string><a_file>alerts.xml</a_file> | 67 | </string><string><a_file>alerts.xml</a_file> |
64 | <b_path>//FreezeAvatarFullname/Cancel</b_path> | 68 | <b_path>//SetClassifiedMature/Mature</b_path> |
65 | <c_attribute></c_attribute> | 69 | <c_attribute></c_attribute> |
66 | <d_old></d_old> | 70 | <d_old></d_old> |
67 | <e_new> | 71 | <e_new> |
68 | Cancel | 72 | Yes |
69 | </e_new> | 73 | </e_new> |
70 | <f_old_trans></f_old_trans> | 74 | <f_old_trans></f_old_trans> |
71 | <f_translation> | 75 | <f_translation> |
72 | Abbrechen | 76 | Ja |
73 | </f_translation> | 77 | </f_translation> |
74 | </string><string><a_file>alerts.xml</a_file> | 78 | </string><string><a_file>alerts.xml</a_file> |
75 | <b_path>//EjectAvatarFullname/message</b_path> | 79 | <b_path>//SetClassifiedMature/Not Mature</b_path> |
76 | <c_attribute></c_attribute> | 80 | <c_attribute></c_attribute> |
77 | <d_old></d_old> | 81 | <d_old></d_old> |
78 | <e_new> | 82 | <e_new> |
79 | Eject [AVATAR_NAME] from your land? | 83 | No |
80 | </e_new> | 84 | </e_new> |
81 | <f_old_trans></f_old_trans> | 85 | <f_old_trans></f_old_trans> |
82 | <f_translation> | 86 | <f_translation> |
83 | [AVATAR_NAME] von Ihrem Land werfen? | 87 | Nein |
84 | </f_translation> | 88 | </f_translation> |
85 | </string><string><a_file>alerts.xml</a_file> | 89 | </string><string><a_file>alerts.xml</a_file> |
86 | <b_path>//EjectAvatarFullname/Eject</b_path> | 90 | <b_path>//SetClassifiedMature/Cancel</b_path> |
87 | <c_attribute></c_attribute> | 91 | <c_attribute></c_attribute> |
88 | <d_old></d_old> | 92 | <d_old></d_old> |
89 | <e_new> | 93 | <e_new> |
90 | Eject | 94 | Cancel |
91 | </e_new> | 95 | </e_new> |
92 | <f_old_trans></f_old_trans> | 96 | <f_old_trans></f_old_trans> |
93 | <f_translation> | 97 | <f_translation> |
94 | Ausschließen | 98 | Abbrechen |
95 | </f_translation> | 99 | </f_translation> |
96 | </string><string><a_file>alerts.xml</a_file> | 100 | </string><string><a_file>alerts.xml</a_file> |
97 | <b_path>//EjectAvatarFullname/EjectandBan</b_path> | 101 | <b_path>//SetGroupMature/message</b_path> |
98 | <c_attribute></c_attribute> | 102 | <c_attribute></c_attribute> |
99 | <d_old></d_old> | 103 | <d_old></d_old> |
100 | <e_new> | 104 | <e_new> |
101 | Eject and Ban | 105 | Does this group contain Mature content? |
102 | </e_new> | 106 | </e_new> |
103 | <f_old_trans></f_old_trans> | 107 | <f_old_trans></f_old_trans> |
104 | <f_translation> | 108 | <f_translation> |
105 | Ausschließen und Verbannen | 109 | Beschäftigt sich diese Gruppe mit nicht jugendfreien Inhalten? |
106 | </f_translation> | 110 | </f_translation> |
107 | </string><string><a_file>alerts.xml</a_file> | 111 | </string><string><a_file>alerts.xml</a_file> |
108 | <b_path>//EjectAvatarFullname/Cancel</b_path> | 112 | <b_path>//SetGroupMature/Mature</b_path> |
109 | <c_attribute></c_attribute> | 113 | <c_attribute></c_attribute> |
110 | <d_old></d_old> | 114 | <d_old></d_old> |
111 | <e_new> | 115 | <e_new> |
112 | Cancel | 116 | Yes |
113 | </e_new> | 117 | </e_new> |
114 | <f_old_trans></f_old_trans> | 118 | <f_old_trans></f_old_trans> |
115 | <f_translation> | 119 | <f_translation> |
116 | Abbrechen | 120 | Ja |
117 | </f_translation> | 121 | </f_translation> |
118 | </string><string><a_file>alerts.xml</a_file> | 122 | </string><string><a_file>alerts.xml</a_file> |
119 | <b_path>//SeachFilteredOnShortWords/message</b_path> | 123 | <b_path>//SetGroupMature/Not Mature</b_path> |
120 | <c_attribute></c_attribute> | 124 | <c_attribute></c_attribute> |
121 | <d_old></d_old> | 125 | <d_old></d_old> |
122 | <e_new> | 126 | <e_new> |
123 | Your search query was modified and the | 127 | No |
124 | words that were too short were removed. | 128 | </e_new> |
125 | |||
126 | Searched for: [FINALQUERY] | ||
127 | </e_new> | ||
128 | <f_old_trans></f_old_trans> | 129 | <f_old_trans></f_old_trans> |
129 | <f_translation> | 130 | <f_translation> |
130 | Ihre Suchanfrage wurde geändert. | 131 | Nein |
131 | Zu kurze Begriffe wurden entfernt. | 132 | </f_translation> |
132 | |||
133 | Ihre Suchanfrage: [FINALQUERY] | ||
134 | </f_translation> | ||
135 | </string><string><a_file>alerts.xml</a_file> | 133 | </string><string><a_file>alerts.xml</a_file> |
136 | <b_path>//SeachFilteredOnShortWordsEmpty/message</b_path> | 134 | <b_path>//SetGroupMature/Cancel</b_path> |
137 | <c_attribute></c_attribute> | 135 | <c_attribute></c_attribute> |
138 | <d_old></d_old> | 136 | <d_old></d_old> |
139 | <e_new> | 137 | <e_new> |
140 | Your search terms were too short | 138 | Cancel |
141 | so no search was performed. | 139 | </e_new> |
142 | </e_new> | ||
143 | <f_old_trans></f_old_trans> | 140 | <f_old_trans></f_old_trans> |
144 | <f_translation> | 141 | <f_translation> |
145 | Ihre Suchbegriffe sind zu kurz. | 142 | Abbrechen |
146 | Es wurde keine Suche durchgeführt. | 143 | </f_translation> |
147 | </f_translation> | ||
148 | </string><string><a_file>alerts.xml</a_file> | 144 | </string><string><a_file>alerts.xml</a_file> |
149 | <b_path>//CannotCloseFloaterBuyLand/message</b_path> | 145 | <b_path>//MissingString/message</b_path> |
150 | <c_attribute></c_attribute> | 146 | <c_attribute></c_attribute> |
151 | <d_old></d_old> | 147 | <d_old></d_old> |
152 | <e_new> | 148 | <e_new> |
153 | You cannot close the Buy Land window until Second Life | 149 | The string [STRING_NAME] is missing from strings.xml |
154 | estimates the price of this transaction. | ||
155 | </e_new> | 150 | </e_new> |
156 | <f_old_trans></f_old_trans> | 151 | <f_old_trans></f_old_trans> |
157 | <f_translation> | 152 | <f_translation> |
158 | Das Fenster 'Land kaufen' kann erst geschlossen werden, | 153 | Der String [STRING_NAME] fehlt in strings.xml |
159 | nachdem Second Life den Transaktionspreis geschätzt hat. | 154 | </f_translation> |
160 | </f_translation> | 155 | </string><string><a_file>floater_active_speakers.xml</a_file> |
161 | </string><string><a_file>alerts.xml</a_file> | 156 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> |
162 | <b_path>//MaxAgentOnRegionBatch/message</b_path> | 157 | <c_attribute>label</c_attribute> |
163 | <c_attribute></c_attribute> | ||
164 | <d_old></d_old> | 158 | <d_old></d_old> |
165 | <e_new> | 159 | <e_new></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> | 160 | <f_old_trans></f_old_trans> |
170 | <f_translation> | 161 | <f_translation></f_translation> |
171 | Fehler beim Versuch, [NUM_ADDED] Agenten hinzuzufügen: | 162 | </string><string><a_file>floater_directory.xml</a_file> |
172 | Überschreitet den Grenzwert [MAX_AGENTS] [LIST_TYPE] um [NUM_EXCESS]. | 163 | <b_path>/directory/Directory Tabs/showcase_panel</b_path> |
173 | </f_translation> | 164 | <c_attribute>label</c_attribute> |
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> | 165 | <d_old></d_old> |
178 | <e_new> | 166 | <e_new>Showcase</e_new> |
179 | Open your system Web browser to view this content? | ||
180 | </e_new> | ||
181 | <f_old_trans></f_old_trans> | 167 | <f_old_trans></f_old_trans> |
182 | <f_translation> | 168 | <f_translation>Showcase</f_translation> |
183 | Den System-Webbrowser öffnen, um diesen Inhalt anzuzeigen? | 169 | </string><string><a_file>floater_directory.xml</a_file> |
184 | </f_translation> | 170 | <b_path>/directory/Directory Tabs/showcase_panel/searching_text</b_path> |
185 | </string><string><a_file>alerts.xml</a_file> | ||
186 | <b_path>//WebLaunchExternalTarget/ignore</b_path> | ||
187 | <c_attribute></c_attribute> | 171 | <c_attribute></c_attribute> |
188 | <d_old></d_old> | 172 | <d_old></d_old> |
189 | <e_new> | 173 | <e_new>Searching...</e_new> |
190 | When opening your system browser to view a Web page | ||
191 | </e_new> | ||
192 | <f_old_trans></f_old_trans> | 174 | <f_old_trans></f_old_trans> |
193 | <f_translation> | 175 | <f_translation>Suchen...</f_translation> |
194 | Wenn der System-Webbrowser zur Anzeige einer Webseite geöffnet wird | 176 | </string><string><a_file>floater_directory.xml</a_file> |
195 | </f_translation> | 177 | <b_path>/directory/Directory Tabs/showcase_panel/not_found_text</b_path> |
196 | </string><string><a_file>alerts.xml</a_file> | ||
197 | <b_path>//WebLaunchExternalTarget/Open</b_path> | ||
198 | <c_attribute></c_attribute> | 178 | <c_attribute></c_attribute> |
199 | <d_old></d_old> | 179 | <d_old></d_old> |
200 | <e_new> | 180 | <e_new>None Found.</e_new> |
201 | OK | ||
202 | </e_new> | ||
203 | <f_old_trans></f_old_trans> | 181 | <f_old_trans></f_old_trans> |
204 | <f_translation> | 182 | <f_translation>Nicht gefunden.</f_translation> |
205 | OK | 183 | </string><string><a_file>floater_directory.xml</a_file> |
206 | </f_translation> | 184 | <b_path>/directory/Directory Tabs/showcase_panel/back_btn</b_path> |
207 | </string><string><a_file>alerts.xml</a_file> | 185 | <c_attribute>label</c_attribute> |
208 | <b_path>//WebLaunchExternalTarget/Cancel</b_path> | ||
209 | <c_attribute></c_attribute> | ||
210 | <d_old></d_old> | 186 | <d_old></d_old> |
211 | <e_new> | 187 | <e_new>Back</e_new> |
212 | Cancel | ||
213 | </e_new> | ||
214 | <f_old_trans></f_old_trans> | 188 | <f_old_trans></f_old_trans> |
215 | <f_translation> | 189 | <f_translation>Zurück</f_translation> |
216 | Abbrechen | 190 | </string><string><a_file>floater_directory.xml</a_file> |
217 | </f_translation> | 191 | <b_path>/directory/Directory Tabs/showcase_panel/forward_btn</b_path> |
218 | </string><string><a_file>alerts.xml</a_file> | 192 | <c_attribute>label</c_attribute> |
219 | <b_path>//ProblemAddingEstateGeneric/message</b_path> | ||
220 | <c_attribute></c_attribute> | ||
221 | <d_old></d_old> | 193 | <d_old></d_old> |
222 | <e_new> | 194 | <e_new>Forward</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> | 195 | <f_old_trans></f_old_trans> |
226 | <f_translation> | 196 | <f_translation>Weiter</f_translation> |
227 | Problem beim Hinzufügen zu dieser Grundstücksliste. Bei mindestens einem Grundstück ist die Liste voll. | 197 | </string><string><a_file>floater_directory.xml</a_file> |
228 | </f_translation> | 198 | <b_path>/directory/Directory Tabs/showcase_panel/loading_text</b_path> |
229 | </string><string><a_file>alerts.xml</a_file> | ||
230 | <b_path>//ReplaceAttachment/ignore</b_path> | ||
231 | <c_attribute></c_attribute> | 199 | <c_attribute></c_attribute> |
232 | <d_old></d_old> | 200 | <d_old></d_old> |
233 | <e_new> | 201 | <e_new>Loading...</e_new> |
234 | When replacing existing attachments | ||
235 | </e_new> | ||
236 | <f_old_trans></f_old_trans> | 202 | <f_old_trans></f_old_trans> |
237 | <f_translation> | 203 | <f_translation>Wird geladen...</f_translation> |
238 | Beim Wechseln von Anhängen | 204 | </string><string><a_file>floater_directory.xml</a_file> |
239 | </f_translation> | 205 | <b_path>/directory/Directory Tabs/showcase_panel/done_text</b_path> |
240 | </string><string><a_file>alerts.xml</a_file> | ||
241 | <b_path>//BusyModePay/ignore</b_path> | ||
242 | <c_attribute></c_attribute> | 206 | <c_attribute></c_attribute> |
243 | <d_old></d_old> | 207 | <d_old></d_old> |
244 | <e_new> | 208 | <e_new>Done</e_new> |
245 | When paying a person or object in busy mode | ||
246 | </e_new> | ||
247 | <f_old_trans></f_old_trans> | 209 | <f_old_trans></f_old_trans> |
248 | <f_translation> | 210 | <f_translation>Fertig</f_translation> |
249 | Beim Bezahlen einer Person oder eines Objekts im Beschäftigt-Modus | 211 | </string><string><a_file>floater_directory.xml</a_file> |
250 | </f_translation> | 212 | <b_path>/directory/Directory Tabs/groups_panel/back_btn</b_path> |
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> | 213 | <c_attribute>label</c_attribute> |
261 | <d_old></d_old> | 214 | <d_old></d_old> |
262 | <e_new>Name</e_new> | 215 | <e_new>Back</e_new> |
263 | <f_old_trans></f_old_trans> | 216 | <f_old_trans></f_old_trans> |
264 | <f_translation>Name</f_translation> | 217 | <f_translation>Zurück</f_translation> |
265 | </string><string><a_file>floater_about_land.xml</a_file> | 218 | </string><string><a_file>floater_directory.xml</a_file> |
266 | <b_path>/floaterland/landtab/land_objects_panel/owner list/count</b_path> | 219 | <b_path>/directory/Directory Tabs/groups_panel/forward_btn</b_path> |
267 | <c_attribute>label</c_attribute> | 220 | <c_attribute>label</c_attribute> |
268 | <d_old></d_old> | 221 | <d_old></d_old> |
269 | <e_new>Count</e_new> | 222 | <e_new>Forward</e_new> |
270 | <f_old_trans></f_old_trans> | 223 | <f_old_trans></f_old_trans> |
271 | <f_translation>Zählen</f_translation> | 224 | <f_translation>Weiter</f_translation> |
272 | </string><string><a_file>floater_active_speakers.xml</a_file> | 225 | </string><string><a_file>floater_directory.xml</a_file> |
273 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> | 226 | <b_path>/directory/Directory Tabs/groups_panel/search_editor</b_path> |
274 | <c_attribute>label</c_attribute> | 227 | <c_attribute>label</c_attribute> |
275 | <d_old></d_old> | 228 | <d_old></d_old> |
276 | <e_new></e_new> | 229 | <e_new>Search</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> | 230 | <f_old_trans></f_old_trans> |
287 | <f_translation> | 231 | <f_translation>Suchen</f_translation> |
288 | Gebackene Texturen | 232 | </string><string><a_file>floater_directory.xml</a_file> |
289 | </f_translation> | 233 | <b_path>/directory/Directory Tabs/groups_panel/search_editor</b_path> |
290 | </string><string><a_file>floater_avatar_textures.xml</a_file> | 234 | <c_attribute>tool_tip</c_attribute> |
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> | 235 | <d_old></d_old> |
305 | <e_new> | 236 | <e_new>Search Second Life</e_new> |
306 | Getting data... | ||
307 | </e_new> | ||
308 | <f_old_trans></f_old_trans> | 237 | <f_old_trans></f_old_trans> |
309 | <f_translation> | 238 | <f_translation>Second Life durchsuchen</f_translation> |
310 | Daten werden geladen... | 239 | </string><string><a_file>floater_directory.xml</a_file> |
311 | </f_translation> | 240 | <b_path>/directory/Directory Tabs/groups_panel/search_btn</b_path> |
312 | </string><string><a_file>floater_camera.xml</a_file> | 241 | <c_attribute>label</c_attribute> |
313 | <b_path>/move floater</b_path> | ||
314 | <c_attribute>title</c_attribute> | ||
315 | <d_old></d_old> | 242 | <d_old></d_old> |
316 | <e_new></e_new> | 243 | <e_new>Search</e_new> |
317 | <f_old_trans></f_old_trans> | 244 | <f_old_trans></f_old_trans> |
318 | <f_translation></f_translation> | 245 | <f_translation>Suchen</f_translation> |
319 | </string><string><a_file>floater_camera.xml</a_file> | 246 | </string><string><a_file>floater_directory.xml</a_file> |
320 | <b_path>/move floater/rotate_tooltip</b_path> | 247 | <b_path>/directory/Directory Tabs/groups_panel/mature_check</b_path> |
321 | <c_attribute></c_attribute> | 248 | <c_attribute>label</c_attribute> |
322 | <d_old></d_old> | 249 | <d_old></d_old> |
323 | <e_new>Rotate Camera Around Focus</e_new> | 250 | <e_new>Include Mature content</e_new> |
324 | <f_old_trans></f_old_trans> | 251 | <f_old_trans></f_old_trans> |
325 | <f_translation>Kamera um Fokus drehen</f_translation> | 252 | <f_translation>Ab-18-Inhalte einschließen</f_translation> |
326 | </string><string><a_file>floater_camera.xml</a_file> | 253 | </string><string><a_file>floater_directory.xml</a_file> |
327 | <b_path>/move floater/zoom_tooltip</b_path> | 254 | <b_path>/directory/Directory Tabs/groups_panel/loading_text</b_path> |
328 | <c_attribute></c_attribute> | 255 | <c_attribute></c_attribute> |
329 | <d_old></d_old> | 256 | <d_old></d_old> |
330 | <e_new>Zoom Camera Towards Focus</e_new> | 257 | <e_new>Loading...</e_new> |
331 | <f_old_trans></f_old_trans> | 258 | <f_old_trans></f_old_trans> |
332 | <f_translation>Kamera auf Fokus zoomen</f_translation> | 259 | <f_translation>Wird geladen...</f_translation> |
333 | </string><string><a_file>floater_camera.xml</a_file> | 260 | </string><string><a_file>floater_directory.xml</a_file> |
334 | <b_path>/move floater/move_tooltip</b_path> | 261 | <b_path>/directory/Directory Tabs/groups_panel/done_text</b_path> |
335 | <c_attribute></c_attribute> | 262 | <c_attribute></c_attribute> |
336 | <d_old></d_old> | 263 | <d_old></d_old> |
337 | <e_new>Move Camera Up and Down, Left and Right</e_new> | 264 | <e_new>Done</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> | 265 | <f_old_trans></f_old_trans> |
346 | <f_translation>Unterhalten</f_translation> | 266 | <f_translation>Fertig</f_translation> |
347 | </string><string><a_file>floater_chat_history.xml</a_file> | 267 | </string><string><a_file>floater_im.xml</a_file> |
348 | <b_path>/chat floater/IM_logging_string</b_path> | 268 | <b_path>/im_floater/muted_message</b_path> |
349 | <c_attribute></c_attribute> | 269 | <c_attribute></c_attribute> |
350 | <d_old></d_old> | 270 | <d_old></d_old> |
351 | <e_new> | 271 | <e_new> |
352 | -- Instant message logging enabled -- | 272 | [FIRST] [LAST] is muted. |
353 | </e_new> | 273 | </e_new> |
354 | <f_old_trans></f_old_trans> | 274 | <f_old_trans></f_old_trans> |
355 | <f_translation> | 275 | <f_translation> |
356 | -- Instant-Message-Protokoll aktiviert -- | 276 | [FIRST] [LAST] ist stummgeschaltet. |
357 | </f_translation> | 277 | </f_translation> |
358 | </string><string><a_file>floater_chat_history.xml</a_file> | 278 | </string><string><a_file>notify.xml</a_file> |
359 | <b_path>/chat floater/IM_end_log_string</b_path> | 279 | <b_path>//AutoUnmuteByIM/message</b_path> |
360 | <c_attribute></c_attribute> | 280 | <c_attribute></c_attribute> |
361 | <d_old></d_old> | 281 | <d_old></d_old> |
362 | <e_new> | 282 | <e_new> |
363 | -- End of Log -- | 283 | [FIRST] [LAST] was sent an instant message and has been automatically unmuted. |
364 | </e_new> | 284 | </e_new> |
365 | <f_old_trans></f_old_trans> | 285 | <f_old_trans></f_old_trans> |
366 | <f_translation> | 286 | <f_translation> |
367 | -- Ende des Protokolls -- | 287 | [FIRST] [LAST] hat eine Instant Message erhalten; die Stummschaltung wurde aufgehoben. |
368 | </f_translation> | 288 | </f_translation> |
369 | </string><string><a_file>floater_chat_history.xml</a_file> | 289 | </string><string><a_file>notify.xml</a_file> |
370 | <b_path>/chat floater/panels/im_contents_panel/Gesture</b_path> | 290 | <b_path>//AutoUnmuteByMoney/message</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> | 291 | <c_attribute></c_attribute> |
379 | <d_old></d_old> | 292 | <d_old></d_old> |
380 | <e_new> | 293 | <e_new> |
381 | Gestures | 294 | [FIRST] [LAST] was given money and has been automatically unmuted. |
382 | </e_new> | 295 | </e_new> |
383 | <f_old_trans></f_old_trans> | 296 | <f_old_trans></f_old_trans> |
384 | <f_translation> | 297 | <f_translation> |
385 | Gesten | 298 | [FIRST] [LAST] hat Geld erhalten; die Stummschaltung wurde aufgehoben. |
386 | </f_translation> | 299 | </f_translation> |
387 | </string><string><a_file>floater_chat_history.xml</a_file> | 300 | </string><string><a_file>notify.xml</a_file> |
388 | <b_path>/chat floater/panels/im_contents_panel/show mutes</b_path> | 301 | <b_path>//AutoUnmuteByInventory/message</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> | 302 | <c_attribute></c_attribute> |
439 | <d_old></d_old> | 303 | <d_old></d_old> |
440 | <e_new> | 304 | <e_new> |
441 | Critical Message | 305 | [FIRST] [LAST] was offered inventory and has been automatically unmuted. |
442 | </e_new> | 306 | </e_new> |
443 | <f_old_trans></f_old_trans> | 307 | <f_old_trans></f_old_trans> |
444 | <f_translation> | 308 | <f_translation> |
445 | Kritische Nachricht | 309 | [FIRST] [LAST] wurde ein Inventarobjekt angeboten; die Stummschaltung wurde aufgehoben. |
446 | </f_translation> | 310 | </f_translation> |
447 | </string><string><a_file>floater_customize.xml</a_file> | 311 | </string><string><a_file>panel_avatar_classified.xml</a_file> |
448 | <b_path>/floater customize/customize tab container/body_parts_placeholder</b_path> | 312 | <b_path>/Classified/classified_mature_check/select_mature</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> | 313 | <c_attribute></c_attribute> |
513 | <d_old></d_old> | 314 | <d_old></d_old> |
514 | <e_new> | 315 | <e_new> |
515 | Antialiasing: | 316 | - Select Mature - |
516 | </e_new> | 317 | </e_new> |
517 | <f_old_trans></f_old_trans> | 318 | <f_old_trans></f_old_trans> |
518 | <f_translation> | 319 | <f_translation> |
519 | Antialiasing: | 320 | - Jugendfreigabe wählen - |
520 | </f_translation> | 321 | </f_translation> |
521 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 322 | </string><string><a_file>panel_avatar_classified.xml</a_file> |
522 | <b_path>/Hardware Settings Floater/fsaa</b_path> | 323 | <b_path>/Classified/classified_mature_check/mature</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> | 324 | <c_attribute></c_attribute> |
531 | <d_old></d_old> | 325 | <d_old></d_old> |
532 | <e_new> | 326 | <e_new> |
533 | Disabled | 327 | Mature Content |
534 | </e_new> | 328 | </e_new> |
535 | <f_old_trans></f_old_trans> | 329 | <f_old_trans></f_old_trans> |
536 | <f_translation> | 330 | <f_translation> |
537 | Deaktiviert | 331 | Ab-18-Inhalt |
538 | </f_translation> | 332 | </f_translation> |
539 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 333 | </string><string><a_file>panel_avatar_classified.xml</a_file> |
540 | <b_path>/Hardware Settings Floater/fsaa/2x</b_path> | 334 | <b_path>/Classified/classified_mature_check/not_mature</b_path> |
541 | <c_attribute></c_attribute> | 335 | <c_attribute></c_attribute> |
542 | <d_old></d_old> | 336 | <d_old></d_old> |
543 | <e_new> | 337 | <e_new> |
544 | 2x | 338 | Not Mature Content |
545 | </e_new> | 339 | </e_new> |
546 | <f_old_trans></f_old_trans> | 340 | <f_old_trans></f_old_trans> |
547 | <f_translation> | 341 | <f_translation> |
548 | 2x | 342 | Jugendfreier Inhalt |
549 | </f_translation> | 343 | </f_translation> |
550 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 344 | </string><string><a_file>panel_classified.xml</a_file> |
551 | <b_path>/Hardware Settings Floater/fsaa/4x</b_path> | 345 | <b_path>/Classified/classified_mature_check/select_mature</b_path> |
552 | <c_attribute></c_attribute> | 346 | <c_attribute></c_attribute> |
553 | <d_old></d_old> | 347 | <d_old></d_old> |
554 | <e_new> | 348 | <e_new> |
555 | 4x | 349 | - Select Mature - |
556 | </e_new> | 350 | </e_new> |
557 | <f_old_trans></f_old_trans> | 351 | <f_old_trans></f_old_trans> |
558 | <f_translation> | 352 | <f_translation> |
559 | 4x | 353 | - Jugendfreigabe wählen - |
560 | </f_translation> | 354 | </f_translation> |
561 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 355 | </string><string><a_file>panel_classified.xml</a_file> |
562 | <b_path>/Hardware Settings Floater/fsaa/8x</b_path> | 356 | <b_path>/Classified/classified_mature_check/mature</b_path> |
563 | <c_attribute></c_attribute> | 357 | <c_attribute></c_attribute> |
564 | <d_old></d_old> | 358 | <d_old></d_old> |
565 | <e_new> | 359 | <e_new> |
566 | 8x | 360 | Mature Content |
567 | </e_new> | 361 | </e_new> |
568 | <f_old_trans></f_old_trans> | 362 | <f_old_trans></f_old_trans> |
569 | <f_translation> | 363 | <f_translation> |
570 | 8x | 364 | Ab-18-Inhalt |
571 | </f_translation> | 365 | </f_translation> |
572 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 366 | </string><string><a_file>panel_classified.xml</a_file> |
573 | <b_path>/Hardware Settings Floater/fsaa/16x</b_path> | 367 | <b_path>/Classified/classified_mature_check/not_mature</b_path> |
574 | <c_attribute></c_attribute> | 368 | <c_attribute></c_attribute> |
575 | <d_old></d_old> | 369 | <d_old></d_old> |
576 | <e_new> | 370 | <e_new> |
577 | 16x | 371 | Not Mature Content |
578 | </e_new> | 372 | </e_new> |
579 | <f_old_trans></f_old_trans> | 373 | <f_old_trans></f_old_trans> |
580 | <f_translation> | 374 | <f_translation> |
581 | 16x | 375 | Jugendfreier Inhalt |
582 | </f_translation> | 376 | </f_translation> |
583 | </string><string><a_file>floater_hud.xml</a_file> | 377 | </string><string><a_file>panel_groups.xml</a_file> |
584 | <b_path>/floater_hud</b_path> | 378 | <b_path>/groups/group list/name</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> | 379 | <c_attribute>label</c_attribute> |
635 | <d_old></d_old> | 380 | <d_old></d_old> |
636 | <e_new>Roll Mapping</e_new> | 381 | <e_new></e_new> |
637 | <f_old_trans></f_old_trans> | 382 | <f_old_trans></f_old_trans> |
638 | <f_translation>Rollwinkel</f_translation> | 383 | <f_translation></f_translation> |
639 | </string><string><a_file>floater_joystick.xml</a_file> | 384 | </string><string><a_file>panel_group_general.xml</a_file> |
640 | <b_path>/Joystick/JoystickAxis6</b_path> | 385 | <b_path>/general_tab/preferences_container/group_mature_check</b_path> |
641 | <c_attribute>label</c_attribute> | 386 | <c_attribute>tool_tip</c_attribute> |
642 | <d_old></d_old> | 387 | <d_old></d_old> |
643 | <e_new>Zoom Mapping</e_new> | 388 | <e_new>Sets whether your group information is considered mature.</e_new> |
644 | <f_old_trans></f_old_trans> | 389 | <f_old_trans></f_old_trans> |
645 | <f_translation>Zoom</f_translation> | 390 | <f_translation>Festlegen, ob die Informationen Ihrer Gruppe nicht jugendfrei sind.</f_translation> |
646 | </string><string><a_file>floater_joystick.xml</a_file> | 391 | </string><string><a_file>panel_group_general.xml</a_file> |
647 | <b_path>/Joystick/ZoomDirect</b_path> | 392 | <b_path>/general_tab/preferences_container/group_mature_check/select_mature</b_path> |
648 | <c_attribute>label</c_attribute> | 393 | <c_attribute></c_attribute> |
649 | <d_old></d_old> | 394 | <d_old></d_old> |
650 | <e_new>Direct Zoom</e_new> | 395 | <e_new> |
396 | - Select Mature - | ||
397 | </e_new> | ||
651 | <f_old_trans></f_old_trans> | 398 | <f_old_trans></f_old_trans> |
652 | <f_translation>Direkt-Zoom</f_translation> | 399 | <f_translation> |
653 | </string><string><a_file>floater_joystick.xml</a_file> | 400 | - Jugendfreigabe wählen - |
654 | <b_path>/Joystick/Cursor3D</b_path> | 401 | </f_translation> |
655 | <c_attribute>label</c_attribute> | 402 | </string><string><a_file>panel_group_general.xml</a_file> |
403 | <b_path>/general_tab/preferences_container/group_mature_check/mature</b_path> | ||
404 | <c_attribute></c_attribute> | ||
656 | <d_old></d_old> | 405 | <d_old></d_old> |
657 | <e_new>3D Cursor</e_new> | 406 | <e_new> |
407 | Mature Content | ||
408 | </e_new> | ||
658 | <f_old_trans></f_old_trans> | 409 | <f_old_trans></f_old_trans> |
659 | <f_translation>3D-Cursor</f_translation> | 410 | <f_translation> |
660 | </string><string><a_file>floater_joystick.xml</a_file> | 411 | Ab-18-Inhalt |
661 | <b_path>/Joystick/AutoLeveling</b_path> | 412 | </f_translation> |
662 | <c_attribute>label</c_attribute> | 413 | </string><string><a_file>panel_group_general.xml</a_file> |
414 | <b_path>/general_tab/preferences_container/group_mature_check/not_mature</b_path> | ||
415 | <c_attribute></c_attribute> | ||
663 | <d_old></d_old> | 416 | <d_old></d_old> |
664 | <e_new>Auto Level</e_new> | 417 | <e_new> |
418 | Not Mature Content | ||
419 | </e_new> | ||
665 | <f_old_trans></f_old_trans> | 420 | <f_old_trans></f_old_trans> |
666 | <f_translation>Automatisch ausrichten</f_translation> | 421 | <f_translation> |
667 | </string><string><a_file>floater_joystick.xml</a_file> | 422 | Jugendfreier Inhalt |
668 | <b_path>/Joystick/Control Modes:</b_path> | 423 | </f_translation> |
424 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
425 | <b_path>/Display panel/WindowSizeLabel</b_path> | ||
669 | <c_attribute></c_attribute> | 426 | <c_attribute></c_attribute> |
670 | <d_old></d_old> | 427 | <d_old></d_old> |
671 | <e_new> | 428 | <e_new> |
672 | Control Modes: | 429 | Window Size: |
673 | </e_new> | 430 | </e_new> |
674 | <f_old_trans></f_old_trans> | 431 | <f_old_trans></f_old_trans> |
675 | <f_translation> | 432 | <f_translation> |
676 | Steuermodi: | 433 | Fenstergröße: |
677 | </f_translation> | 434 | </f_translation> |
678 | </string><string><a_file>floater_joystick.xml</a_file> | 435 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> |
679 | <b_path>/Joystick/XScale</b_path> | 436 | <b_path>/Display panel/windowsize combo/640x480</b_path> |
680 | <c_attribute></c_attribute> | 437 | <c_attribute></c_attribute> |
681 | <d_old></d_old> | 438 | <d_old></d_old> |
682 | <e_new>X Scale</e_new> | 439 | <e_new> |
440 | 640x480 | ||
441 | </e_new> | ||
683 | <f_old_trans></f_old_trans> | 442 | <f_old_trans></f_old_trans> |
684 | <f_translation>X-Skala </f_translation> | 443 | <f_translation> |
685 | </string><string><a_file>floater_joystick.xml</a_file> | 444 | 640x480 |
686 | <b_path>/Joystick/YScale</b_path> | 445 | </f_translation> |
446 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
447 | <b_path>/Display panel/windowsize combo/800x600</b_path> | ||
687 | <c_attribute></c_attribute> | 448 | <c_attribute></c_attribute> |
688 | <d_old></d_old> | 449 | <d_old></d_old> |
689 | <e_new>Y Scale</e_new> | 450 | <e_new> |
451 | 800x600 | ||
452 | </e_new> | ||
690 | <f_old_trans></f_old_trans> | 453 | <f_old_trans></f_old_trans> |
691 | <f_translation>Y-Skala</f_translation> | 454 | <f_translation> |
692 | </string><string><a_file>floater_joystick.xml</a_file> | 455 | 800x600 |
693 | <b_path>/Joystick/ZScale</b_path> | 456 | </f_translation> |
457 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
458 | <b_path>/Display panel/windowsize combo/720x480</b_path> | ||
694 | <c_attribute></c_attribute> | 459 | <c_attribute></c_attribute> |
695 | <d_old></d_old> | 460 | <d_old></d_old> |
696 | <e_new>Z Scale</e_new> | 461 | <e_new> |
462 | 720x480 (NTSC) | ||
463 | </e_new> | ||
697 | <f_old_trans></f_old_trans> | 464 | <f_old_trans></f_old_trans> |
698 | <f_translation>Z-Skala</f_translation> | 465 | <f_translation> |
699 | </string><string><a_file>floater_joystick.xml</a_file> | 466 | 720x480 (NTSC) |
700 | <b_path>/Joystick/PitchScale</b_path> | 467 | </f_translation> |
468 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
469 | <b_path>/Display panel/windowsize combo/768x576</b_path> | ||
701 | <c_attribute></c_attribute> | 470 | <c_attribute></c_attribute> |
702 | <d_old></d_old> | 471 | <d_old></d_old> |
703 | <e_new>Pitch Scale</e_new> | 472 | <e_new> |
473 | 768x576 (PAL) | ||
474 | </e_new> | ||
704 | <f_old_trans></f_old_trans> | 475 | <f_old_trans></f_old_trans> |
705 | <f_translation>Neigungsskala</f_translation> | 476 | <f_translation> |
706 | </string><string><a_file>floater_joystick.xml</a_file> | 477 | 768x576 (PAL) |
707 | <b_path>/Joystick/YawScale</b_path> | 478 | </f_translation> |
479 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
480 | <b_path>/Display panel/windowsize combo/1024x768</b_path> | ||
708 | <c_attribute></c_attribute> | 481 | <c_attribute></c_attribute> |
709 | <d_old></d_old> | 482 | <d_old></d_old> |
710 | <e_new>Yaw Scale</e_new> | 483 | <e_new> |
484 | 1024x768 | ||
485 | </e_new> | ||
711 | <f_old_trans></f_old_trans> | 486 | <f_old_trans></f_old_trans> |
712 | <f_translation>Gierskala</f_translation> | 487 | <f_translation> |
713 | </string><string><a_file>floater_joystick.xml</a_file> | 488 | 1024x768 |
714 | <b_path>/Joystick/RollScale</b_path> | 489 | </f_translation> |
715 | <c_attribute></c_attribute> | 490 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> |
491 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | ||
492 | <c_attribute>label</c_attribute> | ||
716 | <d_old></d_old> | 493 | <d_old></d_old> |
717 | <e_new>Roll Scale</e_new> | 494 | <e_new></e_new> |
718 | <f_old_trans></f_old_trans> | 495 | <f_old_trans></f_old_trans> |
719 | <f_translation>Rollskala</f_translation> | 496 | <f_translation></f_translation> |
720 | </string><string><a_file>floater_joystick.xml</a_file> | 497 | </string><string><a_file>panel_preferences_web.xml</a_file> |
721 | <b_path>/Joystick/XDeadZone</b_path> | 498 | <b_path>/web/use_external_browser/internal</b_path> |
722 | <c_attribute></c_attribute> | 499 | <c_attribute>tool_tip</c_attribute> |
723 | <d_old></d_old> | 500 | <d_old></d_old> |
724 | <e_new>X Dead Zone</e_new> | 501 | <e_new>Use the built-in web browser for help, web links, etc. This browser opens as a new window inside Second Life.</e_new> |
725 | <f_old_trans></f_old_trans> | 502 | <f_old_trans></f_old_trans> |
726 | <f_translation>X-Totzone </f_translation> | 503 | <f_translation>Den integrierten Browser zur Suche im Internet verwenden. Der Browser wird als eigenständiges Fenster in Second Life geöffnet.</f_translation> |
727 | </string><string><a_file>floater_joystick.xml</a_file> | 504 | </string><string><a_file>panel_region_general.xml</a_file> |
728 | <b_path>/Joystick/YDeadZone</b_path> | 505 | <b_path>/General/version_channel_text_lbl</b_path> |
729 | <c_attribute></c_attribute> | 506 | <c_attribute></c_attribute> |
730 | <d_old></d_old> | 507 | <d_old></d_old> |
731 | <e_new>Y Dead Zone</e_new> | 508 | <e_new> |
509 | Version: | ||
510 | </e_new> | ||
732 | <f_old_trans></f_old_trans> | 511 | <f_old_trans></f_old_trans> |
733 | <f_translation>Y-Totzone</f_translation> | 512 | <f_translation> |
734 | </string><string><a_file>floater_joystick.xml</a_file> | 513 | Version: |
735 | <b_path>/Joystick/ZDeadZone</b_path> | 514 | </f_translation> |
515 | </string><string><a_file>panel_region_general.xml</a_file> | ||
516 | <b_path>/General/version_channel_text</b_path> | ||
736 | <c_attribute></c_attribute> | 517 | <c_attribute></c_attribute> |
737 | <d_old></d_old> | 518 | <d_old></d_old> |
738 | <e_new>Z Dead Zone</e_new> | 519 | <e_new> |
520 | unknown | ||
521 | </e_new> | ||
739 | <f_old_trans></f_old_trans> | 522 | <f_old_trans></f_old_trans> |
740 | <f_translation>Z-Totzone</f_translation> | 523 | <f_translation> |
741 | </string><string><a_file>floater_joystick.xml</a_file> | 524 | unbekannt |
742 | <b_path>/Joystick/PitchDeadZone</b_path> | 525 | </f_translation> |
526 | </string><string><a_file>strings.xml</a_file> | ||
527 | <b_path>//LoginInProgress</b_path> | ||
743 | <c_attribute></c_attribute> | 528 | <c_attribute></c_attribute> |
744 | <d_old></d_old> | 529 | <d_old></d_old> |
745 | <e_new>Pitch Dead Zone</e_new> | 530 | <e_new>Logging in. [APP_NAME] may appear frozen. Please wait.</e_new> |
746 | <f_old_trans></f_old_trans> | 531 | <f_old_trans></f_old_trans> |
747 | <f_translation>Neigen-Totzone</f_translation> | 532 | <f_translation>Anmeldevorgang gestartet. [APP_NAME] reagiert möglicherweise nicht. Bitte warten.</f_translation> |
748 | </string><string><a_file>floater_joystick.xml</a_file> | 533 | </string><string><a_file>strings.xml</a_file> |
749 | <b_path>/Joystick/YawDeadZone</b_path> | 534 | <b_path>//LoginAuthenticating</b_path> |
750 | <c_attribute></c_attribute> | 535 | <c_attribute></c_attribute> |
751 | <d_old></d_old> | 536 | <d_old></d_old> |
752 | <e_new>Yaw Dead Zone</e_new> | 537 | <e_new>Authenticating</e_new> |
753 | <f_old_trans></f_old_trans> | 538 | <f_old_trans></f_old_trans> |
754 | <f_translation>Gieren-Totzone</f_translation> | 539 | <f_translation>Authentifizierung</f_translation> |
755 | </string><string><a_file>floater_joystick.xml</a_file> | 540 | </string><string><a_file>strings.xml</a_file> |
756 | <b_path>/Joystick/RollDeadZone</b_path> | 541 | <b_path>//LoginMaintenance</b_path> |
757 | <c_attribute></c_attribute> | 542 | <c_attribute></c_attribute> |
758 | <d_old></d_old> | 543 | <d_old></d_old> |
759 | <e_new>Roll Dead Zone</e_new> | 544 | <e_new>Performing account maintenance...</e_new> |
760 | <f_old_trans></f_old_trans> | 545 | <f_old_trans></f_old_trans> |
761 | <f_translation>Rollen-Totzone</f_translation> | 546 | <f_translation>Account wird aktualisiert...</f_translation> |
762 | </string><string><a_file>floater_joystick.xml</a_file> | 547 | </string><string><a_file>strings.xml</a_file> |
763 | <b_path>/Joystick/Feathering</b_path> | 548 | <b_path>//LoginAttempt</b_path> |
764 | <c_attribute></c_attribute> | 549 | <c_attribute></c_attribute> |
765 | <d_old></d_old> | 550 | <d_old></d_old> |
766 | <e_new>Feathering</e_new> | 551 | <e_new>Previous login attempt failed. Logging in, attempt [NUMBER]</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> | 552 | <f_old_trans></f_old_trans> |
775 | <f_translation></f_translation> | 553 | <f_translation>Ein früherer Anmeldeversuch ist fehlgeschlagen. Anmeldung, Versuch [NUMBER]</f_translation> |
776 | </string><string><a_file>floater_joystick.xml</a_file> | 554 | </string><string><a_file>strings.xml</a_file> |
777 | <b_path>/Joystick/BuildFeathering</b_path> | 555 | <b_path>//LoginPrecaching</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> | 556 | <c_attribute></c_attribute> |
793 | <d_old></d_old> | 557 | <d_old></d_old> |
794 | <e_new>Zoom Scale</e_new> | 558 | <e_new>Loading world...</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> | 559 | <f_old_trans></f_old_trans> |
803 | <f_translation></f_translation> | 560 | <f_translation>Welt wird geladen...</f_translation> |
804 | </string><string><a_file>floater_joystick.xml</a_file> | 561 | </string><string><a_file>strings.xml</a_file> |
805 | <b_path>/Joystick/ZoomDeadZone</b_path> | 562 | <b_path>//LoginInitializingBrowser</b_path> |
806 | <c_attribute></c_attribute> | 563 | <c_attribute></c_attribute> |
807 | <d_old></d_old> | 564 | <d_old></d_old> |
808 | <e_new>Zoom Dead Zone</e_new> | 565 | <e_new>Initializing embedded web browser...</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> | 566 | <f_old_trans></f_old_trans> |
824 | <f_translation>SpaceNavigator-Standards</f_translation> | 567 | <f_translation>Integrierter Webbrowser wird initialisiert...</f_translation> |
825 | </string><string><a_file>floater_joystick.xml</a_file> | 568 | </string><string><a_file>strings.xml</a_file> |
826 | <b_path>/Joystick/JoystickMonitor</b_path> | 569 | <b_path>//LoginVerifyingCache</b_path> |
827 | <c_attribute></c_attribute> | 570 | <c_attribute></c_attribute> |
828 | <d_old></d_old> | 571 | <d_old></d_old> |
829 | <e_new>Joystick Monitor</e_new> | 572 | <e_new>Verifying cache files (can take 60-90 seconds)...</e_new> |
830 | <f_old_trans></f_old_trans> | 573 | <f_old_trans></f_old_trans> |
831 | <f_translation>Joystick-Monitor</f_translation> | 574 | <f_translation>Cache-Dateien werden überprüft (dauert 60-90 Sekunden)...</f_translation> |
832 | </string><string><a_file>floater_joystick.xml</a_file> | 575 | </string><string><a_file>strings.xml</a_file> |
833 | <b_path>/Joystick/Axis</b_path> | 576 | <b_path>//LoginProcessingResponse</b_path> |
834 | <c_attribute></c_attribute> | 577 | <c_attribute></c_attribute> |
835 | <d_old></d_old> | 578 | <d_old></d_old> |
836 | <e_new>Axis [NUM]</e_new> | 579 | <e_new>Processing Response...</e_new> |
837 | <f_old_trans></f_old_trans> | 580 | <f_old_trans></f_old_trans> |
838 | <f_translation>Achse [NUM]</f_translation> | 581 | <f_translation>Antwort wird verarbeitet...</f_translation> |
839 | </string><string><a_file>floater_joystick.xml</a_file> | 582 | </string><string><a_file>strings.xml</a_file> |
840 | <b_path>/Joystick/NoDevice</b_path> | 583 | <b_path>//LoginInitializingWorld</b_path> |
841 | <c_attribute></c_attribute> | 584 | <c_attribute></c_attribute> |
842 | <d_old></d_old> | 585 | <d_old></d_old> |
843 | <e_new>no device detected</e_new> | 586 | <e_new>Initializing World...</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> | 587 | <f_old_trans></f_old_trans> |
908 | <f_translation></f_translation> | 588 | <f_translation>Welt wird initialisiert...</f_translation> |
909 | </string><string><a_file>floater_preview_classified.xml</a_file> | 589 | </string><string><a_file>strings.xml</a_file> |
910 | <b_path>/classified_preview</b_path> | 590 | <b_path>//LoginDecodingImages</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> | 591 | <c_attribute></c_attribute> |
926 | <d_old></d_old> | 592 | <d_old></d_old> |
927 | <e_new> | 593 | <e_new>Decoding images...</e_new> |
928 | Library: | ||
929 | </e_new> | ||
930 | <f_old_trans></f_old_trans> | 594 | <f_old_trans></f_old_trans> |
931 | <f_translation> | 595 | <f_translation>Bilder werden entpackt...</f_translation> |
932 | Bibliothek: | 596 | </string><string><a_file>strings.xml</a_file> |
933 | </f_translation> | 597 | <b_path>//LoginInitializingQuicktime</b_path> |
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> | 598 | <c_attribute></c_attribute> |
937 | <d_old></d_old> | 599 | <d_old></d_old> |
938 | <e_new> | 600 | <e_new>Initializing QuickTime...</e_new> |
939 | Steps: | ||
940 | </e_new> | ||
941 | <f_old_trans></f_old_trans> | 601 | <f_old_trans></f_old_trans> |
942 | <f_translation> | 602 | <f_translation>QuickTime wird initialisiert...</f_translation> |
943 | Schritte: | 603 | </string><string><a_file>strings.xml</a_file> |
944 | </f_translation> | 604 | <b_path>//LoginQuicktimeNotFound</b_path> |
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> | 605 | <c_attribute></c_attribute> |
948 | <d_old></d_old> | 606 | <d_old></d_old> |
949 | <e_new> | 607 | <e_new>QuickTime not found - unable to initialize.</e_new> |
950 | Start | ||
951 | </e_new> | ||
952 | <f_old_trans></f_old_trans> | 608 | <f_old_trans></f_old_trans> |
953 | <f_translation> | 609 | <f_translation>QuickTime nicht gefunden - Initialisierung nicht möglich.</f_translation> |
954 | Start | 610 | </string><string><a_file>strings.xml</a_file> |
955 | </f_translation> | 611 | <b_path>//LoginQuicktimeOK</b_path> |
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> | 612 | <c_attribute></c_attribute> |
959 | <d_old></d_old> | 613 | <d_old></d_old> |
960 | <e_new> | 614 | <e_new>QuickTime initialized successfully.</e_new> |
961 | Stop | ||
962 | </e_new> | ||
963 | <f_old_trans></f_old_trans> | 615 | <f_old_trans></f_old_trans> |
964 | <f_translation> | 616 | <f_translation>QuickTime wurde initialisiert.</f_translation> |
965 | Stopp | 617 | </string><string><a_file>strings.xml</a_file> |
966 | </f_translation> | 618 | <b_path>//LoginWaitingForRegionHandshake</b_path> |
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> | 619 | <c_attribute></c_attribute> |
970 | <d_old></d_old> | 620 | <d_old></d_old> |
971 | <e_new>You are not allowed to view this note.</e_new> | 621 | <e_new>Waiting for region handshake...</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> | 622 | <f_old_trans></f_old_trans> |
1008 | <f_translation>Pyramide</f_translation> | 623 | <f_translation>Region-Handshake...</f_translation> |
1009 | </string><string><a_file>floater_tools.xml</a_file> | 624 | </string><string><a_file>strings.xml</a_file> |
1010 | <b_path>/toolbox floater/ToolTetrahedron</b_path> | 625 | <b_path>//LoginConnectingToRegion</b_path> |
1011 | <c_attribute>tool_tip</c_attribute> | 626 | <c_attribute></c_attribute> |
1012 | <d_old></d_old> | 627 | <d_old></d_old> |
1013 | <e_new>Tetrahedron</e_new> | 628 | <e_new>Connecting to region...</e_new> |
1014 | <f_old_trans></f_old_trans> | 629 | <f_old_trans></f_old_trans> |
1015 | <f_translation>Tetraeder</f_translation> | 630 | <f_translation>Region-Verbindung...</f_translation> |
1016 | </string><string><a_file>floater_tools.xml</a_file> | 631 | </string><string><a_file>strings.xml</a_file> |
1017 | <b_path>/toolbox floater/ToolCylinder</b_path> | 632 | <b_path>//LoginDownloadingClothing</b_path> |
1018 | <c_attribute>tool_tip</c_attribute> | 633 | <c_attribute></c_attribute> |
1019 | <d_old></d_old> | 634 | <d_old></d_old> |
1020 | <e_new>Cylinder</e_new> | 635 | <e_new>Downloading clothing...</e_new> |
1021 | <f_old_trans></f_old_trans> | 636 | <f_old_trans></f_old_trans> |
1022 | <f_translation>Zylinder</f_translation> | 637 | <f_translation>Kleidung wird geladen...</f_translation> |
1023 | </string><string><a_file>floater_tools.xml</a_file> | 638 | </string><string><a_file>strings.xml</a_file> |
1024 | <b_path>/toolbox floater/ToolHemiCylinder</b_path> | 639 | <b_path>//TooltipPerson</b_path> |
1025 | <c_attribute>tool_tip</c_attribute> | 640 | <c_attribute></c_attribute> |
1026 | <d_old></d_old> | 641 | <d_old></d_old> |
1027 | <e_new>Hemicylinder</e_new> | 642 | <e_new>Person</e_new> |
1028 | <f_old_trans></f_old_trans> | 643 | <f_old_trans></f_old_trans> |
1029 | <f_translation>Halbzylinder</f_translation> | 644 | <f_translation>Person</f_translation> |
1030 | </string><string><a_file>floater_tools.xml</a_file> | 645 | </string><string><a_file>strings.xml</a_file> |
1031 | <b_path>/toolbox floater/ToolCone</b_path> | 646 | <b_path>//TooltipNoName</b_path> |
1032 | <c_attribute>tool_tip</c_attribute> | 647 | <c_attribute></c_attribute> |
1033 | <d_old></d_old> | 648 | <d_old></d_old> |
1034 | <e_new>Cone</e_new> | 649 | <e_new>(no name)</e_new> |
1035 | <f_old_trans></f_old_trans> | 650 | <f_old_trans></f_old_trans> |
1036 | <f_translation>Kegel</f_translation> | 651 | <f_translation>(namenlos)</f_translation> |
1037 | </string><string><a_file>floater_tools.xml</a_file> | 652 | </string><string><a_file>strings.xml</a_file> |
1038 | <b_path>/toolbox floater/ToolHemiCone</b_path> | 653 | <b_path>//TooltipOwner</b_path> |
1039 | <c_attribute>tool_tip</c_attribute> | 654 | <c_attribute></c_attribute> |
1040 | <d_old></d_old> | 655 | <d_old></d_old> |
1041 | <e_new>Hemicone</e_new> | 656 | <e_new>Owner:</e_new> |
1042 | <f_old_trans></f_old_trans> | 657 | <f_old_trans></f_old_trans> |
1043 | <f_translation>Halbkegel</f_translation> | 658 | <f_translation>Eigentümer:</f_translation> |
1044 | </string><string><a_file>floater_tools.xml</a_file> | 659 | </string><string><a_file>strings.xml</a_file> |
1045 | <b_path>/toolbox floater/ToolSphere</b_path> | 660 | <b_path>//TooltipPublic</b_path> |
1046 | <c_attribute>tool_tip</c_attribute> | 661 | <c_attribute></c_attribute> |
1047 | <d_old></d_old> | 662 | <d_old></d_old> |
1048 | <e_new>Sphere</e_new> | 663 | <e_new>Public</e_new> |
1049 | <f_old_trans></f_old_trans> | 664 | <f_old_trans></f_old_trans> |
1050 | <f_translation>Kugel</f_translation> | 665 | <f_translation>Öffentlich</f_translation> |
1051 | </string><string><a_file>floater_tools.xml</a_file> | 666 | </string><string><a_file>strings.xml</a_file> |
1052 | <b_path>/toolbox floater/ToolHemiSphere</b_path> | 667 | <b_path>//TooltipIsGroup</b_path> |
1053 | <c_attribute>tool_tip</c_attribute> | 668 | <c_attribute></c_attribute> |
1054 | <d_old></d_old> | 669 | <d_old></d_old> |
1055 | <e_new>Hemisphere</e_new> | 670 | <e_new>(Group)</e_new> |
1056 | <f_old_trans></f_old_trans> | 671 | <f_old_trans></f_old_trans> |
1057 | <f_translation>Halbkugel</f_translation> | 672 | <f_translation>(Gruppe)</f_translation> |
1058 | </string><string><a_file>floater_tools.xml</a_file> | 673 | </string><string><a_file>strings.xml</a_file> |
1059 | <b_path>/toolbox floater/ToolTorus</b_path> | 674 | <b_path>//TooltipFlagScript</b_path> |
1060 | <c_attribute>tool_tip</c_attribute> | 675 | <c_attribute></c_attribute> |
1061 | <d_old></d_old> | 676 | <d_old></d_old> |
1062 | <e_new>Torus</e_new> | 677 | <e_new>Script</e_new> |
1063 | <f_old_trans></f_old_trans> | 678 | <f_old_trans></f_old_trans> |
1064 | <f_translation>Torus</f_translation> | 679 | <f_translation>Skript</f_translation> |
1065 | </string><string><a_file>floater_tools.xml</a_file> | 680 | </string><string><a_file>strings.xml</a_file> |
1066 | <b_path>/toolbox floater/ToolTube</b_path> | 681 | <b_path>//TooltipFlagPhysics</b_path> |
1067 | <c_attribute>tool_tip</c_attribute> | 682 | <c_attribute></c_attribute> |
1068 | <d_old></d_old> | 683 | <d_old></d_old> |
1069 | <e_new>Tube</e_new> | 684 | <e_new>Physics</e_new> |
1070 | <f_old_trans></f_old_trans> | 685 | <f_old_trans></f_old_trans> |
1071 | <f_translation>Rohr</f_translation> | 686 | <f_translation>Physik</f_translation> |
1072 | </string><string><a_file>floater_tools.xml</a_file> | 687 | </string><string><a_file>strings.xml</a_file> |
1073 | <b_path>/toolbox floater/ToolRing</b_path> | 688 | <b_path>//TooltipFlagTouch</b_path> |
1074 | <c_attribute>tool_tip</c_attribute> | 689 | <c_attribute></c_attribute> |
1075 | <d_old></d_old> | 690 | <d_old></d_old> |
1076 | <e_new>Ring</e_new> | 691 | <e_new>Touch</e_new> |
1077 | <f_old_trans></f_old_trans> | 692 | <f_old_trans></f_old_trans> |
1078 | <f_translation>Ring</f_translation> | 693 | <f_translation>Berühren</f_translation> |
1079 | </string><string><a_file>floater_tools.xml</a_file> | 694 | </string><string><a_file>strings.xml</a_file> |
1080 | <b_path>/toolbox floater/ToolTree</b_path> | 695 | <b_path>//TooltipFlagL$</b_path> |
1081 | <c_attribute>tool_tip</c_attribute> | 696 | <c_attribute></c_attribute> |
1082 | <d_old></d_old> | 697 | <d_old></d_old> |
1083 | <e_new>Tree</e_new> | 698 | <e_new>L$</e_new> |
1084 | <f_old_trans></f_old_trans> | 699 | <f_old_trans></f_old_trans> |
1085 | <f_translation>Baum</f_translation> | 700 | <f_translation>L$</f_translation> |
1086 | </string><string><a_file>floater_tools.xml</a_file> | 701 | </string><string><a_file>strings.xml</a_file> |
1087 | <b_path>/toolbox floater/ToolGrass</b_path> | 702 | <b_path>//TooltipFlagDropInventory</b_path> |
1088 | <c_attribute>tool_tip</c_attribute> | 703 | <c_attribute></c_attribute> |
1089 | <d_old></d_old> | 704 | <d_old></d_old> |
1090 | <e_new>Grass</e_new> | 705 | <e_new>Drop Inventory</e_new> |
1091 | <f_old_trans></f_old_trans> | 706 | <f_old_trans></f_old_trans> |
1092 | <f_translation>Gras</f_translation> | 707 | <f_translation>Inventar fallen lassen</f_translation> |
1093 | </string><string><a_file>menu_viewer.xml</a_file> | 708 | </string><string><a_file>strings.xml</a_file> |
1094 | <b_path>/Main Menu/View/Joystick Flycam</b_path> | 709 | <b_path>//TooltipFlagPhantom</b_path> |
1095 | <c_attribute>label</c_attribute> | 710 | <c_attribute></c_attribute> |
1096 | <d_old></d_old> | 711 | <d_old></d_old> |
1097 | <e_new>Joystick Flycam</e_new> | 712 | <e_new>Phantom</e_new> |
1098 | <f_old_trans></f_old_trans> | 713 | <f_old_trans></f_old_trans> |
1099 | <f_translation>Joystick-Flycam</f_translation> | 714 | <f_translation>Phantom</f_translation> |
1100 | </string><string><a_file>menu_viewer.xml</a_file> | 715 | </string><string><a_file>strings.xml</a_file> |
1101 | <b_path>/Main Menu/Help/Tutorial</b_path> | 716 | <b_path>//TooltipFlagTemporary</b_path> |
1102 | <c_attribute>label</c_attribute> | 717 | <c_attribute></c_attribute> |
1103 | <d_old></d_old> | 718 | <d_old></d_old> |
1104 | <e_new>Tutorial</e_new> | 719 | <e_new>Temporary</e_new> |
1105 | <f_old_trans></f_old_trans> | 720 | <f_old_trans></f_old_trans> |
1106 | <f_translation>Tutorial</f_translation> | 721 | <f_translation>Temporär</f_translation> |
1107 | </string><string><a_file>menu_viewer.xml</a_file> | 722 | </string><string><a_file>strings.xml</a_file> |
1108 | <b_path>/Main Menu/Help/separator7</b_path> | 723 | <b_path>//TooltipFlagRightClickMenu</b_path> |
1109 | <c_attribute>label</c_attribute> | 724 | <c_attribute></c_attribute> |
1110 | <d_old></d_old> | 725 | <d_old></d_old> |
1111 | <e_new>-----------</e_new> | 726 | <e_new>(Right-click for menu)</e_new> |
1112 | <f_old_trans></f_old_trans> | 727 | <f_old_trans></f_old_trans> |
1113 | <f_translation> -----------</f_translation> | 728 | <f_translation>(Rechtsklick für Menü)</f_translation> |
1114 | </string><string><a_file>menu_viewer.xml</a_file> | 729 | </string><string><a_file>strings.xml</a_file> |
1115 | <b_path>/Main Menu/Help/Bug Reporting/separator7</b_path> | 730 | <b_path>//TooltipFreeToCopy</b_path> |
1116 | <c_attribute>label</c_attribute> | 731 | <c_attribute></c_attribute> |
1117 | <d_old></d_old> | 732 | <d_old></d_old> |
1118 | <e_new>-----------</e_new> | 733 | <e_new>Free to copy</e_new> |
1119 | <f_old_trans></f_old_trans> | 734 | <f_old_trans></f_old_trans> |
1120 | <f_translation> -----------</f_translation> | 735 | <f_translation>Kopieren möglich</f_translation> |
1121 | </string><string><a_file>menu_viewer.xml</a_file> | 736 | </string><string><a_file>strings.xml</a_file> |
1122 | <b_path>/Main Menu/Help/Bug Reporting/separator9</b_path> | 737 | <b_path>//TooltipForSaleL$</b_path> |
1123 | <c_attribute>label</c_attribute> | 738 | <c_attribute></c_attribute> |
1124 | <d_old></d_old> | 739 | <d_old></d_old> |
1125 | <e_new>-----------</e_new> | 740 | <e_new>For Sale: L$[AMOUNT]</e_new> |
1126 | <f_old_trans></f_old_trans> | 741 | <f_old_trans></f_old_trans> |
1127 | <f_translation> -----------</f_translation> | 742 | <f_translation>Zum Verkauf: [AMOUNT] L$</f_translation> |
1128 | </string><string><a_file>mime_types.xml</a_file> | 743 | </string><string><a_file>strings.xml</a_file> |
1129 | <b_path>/default/web/</b_path> | 744 | <b_path>//TooltipForSaleMsg</b_path> |
1130 | <c_attribute></c_attribute> | 745 | <c_attribute></c_attribute> |
1131 | <d_old></d_old> | 746 | <d_old></d_old> |
1132 | <e_new> | 747 | <e_new>For Sale: [MESSAGE]</e_new> |
1133 | Web Content | ||
1134 | </e_new> | ||
1135 | <f_old_trans></f_old_trans> | 748 | <f_old_trans></f_old_trans> |
1136 | <f_translation> | 749 | <f_translation>Zum Verkauf: [MESSAGE]</f_translation> |
1137 | Webinhalt | 750 | </string><string><a_file>strings.xml</a_file> |
1138 | </f_translation> | 751 | <b_path>//TooltipFlagGroupBuild</b_path> |
1139 | </string><string><a_file>mime_types.xml</a_file> | ||
1140 | <b_path>/default/web/</b_path> | ||
1141 | <c_attribute></c_attribute> | 752 | <c_attribute></c_attribute> |
1142 | <d_old></d_old> | 753 | <d_old></d_old> |
1143 | <e_new> | 754 | <e_new>Group Build</e_new> |
1144 | This location has Web content | ||
1145 | </e_new> | ||
1146 | <f_old_trans></f_old_trans> | 755 | <f_old_trans></f_old_trans> |
1147 | <f_translation> | 756 | <f_translation>Gruppenbau</f_translation> |
1148 | Dieser Ort verfügt über Webinhalte | 757 | </string><string><a_file>strings.xml</a_file> |
1149 | </f_translation> | 758 | <b_path>//TooltipFlagNoBuild</b_path> |
1150 | </string><string><a_file>mime_types.xml</a_file> | ||
1151 | <b_path>/default/web/</b_path> | ||
1152 | <c_attribute></c_attribute> | 759 | <c_attribute></c_attribute> |
1153 | <d_old></d_old> | 760 | <d_old></d_old> |
1154 | <e_new> | 761 | <e_new>No Build</e_new> |
1155 | Show Web content | ||
1156 | </e_new> | ||
1157 | <f_old_trans></f_old_trans> | 762 | <f_old_trans></f_old_trans> |
1158 | <f_translation> | 763 | <f_translation>Bauen aus</f_translation> |
1159 | Webinhalt anzeigen | 764 | </string><string><a_file>strings.xml</a_file> |
1160 | </f_translation> | 765 | <b_path>//TooltipFlagNoEdit</b_path> |
1161 | </string><string><a_file>mime_types.xml</a_file> | ||
1162 | <b_path>/default/movie/</b_path> | ||
1163 | <c_attribute></c_attribute> | 766 | <c_attribute></c_attribute> |
1164 | <d_old></d_old> | 767 | <d_old></d_old> |
1165 | <e_new> | 768 | <e_new>Group Build</e_new> |
1166 | Movie | ||
1167 | </e_new> | ||
1168 | <f_old_trans></f_old_trans> | 769 | <f_old_trans></f_old_trans> |
1169 | <f_translation> | 770 | <f_translation>Gruppenbau</f_translation> |
1170 | Video | 771 | </string><string><a_file>strings.xml</a_file> |
1171 | </f_translation> | 772 | <b_path>//TooltipFlagNotSafe</b_path> |
1172 | </string><string><a_file>mime_types.xml</a_file> | ||
1173 | <b_path>/default/movie/</b_path> | ||
1174 | <c_attribute></c_attribute> | 773 | <c_attribute></c_attribute> |
1175 | <d_old></d_old> | 774 | <d_old></d_old> |
1176 | <e_new> | 775 | <e_new>Not Safe</e_new> |
1177 | There is a movie to play here | ||
1178 | </e_new> | ||
1179 | <f_old_trans></f_old_trans> | 776 | <f_old_trans></f_old_trans> |
1180 | <f_translation> | 777 | <f_translation>Unsicher</f_translation> |
1181 | Kein Video gefunden | 778 | </string><string><a_file>strings.xml</a_file> |
1182 | </f_translation> | 779 | <b_path>//TooltipFlagNoFly</b_path> |
1183 | </string><string><a_file>mime_types.xml</a_file> | ||
1184 | <b_path>/default/movie/</b_path> | ||
1185 | <c_attribute></c_attribute> | 780 | <c_attribute></c_attribute> |
1186 | <d_old></d_old> | 781 | <d_old></d_old> |
1187 | <e_new> | 782 | <e_new>No Fly</e_new> |
1188 | Play movie | ||
1189 | </e_new> | ||
1190 | <f_old_trans></f_old_trans> | 783 | <f_old_trans></f_old_trans> |
1191 | <f_translation> | 784 | <f_translation>Fliegen aus</f_translation> |
1192 | Video wiedergeben | 785 | </string><string><a_file>strings.xml</a_file> |
1193 | </f_translation> | 786 | <b_path>//TooltipFlagGroupScripts</b_path> |
1194 | </string><string><a_file>mime_types.xml</a_file> | ||
1195 | <b_path>/default/none/</b_path> | ||
1196 | <c_attribute></c_attribute> | 787 | <c_attribute></c_attribute> |
1197 | <d_old></d_old> | 788 | <d_old></d_old> |
1198 | <e_new> | 789 | <e_new>Group Scripts</e_new> |
1199 | No Content | ||
1200 | </e_new> | ||
1201 | <f_old_trans></f_old_trans> | 790 | <f_old_trans></f_old_trans> |
1202 | <f_translation> | 791 | <f_translation>Gruppenskripte</f_translation> |
1203 | Keine Inhalte | 792 | </string><string><a_file>strings.xml</a_file> |
1204 | </f_translation> | 793 | <b_path>//TooltipFlagNoScripts</b_path> |
1205 | </string><string><a_file>mime_types.xml</a_file> | ||
1206 | <b_path>/default/none/</b_path> | ||
1207 | <c_attribute></c_attribute> | 794 | <c_attribute></c_attribute> |
1208 | <d_old></d_old> | 795 | <d_old></d_old> |
1209 | <e_new> | 796 | <e_new>No Scripts</e_new> |
1210 | No media here | ||
1211 | </e_new> | ||
1212 | <f_old_trans></f_old_trans> | 797 | <f_old_trans></f_old_trans> |
1213 | <f_translation> | 798 | <f_translation>Skripte aus</f_translation> |
1214 | Keine Medien gefunden | 799 | </string><string><a_file>strings.xml</a_file> |
1215 | </f_translation> | 800 | <b_path>//TooltipLand</b_path> |
1216 | </string><string><a_file>mime_types.xml</a_file> | ||
1217 | <b_path>/default/image/</b_path> | ||
1218 | <c_attribute></c_attribute> | 801 | <c_attribute></c_attribute> |
1219 | <d_old></d_old> | 802 | <d_old></d_old> |
1220 | <e_new> | 803 | <e_new>Land:</e_new> |
1221 | Image | ||
1222 | </e_new> | ||
1223 | <f_old_trans></f_old_trans> | 804 | <f_old_trans></f_old_trans> |
1224 | <f_translation> | 805 | <f_translation>Land:</f_translation> |
1225 | Bild | 806 | </string><string><a_file>strings.xml</a_file> |
1226 | </f_translation> | 807 | <b_path>//RetrievingData</b_path> |
1227 | </string><string><a_file>mime_types.xml</a_file> | ||
1228 | <b_path>/default/image/</b_path> | ||
1229 | <c_attribute></c_attribute> | 808 | <c_attribute></c_attribute> |
1230 | <d_old></d_old> | 809 | <d_old></d_old> |
1231 | <e_new> | 810 | <e_new>Retrieving...</e_new> |
1232 | There is an image at this location | ||
1233 | </e_new> | ||
1234 | <f_old_trans></f_old_trans> | 811 | <f_old_trans></f_old_trans> |
1235 | <f_translation> | 812 | <f_translation>Laden...</f_translation> |
1236 | Dieser Ort verfügt über Bildinhalte | 813 | </string><string><a_file>strings.xml</a_file> |
1237 | </f_translation> | 814 | <b_path>//LoadingData</b_path> |
1238 | </string><string><a_file>mime_types.xml</a_file> | ||
1239 | <b_path>/default/image/</b_path> | ||
1240 | <c_attribute></c_attribute> | 815 | <c_attribute></c_attribute> |
1241 | <d_old></d_old> | 816 | <d_old></d_old> |
1242 | <e_new> | 817 | <e_new>Loading...</e_new> |
1243 | View this location's image | ||
1244 | </e_new> | ||
1245 | <f_old_trans></f_old_trans> | 818 | <f_old_trans></f_old_trans> |
1246 | <f_translation> | 819 | <f_translation>Wird geladen...</f_translation> |
1247 | Das Bild an diesem Ort anzeigen | 820 | </string><string><a_file>strings.xml</a_file> |
1248 | </f_translation> | 821 | <b_path>//AvatarNameNobody</b_path> |
1249 | </string><string><a_file>mime_types.xml</a_file> | ||
1250 | <b_path>/default/audio/</b_path> | ||
1251 | <c_attribute></c_attribute> | 822 | <c_attribute></c_attribute> |
1252 | <d_old></d_old> | 823 | <d_old></d_old> |
1253 | <e_new> | 824 | <e_new>(nobody)</e_new> |
1254 | Audio | ||
1255 | </e_new> | ||
1256 | <f_old_trans></f_old_trans> | 825 | <f_old_trans></f_old_trans> |
1257 | <f_translation> | 826 | <f_translation>(niemand)</f_translation> |
1258 | Audio | 827 | </string><string><a_file>strings.xml</a_file> |
1259 | </f_translation> | 828 | <b_path>//AvatarNameWaiting</b_path> |
1260 | </string><string><a_file>mime_types.xml</a_file> | ||
1261 | <b_path>/default/audio/</b_path> | ||
1262 | <c_attribute></c_attribute> | 829 | <c_attribute></c_attribute> |
1263 | <d_old></d_old> | 830 | <d_old></d_old> |
1264 | <e_new> | 831 | <e_new>(waiting)</e_new> |
1265 | There is audio at this location | ||
1266 | </e_new> | ||
1267 | <f_old_trans></f_old_trans> | 832 | <f_old_trans></f_old_trans> |
1268 | <f_translation> | 833 | <f_translation>(wartet)</f_translation> |
1269 | Dieser Ort verfügt über Audioinhalte | 834 | </string><string><a_file>strings.xml</a_file> |
1270 | </f_translation> | 835 | <b_path>//AvatarNameHippos</b_path> |
1271 | </string><string><a_file>mime_types.xml</a_file> | ||
1272 | <b_path>/default/audio/</b_path> | ||
1273 | <c_attribute></c_attribute> | 836 | <c_attribute></c_attribute> |
1274 | <d_old></d_old> | 837 | <d_old></d_old> |
1275 | <e_new> | 838 | <e_new>(hippos)</e_new> |
1276 | View this location's audio | ||
1277 | </e_new> | ||
1278 | <f_old_trans></f_old_trans> | 839 | <f_old_trans></f_old_trans> |
1279 | <f_translation> | 840 | <f_translation>(hippos)</f_translation> |
1280 | Audio an diesem Ort wiedergeben | 841 | </string><string><a_file>strings.xml</a_file> |
1281 | </f_translation> | 842 | <b_path>//GroupNameNone</b_path> |
1282 | </string><string><a_file>mime_types.xml</a_file> | ||
1283 | <b_path>/default/rtsp/</b_path> | ||
1284 | <c_attribute></c_attribute> | 843 | <c_attribute></c_attribute> |
1285 | <d_old></d_old> | 844 | <d_old></d_old> |
1286 | <e_new> | 845 | <e_new>(none)</e_new> |
1287 | Real Time Streaming | ||
1288 | </e_new> | ||
1289 | <f_old_trans></f_old_trans> | 846 | <f_old_trans></f_old_trans> |
1290 | <f_translation> | 847 | <f_translation>(keiner)</f_translation> |
1291 | Echtzeit-Streaming | 848 | </string><string><a_file>strings.xml</a_file> |
1292 | </f_translation> | 849 | <b_path>//AssetErrorNone</b_path> |
1293 | </string><string><a_file>mime_types.xml</a_file> | ||
1294 | <b_path>/default/blank/</b_path> | ||
1295 | <c_attribute></c_attribute> | 850 | <c_attribute></c_attribute> |
1296 | <d_old></d_old> | 851 | <d_old></d_old> |
1297 | <e_new> | 852 | <e_new>No error</e_new> |
1298 | - None - | ||
1299 | </e_new> | ||
1300 | <f_old_trans></f_old_trans> | 853 | <f_old_trans></f_old_trans> |
1301 | <f_translation> | 854 | <f_translation>Kein Fehler</f_translation> |
1302 | - Keine - | 855 | </string><string><a_file>strings.xml</a_file> |
1303 | </f_translation> | 856 | <b_path>//AssetErrorRequestFailed</b_path> |
1304 | </string><string><a_file>mime_types.xml</a_file> | ||
1305 | <b_path>/default/"none/none"/</b_path> | ||
1306 | <c_attribute></c_attribute> | 857 | <c_attribute></c_attribute> |
1307 | <d_old></d_old> | 858 | <d_old></d_old> |
1308 | <e_new> | 859 | <e_new>Asset request: failed</e_new> |
1309 | - None - | ||
1310 | </e_new> | ||
1311 | <f_old_trans></f_old_trans> | 860 | <f_old_trans></f_old_trans> |
1312 | <f_translation> | 861 | <f_translation>Asset-Anforderung: fehlgeschlagen</f_translation> |
1313 | - Keine - | 862 | </string><string><a_file>strings.xml</a_file> |
1314 | </f_translation> | 863 | <b_path>//AssetErrorNonexistentFile</b_path> |
1315 | </string><string><a_file>mime_types.xml</a_file> | ||
1316 | <b_path>/default/"audio/*"/</b_path> | ||
1317 | <c_attribute></c_attribute> | 864 | <c_attribute></c_attribute> |
1318 | <d_old></d_old> | 865 | <d_old></d_old> |
1319 | <e_new> | 866 | <e_new>Asset request: non-existent file</e_new> |
1320 | Audio | ||
1321 | </e_new> | ||
1322 | <f_old_trans></f_old_trans> | 867 | <f_old_trans></f_old_trans> |
1323 | <f_translation> | 868 | <f_translation>Asset-Anforderung: Datei existiert nicht</f_translation> |
1324 | Audio | 869 | </string><string><a_file>strings.xml</a_file> |
1325 | </f_translation> | 870 | <b_path>//AssetErrorNotInDatabase</b_path> |
1326 | </string><string><a_file>mime_types.xml</a_file> | ||
1327 | <b_path>/default/"video/*"/</b_path> | ||
1328 | <c_attribute></c_attribute> | 871 | <c_attribute></c_attribute> |
1329 | <d_old></d_old> | 872 | <d_old></d_old> |
1330 | <e_new> | 873 | <e_new>Asset request: asset not found in database</e_new> |
1331 | Video | ||
1332 | </e_new> | ||
1333 | <f_old_trans></f_old_trans> | 874 | <f_old_trans></f_old_trans> |
1334 | <f_translation> | 875 | <f_translation>Asset-Anforderung: Asset in Datenbank nicht gefunden</f_translation> |
1335 | Video | 876 | </string><string><a_file>strings.xml</a_file> |
1336 | </f_translation> | 877 | <b_path>//AssetErrorEOF</b_path> |
1337 | </string><string><a_file>mime_types.xml</a_file> | ||
1338 | <b_path>/default/"image/*"/</b_path> | ||
1339 | <c_attribute></c_attribute> | 878 | <c_attribute></c_attribute> |
1340 | <d_old></d_old> | 879 | <d_old></d_old> |
1341 | <e_new> | 880 | <e_new>End of file</e_new> |
1342 | Image | ||
1343 | </e_new> | ||
1344 | <f_old_trans></f_old_trans> | 881 | <f_old_trans></f_old_trans> |
1345 | <f_translation> | 882 | <f_translation>Ende der Datei</f_translation> |
1346 | Bild | 883 | </string><string><a_file>strings.xml</a_file> |
1347 | </f_translation> | 884 | <b_path>//AssetErrorCannotOpenFile</b_path> |
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> | 885 | <c_attribute></c_attribute> |
1351 | <d_old></d_old> | 886 | <d_old></d_old> |
1352 | <e_new> | 887 | <e_new>Cannot open file</e_new> |
1353 | Movie (QuickTime) | ||
1354 | </e_new> | ||
1355 | <f_old_trans></f_old_trans> | 888 | <f_old_trans></f_old_trans> |
1356 | <f_translation> | 889 | <f_translation>Datei kann nicht geöffnet werden</f_translation> |
1357 | Video (QuickTime) | 890 | </string><string><a_file>strings.xml</a_file> |
1358 | </f_translation> | 891 | <b_path>//AssetErrorFileNotFound</b_path> |
1359 | </string><string><a_file>mime_types.xml</a_file> | ||
1360 | <b_path>/default/"application/javascript"/</b_path> | ||
1361 | <c_attribute></c_attribute> | 892 | <c_attribute></c_attribute> |
1362 | <d_old></d_old> | 893 | <d_old></d_old> |
1363 | <e_new> | 894 | <e_new>File not found</e_new> |
1364 | Javascript | ||
1365 | </e_new> | ||
1366 | <f_old_trans></f_old_trans> | 895 | <f_old_trans></f_old_trans> |
1367 | <f_translation> | 896 | <f_translation>Datei nicht gefunden</f_translation> |
1368 | Javascript | 897 | </string><string><a_file>strings.xml</a_file> |
1369 | </f_translation> | 898 | <b_path>//AssetErrorTCPTimeout</b_path> |
1370 | </string><string><a_file>mime_types.xml</a_file> | ||
1371 | <b_path>/default/"application/ogg"/</b_path> | ||
1372 | <c_attribute></c_attribute> | 899 | <c_attribute></c_attribute> |
1373 | <d_old></d_old> | 900 | <d_old></d_old> |
1374 | <e_new> | 901 | <e_new>File transfer timeout</e_new> |
1375 | Ogg Audio/Video | ||
1376 | </e_new> | ||
1377 | <f_old_trans></f_old_trans> | 902 | <f_old_trans></f_old_trans> |
1378 | <f_translation> | 903 | <f_translation>Zeitüberschreitung bei Dateiübertragung</f_translation> |
1379 | Ogg Audio/Video | 904 | </string><string><a_file>strings.xml</a_file> |
1380 | </f_translation> | 905 | <b_path>//AssetErrorCircuitGone</b_path> |
1381 | </string><string><a_file>mime_types.xml</a_file> | ||
1382 | <b_path>/default/"application/pdf"/</b_path> | ||
1383 | <c_attribute></c_attribute> | 906 | <c_attribute></c_attribute> |
1384 | <d_old></d_old> | 907 | <d_old></d_old> |
1385 | <e_new> | 908 | <e_new>Circuit gone</e_new> |
1386 | PDF Document | ||
1387 | </e_new> | ||
1388 | <f_old_trans></f_old_trans> | 909 | <f_old_trans></f_old_trans> |
1389 | <f_translation> | 910 | <f_translation>Verbindung verloren</f_translation> |
1390 | PDF-Dokument | 911 | </string><string><a_file>strings.xml</a_file> |
1391 | </f_translation> | 912 | <b_path>//AssetErrorUnknownStatus</b_path> |
1392 | </string><string><a_file>mime_types.xml</a_file> | ||
1393 | <b_path>/default/"application/postscript"/</b_path> | ||
1394 | <c_attribute></c_attribute> | 913 | <c_attribute></c_attribute> |
1395 | <d_old></d_old> | 914 | <d_old></d_old> |
1396 | <e_new> | 915 | <e_new>Unknown status</e_new> |
1397 | Postscript Document | ||
1398 | </e_new> | ||
1399 | <f_old_trans></f_old_trans> | 916 | <f_old_trans></f_old_trans> |
1400 | <f_translation> | 917 | <f_translation>Status unbekannt</f_translation> |
1401 | Postscript-Dokument | 918 | </string><string><a_file>strings.xml</a_file> |
1402 | </f_translation> | 919 | <b_path>//AvatarEditingApparance</b_path> |
1403 | </string><string><a_file>mime_types.xml</a_file> | ||
1404 | <b_path>/default/"application/rtf"/</b_path> | ||
1405 | <c_attribute></c_attribute> | 920 | <c_attribute></c_attribute> |
1406 | <d_old></d_old> | 921 | <d_old></d_old> |
1407 | <e_new> | 922 | <e_new>(Editing Appearance)</e_new> |
1408 | Rich Text (RTF) | ||
1409 | </e_new> | ||
1410 | <f_old_trans></f_old_trans> | 923 | <f_old_trans></f_old_trans> |
1411 | <f_translation> | 924 | <f_translation>(Aussehen wird bearbeitet)</f_translation> |
1412 | Rich Text (RTF) | 925 | </string><string><a_file>strings.xml</a_file> |
1413 | </f_translation> | 926 | <b_path>//AvatarAway</b_path> |
1414 | </string><string><a_file>mime_types.xml</a_file> | ||
1415 | <b_path>/default/"application/xhtml+xml"/</b_path> | ||
1416 | <c_attribute></c_attribute> | 927 | <c_attribute></c_attribute> |
1417 | <d_old></d_old> | 928 | <d_old></d_old> |
1418 | <e_new> | 929 | <e_new>Away</e_new> |
1419 | Web Page (XHTML) | ||
1420 | </e_new> | ||
1421 | <f_old_trans></f_old_trans> | 930 | <f_old_trans></f_old_trans> |
1422 | <f_translation> | 931 | <f_translation>Abwesend</f_translation> |
1423 | Webseite (XHTML) | 932 | </string><string><a_file>strings.xml</a_file> |
1424 | </f_translation> | 933 | <b_path>//AvatarBusy</b_path> |
1425 | </string><string><a_file>mime_types.xml</a_file> | ||
1426 | <b_path>/default/"application/x-director"/</b_path> | ||
1427 | <c_attribute></c_attribute> | 934 | <c_attribute></c_attribute> |
1428 | <d_old></d_old> | 935 | <d_old></d_old> |
1429 | <e_new> | 936 | <e_new>Busy</e_new> |
1430 | Macromedia Director | ||
1431 | </e_new> | ||
1432 | <f_old_trans></f_old_trans> | 937 | <f_old_trans></f_old_trans> |
1433 | <f_translation> | 938 | <f_translation>Beschäftigt</f_translation> |
1434 | Macromedia Director | 939 | </string><string><a_file>strings.xml</a_file> |
1435 | </f_translation> | 940 | <b_path>//AvatarMuted</b_path> |
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> | 941 | <c_attribute></c_attribute> |
1439 | <d_old></d_old> | 942 | <d_old></d_old> |
1440 | <e_new> | 943 | <e_new>Muted</e_new> |
1441 | Flash | ||
1442 | </e_new> | ||
1443 | <f_old_trans></f_old_trans> | 944 | <f_old_trans></f_old_trans> |
1444 | <f_translation> | 945 | <f_translation>Stummgeschaltet</f_translation> |
1445 | Flash | 946 | </string><string><a_file>strings.xml</a_file> |
1446 | </f_translation> | 947 | <b_path>//anim_express_afraid</b_path> |
1447 | </string><string><a_file>mime_types.xml</a_file> | ||
1448 | <b_path>/default/"audio/mid"/</b_path> | ||
1449 | <c_attribute></c_attribute> | 948 | <c_attribute></c_attribute> |
1450 | <d_old></d_old> | 949 | <d_old></d_old> |
1451 | <e_new> | 950 | <e_new>Afraid</e_new> |
1452 | Audio (MIDI) | ||
1453 | </e_new> | ||
1454 | <f_old_trans></f_old_trans> | 951 | <f_old_trans></f_old_trans> |
1455 | <f_translation> | 952 | <f_translation>Ängstlich</f_translation> |
1456 | Audio (MIDI) | 953 | </string><string><a_file>strings.xml</a_file> |
1457 | </f_translation> | 954 | <b_path>//anim_express_anger</b_path> |
1458 | </string><string><a_file>mime_types.xml</a_file> | ||
1459 | <b_path>/default/"audio/mpeg"/</b_path> | ||
1460 | <c_attribute></c_attribute> | 955 | <c_attribute></c_attribute> |
1461 | <d_old></d_old> | 956 | <d_old></d_old> |
1462 | <e_new> | 957 | <e_new>Angry</e_new> |
1463 | Audio (MP3) | ||
1464 | </e_new> | ||
1465 | <f_old_trans></f_old_trans> | 958 | <f_old_trans></f_old_trans> |
1466 | <f_translation> | 959 | <f_translation>Verärgert</f_translation> |
1467 | Audio (MP3) | 960 | </string><string><a_file>strings.xml</a_file> |
1468 | </f_translation> | 961 | <b_path>//anim_away</b_path> |
1469 | </string><string><a_file>mime_types.xml</a_file> | ||
1470 | <b_path>/default/"audio/x-aiff"/</b_path> | ||
1471 | <c_attribute></c_attribute> | 962 | <c_attribute></c_attribute> |
1472 | <d_old></d_old> | 963 | <d_old></d_old> |
1473 | <e_new> | 964 | <e_new>Away</e_new> |
1474 | Audio (AIFF) | ||
1475 | </e_new> | ||
1476 | <f_old_trans></f_old_trans> | 965 | <f_old_trans></f_old_trans> |
1477 | <f_translation> | 966 | <f_translation>Abwesend</f_translation> |
1478 | Audio (AIFF) | 967 | </string><string><a_file>strings.xml</a_file> |
1479 | </f_translation> | 968 | <b_path>//anim_backflip</b_path> |
1480 | </string><string><a_file>mime_types.xml</a_file> | ||
1481 | <b_path>/default/"audio/x-wav"/</b_path> | ||
1482 | <c_attribute></c_attribute> | 969 | <c_attribute></c_attribute> |
1483 | <d_old></d_old> | 970 | <d_old></d_old> |
1484 | <e_new> | 971 | <e_new>Backflip</e_new> |
1485 | Audio (WAV) | ||
1486 | </e_new> | ||
1487 | <f_old_trans></f_old_trans> | 972 | <f_old_trans></f_old_trans> |
1488 | <f_translation> | 973 | <f_translation>Rückwärtssalto</f_translation> |
1489 | Audio (WAV) | 974 | </string><string><a_file>strings.xml</a_file> |
1490 | </f_translation> | 975 | <b_path>//anim_express_laugh</b_path> |
1491 | </string><string><a_file>mime_types.xml</a_file> | ||
1492 | <b_path>/default/"image/bmp"/</b_path> | ||
1493 | <c_attribute></c_attribute> | 976 | <c_attribute></c_attribute> |
1494 | <d_old></d_old> | 977 | <d_old></d_old> |
1495 | <e_new> | 978 | <e_new>Belly Laugh</e_new> |
1496 | Image (BMP) | ||
1497 | </e_new> | ||
1498 | <f_old_trans></f_old_trans> | 979 | <f_old_trans></f_old_trans> |
1499 | <f_translation> | 980 | <f_translation>Lachkrampf</f_translation> |
1500 | Bild (BMP) | 981 | </string><string><a_file>strings.xml</a_file> |
1501 | </f_translation> | 982 | <b_path>//anim_express_toothsmile</b_path> |
1502 | </string><string><a_file>mime_types.xml</a_file> | ||
1503 | <b_path>/default/"image/gif"/</b_path> | ||
1504 | <c_attribute></c_attribute> | 983 | <c_attribute></c_attribute> |
1505 | <d_old></d_old> | 984 | <d_old></d_old> |
1506 | <e_new> | 985 | <e_new>BigSmile</e_new> |
1507 | Image (GIF) | ||
1508 | </e_new> | ||
1509 | <f_old_trans></f_old_trans> | 986 | <f_old_trans></f_old_trans> |
1510 | <f_translation> | 987 | <f_translation>Grinsen</f_translation> |
1511 | Bild (GIF) | 988 | </string><string><a_file>strings.xml</a_file> |
1512 | </f_translation> | 989 | <b_path>//anim_blowkiss</b_path> |
1513 | </string><string><a_file>mime_types.xml</a_file> | ||
1514 | <b_path>/default/"image/jpeg"/</b_path> | ||
1515 | <c_attribute></c_attribute> | 990 | <c_attribute></c_attribute> |
1516 | <d_old></d_old> | 991 | <d_old></d_old> |
1517 | <e_new> | 992 | <e_new>Blow Kiss</e_new> |
1518 | Image (JPEG) | ||
1519 | </e_new> | ||
1520 | <f_old_trans></f_old_trans> | 993 | <f_old_trans></f_old_trans> |
1521 | <f_translation> | 994 | <f_translation>Kusshand</f_translation> |
1522 | Bild (JPEG) | 995 | </string><string><a_file>strings.xml</a_file> |
1523 | </f_translation> | 996 | <b_path>//anim_express_bored</b_path> |
1524 | </string><string><a_file>mime_types.xml</a_file> | ||
1525 | <b_path>/default/"image/png"/</b_path> | ||
1526 | <c_attribute></c_attribute> | 997 | <c_attribute></c_attribute> |
1527 | <d_old></d_old> | 998 | <d_old></d_old> |
1528 | <e_new> | 999 | <e_new>Bored</e_new> |
1529 | Image (PNG) | ||
1530 | </e_new> | ||
1531 | <f_old_trans></f_old_trans> | 1000 | <f_old_trans></f_old_trans> |
1532 | <f_translation> | 1001 | <f_translation>Gelangweilt</f_translation> |
1533 | Bild (PNG) | 1002 | </string><string><a_file>strings.xml</a_file> |
1534 | </f_translation> | 1003 | <b_path>//anim_bow</b_path> |
1535 | </string><string><a_file>mime_types.xml</a_file> | ||
1536 | <b_path>/default/"image/svg+xml"/</b_path> | ||
1537 | <c_attribute></c_attribute> | 1004 | <c_attribute></c_attribute> |
1538 | <d_old></d_old> | 1005 | <d_old></d_old> |
1539 | <e_new> | 1006 | <e_new>Bow</e_new> |
1540 | Image (SVG) | ||
1541 | </e_new> | ||
1542 | <f_old_trans></f_old_trans> | 1007 | <f_old_trans></f_old_trans> |
1543 | <f_translation> | 1008 | <f_translation>Verbeugen</f_translation> |
1544 | Bild (SVG) | 1009 | </string><string><a_file>strings.xml</a_file> |
1545 | </f_translation> | 1010 | <b_path>//anim_clap</b_path> |
1546 | </string><string><a_file>mime_types.xml</a_file> | ||
1547 | <b_path>/default/"image/tiff"/</b_path> | ||
1548 | <c_attribute></c_attribute> | 1011 | <c_attribute></c_attribute> |
1549 | <d_old></d_old> | 1012 | <d_old></d_old> |
1550 | <e_new> | 1013 | <e_new>Clap</e_new> |
1551 | Image (TIFF) | ||
1552 | </e_new> | ||
1553 | <f_old_trans></f_old_trans> | 1014 | <f_old_trans></f_old_trans> |
1554 | <f_translation> | 1015 | <f_translation>Klatschen</f_translation> |
1555 | Bild (TIFF) | 1016 | </string><string><a_file>strings.xml</a_file> |
1556 | </f_translation> | 1017 | <b_path>//anim_courtbow</b_path> |
1557 | </string><string><a_file>mime_types.xml</a_file> | ||
1558 | <b_path>/default/"text/html"/</b_path> | ||
1559 | <c_attribute></c_attribute> | 1018 | <c_attribute></c_attribute> |
1560 | <d_old></d_old> | 1019 | <d_old></d_old> |
1561 | <e_new> | 1020 | <e_new>Court Bow</e_new> |
1562 | Web Page | ||
1563 | </e_new> | ||
1564 | <f_old_trans></f_old_trans> | 1021 | <f_old_trans></f_old_trans> |
1565 | <f_translation> | 1022 | <f_translation>Diener</f_translation> |
1566 | Webseite | 1023 | </string><string><a_file>strings.xml</a_file> |
1567 | </f_translation> | 1024 | <b_path>//anim_express_cry</b_path> |
1568 | </string><string><a_file>mime_types.xml</a_file> | ||
1569 | <b_path>/default/"text/plain"/</b_path> | ||
1570 | <c_attribute></c_attribute> | 1025 | <c_attribute></c_attribute> |
1571 | <d_old></d_old> | 1026 | <d_old></d_old> |
1572 | <e_new> | 1027 | <e_new>Cry</e_new> |
1573 | Text | ||
1574 | </e_new> | ||
1575 | <f_old_trans></f_old_trans> | 1028 | <f_old_trans></f_old_trans> |
1576 | <f_translation> | 1029 | <f_translation>Weinen</f_translation> |
1577 | Text | 1030 | </string><string><a_file>strings.xml</a_file> |
1578 | </f_translation> | 1031 | <b_path>//anim_dance1</b_path> |
1579 | </string><string><a_file>mime_types.xml</a_file> | ||
1580 | <b_path>/default/"text/xml"/</b_path> | ||
1581 | <c_attribute></c_attribute> | 1032 | <c_attribute></c_attribute> |
1582 | <d_old></d_old> | 1033 | <d_old></d_old> |
1583 | <e_new> | 1034 | <e_new>Dance 1</e_new> |
1584 | XML | ||
1585 | </e_new> | ||
1586 | <f_old_trans></f_old_trans> | 1035 | <f_old_trans></f_old_trans> |
1587 | <f_translation> | 1036 | <f_translation>Tanz 1</f_translation> |
1588 | XML | 1037 | </string><string><a_file>strings.xml</a_file> |
1589 | </f_translation> | 1038 | <b_path>//anim_dance2</b_path> |
1590 | </string><string><a_file>mime_types.xml</a_file> | ||
1591 | <b_path>/default/"video/mpeg"/</b_path> | ||
1592 | <c_attribute></c_attribute> | 1039 | <c_attribute></c_attribute> |
1593 | <d_old></d_old> | 1040 | <d_old></d_old> |
1594 | <e_new> | 1041 | <e_new>Dance 2</e_new> |
1595 | Movie (MPEG) | ||
1596 | </e_new> | ||
1597 | <f_old_trans></f_old_trans> | 1042 | <f_old_trans></f_old_trans> |
1598 | <f_translation> | 1043 | <f_translation>Tanz 2</f_translation> |
1599 | Video (MPEG) | 1044 | </string><string><a_file>strings.xml</a_file> |
1600 | </f_translation> | 1045 | <b_path>//anim_dance3</b_path> |
1601 | </string><string><a_file>mime_types.xml</a_file> | ||
1602 | <b_path>/default/"video/mp4"/</b_path> | ||
1603 | <c_attribute></c_attribute> | 1046 | <c_attribute></c_attribute> |
1604 | <d_old></d_old> | 1047 | <d_old></d_old> |
1605 | <e_new> | 1048 | <e_new>Dance 3</e_new> |
1606 | Movie (MP4) | ||
1607 | </e_new> | ||
1608 | <f_old_trans></f_old_trans> | 1049 | <f_old_trans></f_old_trans> |
1609 | <f_translation> | 1050 | <f_translation>Tanz 3</f_translation> |
1610 | Video (MP4) | 1051 | </string><string><a_file>strings.xml</a_file> |
1611 | </f_translation> | 1052 | <b_path>//anim_dance4</b_path> |
1612 | </string><string><a_file>mime_types.xml</a_file> | ||
1613 | <b_path>/default/"video/quicktime"/</b_path> | ||
1614 | <c_attribute></c_attribute> | 1053 | <c_attribute></c_attribute> |
1615 | <d_old></d_old> | 1054 | <d_old></d_old> |
1616 | <e_new> | 1055 | <e_new>Dance 4</e_new> |
1617 | Movie (QuickTime) | ||
1618 | </e_new> | ||
1619 | <f_old_trans></f_old_trans> | 1056 | <f_old_trans></f_old_trans> |
1620 | <f_translation> | 1057 | <f_translation>Tanz 4</f_translation> |
1621 | Video (QuickTime) | 1058 | </string><string><a_file>strings.xml</a_file> |
1622 | </f_translation> | 1059 | <b_path>//anim_dance5</b_path> |
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> | 1060 | <c_attribute></c_attribute> |
1626 | <d_old></d_old> | 1061 | <d_old></d_old> |
1627 | <e_new> | 1062 | <e_new>Dance 5</e_new> |
1628 | Movie (Windows Media ASF) | ||
1629 | </e_new> | ||
1630 | <f_old_trans></f_old_trans> | 1063 | <f_old_trans></f_old_trans> |
1631 | <f_translation> | 1064 | <f_translation>Tanz 5</f_translation> |
1632 | Video (Windows Media ASF) | 1065 | </string><string><a_file>strings.xml</a_file> |
1633 | </f_translation> | 1066 | <b_path>//anim_dance6</b_path> |
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> | 1067 | <c_attribute></c_attribute> |
1637 | <d_old></d_old> | 1068 | <d_old></d_old> |
1638 | <e_new> | 1069 | <e_new>Dance 6</e_new> |
1639 | Movie (Windows Media WMV) | ||
1640 | </e_new> | ||
1641 | <f_old_trans></f_old_trans> | 1070 | <f_old_trans></f_old_trans> |
1642 | <f_translation> | 1071 | <f_translation>Tanz 6</f_translation> |
1643 | Video (Windows Media WMV) | 1072 | </string><string><a_file>strings.xml</a_file> |
1644 | </f_translation> | 1073 | <b_path>//anim_dance7</b_path> |
1645 | </string><string><a_file>mime_types.xml</a_file> | ||
1646 | <b_path>/default/"video/x-msvideo"/</b_path> | ||
1647 | <c_attribute></c_attribute> | 1074 | <c_attribute></c_attribute> |
1648 | <d_old></d_old> | 1075 | <d_old></d_old> |
1649 | <e_new> | 1076 | <e_new>Dance 7</e_new> |
1650 | Movie (AVI) | ||
1651 | </e_new> | ||
1652 | <f_old_trans></f_old_trans> | 1077 | <f_old_trans></f_old_trans> |
1653 | <f_translation> | 1078 | <f_translation>Tanz 7</f_translation> |
1654 | Video (AVI) | 1079 | </string><string><a_file>strings.xml</a_file> |
1655 | </f_translation> | 1080 | <b_path>//anim_dance8</b_path> |
1656 | </string><string><a_file>notify.xml</a_file> | ||
1657 | <b_path>//RezItemNoPermissions/message</b_path> | ||
1658 | <c_attribute></c_attribute> | 1081 | <c_attribute></c_attribute> |
1659 | <d_old></d_old> | 1082 | <d_old></d_old> |
1660 | <e_new> | 1083 | <e_new>Dance 8</e_new> |
1661 | Insufficient permissions to rez object. | ||
1662 | </e_new> | ||
1663 | <f_old_trans></f_old_trans> | 1084 | <f_old_trans></f_old_trans> |
1664 | <f_translation> | 1085 | <f_translation>Tanz 8</f_translation> |
1665 | Keine Berechtigung zum Rezzen von Objekten. | 1086 | </string><string><a_file>strings.xml</a_file> |
1666 | </f_translation> | 1087 | <b_path>//anim_express_disdain</b_path> |
1667 | </string><string><a_file>panel_audio.xml</a_file> | 1088 | <c_attribute></c_attribute> |
1668 | <b_path>/Media panel/mute_audio</b_path> | ||
1669 | <c_attribute>label</c_attribute> | ||
1670 | <d_old></d_old> | 1089 | <d_old></d_old> |
1671 | <e_new></e_new> | 1090 | <e_new>Disdain</e_new> |
1672 | <f_old_trans></f_old_trans> | 1091 | <f_old_trans></f_old_trans> |
1673 | <f_translation></f_translation> | 1092 | <f_translation>Verachten</f_translation> |
1674 | </string><string><a_file>panel_audio.xml</a_file> | 1093 | </string><string><a_file>strings.xml</a_file> |
1675 | <b_path>/Media panel/mute_music</b_path> | 1094 | <b_path>//anim_drink</b_path> |
1676 | <c_attribute>label</c_attribute> | 1095 | <c_attribute></c_attribute> |
1677 | <d_old></d_old> | 1096 | <d_old></d_old> |
1678 | <e_new></e_new> | 1097 | <e_new>Drink</e_new> |
1679 | <f_old_trans></f_old_trans> | 1098 | <f_old_trans></f_old_trans> |
1680 | <f_translation></f_translation> | 1099 | <f_translation>Trinken</f_translation> |
1681 | </string><string><a_file>panel_audio.xml</a_file> | 1100 | </string><string><a_file>strings.xml</a_file> |
1682 | <b_path>/Media panel/mute_media</b_path> | 1101 | <b_path>//anim_express_embarrased</b_path> |
1683 | <c_attribute>label</c_attribute> | 1102 | <c_attribute></c_attribute> |
1684 | <d_old></d_old> | 1103 | <d_old></d_old> |
1685 | <e_new></e_new> | 1104 | <e_new>Embarrassed</e_new> |
1686 | <f_old_trans></f_old_trans> | 1105 | <f_old_trans></f_old_trans> |
1687 | <f_translation></f_translation> | 1106 | <f_translation>Verlegen</f_translation> |
1688 | </string><string><a_file>panel_audio.xml</a_file> | 1107 | </string><string><a_file>strings.xml</a_file> |
1689 | <b_path>/Media panel/mute_voice</b_path> | 1108 | <b_path>//anim_angry_fingerwag</b_path> |
1690 | <c_attribute>label</c_attribute> | 1109 | <c_attribute></c_attribute> |
1691 | <d_old></d_old> | 1110 | <d_old></d_old> |
1692 | <e_new></e_new> | 1111 | <e_new>Finger Wag</e_new> |
1693 | <f_old_trans></f_old_trans> | 1112 | <f_old_trans></f_old_trans> |
1694 | <f_translation></f_translation> | 1113 | <f_translation>Drohen</f_translation> |
1695 | </string><string><a_file>panel_audio.xml</a_file> | 1114 | </string><string><a_file>strings.xml</a_file> |
1696 | <b_path>/Media panel/mute_sfx</b_path> | 1115 | <b_path>//anim_fist_pump</b_path> |
1697 | <c_attribute>label</c_attribute> | 1116 | <c_attribute></c_attribute> |
1698 | <d_old></d_old> | 1117 | <d_old></d_old> |
1699 | <e_new></e_new> | 1118 | <e_new>Fist Pump</e_new> |
1700 | <f_old_trans></f_old_trans> | 1119 | <f_old_trans></f_old_trans> |
1701 | <f_translation></f_translation> | 1120 | <f_translation>Faust pumpen</f_translation> |
1702 | </string><string><a_file>panel_audio.xml</a_file> | 1121 | </string><string><a_file>strings.xml</a_file> |
1703 | <b_path>/Media panel/mute_wind</b_path> | 1122 | <b_path>//anim_yoga_float</b_path> |
1704 | <c_attribute>label</c_attribute> | 1123 | <c_attribute></c_attribute> |
1705 | <d_old></d_old> | 1124 | <d_old></d_old> |
1706 | <e_new></e_new> | 1125 | <e_new>Floating Yoga</e_new> |
1707 | <f_old_trans></f_old_trans> | 1126 | <f_old_trans></f_old_trans> |
1708 | <f_translation></f_translation> | 1127 | <f_translation>Yogaflieger</f_translation> |
1709 | </string><string><a_file>panel_audio.xml</a_file> | 1128 | </string><string><a_file>strings.xml</a_file> |
1710 | <b_path>/Media panel/mute_ui</b_path> | 1129 | <b_path>//anim_express_frown</b_path> |
1711 | <c_attribute>label</c_attribute> | 1130 | <c_attribute></c_attribute> |
1712 | <d_old></d_old> | 1131 | <d_old></d_old> |
1713 | <e_new></e_new> | 1132 | <e_new>Frown</e_new> |
1714 | <f_old_trans></f_old_trans> | 1133 | <f_old_trans></f_old_trans> |
1715 | <f_translation></f_translation> | 1134 | <f_translation>Stirnrunzeln</f_translation> |
1716 | </string><string><a_file>panel_groups.xml</a_file> | 1135 | </string><string><a_file>strings.xml</a_file> |
1717 | <b_path>/groups/group list/name</b_path> | 1136 | <b_path>//anim_impatient</b_path> |
1718 | <c_attribute>label</c_attribute> | 1137 | <c_attribute></c_attribute> |
1719 | <d_old></d_old> | 1138 | <d_old></d_old> |
1720 | <e_new></e_new> | 1139 | <e_new>Impatient</e_new> |
1721 | <f_old_trans></f_old_trans> | 1140 | <f_old_trans></f_old_trans> |
1722 | <f_translation></f_translation> | 1141 | <f_translation>Ungeduldig</f_translation> |
1723 | </string><string><a_file>panel_group_invite.xml</a_file> | 1142 | </string><string><a_file>strings.xml</a_file> |
1724 | <b_path>/invite_panel/help_text</b_path> | 1143 | <b_path>//anim_jumpforjoy</b_path> |
1725 | <c_attribute></c_attribute> | 1144 | <c_attribute></c_attribute> |
1726 | <d_old></d_old> | 1145 | <d_old></d_old> |
1727 | <e_new> | 1146 | <e_new>Jump For Joy</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> | 1147 | <f_old_trans></f_old_trans> |
1733 | <f_translation> | 1148 | <f_translation>Freudensprung</f_translation> |
1734 | Sie können mehrere Einwohner zu Ihrer | 1149 | </string><string><a_file>strings.xml</a_file> |
1735 | Gruppe einladen. Klicken Sie auf | 1150 | <b_path>//anim_kissmybutt</b_path> |
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> | 1151 | <c_attribute></c_attribute> |
1741 | <d_old></d_old> | 1152 | <d_old></d_old> |
1742 | <e_new> | 1153 | <e_new>Kiss My Butt</e_new> |
1743 | Choose what Role to assign them to: | ||
1744 | </e_new> | ||
1745 | <f_old_trans></f_old_trans> | 1154 | <f_old_trans></f_old_trans> |
1746 | <f_translation> | 1155 | <f_translation>LMA</f_translation> |
1747 | Wählen Sie eine Rolle aus: | 1156 | </string><string><a_file>strings.xml</a_file> |
1748 | </f_translation> | 1157 | <b_path>//anim_express_kiss</b_path> |
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> | 1158 | <c_attribute></c_attribute> |
1752 | <d_old></d_old> | 1159 | <d_old></d_old> |
1753 | <e_new> | 1160 | <e_new>Kiss</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> | 1161 | <f_old_trans></f_old_trans> |
1757 | <f_translation> | 1162 | <f_translation>Küssen</f_translation> |
1758 | Möchten Sie wirklich (einen) neue(n) Eigentümer einladen? Dies kann nicht rückgängig gemacht werden! | 1163 | </string><string><a_file>strings.xml</a_file> |
1759 | </f_translation> | 1164 | <b_path>//anim_laugh_short</b_path> |
1760 | </string><string><a_file>panel_master_volume.xml</a_file> | 1165 | <c_attribute></c_attribute> |
1761 | <b_path>/master_volume/mute_master</b_path> | ||
1762 | <c_attribute>label</c_attribute> | ||
1763 | <d_old></d_old> | 1166 | <d_old></d_old> |
1764 | <e_new></e_new> | 1167 | <e_new>Laugh</e_new> |
1765 | <f_old_trans></f_old_trans> | 1168 | <f_old_trans></f_old_trans> |
1766 | <f_translation></f_translation> | 1169 | <f_translation>Lachen</f_translation> |
1767 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | 1170 | </string><string><a_file>strings.xml</a_file> |
1768 | <b_path>/media_remote/play_label</b_path> | 1171 | <b_path>//anim_musclebeach</b_path> |
1769 | <c_attribute></c_attribute> | 1172 | <c_attribute></c_attribute> |
1770 | <d_old></d_old> | 1173 | <d_old></d_old> |
1771 | <e_new> | 1174 | <e_new>Muscle Beach</e_new> |
1772 | Play | ||
1773 | </e_new> | ||
1774 | <f_old_trans></f_old_trans> | 1175 | <f_old_trans></f_old_trans> |
1775 | <f_translation> | 1176 | <f_translation>Posen</f_translation> |
1776 | Wiedergeben | 1177 | </string><string><a_file>strings.xml</a_file> |
1777 | </f_translation> | 1178 | <b_path>//anim_no_unhappy</b_path> |
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> | 1179 | <c_attribute></c_attribute> |
1781 | <d_old></d_old> | 1180 | <d_old></d_old> |
1782 | <e_new> | 1181 | <e_new>No (Unhappy)</e_new> |
1783 | Stop | ||
1784 | </e_new> | ||
1785 | <f_old_trans></f_old_trans> | 1182 | <f_old_trans></f_old_trans> |
1786 | <f_translation> | 1183 | <f_translation>Nein (Bedauernd)</f_translation> |
1787 | Stopp | 1184 | </string><string><a_file>strings.xml</a_file> |
1788 | </f_translation> | 1185 | <b_path>//anim_no_head</b_path> |
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> | 1186 | <c_attribute></c_attribute> |
1792 | <d_old></d_old> | 1187 | <d_old></d_old> |
1793 | <e_new> | 1188 | <e_new>No</e_new> |
1794 | Pause | ||
1795 | </e_new> | ||
1796 | <f_old_trans></f_old_trans> | 1189 | <f_old_trans></f_old_trans> |
1797 | <f_translation> | 1190 | <f_translation>Nein</f_translation> |
1798 | Pause | 1191 | </string><string><a_file>strings.xml</a_file> |
1799 | </f_translation> | 1192 | <b_path>//anim_nyanya</b_path> |
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> | 1193 | <c_attribute></c_attribute> |
1803 | <d_old></d_old> | 1194 | <d_old></d_old> |
1804 | <e_new> | 1195 | <e_new>Nya-nya-nya</e_new> |
1805 | No Media Specified | ||
1806 | </e_new> | ||
1807 | <f_old_trans></f_old_trans> | 1196 | <f_old_trans></f_old_trans> |
1808 | <f_translation> | 1197 | <f_translation>Ällabätsch</f_translation> |
1809 | Keine Medien angegeben | 1198 | </string><string><a_file>strings.xml</a_file> |
1810 | </f_translation> | 1199 | <b_path>//anim_punch_onetwo</b_path> |
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> | 1200 | <c_attribute></c_attribute> |
1814 | <d_old></d_old> | 1201 | <d_old></d_old> |
1815 | <e_new> | 1202 | <e_new>One-Two Punch</e_new> |
1816 | (URL hidden by parcel owner) | ||
1817 | </e_new> | ||
1818 | <f_old_trans></f_old_trans> | 1203 | <f_old_trans></f_old_trans> |
1819 | <f_translation> | 1204 | <f_translation>Eins-Zwei-Punch</f_translation> |
1820 | (URL von Parzelleneigentümer versteckt) | 1205 | </string><string><a_file>strings.xml</a_file> |
1821 | </f_translation> | 1206 | <b_path>//anim_express_open_mouth</b_path> |
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> | 1207 | <c_attribute></c_attribute> |
1825 | <d_old></d_old> | 1208 | <d_old></d_old> |
1826 | <e_new> | 1209 | <e_new>Open Mouth</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> | 1210 | <f_old_trans></f_old_trans> |
1830 | <f_translation> | 1211 | <f_translation>Mund offen</f_translation> |
1831 | An diesem Ort werden Inhalte aus dem World Wide Web wiedergegeben. Klicken Sie auf 'Wiedergeben', um Webinhalte wiederzugeben. | 1212 | </string><string><a_file>strings.xml</a_file> |
1832 | </f_translation> | 1213 | <b_path>//anim_peace</b_path> |
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> | 1214 | <c_attribute></c_attribute> |
1836 | <d_old></d_old> | 1215 | <d_old></d_old> |
1837 | <e_new> | 1216 | <e_new>Peace</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> | 1217 | <f_old_trans></f_old_trans> |
1841 | <f_translation> | 1218 | <f_translation>Friede</f_translation> |
1842 | An diesem Ort werden Videoinhalte wiedergegeben. Klicken Sie auf 'Wiedergeben', um das Video abzuspielen. | 1219 | </string><string><a_file>strings.xml</a_file> |
1843 | </f_translation> | 1220 | <b_path>//anim_point_you</b_path> |
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> | 1221 | <c_attribute></c_attribute> |
1847 | <d_old></d_old> | 1222 | <d_old></d_old> |
1848 | <e_new> | 1223 | <e_new>Point at Other</e_new> |
1849 | Display Web content at this location. | ||
1850 | </e_new> | ||
1851 | <f_old_trans></f_old_trans> | 1224 | <f_old_trans></f_old_trans> |
1852 | <f_translation> | 1225 | <f_translation>Auf anderen zeigen</f_translation> |
1853 | Webinhalt an diesem Ort anzeigen. | 1226 | </string><string><a_file>strings.xml</a_file> |
1854 | </f_translation> | 1227 | <b_path>//anim_point_me</b_path> |
1855 | </string><string><a_file>panel_place.xml</a_file> | ||
1856 | <b_path>/Place/name_label</b_path> | ||
1857 | <c_attribute></c_attribute> | 1228 | <c_attribute></c_attribute> |
1858 | <d_old></d_old> | 1229 | <d_old></d_old> |
1859 | <e_new> | 1230 | <e_new>Point at Self</e_new> |
1860 | Name: | ||
1861 | </e_new> | ||
1862 | <f_old_trans></f_old_trans> | 1231 | <f_old_trans></f_old_trans> |
1863 | <f_translation> | 1232 | <f_translation>Auf mich zeigen</f_translation> |
1864 | Name: | 1233 | </string><string><a_file>strings.xml</a_file> |
1865 | </f_translation> | 1234 | <b_path>//anim_punch_l</b_path> |
1866 | </string><string><a_file>panel_place.xml</a_file> | ||
1867 | <b_path>/Place/description_label</b_path> | ||
1868 | <c_attribute></c_attribute> | 1235 | <c_attribute></c_attribute> |
1869 | <d_old></d_old> | 1236 | <d_old></d_old> |
1870 | <e_new> | 1237 | <e_new>Punch Left</e_new> |
1871 | Description: | ||
1872 | </e_new> | ||
1873 | <f_old_trans></f_old_trans> | 1238 | <f_old_trans></f_old_trans> |
1874 | <f_translation> | 1239 | <f_translation>Linker Haken</f_translation> |
1875 | Beschreibung: | 1240 | </string><string><a_file>strings.xml</a_file> |
1876 | </f_translation> | 1241 | <b_path>//anim_punch_r</b_path> |
1877 | </string><string><a_file>panel_place.xml</a_file> | ||
1878 | <b_path>/Place/information_label</b_path> | ||
1879 | <c_attribute></c_attribute> | 1242 | <c_attribute></c_attribute> |
1880 | <d_old></d_old> | 1243 | <d_old></d_old> |
1881 | <e_new> | 1244 | <e_new>Punch Right</e_new> |
1882 | Information: | ||
1883 | </e_new> | ||
1884 | <f_old_trans></f_old_trans> | 1245 | <f_old_trans></f_old_trans> |
1885 | <f_translation> | 1246 | <f_translation>Rechter Haken</f_translation> |
1886 | Information: | 1247 | </string><string><a_file>strings.xml</a_file> |
1887 | </f_translation> | 1248 | <b_path>//anim_rps_countdown</b_path> |
1888 | </string><string><a_file>panel_place.xml</a_file> | ||
1889 | <b_path>/Place/location_label</b_path> | ||
1890 | <c_attribute></c_attribute> | 1249 | <c_attribute></c_attribute> |
1891 | <d_old></d_old> | 1250 | <d_old></d_old> |
1892 | <e_new> | 1251 | <e_new>RPS count</e_new> |
1893 | Location: | ||
1894 | </e_new> | ||
1895 | <f_old_trans></f_old_trans> | 1252 | <f_old_trans></f_old_trans> |
1896 | <f_translation> | 1253 | <f_translation>SSP zählen</f_translation> |
1897 | Standort: | 1254 | </string><string><a_file>strings.xml</a_file> |
1898 | </f_translation> | 1255 | <b_path>//anim_rps_paper</b_path> |
1899 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1900 | <b_path>/Place/name_label</b_path> | ||
1901 | <c_attribute></c_attribute> | 1256 | <c_attribute></c_attribute> |
1902 | <d_old></d_old> | 1257 | <d_old></d_old> |
1903 | <e_new> | 1258 | <e_new>RPS paper</e_new> |
1904 | Name: | ||
1905 | </e_new> | ||
1906 | <f_old_trans></f_old_trans> | 1259 | <f_old_trans></f_old_trans> |
1907 | <f_translation> | 1260 | <f_translation>SSP Papier</f_translation> |
1908 | Name: | 1261 | </string><string><a_file>strings.xml</a_file> |
1909 | </f_translation> | 1262 | <b_path>//anim_rps_rock</b_path> |
1910 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1911 | <b_path>/Place/description_label</b_path> | ||
1912 | <c_attribute></c_attribute> | 1263 | <c_attribute></c_attribute> |
1913 | <d_old></d_old> | 1264 | <d_old></d_old> |
1914 | <e_new> | 1265 | <e_new>RPS rock</e_new> |
1915 | Description: | ||
1916 | </e_new> | ||
1917 | <f_old_trans></f_old_trans> | 1266 | <f_old_trans></f_old_trans> |
1918 | <f_translation> | 1267 | <f_translation>SSP Stein</f_translation> |
1919 | Beschreibung: | 1268 | </string><string><a_file>strings.xml</a_file> |
1920 | </f_translation> | 1269 | <b_path>//anim_rps_scissors</b_path> |
1921 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1922 | <b_path>/Place/information_label</b_path> | ||
1923 | <c_attribute></c_attribute> | 1270 | <c_attribute></c_attribute> |
1924 | <d_old></d_old> | 1271 | <d_old></d_old> |
1925 | <e_new> | 1272 | <e_new>RPS scissors</e_new> |
1926 | Information: | ||
1927 | </e_new> | ||
1928 | <f_old_trans></f_old_trans> | 1273 | <f_old_trans></f_old_trans> |
1929 | <f_translation> | 1274 | <f_translation>SSP Schere</f_translation> |
1930 | Information: | 1275 | </string><string><a_file>strings.xml</a_file> |
1931 | </f_translation> | 1276 | <b_path>//anim_express_repulsed</b_path> |
1932 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1933 | <b_path>/Place/location_label</b_path> | ||
1934 | <c_attribute></c_attribute> | 1277 | <c_attribute></c_attribute> |
1935 | <d_old></d_old> | 1278 | <d_old></d_old> |
1936 | <e_new> | 1279 | <e_new>Repulsed</e_new> |
1937 | Location: | ||
1938 | </e_new> | ||
1939 | <f_old_trans></f_old_trans> | 1280 | <f_old_trans></f_old_trans> |
1940 | <f_translation> | 1281 | <f_translation>Angewidert</f_translation> |
1941 | Standort: | 1282 | </string><string><a_file>strings.xml</a_file> |
1942 | </f_translation> | 1283 | <b_path>//anim_kick_roundhouse_r</b_path> |
1943 | </string><string><a_file>panel_preferences_chat.xml</a_file> | 1284 | <c_attribute></c_attribute> |
1944 | <b_path>/chat/im</b_path> | ||
1945 | <c_attribute>label</c_attribute> | ||
1946 | <d_old></d_old> | 1285 | <d_old></d_old> |
1947 | <e_new>IM</e_new> | 1286 | <e_new>Roundhouse Kick</e_new> |
1948 | <f_old_trans></f_old_trans> | 1287 | <f_old_trans></f_old_trans> |
1949 | <f_translation>IM</f_translation> | 1288 | <f_translation>Rundkick</f_translation> |
1950 | </string><string><a_file>panel_preferences_general.xml</a_file> | 1289 | </string><string><a_file>strings.xml</a_file> |
1951 | <b_path>/general_panel/fade_out_combobox/Never</b_path> | 1290 | <b_path>//anim_express_sad</b_path> |
1952 | <c_attribute></c_attribute> | 1291 | <c_attribute></c_attribute> |
1953 | <d_old></d_old> | 1292 | <d_old></d_old> |
1954 | <e_new> | 1293 | <e_new>Sad</e_new> |
1955 | Never | ||
1956 | </e_new> | ||
1957 | <f_old_trans></f_old_trans> | 1294 | <f_old_trans></f_old_trans> |
1958 | <f_translation> | 1295 | <f_translation>Traurig</f_translation> |
1959 | Nie | 1296 | </string><string><a_file>strings.xml</a_file> |
1960 | </f_translation> | 1297 | <b_path>//anim_salute</b_path> |
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> | 1298 | <c_attribute></c_attribute> |
1964 | <d_old></d_old> | 1299 | <d_old></d_old> |
1965 | <e_new> | 1300 | <e_new>Salute</e_new> |
1966 | Show Temporarily | ||
1967 | </e_new> | ||
1968 | <f_old_trans></f_old_trans> | 1301 | <f_old_trans></f_old_trans> |
1969 | <f_translation> | 1302 | <f_translation>Salutieren</f_translation> |
1970 | Temporär anzeigen | 1303 | </string><string><a_file>strings.xml</a_file> |
1971 | </f_translation> | 1304 | <b_path>//anim_shout</b_path> |
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> | 1305 | <c_attribute></c_attribute> |
1975 | <d_old></d_old> | 1306 | <d_old></d_old> |
1976 | <e_new> | 1307 | <e_new>Shout</e_new> |
1977 | Always | ||
1978 | </e_new> | ||
1979 | <f_old_trans></f_old_trans> | 1308 | <f_old_trans></f_old_trans> |
1980 | <f_translation> | 1309 | <f_translation>Rufen</f_translation> |
1981 | Immer | 1310 | </string><string><a_file>strings.xml</a_file> |
1982 | </f_translation> | 1311 | <b_path>//anim_express_shrug</b_path> |
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> | 1312 | <c_attribute></c_attribute> |
1986 | <d_old></d_old> | 1313 | <d_old></d_old> |
1987 | <e_new> | 1314 | <e_new>Shrug</e_new> |
1988 | Group Titles: | ||
1989 | </e_new> | ||
1990 | <f_old_trans></f_old_trans> | 1315 | <f_old_trans></f_old_trans> |
1991 | <f_translation> | 1316 | <f_translation>Schulterzucken</f_translation> |
1992 | Gruppentitel: | 1317 | </string><string><a_file>strings.xml</a_file> |
1993 | </f_translation> | 1318 | <b_path>//anim_express_smile</b_path> |
1994 | </string><string><a_file>panel_preferences_general.xml</a_file> | 1319 | <c_attribute></c_attribute> |
1995 | <b_path>/general_panel/show_all_title_checkbox</b_path> | ||
1996 | <c_attribute>label</c_attribute> | ||
1997 | <d_old></d_old> | 1320 | <d_old></d_old> |
1998 | <e_new>Hide All Group Titles</e_new> | 1321 | <e_new>Smile</e_new> |
1999 | <f_old_trans></f_old_trans> | 1322 | <f_old_trans></f_old_trans> |
2000 | <f_translation>Alle Gruppentitel ausblenden</f_translation> | 1323 | <f_translation>Lächeln</f_translation> |
2001 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | 1324 | </string><string><a_file>strings.xml</a_file> |
2002 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | 1325 | <b_path>//anim_smoke_idle</b_path> |
2003 | <c_attribute>label</c_attribute> | 1326 | <c_attribute></c_attribute> |
2004 | <d_old></d_old> | 1327 | <d_old></d_old> |
2005 | <e_new></e_new> | 1328 | <e_new>Smoke Idle</e_new> |
2006 | <f_old_trans></f_old_trans> | 1329 | <f_old_trans></f_old_trans> |
2007 | <f_translation></f_translation> | 1330 | <f_translation>Zigarette halten</f_translation> |
2008 | </string><string><a_file>panel_preferences_input.xml</a_file> | 1331 | </string><string><a_file>strings.xml</a_file> |
2009 | <b_path>/Input panel/Camera Follow Distance:</b_path> | 1332 | <b_path>//anim_smoke_inhale</b_path> |
2010 | <c_attribute></c_attribute> | 1333 | <c_attribute></c_attribute> |
2011 | <d_old></d_old> | 1334 | <d_old></d_old> |
2012 | <e_new> | 1335 | <e_new>Smoke Inhale</e_new> |
2013 | Camera Follow Distance: | ||
2014 | </e_new> | ||
2015 | <f_old_trans></f_old_trans> | 1336 | <f_old_trans></f_old_trans> |
2016 | <f_translation> | 1337 | <f_translation>Rauchen</f_translation> |
2017 | Kameraabstand: | 1338 | </string><string><a_file>strings.xml</a_file> |
2018 | </f_translation> | 1339 | <b_path>//anim_smoke_throw_down</b_path> |
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> | 1340 | <c_attribute></c_attribute> |
2022 | <d_old></d_old> | 1341 | <d_old></d_old> |
2023 | <e_new> | 1342 | <e_new>Smoke Throw Down</e_new> |
2024 | Camera Transition Time: | ||
2025 | </e_new> | ||
2026 | <f_old_trans></f_old_trans> | 1343 | <f_old_trans></f_old_trans> |
2027 | <f_translation> | 1344 | <f_translation>Zigarette wegwerfen</f_translation> |
2028 | Zeit für Kamerawechsel: | 1345 | </string><string><a_file>strings.xml</a_file> |
2029 | </f_translation> | 1346 | <b_path>//anim_express_surprise</b_path> |
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> | 1347 | <c_attribute></c_attribute> |
2033 | <d_old></d_old> | 1348 | <d_old></d_old> |
2034 | <e_new> | 1349 | <e_new>Surprise</e_new> |
2035 | Camera Smoothing: | ||
2036 | </e_new> | ||
2037 | <f_old_trans></f_old_trans> | 1350 | <f_old_trans></f_old_trans> |
2038 | <f_translation> | 1351 | <f_translation>Überraschung</f_translation> |
2039 | Bewegungsglättung: | 1352 | </string><string><a_file>strings.xml</a_file> |
2040 | </f_translation> | 1353 | <b_path>//anim_sword_strike_r</b_path> |
2041 | </string><string><a_file>panel_preferences_input.xml</a_file> | 1354 | <c_attribute></c_attribute> |
2042 | <b_path>/Input panel/joystic_setup_button</b_path> | ||
2043 | <c_attribute>label</c_attribute> | ||
2044 | <d_old></d_old> | 1355 | <d_old></d_old> |
2045 | <e_new>Joystick Setup</e_new> | 1356 | <e_new>Sword Strike</e_new> |
2046 | <f_old_trans></f_old_trans> | 1357 | <f_old_trans></f_old_trans> |
2047 | <f_translation>Joystick-Einrichtung</f_translation> | 1358 | <f_translation>Schwerthieb</f_translation> |
2048 | </string><string><a_file>panel_preferences_popups.xml</a_file> | 1359 | </string><string><a_file>strings.xml</a_file> |
2049 | <b_path>/popups/dont_show_label</b_path> | 1360 | <b_path>//anim_angry_tantrum</b_path> |
2050 | <c_attribute></c_attribute> | 1361 | <c_attribute></c_attribute> |
2051 | <d_old></d_old> | 1362 | <d_old></d_old> |
2052 | <e_new> | 1363 | <e_new>Tantrum</e_new> |
2053 | Do not show popups: | ||
2054 | </e_new> | ||
2055 | <f_old_trans></f_old_trans> | 1364 | <f_old_trans></f_old_trans> |
2056 | <f_translation> | 1365 | <f_translation>Wutanfall</f_translation> |
2057 | Popups nicht anzeigen: | 1366 | </string><string><a_file>strings.xml</a_file> |
2058 | </f_translation> | 1367 | <b_path>//anim_express_tongue_out</b_path> |
2059 | </string><string><a_file>panel_preferences_popups.xml</a_file> | ||
2060 | <b_path>/popups/show_label</b_path> | ||
2061 | <c_attribute></c_attribute> | 1368 | <c_attribute></c_attribute> |
2062 | <d_old></d_old> | 1369 | <d_old></d_old> |
2063 | <e_new> | 1370 | <e_new>TongueOut</e_new> |
2064 | Show popups: | ||
2065 | </e_new> | ||
2066 | <f_old_trans></f_old_trans> | 1371 | <f_old_trans></f_old_trans> |
2067 | <f_translation> | 1372 | <f_translation>Zunge rausstrecken</f_translation> |
2068 | Popups anzeigen: | 1373 | </string><string><a_file>strings.xml</a_file> |
2069 | </f_translation> | 1374 | <b_path>//anim_hello</b_path> |
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> | 1375 | <c_attribute></c_attribute> |
2073 | <d_old></d_old> | 1376 | <d_old></d_old> |
2074 | <e_new> | 1377 | <e_new>Wave</e_new> |
2075 | Open Voice (default) | ||
2076 | </e_new> | ||
2077 | <f_old_trans></f_old_trans> | 1378 | <f_old_trans></f_old_trans> |
2078 | <f_translation> | 1379 | <f_translation>Winken</f_translation> |
2079 | Freies Voice (Standard) | 1380 | </string><string><a_file>strings.xml</a_file> |
2080 | </f_translation> | 1381 | <b_path>//anim_whisper</b_path> |
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> | 1382 | <c_attribute></c_attribute> |
2084 | <d_old></d_old> | 1383 | <d_old></d_old> |
2085 | <e_new> | 1384 | <e_new>Whisper</e_new> |
2086 | Moderated Voice | ||
2087 | </e_new> | ||
2088 | <f_old_trans></f_old_trans> | 1385 | <f_old_trans></f_old_trans> |
2089 | <f_translation> | 1386 | <f_translation>Flüstern</f_translation> |
2090 | Moderiertes Voice | 1387 | </string><string><a_file>strings.xml</a_file> |
2091 | </f_translation> | 1388 | <b_path>//anim_whistle</b_path> |
2092 | </string><string><a_file>panel_speaker_controls.xml</a_file> | 1389 | <c_attribute></c_attribute> |
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> | 1390 | <d_old></d_old> |
2096 | <e_new></e_new> | 1391 | <e_new>Whistle</e_new> |
2097 | <f_old_trans></f_old_trans> | 1392 | <f_old_trans></f_old_trans> |
2098 | <f_translation></f_translation> | 1393 | <f_translation>Pfeifen</f_translation> |
2099 | </string><string><a_file>panel_speaker_controls.xml</a_file> | 1394 | </string><string><a_file>strings.xml</a_file> |
2100 | <b_path>/active_speakers_panel/panels/moderate_chat_panel/speaker_controls/profile_btn</b_path> | 1395 | <b_path>//anim_express_wink</b_path> |
2101 | <c_attribute>label</c_attribute> | 1396 | <c_attribute></c_attribute> |
2102 | <d_old></d_old> | 1397 | <d_old></d_old> |
2103 | <e_new></e_new> | 1398 | <e_new>Wink</e_new> |
2104 | <f_old_trans></f_old_trans> | 1399 | <f_old_trans></f_old_trans> |
2105 | <f_translation></f_translation> | 1400 | <f_translation>Zwinkern</f_translation> |
2106 | </string><string><a_file>panel_status_bar.xml</a_file> | 1401 | </string><string><a_file>strings.xml</a_file> |
2107 | <b_path>/status/menubar_search_bevel_bg</b_path> | 1402 | <b_path>//anim_wink_hollywood</b_path> |
2108 | <c_attribute>label</c_attribute> | 1403 | <c_attribute></c_attribute> |
2109 | <d_old></d_old> | 1404 | <d_old></d_old> |
2110 | <e_new></e_new> | 1405 | <e_new>Wink (Hollywood)</e_new> |
2111 | <f_old_trans></f_old_trans> | 1406 | <f_old_trans></f_old_trans> |
2112 | <f_translation></f_translation> | 1407 | <f_translation>Zwinkern (Hollywood)</f_translation> |
2113 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 1408 | </string><string><a_file>strings.xml</a_file> |
2114 | <b_path>/voice_remote/voice_channel_bg</b_path> | 1409 | <b_path>//anim_express_worry</b_path> |
2115 | <c_attribute>label</c_attribute> | 1410 | <c_attribute></c_attribute> |
2116 | <d_old></d_old> | 1411 | <d_old></d_old> |
2117 | <e_new></e_new> | 1412 | <e_new>Worry</e_new> |
2118 | <f_old_trans></f_old_trans> | 1413 | <f_old_trans></f_old_trans> |
2119 | <f_translation></f_translation> | 1414 | <f_translation>Sorgenvoll</f_translation> |
2120 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 1415 | </string><string><a_file>strings.xml</a_file> |
2121 | <b_path>/voice_remote/voice_channel_icon</b_path> | 1416 | <b_path>//anim_yes_happy</b_path> |
2122 | <c_attribute>label</c_attribute> | 1417 | <c_attribute></c_attribute> |
2123 | <d_old></d_old> | 1418 | <d_old></d_old> |
2124 | <e_new></e_new> | 1419 | <e_new>Yes (Happy)</e_new> |
2125 | <f_old_trans></f_old_trans> | 1420 | <f_old_trans></f_old_trans> |
2126 | <f_translation></f_translation> | 1421 | <f_translation>Ja (Erfreut)</f_translation> |
2127 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 1422 | </string><string><a_file>strings.xml</a_file> |
2128 | <b_path>/voice_remote/channel_label</b_path> | 1423 | <b_path>//anim_yes_head</b_path> |
2129 | <c_attribute>label</c_attribute> | 1424 | <c_attribute></c_attribute> |
2130 | <d_old></d_old> | 1425 | <d_old></d_old> |
2131 | <e_new></e_new> | 1426 | <e_new>Yes</e_new> |
2132 | <f_old_trans></f_old_trans> | 1427 | <f_old_trans></f_old_trans> |
2133 | <f_translation></f_translation> | 1428 | <f_translation>Ja</f_translation> |
2134 | </string> | 1429 | </string> |
2135 | </strings> | 1430 | </strings> |
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 cb82bb7..4fe5b1c 100644 --- a/linden/indra/newview/skins/xui/de/need_to_update.xml +++ b/linden/indra/newview/skins/xui/de/need_to_update.xml | |||
@@ -2,346 +2,177 @@ | |||
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> | 5 | <b_path>//ClothingLoading/message</b_path> |
6 | <c_attribute></c_attribute> | 6 | <c_attribute></c_attribute> |
7 | <d_old> | 7 | <d_old> |
8 | Granting modify rights to another resident allows them to change | 8 | Your clothing is still downloading. |
9 | ANY objects you may have in-world. Be VERY careful when handing | 9 | You can use the world normally, and other users |
10 | out this permission. | 10 | will see you correctly. |
11 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | ||
12 | </d_old> | 11 | </d_old> |
13 | <e_new> | 12 | <e_new> |
14 | Granting modify rights to another resident allows them to change, | 13 | Your clothing is still downloading. |
15 | delete or take ANY objects you may have in-world. Be VERY careful | 14 | You can use [SECOND_LIFE] normally and other users will see you correctly. |
16 | when handing out this permission. | ||
17 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | ||
18 | </e_new> | 15 | </e_new> |
19 | <f_translation> | 16 | <f_translation> |
20 | Die Gewährung von Änderungsrechten an andere Einwohner ermöglicht es diesen, | 17 | Ihre Kleidung wird noch heruntergeladen. |
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 | 18 | Sie können [SECOND_LIFE] normal verwenden. Andere Benutzer können Sie korrekt dargestellt sehen. |
22 | dieser Erlaubnis. | 19 | </f_translation> |
23 | Möchten Sie [FIRST_NAME] [LAST_NAME] Änderungsrechte gewähren? | ||
24 | </f_translation> | ||
25 | <f_old_trans> | 20 | <f_old_trans> |
26 | Die Gewährung von Änderungsrechten an einen anderen Einwohner ermöglicht es diesem, | 21 | Ihre Kleidung wird noch heruntergeladen. |
27 | JEDES BELIEBIGE Objekt zu ändern, das Sie in der Second Life-Welt besitzen. Seien Sie SEHR vorsichtig, | 22 | Sie können sich in der Welt normal verhalten und andere |
28 | wenn Sie diese Erlaubnis erteilen. | 23 | Einwohner können Sie sehen. |
29 | Möchten Sie [FIRST_NAME] [LAST_NAME] Änderungsrechte gewähren? | ||
30 | </f_old_trans> | 24 | </f_old_trans> |
31 | </string><string><a_file>alerts.xml</a_file> | 25 | </string><string><a_file>floater_directory.xml</a_file> |
32 | <b_path>//CannotBuyLandNoRegion/message</b_path> | 26 | <b_path>/directory/Directory Tabs/places_panel/searching_text</b_path> |
33 | <c_attribute></c_attribute> | 27 | <c_attribute></c_attribute> |
34 | <d_old> | 28 | <d_old> |
35 | Unable to buy land: | 29 | Searching... |
36 | Cannot find the region this land is in. | 30 | </d_old> |
37 | </d_old> | 31 | <e_new>Searching...</e_new> |
38 | <e_new> | 32 | <f_translation>Suchen...</f_translation> |
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> | 33 | <f_old_trans> |
47 | Land kann nicht gekauft werden: | 34 | Suchen... |
48 | Kann die Region nicht finden, in der sich dieses Land befindet. | 35 | </f_old_trans> |
49 | </f_old_trans> | 36 | </string><string><a_file>floater_directory.xml</a_file> |
50 | </string><string><a_file>alerts.xml</a_file> | 37 | <b_path>/directory/Directory Tabs/places_panel/not_found_text</b_path> |
51 | <b_path>//ParcelCanPlayMedia/message</b_path> | ||
52 | <c_attribute></c_attribute> | 38 | <c_attribute></c_attribute> |
53 | <d_old> | 39 | <d_old> |
54 | This location can play streaming video. | 40 | None Found. |
55 | Streaming video requires a 768 kbps or | 41 | </d_old> |
56 | faster Internet connection. | 42 | <e_new>None Found.</e_new> |
57 | 43 | <f_translation>Nicht gefunden.</f_translation> | |
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> | 44 | <f_old_trans> |
79 | Dieser Ort kann Streaming-Video abspielen. | 45 | Nicht gefunden. |
80 | Streaming-Video erfordert eine Internetverbindung | 46 | </f_old_trans> |
81 | mit mindestens 768 kbit/s. | 47 | </string><string><a_file>floater_directory.xml</a_file> |
82 | 48 | <b_path>/directory/Directory Tabs/people_panel/find</b_path> | |
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> | 49 | <c_attribute></c_attribute> |
90 | <d_old> | 50 | <d_old> |
91 | Are you sure you want to clear your | 51 | Find: |
92 | browser cache? | 52 | </d_old> |
93 | </d_old> | ||
94 | <e_new> | 53 | <e_new> |
95 | Are you sure you want to clear your browser cache? | 54 | Find: |
96 | </e_new> | 55 | </e_new> |
97 | <f_translation> | 56 | <f_translation> |
98 | Möchten Sie Ihren Browser-Cache wirklich leeren? | 57 | Suchen: |
99 | </f_translation> | 58 | </f_translation> |
100 | <f_old_trans> | 59 | <f_old_trans> |
101 | Möchten Sie Ihren Browser-Cache | 60 | Suchen: |
102 | wirklich löschen? | 61 | </f_old_trans> |
103 | </f_old_trans> | 62 | </string><string><a_file>floater_directory.xml</a_file> |
104 | </string><string><a_file>alerts.xml</a_file> | 63 | <b_path>/directory/Directory Tabs/groups_panel/searching_text</b_path> |
105 | <b_path>//HelpWaterNormalMap/message</b_path> | ||
106 | <c_attribute></c_attribute> | 64 | <c_attribute></c_attribute> |
107 | <d_old> | 65 | <d_old> |
108 | Controls what normal map is layered across the water | 66 | Searching... |
109 | to determine reflections/refractions. | 67 | </d_old> |
110 | </d_old> | 68 | <e_new>Searching...</e_new> |
111 | <e_new> | 69 | <f_translation>Suchen...</f_translation> |
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> | 70 | <f_old_trans> |
118 | Ermöglicht die Auswahl einer Normal-Map zur | 71 | Suchen... |
119 | Berechnung von Reflexionen/Brechungen auf dem Wasser. | 72 | </f_old_trans> |
120 | </f_old_trans> | 73 | </string><string><a_file>floater_directory.xml</a_file> |
121 | </string><string><a_file>alerts.xml</a_file> | 74 | <b_path>/directory/Directory Tabs/groups_panel/not_found_text</b_path> |
122 | <b_path>//HelpWaterWave1/message</b_path> | 75 | <c_attribute></c_attribute> |
76 | <d_old> | ||
77 | None Found. | ||
78 | </d_old> | ||
79 | <e_new>None Found.</e_new> | ||
80 | <f_translation>Nicht gefunden.</f_translation> | ||
81 | <f_old_trans> | ||
82 | Nicht gefunden. | ||
83 | </f_old_trans> | ||
84 | </string><string><a_file>floater_script_debug.xml</a_file> | ||
85 | <b_path>/script debug floater</b_path> | ||
86 | <c_attribute>title</c_attribute> | ||
87 | <d_old>Script Errors/Warning</d_old> | ||
88 | <e_new>Script Warning/Error</e_new> | ||
89 | <f_translation>Skriptwarnung/Fehler</f_translation> | ||
90 | <f_old_trans>Skriptfehler/Warnung</f_old_trans> | ||
91 | </string><string><a_file>floater_world_map.xml</a_file> | ||
92 | <b_path>/worldmap/friend combo</b_path> | ||
93 | <c_attribute>label</c_attribute> | ||
94 | <d_old>My Friends</d_old> | ||
95 | <e_new>Online Friends</e_new> | ||
96 | <f_translation>Online-Freunde</f_translation> | ||
97 | <f_old_trans>Meine Freunde</f_old_trans> | ||
98 | </string><string><a_file>floater_world_map.xml</a_file> | ||
99 | <b_path>/worldmap/friend combo/none_selected</b_path> | ||
123 | <c_attribute></c_attribute> | 100 | <c_attribute></c_attribute> |
124 | <d_old> | 101 | <d_old> |
125 | Controls where and how fast the large scaled version of the normal | 102 | My Friends |
126 | map moves in the X and Y direction. | ||
127 | </d_old> | 103 | </d_old> |
128 | <e_new> | 104 | <e_new> |
129 | Controls where and how fast the large scaled version of the normal map moves in the X and Y direction. | 105 | Online Friends |
130 | </e_new> | 106 | </e_new> |
131 | <f_translation> | 107 | <f_translation> |
132 | Steuert die Bewegungsgeschwindigkeit und -richtung der großen Normal-Map-Version in X- und Y-Richtung. | 108 | Online-Freunde |
133 | </f_translation> | 109 | </f_translation> |
134 | <f_old_trans> | 110 | <f_old_trans> |
135 | Steuert die Bewegungsgeschwindigkeit und -richtung der großen | 111 | Meine Freunde |
136 | Normal-Map-Version in X- und Y-Richtung. | ||
137 | </f_old_trans> | 112 | </f_old_trans> |
138 | </string><string><a_file>alerts.xml</a_file> | 113 | </string><string><a_file>floater_world_map.xml</a_file> |
139 | <b_path>//HelpWaterWave2/message</b_path> | 114 | <b_path>/worldmap/landmark combo</b_path> |
115 | <c_attribute>label</c_attribute> | ||
116 | <d_old>My Landmarks</d_old> | ||
117 | <e_new>Landmarks</e_new> | ||
118 | <f_translation>Landmarken</f_translation> | ||
119 | <f_old_trans>Meine Landmarken</f_old_trans> | ||
120 | </string><string><a_file>floater_world_map.xml</a_file> | ||
121 | <b_path>/worldmap/landmark combo/none_selected</b_path> | ||
140 | <c_attribute></c_attribute> | 122 | <c_attribute></c_attribute> |
141 | <d_old> | 123 | <d_old> |
142 | Controls where and how fast the the small scaled version of the | 124 | My Landmarks |
143 | normal map moves in the X and Y direction. | ||
144 | </d_old> | 125 | </d_old> |
145 | <e_new> | 126 | <e_new> |
146 | Controls where and how fast the the small scaled version of the normal map moves in the X and Y direction. | 127 | Landmarks |
147 | </e_new> | 128 | </e_new> |
148 | <f_translation> | 129 | <f_translation> |
149 | Steuert die Bewegungsgeschwindigkeit und -richtung der kleinen Normal-Map-Version in X- und Y-Richtung. | 130 | Landmarken |
150 | </f_translation> | 131 | </f_translation> |
151 | <f_old_trans> | 132 | <f_old_trans> |
152 | Steuert die Bewegungsgeschwindigkeit und -richtung der kleinen | 133 | Meine Landmarken |
153 | Normal-Map-Version in X- und Y-Richtung. | ||
154 | </f_old_trans> | 134 | </f_old_trans> |
155 | </string><string><a_file>floater_buy_land.xml</a_file> | 135 | </string><string><a_file>panel_avatar_classified.xml</a_file> |
156 | <b_path>/buy land/land_use_reason</b_path> | 136 | <b_path>/Classified/classified_mature_check</b_path> |
157 | <c_attribute></c_attribute> | 137 | <c_attribute>label</c_attribute> |
158 | <d_old> | 138 | <d_old>Mature</d_old> |
159 | You hold 1,309 square meters of land. | 139 | <e_new></e_new> |
160 | This parcel is 512 square meters of land. | 140 | <f_translation></f_translation> |
161 | </d_old> | 141 | <f_old_trans>Ab 18</f_old_trans> |
162 | <e_new> | 142 | </string><string><a_file>panel_group_notices.xml</a_file> |
163 | You hold 1,309 square meters of land. | 143 | <b_path>/notices_tab/lbl2</b_path> |
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> | 144 | <c_attribute></c_attribute> |
253 | <d_old> | 145 | <d_old> |
254 | Click a gesture or press a key to play animations and sounds. | 146 | Notices are kept for 30 days. Click the notice below you wish to view. |
147 | Click the 'Refresh' button to check if new notices have been received. | ||
255 | </d_old> | 148 | </d_old> |
256 | <e_new> | 149 | <e_new> |
257 | Double-click a gesture to play animations and sounds. | 150 | Notices are kept for 14 days. Click the notice below you wish to view. |
151 | Click the 'Refresh' button to check if new notices have been received. | ||
152 | Notice lists are limited to 200 notices per group on a daily basis. | ||
258 | </e_new> | 153 | </e_new> |
259 | <f_translation> | 154 | <f_translation> |
260 | Doppelklicken Sie auf eine Geste, um Animationen und Sound abzuspielen. | 155 | Mitteilungen werden 14 Tage lang aufbewahrt. Klicken Sie auf eine Mitteilung, um sie anzuzeigen. |
261 | </f_translation> | 156 | Klicken Sie auf 'Aktualisieren', um neue Mitteilungen zu suchen. |
262 | <f_old_trans> | 157 | Eine Mitteilungsliste speichert maximal 200 Mitteilungen pro Gruppe täglich. |
263 | Klicken Sie auf eine Geste oder drücken Sie eine Taste, | 158 | </f_translation> |
264 | um Animationen und Sound abzuspielen. | 159 | <f_old_trans> |
265 | </f_old_trans> | 160 | Mitteilungen werden 14 Tage lang aufbewahrt. Klicken |
266 | </string><string><a_file>floater_joystick.xml</a_file> | 161 | Sie auf eine Mitteilung, um sie anzuzeigen. Klicken Sie |
267 | <b_path>/Joystick</b_path> | 162 | auf 'Aktualisieren', um neue Mitteilungen zu suchen. |
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> | 163 | </f_old_trans> |
283 | </string><string><a_file>panel_friends.xml</a_file> | 164 | </string><string><a_file>panel_login.xml</a_file> |
284 | <b_path>/friends/friend_list/icon_edit_mine</b_path> | 165 | <b_path>/panel_login/forgot_password_text</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> | 166 | <c_attribute></c_attribute> |
307 | <d_old> | 167 | <d_old> |
308 | (loading...) | 168 | Forgot your password? |
309 | </d_old> | 169 | </d_old> |
310 | <e_new>(loading...)</e_new> | 170 | <e_new>Forgot your name or password? |
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> | 171 | </e_new> |
331 | <f_translation> | 172 | <f_translation>Namen oder Kennwort vergessen? |
332 | HINWEIS: Beim Öffnen der Geräte-Einstellungen werden Sie vorübergehend vom Voice-Chat getrennt. | 173 | </f_translation> |
333 | </f_translation> | ||
334 | <f_old_trans> | 174 | <f_old_trans> |
335 | HINWEIS: Beim Öffnen der Geräte-Einstellungen oder der Voice-Chat-Einrichtung werden Sie vorübergehend vom Voice-Chat getrennt. | 175 | Kennwort vergessen? |
336 | </f_old_trans> | 176 | </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> | 177 | </string> |
347 | </strings> | 178 | </strings> |
diff --git a/linden/indra/newview/skins/xui/de/notify.xml b/linden/indra/newview/skins/xui/de/notify.xml index 62adbc1..f22acd9 100644 --- a/linden/indra/newview/skins/xui/de/notify.xml +++ b/linden/indra/newview/skins/xui/de/notify.xml | |||
@@ -918,6 +918,21 @@ Klicken Sie auf 'Akzeptieren', um dem Gespräch beizutreten, oder auf | |||
918 | Stummschalten | 918 | Stummschalten |
919 | </option> | 919 | </option> |
920 | </notify> | 920 | </notify> |
921 | <notify name="AutoUnmuteByIM"> | ||
922 | <message name="message"> | ||
923 | [FIRST] [LAST] hat eine Instant Message erhalten; die Stummschaltung wurde aufgehoben. | ||
924 | </message> | ||
925 | </notify> | ||
926 | <notify name="AutoUnmuteByMoney"> | ||
927 | <message name="message"> | ||
928 | [FIRST] [LAST] hat Geld erhalten; die Stummschaltung wurde aufgehoben. | ||
929 | </message> | ||
930 | </notify> | ||
931 | <notify name="AutoUnmuteByInventory"> | ||
932 | <message name="message"> | ||
933 | [FIRST] [LAST] wurde ein Inventarobjekt angeboten; die Stummschaltung wurde aufgehoben. | ||
934 | </message> | ||
935 | </notify> | ||
921 | <notify name="VoiceInviteGroup"> | 936 | <notify name="VoiceInviteGroup"> |
922 | <message name="message"> | 937 | <message name="message"> |
923 | [NAME] ist einem Voice-Chat mit der Gruppe [GROUP] beigetreten. | 938 | [NAME] ist einem Voice-Chat mit der Gruppe [GROUP] beigetreten. |
diff --git a/linden/indra/newview/skins/xui/de/panel_avatar_classified.xml b/linden/indra/newview/skins/xui/de/panel_avatar_classified.xml index 8ff4d0e..237fe27 100644 --- a/linden/indra/newview/skins/xui/de/panel_avatar_classified.xml +++ b/linden/indra/newview/skins/xui/de/panel_avatar_classified.xml | |||
@@ -8,7 +8,17 @@ | |||
8 | <button label="Teleportieren" name="classified_teleport_btn" /> | 8 | <button label="Teleportieren" name="classified_teleport_btn" /> |
9 | <button label="Karte" name="classified_map_btn" /> | 9 | <button label="Karte" name="classified_map_btn" /> |
10 | <combo_box label="" name="classified_category_combo" /> | 10 | <combo_box label="" name="classified_category_combo" /> |
11 | <check_box label="Ab 18" name="classified_mature_check" /> | 11 | <check_box label="Ab 18" name="classified_mature_check"> |
12 | <combo_item name="select_mature"> | ||
13 | - Jugendfreigabe wählen - | ||
14 | </combo_item> | ||
15 | <combo_item name="mature"> | ||
16 | Ab-18-Inhalt | ||
17 | </combo_item> | ||
18 | <combo_item name="not_mature"> | ||
19 | Jugendfreier Inhalt | ||
20 | </combo_item> | ||
21 | </check_box> | ||
12 | <text name="classified_info_text" | 22 | <text name="classified_info_text" |
13 | tool_tip="Je mehr Sie für die Anzeige bezahlen, desto weiter oben in der Liste erscheint sie."> | 23 | tool_tip="Je mehr Sie für die Anzeige bezahlen, desto weiter oben in der Liste erscheint sie."> |
14 | Anzeige: Noch nicht veröffentlicht | 24 | Anzeige: Noch nicht veröffentlicht |
diff --git a/linden/indra/newview/skins/xui/de/panel_classified.xml b/linden/indra/newview/skins/xui/de/panel_classified.xml index 35dd93f..acdcb13 100644 --- a/linden/indra/newview/skins/xui/de/panel_classified.xml +++ b/linden/indra/newview/skins/xui/de/panel_classified.xml | |||
@@ -8,7 +8,17 @@ | |||
8 | <button label="Teleportieren" name="classified_teleport_btn" /> | 8 | <button label="Teleportieren" name="classified_teleport_btn" /> |
9 | <button label="Auf Karte" name="classified_map_btn" /> | 9 | <button label="Auf Karte" name="classified_map_btn" /> |
10 | <button label="Profil" name="classified_profile_btn" /> | 10 | <button label="Profil" name="classified_profile_btn" /> |
11 | <check_box label="Ab 18" name="classified_mature_check" /> | 11 | <check_box label="Ab 18" name="classified_mature_check"> |
12 | <combo_item name="select_mature"> | ||
13 | - Jugendfreigabe wählen - | ||
14 | </combo_item> | ||
15 | <combo_item name="mature"> | ||
16 | Ab-18-Inhalt | ||
17 | </combo_item> | ||
18 | <combo_item name="not_mature"> | ||
19 | Jugendfreier Inhalt | ||
20 | </combo_item> | ||
21 | </check_box> | ||
12 | <combo_box label="" name="classified_category_combo" /> | 22 | <combo_box label="" name="classified_category_combo" /> |
13 | <button label="Aktualisieren" name="classified_update_btn" /> | 23 | <button label="Aktualisieren" name="classified_update_btn" /> |
14 | <string name="ad_placed_paid"> | 24 | <string name="ad_placed_paid"> |
diff --git a/linden/indra/newview/skins/xui/de/panel_group_general.xml b/linden/indra/newview/skins/xui/de/panel_group_general.xml index 14cfae1..0a32de2 100644 --- a/linden/indra/newview/skins/xui/de/panel_group_general.xml +++ b/linden/indra/newview/skins/xui/de/panel_group_general.xml | |||
@@ -67,6 +67,18 @@ Falls in den nächsten 48 Stunden niemand sonst dieser Gruppe beitritt, wird sie | |||
67 | tool_tip="Wenn 'Beitrittsgebühr' aktiviert ist, müssen neue Mitglieder diesen Betrag zahlen." /> | 67 | tool_tip="Wenn 'Beitrittsgebühr' aktiviert ist, müssen neue Mitglieder diesen Betrag zahlen." /> |
68 | <check_box label="Ab-18-Gruppe" name="mature" | 68 | <check_box label="Ab-18-Gruppe" name="mature" |
69 | tool_tip="Festlegen, ob die Informationen Ihrer Gruppe nicht jugendfrei sind." /> | 69 | tool_tip="Festlegen, ob die Informationen Ihrer Gruppe nicht jugendfrei sind." /> |
70 | <combo_box name="group_mature_check" | ||
71 | tool_tip="Festlegen, ob die Informationen Ihrer Gruppe nicht jugendfrei sind."> | ||
72 | <combo_item name="select_mature"> | ||
73 | - Jugendfreigabe wählen - | ||
74 | </combo_item> | ||
75 | <combo_item name="mature"> | ||
76 | Ab-18-Inhalt | ||
77 | </combo_item> | ||
78 | <combo_item name="not_mature"> | ||
79 | Jugendfreier Inhalt | ||
80 | </combo_item> | ||
81 | </combo_box> | ||
70 | <panel name="title_container"> | 82 | <panel name="title_container"> |
71 | <text name="active_title_label"> | 83 | <text name="active_title_label"> |
72 | Mein aktiver Titel | 84 | Mein aktiver Titel |
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 9a819eb..0e151de 100644 --- a/linden/indra/newview/skins/xui/de/panel_group_notices.xml +++ b/linden/indra/newview/skins/xui/de/panel_group_notices.xml | |||
@@ -16,9 +16,9 @@ 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 | 19 | Mitteilungen werden 14 Tage lang aufbewahrt. Klicken Sie auf eine Mitteilung, um sie anzuzeigen. |
20 | Sie auf eine Mitteilung, um sie anzuzeigen. Klicken Sie | 20 | Klicken Sie auf 'Aktualisieren', um neue Mitteilungen zu suchen. |
21 | auf 'Aktualisieren', um neue Mitteilungen zu suchen. | 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"> |
24 | <column label="" name="icon" /> | 24 | <column label="" name="icon" /> |
diff --git a/linden/indra/newview/skins/xui/de/panel_login.xml b/linden/indra/newview/skins/xui/de/panel_login.xml index c3d3d1b..ac08744 100644 --- a/linden/indra/newview/skins/xui/de/panel_login.xml +++ b/linden/indra/newview/skins/xui/de/panel_login.xml | |||
@@ -39,7 +39,7 @@ | |||
39 | [Viewer Channel Name] | 39 | [Viewer Channel Name] |
40 | </text> | 40 | </text> |
41 | <text name="forgot_password_text"> | 41 | <text name="forgot_password_text"> |
42 | Kennwort vergessen? | 42 | Namen oder Kennwort vergessen? |
43 | </text> | 43 | </text> |
44 | <text name="forgot_password_url"> | 44 | <text name="forgot_password_url"> |
45 | http://secondlife.com/account/request.php | 45 | http://secondlife.com/account/request.php |
diff --git a/linden/indra/newview/skins/xui/de/panel_preferences_graphics1.xml b/linden/indra/newview/skins/xui/de/panel_preferences_graphics1.xml index c251a50..bc40ec0 100644 --- a/linden/indra/newview/skins/xui/de/panel_preferences_graphics1.xml +++ b/linden/indra/newview/skins/xui/de/panel_preferences_graphics1.xml | |||
@@ -17,16 +17,34 @@ | |||
17 | <text_editor name="FullScreenInfo" width="480"> | 17 | <text_editor name="FullScreenInfo" width="480"> |
18 | Wenn deaktiviert, schaltet die Anzeige bei Anmeldung auf Vollbild um. | 18 | Wenn deaktiviert, schaltet die Anzeige bei Anmeldung auf Vollbild um. |
19 | </text_editor> | 19 | </text_editor> |
20 | <combo_box name="windowsize combo" left="115"> | 20 | <text name="WindowSizeLabel"> |
21 | Fenstergröße: | ||
22 | </text> | ||
23 | <combo_box left="115" name="windowsize combo"> | ||
24 | <combo_item name="640x480"> | ||
25 | 640x480 | ||
26 | </combo_item> | ||
27 | <combo_item name="800x600"> | ||
28 | 800x600 | ||
29 | </combo_item> | ||
30 | <combo_item name="720x480"> | ||
31 | 720x480 (NTSC) | ||
32 | </combo_item> | ||
33 | <combo_item name="768x576"> | ||
34 | 768x576 (PAL) | ||
35 | </combo_item> | ||
36 | <combo_item name="1024x768"> | ||
37 | 1024x768 | ||
38 | </combo_item> | ||
21 | </combo_box> | 39 | </combo_box> |
22 | <text name="DisplayResLabel" width="100"> | 40 | <text name="DisplayResLabel" width="100"> |
23 | Anzeigeauflösung: | 41 | Anzeigeauflösung: |
24 | </text> | 42 | </text> |
25 | <combo_box name="fullscreen combo" left="115" /> | 43 | <combo_box left="115" name="fullscreen combo" /> |
26 | <text name="AspectRatioLabel1" tool_tip="Breite/Höhe" width="100"> | 44 | <text name="AspectRatioLabel1" tool_tip="Breite/Höhe" width="100"> |
27 | Aspektverhältnis: | 45 | Aspektverhältnis: |
28 | </text> | 46 | </text> |
29 | <combo_box name="aspect_ratio" tool_tip="Breite/Höhe" left="115"> | 47 | <combo_box left="115" name="aspect_ratio" tool_tip="Breite/Höhe"> |
30 | <combo_item type="string" length="1" name="4:3(StandardCRT)"> | 48 | <combo_item type="string" length="1" name="4:3(StandardCRT)"> |
31 | 4:3 (Standard-CRT) | 49 | 4:3 (Standard-CRT) |
32 | </combo_item> | 50 | </combo_item> |
@@ -40,7 +58,7 @@ | |||
40 | 16:9 (Widescreen) | 58 | 16:9 (Widescreen) |
41 | </combo_item> | 59 | </combo_item> |
42 | </combo_box> | 60 | </combo_box> |
43 | <check_box label="Verhältnis automatisch erkennen" name="aspect_auto_detect" left="275" /> | 61 | <check_box label="Verhältnis automatisch erkennen" left="275" name="aspect_auto_detect" /> |
44 | <text type="string" length="1" name="UI Size:"> | 62 | <text type="string" length="1" name="UI Size:"> |
45 | UI-Größe: | 63 | UI-Größe: |
46 | </text> | 64 | </text> |
diff --git a/linden/indra/newview/skins/xui/de/panel_preferences_web.xml b/linden/indra/newview/skins/xui/de/panel_preferences_web.xml index af493e6..ce44ba6 100644 --- a/linden/indra/newview/skins/xui/de/panel_preferences_web.xml +++ b/linden/indra/newview/skins/xui/de/panel_preferences_web.xml | |||
@@ -1,10 +1,12 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="Web" name="web"> | 2 | <panel label="Web" name="web"> |
3 | <radio_group name="use_external_browser"> | 3 | <radio_group name="use_external_browser"> |
4 | <radio_item name="external" tool_tip="Externen Browser für Hilfe, Weblinks usw. verwenden. Im Vollbildmodus nicht empfohlen."> | 4 | <radio_item name="external" |
5 | tool_tip="Externen Browser für Hilfe, Weblinks usw. verwenden. Im Vollbildmodus nicht empfohlen."> | ||
5 | Externen Browser verwenden (Firefox, Safari, Internet Explorer) | 6 | Externen Browser verwenden (Firefox, Safari, Internet Explorer) |
6 | </radio_item> | 7 | </radio_item> |
7 | <radio_item name="internal"> | 8 | <radio_item name="internal" |
9 | tool_tip="Den integrierten Browser zur Suche im Internet verwenden. Der Browser wird als eigenständiges Fenster in Second Life geöffnet."> | ||
8 | Integrierten Browser verwenden | 10 | Integrierten Browser verwenden |
9 | </radio_item> | 11 | </radio_item> |
10 | </radio_group> | 12 | </radio_group> |
diff --git a/linden/indra/newview/skins/xui/de/panel_region_general.xml b/linden/indra/newview/skins/xui/de/panel_region_general.xml index b4357f0..ec4561f 100644 --- a/linden/indra/newview/skins/xui/de/panel_region_general.xml +++ b/linden/indra/newview/skins/xui/de/panel_region_general.xml | |||
@@ -6,6 +6,12 @@ | |||
6 | <text name="region_text"> | 6 | <text name="region_text"> |
7 | unbekannt | 7 | unbekannt |
8 | </text> | 8 | </text> |
9 | <text name="version_channel_text_lbl"> | ||
10 | Version: | ||
11 | </text> | ||
12 | <text name="version_channel_text"> | ||
13 | unbekannt | ||
14 | </text> | ||
9 | <check_box label="Terraformen blockieren" name="block_terraform_check" /> | 15 | <check_box label="Terraformen blockieren" name="block_terraform_check" /> |
10 | <button label="?" name="terraform_help" /> | 16 | <button label="?" name="terraform_help" /> |
11 | <check_box label="Fliegen blockieren" name="block_fly_check" /> | 17 | <check_box label="Fliegen blockieren" name="block_fly_check" /> |
diff --git a/linden/indra/newview/skins/xui/de/strings.xml b/linden/indra/newview/skins/xui/de/strings.xml new file mode 100644 index 0000000..be64d7f --- /dev/null +++ b/linden/indra/newview/skins/xui/de/strings.xml | |||
@@ -0,0 +1,390 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <strings name=""> | ||
3 | <string name="LoginInProgress"> | ||
4 | Anmeldevorgang gestartet. [APP_NAME] reagiert möglicherweise nicht. Bitte warten. | ||
5 | </string> | ||
6 | <string name="LoginAuthenticating"> | ||
7 | Authentifizierung | ||
8 | </string> | ||
9 | <string name="LoginMaintenance"> | ||
10 | Account wird aktualisiert... | ||
11 | </string> | ||
12 | <string name="LoginAttempt"> | ||
13 | Ein früherer Anmeldeversuch ist fehlgeschlagen. Anmeldung, Versuch [NUMBER] | ||
14 | </string> | ||
15 | <string name="LoginPrecaching"> | ||
16 | Welt wird geladen... | ||
17 | </string> | ||
18 | <string name="LoginInitializingBrowser"> | ||
19 | Integrierter Webbrowser wird initialisiert... | ||
20 | </string> | ||
21 | <string name="LoginVerifyingCache"> | ||
22 | Cache-Dateien werden überprüft (dauert 60-90 Sekunden)... | ||
23 | </string> | ||
24 | <string name="LoginProcessingResponse"> | ||
25 | Antwort wird verarbeitet... | ||
26 | </string> | ||
27 | <string name="LoginInitializingWorld"> | ||
28 | Welt wird initialisiert... | ||
29 | </string> | ||
30 | <string name="LoginDecodingImages"> | ||
31 | Bilder werden entpackt... | ||
32 | </string> | ||
33 | <string name="LoginInitializingQuicktime"> | ||
34 | QuickTime wird initialisiert... | ||
35 | </string> | ||
36 | <string name="LoginQuicktimeNotFound"> | ||
37 | QuickTime nicht gefunden - Initialisierung nicht möglich. | ||
38 | </string> | ||
39 | <string name="LoginQuicktimeOK"> | ||
40 | QuickTime wurde initialisiert. | ||
41 | </string> | ||
42 | <string name="LoginWaitingForRegionHandshake"> | ||
43 | Region-Handshake... | ||
44 | </string> | ||
45 | <string name="LoginConnectingToRegion"> | ||
46 | Region-Verbindung... | ||
47 | </string> | ||
48 | <string name="LoginDownloadingClothing"> | ||
49 | Kleidung wird geladen... | ||
50 | </string> | ||
51 | <string name="TooltipPerson"> | ||
52 | Person | ||
53 | </string> | ||
54 | <string name="TooltipNoName"> | ||
55 | (namenlos) | ||
56 | </string> | ||
57 | <string name="TooltipOwner"> | ||
58 | Eigentümer: | ||
59 | </string> | ||
60 | <string name="TooltipPublic"> | ||
61 | Öffentlich | ||
62 | </string> | ||
63 | <string name="TooltipIsGroup"> | ||
64 | (Gruppe) | ||
65 | </string> | ||
66 | <string name="TooltipFlagScript"> | ||
67 | Skript | ||
68 | </string> | ||
69 | <string name="TooltipFlagPhysics"> | ||
70 | Physik | ||
71 | </string> | ||
72 | <string name="TooltipFlagTouch"> | ||
73 | Berühren | ||
74 | </string> | ||
75 | <string name="TooltipFlagL$"> | ||
76 | L$ | ||
77 | </string> | ||
78 | <string name="TooltipFlagDropInventory"> | ||
79 | Inventar fallen lassen | ||
80 | </string> | ||
81 | <string name="TooltipFlagPhantom"> | ||
82 | Phantom | ||
83 | </string> | ||
84 | <string name="TooltipFlagTemporary"> | ||
85 | Temporär | ||
86 | </string> | ||
87 | <string name="TooltipFlagRightClickMenu"> | ||
88 | (Rechtsklick für Menü) | ||
89 | </string> | ||
90 | <string name="TooltipFreeToCopy"> | ||
91 | Kopieren möglich | ||
92 | </string> | ||
93 | <string name="TooltipForSaleL$"> | ||
94 | Zum Verkauf: [AMOUNT] L$ | ||
95 | </string> | ||
96 | <string name="TooltipForSaleMsg"> | ||
97 | Zum Verkauf: [MESSAGE] | ||
98 | </string> | ||
99 | <string name="TooltipFlagGroupBuild"> | ||
100 | Gruppenbau | ||
101 | </string> | ||
102 | <string name="TooltipFlagNoBuild"> | ||
103 | Bauen aus | ||
104 | </string> | ||
105 | <string name="TooltipFlagNoEdit"> | ||
106 | Gruppenbau | ||
107 | </string> | ||
108 | <string name="TooltipFlagNotSafe"> | ||
109 | Unsicher | ||
110 | </string> | ||
111 | <string name="TooltipFlagNoFly"> | ||
112 | Fliegen aus | ||
113 | </string> | ||
114 | <string name="TooltipFlagGroupScripts"> | ||
115 | Gruppenskripte | ||
116 | </string> | ||
117 | <string name="TooltipFlagNoScripts"> | ||
118 | Skripte aus | ||
119 | </string> | ||
120 | <string name="TooltipLand"> | ||
121 | Land: | ||
122 | </string> | ||
123 | <string name="RetrievingData"> | ||
124 | Laden... | ||
125 | </string> | ||
126 | <string name="LoadingData"> | ||
127 | Wird geladen... | ||
128 | </string> | ||
129 | <string name="AvatarNameNobody"> | ||
130 | (niemand) | ||
131 | </string> | ||
132 | <string name="AvatarNameWaiting"> | ||
133 | (wartet) | ||
134 | </string> | ||
135 | <string name="AvatarNameHippos"> | ||
136 | (hippos) | ||
137 | </string> | ||
138 | <string name="GroupNameNone"> | ||
139 | (keiner) | ||
140 | </string> | ||
141 | <string name="AssetErrorNone"> | ||
142 | Kein Fehler | ||
143 | </string> | ||
144 | <string name="AssetErrorRequestFailed"> | ||
145 | Asset-Anforderung: fehlgeschlagen | ||
146 | </string> | ||
147 | <string name="AssetErrorNonexistentFile"> | ||
148 | Asset-Anforderung: Datei existiert nicht | ||
149 | </string> | ||
150 | <string name="AssetErrorNotInDatabase"> | ||
151 | Asset-Anforderung: Asset in Datenbank nicht gefunden | ||
152 | </string> | ||
153 | <string name="AssetErrorEOF"> | ||
154 | Ende der Datei | ||
155 | </string> | ||
156 | <string name="AssetErrorCannotOpenFile"> | ||
157 | Datei kann nicht geöffnet werden | ||
158 | </string> | ||
159 | <string name="AssetErrorFileNotFound"> | ||
160 | Datei nicht gefunden | ||
161 | </string> | ||
162 | <string name="AssetErrorTCPTimeout"> | ||
163 | Zeitüberschreitung bei Dateiübertragung | ||
164 | </string> | ||
165 | <string name="AssetErrorCircuitGone"> | ||
166 | Verbindung verloren | ||
167 | </string> | ||
168 | <string name="AssetErrorUnknownStatus"> | ||
169 | Status unbekannt | ||
170 | </string> | ||
171 | <string name="AvatarEditingApparance"> | ||
172 | (Aussehen wird bearbeitet) | ||
173 | </string> | ||
174 | <string name="AvatarAway"> | ||
175 | Abwesend | ||
176 | </string> | ||
177 | <string name="AvatarBusy"> | ||
178 | Beschäftigt | ||
179 | </string> | ||
180 | <string name="AvatarMuted"> | ||
181 | Stummgeschaltet | ||
182 | </string> | ||
183 | <string name="anim_express_afraid"> | ||
184 | Ängstlich | ||
185 | </string> | ||
186 | <string name="anim_express_anger"> | ||
187 | Verärgert | ||
188 | </string> | ||
189 | <string name="anim_away"> | ||
190 | Abwesend | ||
191 | </string> | ||
192 | <string name="anim_backflip"> | ||
193 | Rückwärtssalto | ||
194 | </string> | ||
195 | <string name="anim_express_laugh"> | ||
196 | Lachkrampf | ||
197 | </string> | ||
198 | <string name="anim_express_toothsmile"> | ||
199 | Grinsen | ||
200 | </string> | ||
201 | <string name="anim_blowkiss"> | ||
202 | Kusshand | ||
203 | </string> | ||
204 | <string name="anim_express_bored"> | ||
205 | Gelangweilt | ||
206 | </string> | ||
207 | <string name="anim_bow"> | ||
208 | Verbeugen | ||
209 | </string> | ||
210 | <string name="anim_clap"> | ||
211 | Klatschen | ||
212 | </string> | ||
213 | <string name="anim_courtbow"> | ||
214 | Diener | ||
215 | </string> | ||
216 | <string name="anim_express_cry"> | ||
217 | Weinen | ||
218 | </string> | ||
219 | <string name="anim_dance1"> | ||
220 | Tanz 1 | ||
221 | </string> | ||
222 | <string name="anim_dance2"> | ||
223 | Tanz 2 | ||
224 | </string> | ||
225 | <string name="anim_dance3"> | ||
226 | Tanz 3 | ||
227 | </string> | ||
228 | <string name="anim_dance4"> | ||
229 | Tanz 4 | ||
230 | </string> | ||
231 | <string name="anim_dance5"> | ||
232 | Tanz 5 | ||
233 | </string> | ||
234 | <string name="anim_dance6"> | ||
235 | Tanz 6 | ||
236 | </string> | ||
237 | <string name="anim_dance7"> | ||
238 | Tanz 7 | ||
239 | </string> | ||
240 | <string name="anim_dance8"> | ||
241 | Tanz 8 | ||
242 | </string> | ||
243 | <string name="anim_express_disdain"> | ||
244 | Verachten | ||
245 | </string> | ||
246 | <string name="anim_drink"> | ||
247 | Trinken | ||
248 | </string> | ||
249 | <string name="anim_express_embarrased"> | ||
250 | Verlegen | ||
251 | </string> | ||
252 | <string name="anim_angry_fingerwag"> | ||
253 | Drohen | ||
254 | </string> | ||
255 | <string name="anim_fist_pump"> | ||
256 | Faust pumpen | ||
257 | </string> | ||
258 | <string name="anim_yoga_float"> | ||
259 | Yogaflieger | ||
260 | </string> | ||
261 | <string name="anim_express_frown"> | ||
262 | Stirnrunzeln | ||
263 | </string> | ||
264 | <string name="anim_impatient"> | ||
265 | Ungeduldig | ||
266 | </string> | ||
267 | <string name="anim_jumpforjoy"> | ||
268 | Freudensprung | ||
269 | </string> | ||
270 | <string name="anim_kissmybutt"> | ||
271 | LMA | ||
272 | </string> | ||
273 | <string name="anim_express_kiss"> | ||
274 | Küssen | ||
275 | </string> | ||
276 | <string name="anim_laugh_short"> | ||
277 | Lachen | ||
278 | </string> | ||
279 | <string name="anim_musclebeach"> | ||
280 | Posen | ||
281 | </string> | ||
282 | <string name="anim_no_unhappy"> | ||
283 | Nein (Bedauernd) | ||
284 | </string> | ||
285 | <string name="anim_no_head"> | ||
286 | Nein | ||
287 | </string> | ||
288 | <string name="anim_nyanya"> | ||
289 | Ällabätsch | ||
290 | </string> | ||
291 | <string name="anim_punch_onetwo"> | ||
292 | Eins-Zwei-Punch | ||
293 | </string> | ||
294 | <string name="anim_express_open_mouth"> | ||
295 | Mund offen | ||
296 | </string> | ||
297 | <string name="anim_peace"> | ||
298 | Friede | ||
299 | </string> | ||
300 | <string name="anim_point_you"> | ||
301 | Auf anderen zeigen | ||
302 | </string> | ||
303 | <string name="anim_point_me"> | ||
304 | Auf mich zeigen | ||
305 | </string> | ||
306 | <string name="anim_punch_l"> | ||
307 | Linker Haken | ||
308 | </string> | ||
309 | <string name="anim_punch_r"> | ||
310 | Rechter Haken | ||
311 | </string> | ||
312 | <string name="anim_rps_countdown"> | ||
313 | SSP zählen | ||
314 | </string> | ||
315 | <string name="anim_rps_paper"> | ||
316 | SSP Papier | ||
317 | </string> | ||
318 | <string name="anim_rps_rock"> | ||
319 | SSP Stein | ||
320 | </string> | ||
321 | <string name="anim_rps_scissors"> | ||
322 | SSP Schere | ||
323 | </string> | ||
324 | <string name="anim_express_repulsed"> | ||
325 | Angewidert | ||
326 | </string> | ||
327 | <string name="anim_kick_roundhouse_r"> | ||
328 | Rundkick | ||
329 | </string> | ||
330 | <string name="anim_express_sad"> | ||
331 | Traurig | ||
332 | </string> | ||
333 | <string name="anim_salute"> | ||
334 | Salutieren | ||
335 | </string> | ||
336 | <string name="anim_shout"> | ||
337 | Rufen | ||
338 | </string> | ||
339 | <string name="anim_express_shrug"> | ||
340 | Schulterzucken | ||
341 | </string> | ||
342 | <string name="anim_express_smile"> | ||
343 | Lächeln | ||
344 | </string> | ||
345 | <string name="anim_smoke_idle"> | ||
346 | Zigarette halten | ||
347 | </string> | ||
348 | <string name="anim_smoke_inhale"> | ||
349 | Rauchen | ||
350 | </string> | ||
351 | <string name="anim_smoke_throw_down"> | ||
352 | Zigarette wegwerfen | ||
353 | </string> | ||
354 | <string name="anim_express_surprise"> | ||
355 | Überraschung | ||
356 | </string> | ||
357 | <string name="anim_sword_strike_r"> | ||
358 | Schwerthieb | ||
359 | </string> | ||
360 | <string name="anim_angry_tantrum"> | ||
361 | Wutanfall | ||
362 | </string> | ||
363 | <string name="anim_express_tongue_out"> | ||
364 | Zunge rausstrecken | ||
365 | </string> | ||
366 | <string name="anim_hello"> | ||
367 | Winken | ||
368 | </string> | ||
369 | <string name="anim_whisper"> | ||
370 | Flüstern | ||
371 | </string> | ||
372 | <string name="anim_whistle"> | ||
373 | Pfeifen | ||
374 | </string> | ||
375 | <string name="anim_express_wink"> | ||
376 | Zwinkern | ||
377 | </string> | ||
378 | <string name="anim_wink_hollywood"> | ||
379 | Zwinkern (Hollywood) | ||
380 | </string> | ||
381 | <string name="anim_express_worry"> | ||
382 | Sorgenvoll | ||
383 | </string> | ||
384 | <string name="anim_yes_happy"> | ||
385 | Ja (Erfreut) | ||
386 | </string> | ||
387 | <string name="anim_yes_head"> | ||
388 | Ja | ||
389 | </string> | ||
390 | </strings> | ||
diff --git a/linden/indra/newview/skins/xui/en-us/alerts.xml b/linden/indra/newview/skins/xui/en-us/alerts.xml index e3d0dbf..08a316a 100644 --- a/linden/indra/newview/skins/xui/en-us/alerts.xml +++ b/linden/indra/newview/skins/xui/en-us/alerts.xml | |||
@@ -1077,7 +1077,7 @@ Your system contains a graphics card that is unknown to us at this time. | |||
1077 | This is often the case with new hardware we haven't had a chance to | 1077 | This is often the case with new hardware we haven't had a chance to |
1078 | test. Second Life will most likely run properly, but you may need to | 1078 | test. Second Life will most likely run properly, but you may need to |
1079 | adjust your graphics settings to something more appropriate. | 1079 | adjust your graphics settings to something more appropriate. |
1080 | (Edit->Preferences->Graphics). | 1080 | (Edit menu > Preferences > Graphics). |
1081 | </message> | 1081 | </message> |
1082 | <ignore name="ignore"> | 1082 | <ignore name="ignore"> |
1083 | Ignore unknown graphics card | 1083 | Ignore unknown graphics card |
diff --git a/linden/indra/newview/skins/xui/en-us/floater_critical.xml b/linden/indra/newview/skins/xui/en-us/floater_critical.xml index 126a8ac..5ce1f5c 100644 --- a/linden/indra/newview/skins/xui/en-us/floater_critical.xml +++ b/linden/indra/newview/skins/xui/en-us/floater_critical.xml | |||
@@ -2,19 +2,18 @@ | |||
2 | <floater can_close="false" can_drag_on_left="false" can_minimize="false" | 2 | <floater can_close="false" can_drag_on_left="false" can_minimize="false" |
3 | can_resize="false" height="500" min_height="100" min_width="100" | 3 | can_resize="false" height="500" min_height="100" min_width="100" |
4 | name="modal container" title="" width="600"> | 4 | name="modal container" title="" width="600"> |
5 | <button bottom="-484" font="SansSerif" halign="center" height="20" label="Continue" | 5 | <button bottom="15" font="SansSerif" halign="center" height="20" label="Continue" |
6 | label_selected="Continue" left="376" mouse_opaque="true" name="Continue" | 6 | label_selected="Continue" left="370" mouse_opaque="true" name="Continue" |
7 | width="100" /> | 7 | width="100" /> |
8 | <button bottom="-484" font="SansSerif" halign="center" height="20" label="Cancel" | 8 | <button bottom="15" font="SansSerif" halign="center" height="20" label="Cancel" |
9 | label_selected="Cancel" left_delta="108" mouse_opaque="true" name="Cancel" | 9 | label_selected="Cancel" left_delta="108" mouse_opaque="true" name="Cancel" |
10 | width="100" /> | 10 | width="100" /> |
11 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-31" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="15" left="16" mouse_opaque="true" name="tos_title" v_pad="0" width="568"> | 11 | <!-- No title text here because our "critical message" is usually the |
12 | Critical Message | 12 | community standards. JC --> |
13 | </text> | 13 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-35" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="20" left="20" mouse_opaque="true" name="tos_heading" v_pad="0" width="552"> |
14 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-77" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="30" left="32" mouse_opaque="true" name="tos_heading" v_pad="0" width="552"> | ||
15 | Please read the following message carefully. | 14 | Please read the following message carefully. |
16 | </text> | 15 | </text> |
17 | <text_editor bottom="-376" embedded_items="false" follows="left|top" font="SansSerif" height="283" left="16" max_length="65536" mouse_opaque="true" text_readonly_color="255,255,255,255" bg_readonly_color="0, 30, 80, 200" name="tos_text" width="568" word_wrap="true"> | 16 | <text_editor bottom="45" embedded_items="false" follows="left|top" font="SansSerif" left="20" max_length="65536" mouse_opaque="true" text_readonly_color="255,255,255,255" bg_readonly_color="0, 30, 80, 200" name="tos_text" right="-20" top="-45" word_wrap="true"> |
18 | TOS_TEXT | 17 | TOS_TEXT |
19 | </text_editor> | 18 | </text_editor> |
20 | </floater> \ No newline at end of file | 19 | </floater> \ No newline at end of file |
diff --git a/linden/indra/newview/skins/xui/en-us/floater_directory.xml b/linden/indra/newview/skins/xui/en-us/floater_directory.xml index 43f255c..dd7520c 100644 --- a/linden/indra/newview/skins/xui/en-us/floater_directory.xml +++ b/linden/indra/newview/skins/xui/en-us/floater_directory.xml | |||
@@ -385,71 +385,94 @@ To buy direct, visit the land and click on the place name in the title bar. | |||
385 | font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4" | 385 | font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4" |
386 | mouse_opaque="true" name="result_text" v_pad="0" width="328" /> | 386 | mouse_opaque="true" name="result_text" v_pad="0" width="328" /> |
387 | </panel> | 387 | </panel> |
388 | <panel border="true" bottom="-549" follows="left|top|right|bottom" height="533" | 388 | <panel border="true" bottom="-549" follows="left|top|right|bottom" height="533" |
389 | label="Places" left="1" mouse_opaque="false" | 389 | label="Places" left="1" mouse_opaque="false" name="places_panel" |
390 | name="places_panel" | ||
391 | width="778"> | 390 | width="778"> |
392 | <string name="searching_text">Searching...</string> | 391 | <string name="searching_text"> |
393 | <string name="not_found_text">None Found.</string> | 392 | Searching... |
394 | <button bottom="-30" follows="top|left" font="SansSerifSmall" height="20" | 393 | </string> |
395 | label="Back" | 394 | <string name="not_found_text"> |
396 | left="10" | 395 | None Found. |
397 | name="back_btn" width="70" /> | 396 | </string> |
398 | <button bottom_delta="0" follows="top|left" font="SansSerifSmall" height="20" | 397 | <button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" |
399 | label="Forward" left_delta="75" | 398 | height="20" label="Next >" label_selected="Next >" |
400 | name="forward_btn" width="70" /> | 399 | mouse_opaque="true" name="Next >" right="344" width="80" /> |
401 | <line_editor bevel_style="in" | 400 | <button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center" |
402 | border_style="line" | 401 | height="20" label="< Prev" label_selected="< Prev" |
403 | border_thickness="1" | 402 | mouse_opaque="true" name="< Prev" right="258" width="80" /> |
404 | bottom_delta="0" | 403 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
405 | enabled="true" | 404 | bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif" |
406 | follows="top|left|right" | 405 | h_pad="0" halign="left" height="16" left="4" mouse_opaque="true" |
407 | font="SansSerif" | 406 | name="find" v_pad="0" width="50"> |
408 | handle_edit_keys_directly="false" | 407 | Find: |
409 | commit_on_focus_lost="false" | 408 | </text> |
410 | height="20" | 409 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24" |
411 | hidden="false" | 410 | follows="left|top" font="SansSerif" height="18" left_delta="38" |
412 | label="Search" | 411 | max_length="63" mouse_opaque="true" name="name" width="128" /> |
413 | left_delta="80" | 412 | <check_box bottom_delta="-18" control_name="ShowMatureSims" follows="left|top" |
414 | width="180" | ||
415 | max_length="254" | ||
416 | mouse_opaque="true" | ||
417 | name="search_editor" | ||
418 | select_all_on_focus_received="false" | ||
419 | select_on_focus="false" | ||
420 | tab_group="1" | ||
421 | tool_tip="Search Second Life" /> | ||
422 | <button follows="top|right" font="SansSerif" height="20" | ||
423 | label="Search" | ||
424 | left_delta="185" | ||
425 | bottom_delta="0" | ||
426 | name="search_btn" width="70" /> | ||
427 | <check_box bottom_delta="0" | ||
428 | control_name="ShowMatureFindAll" follows="right|top" | ||
429 | font="SansSerifSmall" height="16" initial_value="false" | 413 | font="SansSerifSmall" height="16" initial_value="false" |
430 | label="Include Mature content" | 414 | label="Include parcels with Mature content" left_delta="0" |
431 | left_delta="133" | 415 | mouse_opaque="true" name="incmature" width="204" /> |
432 | name="mature_check" | 416 | <combo_box allow_text_entry="false" bottom="-24" follows="left|top" height="18" left="182" |
433 | width="156" /> | 417 | max_chars="20" mouse_opaque="true" name="Category" width="128"> |
434 | <web_browser name="places_browser" | 418 | <combo_item name="AnyCategory" value="any"> |
435 | bottom="25" | 419 | Any Category |
436 | follows="top|left|bottom|right" | 420 | </combo_item> |
437 | font="SansSerifSmall" | 421 | <combo_item name="LindenLocation" value="linden"> |
438 | left="10" | 422 | Linden Location |
439 | right="-10" | 423 | </combo_item> |
440 | top="-40" /> | 424 | <combo_item name="Adult" value="adult"> |
441 | <text bottom="5" | 425 | Adult |
442 | follows="bottom|left" | 426 | </combo_item> |
443 | halign="left" | 427 | <combo_item name="Arts&Culture" value="arts"> |
444 | left="10" | 428 | Arts & Culture |
445 | width="150" | 429 | </combo_item> |
446 | name="status_text" | 430 | <combo_item name="Business" value="store"> |
447 | height="16" /> | 431 | Business |
448 | <string name="loading_text">Loading...</string> | 432 | </combo_item> |
449 | <string name="done_text">Done</string> | 433 | <combo_item name="Educational" value="educational"> |
450 | <string name="redirect_404_url">http://secondlife.com/app/search/notfound.html</string> | 434 | Educational |
451 | <string name="default_search_page">"http://secondlife.com/app/search/index_places.php?"</string> | 435 | </combo_item> |
452 | </panel> | 436 | <combo_item name="Gaming" value="game"> |
437 | Gaming | ||
438 | </combo_item> | ||
439 | <combo_item name="Hangout" value="gather"> | ||
440 | Hangout | ||
441 | </combo_item> | ||
442 | <combo_item name="NewcomerFriendly" value="newcomer"> | ||
443 | Newcomer Friendly | ||
444 | </combo_item> | ||
445 | <combo_item name="Parks&Nature" value="park"> | ||
446 | Parks & Nature | ||
447 | </combo_item> | ||
448 | <combo_item name="Residential" value="home"> | ||
449 | Residential | ||
450 | </combo_item> | ||
451 | <combo_item name="Shopping" value="shopping"> | ||
452 | Shopping | ||
453 | </combo_item> | ||
454 | <combo_item name="Other" value="other"> | ||
455 | Other | ||
456 | </combo_item> | ||
457 | </combo_box> | ||
458 | <button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20" | ||
459 | label="Search" label_selected="Search" left_delta="136" mouse_opaque="true" | ||
460 | name="Search" width="70" /> | ||
461 | <scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true" | ||
462 | draw_heading="true" fg_disable_color="1, 1, 1, 1" | ||
463 | fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" | ||
464 | follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true" | ||
465 | multi_select="false" name="results" search_column="2" width="339"> | ||
466 | <column label="" name="icon" width="24" /> | ||
467 | <column label="" name="type" width="-1" /> | ||
468 | <column dynamicwidth="true" label="Name" name="name" /> | ||
469 | <column label="Traffic" name="dwell" width="75" /> | ||
470 | </scroll_list> | ||
471 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | ||
472 | bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom" | ||
473 | font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4" | ||
474 | mouse_opaque="true" name="result_text" v_pad="0" width="328" /> | ||
475 | </panel> | ||
453 | <panel border="true" bottom="-549" follows="left|top|right|bottom" height="533" | 476 | <panel border="true" bottom="-549" follows="left|top|right|bottom" height="533" |
454 | label="People" left="1" mouse_opaque="false" name="people_panel" | 477 | label="People" left="1" mouse_opaque="false" name="people_panel" |
455 | width="778"> | 478 | width="778"> |
diff --git a/linden/indra/newview/skins/xui/en-us/floater_instant_message_group.xml b/linden/indra/newview/skins/xui/en-us/floater_instant_message_group.xml index 9ccfedb..6606980 100644 --- a/linden/indra/newview/skins/xui/en-us/floater_instant_message_group.xml +++ b/linden/indra/newview/skins/xui/en-us/floater_instant_message_group.xml | |||
@@ -72,7 +72,7 @@ | |||
72 | select_all_on_focus_received="false" select_on_focus="false" tab_group="1" | 72 | select_all_on_focus_received="false" select_on_focus="false" tab_group="1" |
73 | width="106" /> | 73 | width="106" /> |
74 | <button bottom="7" enabled="true" follows="right|bottom" font="SansSerif" | 74 | <button bottom="7" enabled="true" follows="right|bottom" font="SansSerif" |
75 | halign="right" height="20" label="Send" left="116" mouse_opaque="true" | 75 | halign="center" height="20" label="Send" left="116" mouse_opaque="true" |
76 | name="send_btn" scale_image="true" width="60" /> | 76 | name="send_btn" scale_image="true" width="60" /> |
77 | </layout_panel> | 77 | </layout_panel> |
78 | <layout_panel auto_resize="false" bottom="0" can_resize="true" | 78 | <layout_panel auto_resize="false" bottom="0" can_resize="true" |
diff --git a/linden/indra/newview/skins/xui/en-us/floater_sell_land.xml b/linden/indra/newview/skins/xui/en-us/floater_sell_land.xml index c549e29..a5d25a4 100644 --- a/linden/indra/newview/skins/xui/en-us/floater_sell_land.xml +++ b/linden/indra/newview/skins/xui/en-us/floater_sell_land.xml | |||
@@ -2,9 +2,9 @@ | |||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="false" | 2 | <floater can_close="true" can_drag_on_left="false" can_minimize="false" |
3 | can_resize="false" height="485" min_height="485" min_width="450" | 3 | can_resize="false" height="485" min_height="485" min_width="450" |
4 | name="sell land" title="Sell Land" width="450"> | 4 | name="sell land" title="Sell Land" width="450"> |
5 | <texture_picker bottom_delta="-155" enabled="false" follows="top|left" height="135" left="244" | 5 | <texture_picker bottom_delta="-175" enabled="false" follows="top|left" height="135" left="244" |
6 | name="info_image" right="424" width="180" /> | 6 | name="info_image" right="424" width="180" /> |
7 | <text bottom_delta="119" follows="top|left" font="SansSerifSmall" left="16" | 7 | <text bottom_delta="144" follows="top|left" font="SansSerifSmall" left="16" |
8 | name="info_parcel_label" width="48"> | 8 | name="info_parcel_label" width="48"> |
9 | Parcel: | 9 | Parcel: |
10 | </text> | 10 | </text> |
@@ -20,11 +20,11 @@ | |||
20 | name="info_size" right="-20" > | 20 | name="info_size" right="-20" > |
21 | [AREA] sq. m. | 21 | [AREA] sq. m. |
22 | </text> | 22 | </text> |
23 | <text bottom_delta="-64" follows="top|left" font="SansSerifHuge" height="24" | 23 | <text bottom_delta="-94" follows="top|left" font="SansSerifHuge" height="24" |
24 | left="16" name="info_action" text_color="white" width="200"> | 24 | left="16" name="info_action" text_color="white" width="200"> |
25 | To sell this parcel: | 25 | To sell this parcel: |
26 | </text> | 26 | </text> |
27 | <icon bottom_delta="-96" follows="top|left" height="64" image_name="badge_note.j2c" | 27 | <icon bottom_delta="-66" follows="top|left" height="64" image_name="badge_note.j2c" |
28 | left="0" name="step_price" width="64" /> | 28 | left="0" name="step_price" width="64" /> |
29 | <text bottom_delta="38" follows="top|left" height="16" left="72" name="price_label" | 29 | <text bottom_delta="38" follows="top|left" height="16" left="72" name="price_label" |
30 | right="-20" font="SansSerifBig" > | 30 | right="-20" font="SansSerifBig" > |
diff --git a/linden/indra/newview/skins/xui/en-us/panel_region_estate.xml b/linden/indra/newview/skins/xui/en-us/panel_region_estate.xml index 393ce42..fa172aa 100644 --- a/linden/indra/newview/skins/xui/en-us/panel_region_estate.xml +++ b/linden/indra/newview/skins/xui/en-us/panel_region_estate.xml | |||
@@ -92,7 +92,7 @@ regions in the estate. | |||
92 | <button bottom_delta="3" follows="left|top" font="SansSerifSmall" height="18" label="?" | 92 | <button bottom_delta="3" follows="left|top" font="SansSerifSmall" height="18" label="?" |
93 | name="estate_manager_help" right="470" width="18" /> | 93 | name="estate_manager_help" right="470" width="18" /> |
94 | <view_border bevel_style="none" border_thickness="1" bottom_delta="-60" follows="top|left" | 94 | <view_border bevel_style="none" border_thickness="1" bottom_delta="-60" follows="top|left" |
95 | right="470" width="200" /> | 95 | height="60" right="470" width="200" /> |
96 | <name_list bottom_delta="0" follows="left|top" height="60" left_delta="0" multi_select="true" | 96 | <name_list bottom_delta="0" follows="left|top" height="60" left_delta="0" multi_select="true" |
97 | name="estate_manager_name_list" width="200" /> | 97 | name="estate_manager_name_list" width="200" /> |
98 | <button bottom_delta="-26" enabled="true" follows="left|top" height="20" | 98 | <button bottom_delta="-26" enabled="true" follows="left|top" height="20" |
diff --git a/linden/indra/newview/skins/xui/ja/alerts.xml b/linden/indra/newview/skins/xui/ja/alerts.xml index 4fea2a8..f010bc3 100644 --- a/linden/indra/newview/skins/xui/ja/alerts.xml +++ b/linden/indra/newview/skins/xui/ja/alerts.xml | |||
@@ -751,6 +751,9 @@ Studio exhibitのウェブ・ページで確認してください。 | |||
751 | 必須動作環境の条件 | 751 | 必須動作環境の条件 |
752 | [_URL] にアクセスして、さらに詳しい情報をご覧になりますか? | 752 | [_URL] にアクセスして、さらに詳しい情報をご覧になりますか? |
753 | </message> | 753 | </message> |
754 | <ignore name="ignore"> | ||
755 | サポート外のハードウェアを無視する | ||
756 | </ignore> | ||
754 | <option name="Yes"> | 757 | <option name="Yes"> |
755 | はい | 758 | はい |
756 | </option> | 759 | </option> |
@@ -783,6 +786,16 @@ Studio exhibitのウェブ・ページで確認してください。 | |||
783 | 510 | 786 | 510 |
784 | </message> | 787 | </message> |
785 | </alert> | 788 | </alert> |
789 | <alert name="UnknownGPU"> | ||
790 | <message name="message"> | ||
791 | お使いのシステムには、現時点では不明なグラフィック・カードが搭載されています。 | ||
792 | これは、当社による動作テストが行われていない新しいハードウェアが使用されている場合がほとんどです。 Second Lifeはほぼ間違いなく正常に動作しますが、必要に応じたグラフィック設定の調整が必要になる場合があります。 | ||
793 | ([編集]>[環境設定]>[グラフィック])。 | ||
794 | </message> | ||
795 | <ignore name="ignore"> | ||
796 | 不明なグラフィック・カードを無視する | ||
797 | </ignore> | ||
798 | </alert> | ||
786 | <alert name="DisplaySettingsNoShaders"> | 799 | <alert name="DisplaySettingsNoShaders"> |
787 | <message name="message"> | 800 | <message name="message"> |
788 | [SECOND_LIFE] は、グラフィック・ドライバの初期化中にクラッシュしました。 | 801 | [SECOND_LIFE] は、グラフィック・ドライバの初期化中にクラッシュしました。 |
@@ -1473,6 +1486,34 @@ www.secondlife.comに戻って、新規アカウントの作成を行います | |||
1473 | 不動産リストの追加に関する問題。1つ以上の不動産で、リストが満杯になっています。 | 1486 | 不動産リストの追加に関する問題。1つ以上の不動産で、リストが満杯になっています。 |
1474 | </message> | 1487 | </message> |
1475 | </alert> | 1488 | </alert> |
1489 | <alert name="SetClassifiedMature"> | ||
1490 | <message name="message"> | ||
1491 | このクラシファイド広告には、成人向けコンテンツが含まれていますか? | ||
1492 | </message> | ||
1493 | <option name="Mature"> | ||
1494 | はい | ||
1495 | </option> | ||
1496 | <option name="Not Mature"> | ||
1497 | いいえ | ||
1498 | </option> | ||
1499 | <option name="Cancel"> | ||
1500 | キャンセル | ||
1501 | </option> | ||
1502 | </alert> | ||
1503 | <alert name="SetGroupMature"> | ||
1504 | <message name="message"> | ||
1505 | このグループには、成人向けコンテンツが含まれていますか? | ||
1506 | </message> | ||
1507 | <option name="Mature"> | ||
1508 | はい | ||
1509 | </option> | ||
1510 | <option name="Not Mature"> | ||
1511 | いいえ | ||
1512 | </option> | ||
1513 | <option name="Cancel"> | ||
1514 | キャンセル | ||
1515 | </option> | ||
1516 | </alert> | ||
1476 | <alert name="HelpRegionSearch" title="検索で表示しない"> | 1517 | <alert name="HelpRegionSearch" title="検索で表示しない"> |
1477 | <message name="message"> | 1518 | <message name="message"> |
1478 | このボックスをチェックすると、区画のオーナーは、自分の区画が検索結果にリストされることを阻止できます。 | 1519 | このボックスをチェックすると、区画のオーナーは、自分の区画が検索結果にリストされることを阻止できます。 |
@@ -1592,8 +1633,7 @@ www.secondlife.comに戻って、新規アカウントの作成を行います | |||
1592 | </alert> | 1633 | </alert> |
1593 | <alert name="NoItems"> | 1634 | <alert name="NoItems"> |
1594 | <message name="message"> | 1635 | <message name="message"> |
1595 | 選択したアイテムを譲渡できる権限 | 1636 | 選択したアイテムを譲渡できる権限がありません。 |
1596 | がありません。 | ||
1597 | </message> | 1637 | </message> |
1598 | </alert> | 1638 | </alert> |
1599 | <alert name="CannotCopyCountItems"> | 1639 | <alert name="CannotCopyCountItems"> |
@@ -2767,10 +2807,12 @@ L$は贈与されません。 | |||
2767 | </alert> | 2807 | </alert> |
2768 | <alert name="ClothingLoading"> | 2808 | <alert name="ClothingLoading"> |
2769 | <message name="message"> | 2809 | <message name="message"> |
2770 | あなたの服をダウンロード中です。 | 2810 | あなたの服を、ダウンロード中です。 |
2771 | 通常どおりに世界を使え、他のユーザーもあなたを | 2811 | 通常どおりに[SECOND_LIFE]を使え、他のユーザーもあなたを正常に見ることができます。 |
2772 | 正常に見ることができます。 | ||
2773 | </message> | 2812 | </message> |
2813 | <ignore name="ignore"> | ||
2814 | 服のダウンロードに長い時間がかかる場合 | ||
2815 | </ignore> | ||
2774 | </alert> | 2816 | </alert> |
2775 | <alert name="FirstRun"> | 2817 | <alert name="FirstRun"> |
2776 | <message name="message"> | 2818 | <message name="message"> |
@@ -4639,25 +4681,25 @@ Linden Lab | |||
4639 | </alert> | 4681 | </alert> |
4640 | <alert name="GraphicsPreferencesHelp"> | 4682 | <alert name="GraphicsPreferencesHelp"> |
4641 | <message name="message"> | 4683 | <message name="message"> |
4642 | このパネルはウィンドウのサイズと解像度、およびクライアントのグラフィックの品質を制御します。 グラフィックの環境設定のインタフェースでは、次の 4 つの中からグラフィック・レベルを選択できます。 低、中、高、超高。 [カスタム]チェックボックをクリックし、次の設定を操作することで、グラフィックスの設定をカスタマイズすることができます。 | 4684 | このパネルはウィンドウのサイズと解像度、およびクライアントのグラフィックの品質を制御します。 [環境設定]>[グラフィック]のインタフェースでは、次の 4 つの中からグラフィック・レベルを選択できます。低、中、高、超高。 また、[カスタム]チェックボックスをクリックし、次の設定を操作することで、グラフィックスの設定をカスタマイズすることもできます。 |
4643 | 4685 | ||
4644 | シェーダー: ピクセル・シェーダーのさまざまな種類を有効または無効にします。 | 4686 | シェーダー:ピクセル・シェーダーのさまざまな種類を有効または無効にします。 |
4645 | 4687 | ||
4646 | 反射詳細: 水が反射するオブジェクトの種類を設定します。 | 4688 | 反射詳細:水が反射するオブジェクトの種類を設定します。 |
4647 | 4689 | ||
4648 | アバター・レンダリング: クライアントによるアバターのレンダリング方法に影響するオプションを設定します。 | 4690 | アバター・レンダリング:クライアントによるアバターのレンダリング方法に影響するオプションを設定します。 |
4649 | 4691 | ||
4650 | 描画距離: あなたの視点から視界のどのくらいの距離まで、オブジェクトがレンダリングされるかに影響します。 | 4692 | 描画距離:あなたの視点から視界のどのくらいの距離まで、オブジェクトがレンダリングされるかに影響します。 |
4651 | 4693 | ||
4652 | 最大パーティクル数: 画面に一度に見ることができるパーティクルの最大数を設定します。 | 4694 | 最大パーティクル数:画面に一度に見ることができるパーティクルの最大数を設定します。 |
4653 | 4695 | ||
4654 | ポストプロセス品質: グロー効果(輝き)がレンダリングされる際の解像度を設定します。 | 4696 | ポストプロセス品質:グロー効果(輝き)がレンダリングされる際の解像度を設定します。 |
4655 | 4697 | ||
4656 | メッシュ詳細: 特定のオブジェクトのレンダリング時の細部表現を設定します。 | 4698 | メッシュ詳細: 特定のオブジェクトのレンダリング時の細部表現、または三角形の数を設定します。 値を大きくするほどレンダリングに時間がかかりますが、オブジェクトがより詳細に表示されます。 |
4657 | 4699 | ||
4658 | ライティング詳細: レンダリングする光源の種類を選択します。 | 4700 | ライティング詳細:レンダリングする光源の種類を選択します。 |
4659 | 4701 | ||
4660 | 地形詳細: 地形の細部表現を設定します。 | 4702 | 地形詳細: 地形クスャ細部表現を設定します。 |
4661 | </message> | 4703 | </message> |
4662 | </alert> | 4704 | </alert> |
4663 | <alert name="WLSavePresetAlert"> | 4705 | <alert name="WLSavePresetAlert"> |
@@ -5086,4 +5128,9 @@ Second Lifeのウェブサイトにアクセスして、設定しますか? | |||
5086 | いいえ | 5128 | いいえ |
5087 | </option> | 5129 | </option> |
5088 | </alert> | 5130 | </alert> |
5131 | <alert name="MissingString"> | ||
5132 | <message name="message"> | ||
5133 | 文字列[STRING_NAME]がstrings.xmlに含まれていません | ||
5134 | </message> | ||
5135 | </alert> | ||
5089 | </alerts> | 5136 | </alerts> |
diff --git a/linden/indra/newview/skins/xui/ja/floater_directory.xml b/linden/indra/newview/skins/xui/ja/floater_directory.xml index 81b533b..0090ceb 100644 --- a/linden/indra/newview/skins/xui/ja/floater_directory.xml +++ b/linden/indra/newview/skins/xui/ja/floater_directory.xml | |||
@@ -229,6 +229,22 @@ | |||
229 | <column label="トラフィック" name="dwell" /> | 229 | <column label="トラフィック" name="dwell" /> |
230 | </scroll_list> | 230 | </scroll_list> |
231 | </panel> | 231 | </panel> |
232 | <panel label="ショーケース" name="showcase_panel"> | ||
233 | <string name="searching_text"> | ||
234 | 検索中... | ||
235 | </string> | ||
236 | <string name="not_found_text"> | ||
237 | 何も見つかりませんでした。 | ||
238 | </string> | ||
239 | <button label="戻る" name="back_btn" /> | ||
240 | <button label="転送" name="forward_btn" /> | ||
241 | <string name="loading_text"> | ||
242 | ロード中... | ||
243 | </string> | ||
244 | <string name="done_text"> | ||
245 | 完了 | ||
246 | </string> | ||
247 | </panel> | ||
232 | <panel label="土地の販売" name="land_sales_panel"> | 248 | <panel label="土地の販売" name="land_sales_panel"> |
233 | <string name="searching_text"> | 249 | <string name="searching_text"> |
234 | 検索中... | 250 | 検索中... |
@@ -286,7 +302,7 @@ | |||
286 | 検索中... | 302 | 検索中... |
287 | </string> | 303 | </string> |
288 | <string name="not_found_text"> | 304 | <string name="not_found_text"> |
289 | 何も見つかりませんでした | 305 | 何も見つかりませんでした。 |
290 | </string> | 306 | </string> |
291 | <button label="<以前" label_selected="<以前" name="< Prev" /> | 307 | <button label="<以前" label_selected="<以前" name="< Prev" /> |
292 | <button label="次へ>" label_selected="次へ>" name="Next >" /> | 308 | <button label="次へ>" label_selected="次へ>" name="Next >" /> |
@@ -353,7 +369,7 @@ | |||
353 | <button label="<以前" label_selected="<以前" name="< Prev" /> | 369 | <button label="<以前" label_selected="<以前" name="< Prev" /> |
354 | <button label="次へ>" label_selected="次へ>" name="Next >" /> | 370 | <button label="次へ>" label_selected="次へ>" name="Next >" /> |
355 | <text name="find"> | 371 | <text name="find"> |
356 | 検索: | 372 | 検索: |
357 | </text> | 373 | </text> |
358 | <button label="検索" label_selected="検索" name="Search" /> | 374 | <button label="検索" label_selected="検索" name="Search" /> |
359 | <scroll_list name="results"> | 375 | <scroll_list name="results"> |
@@ -367,7 +383,7 @@ | |||
367 | 検索中... | 383 | 検索中... |
368 | </string> | 384 | </string> |
369 | <string name="not_found_text"> | 385 | <string name="not_found_text"> |
370 | 何も見つかりませんでした | 386 | 何も見つかりませんでした。 |
371 | </string> | 387 | </string> |
372 | <button label="<以前" label_selected="<以前" name="< Prev" /> | 388 | <button label="<以前" label_selected="<以前" name="< Prev" /> |
373 | <button label="次へ>" label_selected="次へ>" name="Next >" /> | 389 | <button label="次へ>" label_selected="次へ>" name="Next >" /> |
@@ -383,6 +399,17 @@ | |||
383 | <column label="メンバー" name="members" /> | 399 | <column label="メンバー" name="members" /> |
384 | <column label="" name="score" /> | 400 | <column label="" name="score" /> |
385 | </scroll_list> | 401 | </scroll_list> |
402 | <button label="戻る" name="back_btn" /> | ||
403 | <button label="転送" name="forward_btn" /> | ||
404 | <line_editor label="検索" name="search_editor" tool_tip="Second Lifeを検索" /> | ||
405 | <button label="検索" name="search_btn" /> | ||
406 | <check_box label="成人向けコンテンツを含める" name="mature_check" /> | ||
407 | <string name="loading_text"> | ||
408 | ロード中... | ||
409 | </string> | ||
410 | <string name="done_text"> | ||
411 | 完了 | ||
412 | </string> | ||
386 | </panel> | 413 | </panel> |
387 | <panel label="全(旧)" name="find_all_old_panel"> | 414 | <panel label="全(旧)" name="find_all_old_panel"> |
388 | <string name="searching_text"> | 415 | <string name="searching_text"> |
diff --git a/linden/indra/newview/skins/xui/ja/floater_im.xml b/linden/indra/newview/skins/xui/ja/floater_im.xml index a89916d..7761f9d 100644 --- a/linden/indra/newview/skins/xui/ja/floater_im.xml +++ b/linden/indra/newview/skins/xui/ja/floater_im.xml | |||
@@ -6,6 +6,9 @@ | |||
6 | <text name="offline_message"> | 6 | <text name="offline_message"> |
7 | [FIRST] [LAST]はオフラインです。 | 7 | [FIRST] [LAST]はオフラインです。 |
8 | </text> | 8 | </text> |
9 | <string name="muted_message"> | ||
10 | [FIRST] [LAST]はミュートされています。 | ||
11 | </string> | ||
9 | <text name="generic_request_error"> | 12 | <text name="generic_request_error"> |
10 | 要求中にエラーが発生しました。後でもう一度試してください。 | 13 | 要求中にエラーが発生しました。後でもう一度試してください。 |
11 | </text> | 14 | </text> |
diff --git a/linden/indra/newview/skins/xui/ja/floater_script_debug.xml b/linden/indra/newview/skins/xui/ja/floater_script_debug.xml index 0c53d05..dd934e3 100644 --- a/linden/indra/newview/skins/xui/ja/floater_script_debug.xml +++ b/linden/indra/newview/skins/xui/ja/floater_script_debug.xml | |||
@@ -1,5 +1,5 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <multi_floater name="script debug floater" title="スクリプトラー/警告"> | 2 | <multi_floater name="script debug floater" title="スクリプト警告/エラー"> |
3 | <tab_container name="Preview Tabs"> | 3 | <tab_container name="Preview Tabs"> |
4 | <floater label="スクリプト" name="all_scripts" title="[All scripts]" /> | 4 | <floater label="スクリプト" name="all_scripts" title="[All scripts]" /> |
5 | </tab_container> | 5 | </tab_container> |
diff --git a/linden/indra/newview/skins/xui/ja/floater_world_map.xml b/linden/indra/newview/skins/xui/ja/floater_world_map.xml index 7138dd9..f755964 100644 --- a/linden/indra/newview/skins/xui/ja/floater_world_map.xml +++ b/linden/indra/newview/skins/xui/ja/floater_world_map.xml | |||
@@ -38,10 +38,10 @@ | |||
38 | 人気 | 38 | 人気 |
39 | </text> | 39 | </text> |
40 | <check_box label=" " name="popular_chk" /> | 40 | <check_box label=" " name="popular_chk" /> |
41 | <text name="land_for_sale_label2" left_delta="15"> | 41 | <text left_delta="15" name="land_for_sale_label2"> |
42 | 売出し中の土地 | 42 | 売出し中の土地 |
43 | </text> | 43 | </text> |
44 | <check_box label=" " name="land_for_sale_chk" left_delta="85"/> | 44 | <check_box label=" " left_delta="85" name="land_for_sale_chk" /> |
45 | <text name="events_label"> | 45 | <text name="events_label"> |
46 | イベント | 46 | イベント |
47 | </text> | 47 | </text> |
@@ -50,16 +50,16 @@ | |||
50 | イベント(M) | 50 | イベント(M) |
51 | </text> | 51 | </text> |
52 | <check_box label=" " name="event_mature_chk" /> | 52 | <check_box label=" " name="event_mature_chk" /> |
53 | <combo_box label="分のフレンド" name="friend combo" | 53 | <combo_box label="ラインフレンド" name="friend combo" |
54 | tool_tip="Friend to Show on Map"> | 54 | tool_tip="Friend to Show on Map"> |
55 | <combo_item name="none_selected"> | 55 | <combo_item name="none_selected"> |
56 | 分のフレンド | 56 | ラインフレンド |
57 | </combo_item> | 57 | </combo_item> |
58 | </combo_box> | 58 | </combo_box> |
59 | <combo_box label="自分ンドマーク" name="landmark combo" | 59 | <combo_box label="ランドマーク" name="landmark combo" |
60 | tool_tip="Landmark to Show on Map"> | 60 | tool_tip="Landmark to Show on Map"> |
61 | <combo_item name="none_selected"> | 61 | <combo_item name="none_selected"> |
62 | 自分ンドマーク | 62 | ランドマーク |
63 | </combo_item> | 63 | </combo_item> |
64 | </combo_box> | 64 | </combo_box> |
65 | <line_editor label="地域名で検索" name="location" | 65 | <line_editor label="地域名で検索" name="location" |
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 8f8920f..84dc606 100644 --- a/linden/indra/newview/skins/xui/ja/need_to_long.xml +++ b/linden/indra/newview/skins/xui/ja/need_to_long.xml | |||
@@ -2,154 +2,95 @@ | |||
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> | 5 | <b_path>//GraphicsPreferencesHelp/message</b_path> |
6 | <c_attribute></c_attribute> | 6 | <c_attribute></c_attribute> |
7 | <d_old> | 7 | <d_old> |
8 | The Object Bonus is a multiplier for primitives allowed on any given | 8 | This panel controls window size and resolution and the quality of the client's graphics. The graphics preferences interface allows you to choose between four graphics levels: Low, Mid, High, and Ultra. One may customize their graphics settings by checking the Custom checkbox and manipulating the following settings: |
9 | parcel. The range allowed is 1 to 10. Set at '1', each 512m2 parcel | 9 | |
10 | is allowed 117 objects. Set at '2', each 512m2 parcel is | 10 | Shaders: Enable or disable various types of pixel shaders. |
11 | allowed 234, or twice as many, and so on. The max number of objects | 11 | |
12 | allowed per region remains 15,000 no matter what the | 12 | Reflection Detail: Sets the types of objects that water can reflect. |
13 | Object Bonus is. once set, be aware that lowering the Object Bonus may cause | 13 | |
14 | objects to be returned or deleted. | 14 | Avatar Rendering: Sets options that affect how the client renders avatars. |
15 | 15 | ||
16 | Default: 1.0 | 16 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. |
17 | |||
18 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. | ||
19 | |||
20 | Post Process Quality: Sets the resolution with which Glow is rendered. | ||
21 | |||
22 | Mesh Detail: Sets the amout of detail used in rendering certain objects. | ||
23 | |||
24 | Lighting Detail: Selects what types of lights you would like to render. | ||
25 | |||
26 | Terrain Detail: Sets the amount of terrain detail you would like to see. | ||
27 | |||
28 | Sky Detail: Sets the amount of tesselation of the sky dome. A higher value takes longer to render, but makes the sun look more rounded. | ||
17 | </d_old> | 29 | </d_old> |
18 | <e_new> | 30 | <e_new> |
19 | The Object Bonus is a multiplier for primitives allowed on any given | 31 | This panel controls window size and resolution and the quality of the client's graphics. The Preferences > Graphics interface allows you to choose between four graphics levels: Low, Mid, High, and Ultra. You may also customize your graphics settings by checking the Custom checkbox and manipulating the following settings: |
20 | parcel. The range allowed is 1 to 10. Set at '1', each 512m2 parcel | 32 | |
21 | is allowed 117 objects. Set at '2', each 512m2 parcel is | 33 | Shaders: Enable or disable various types of pixel shaders. |
22 | allowed 234, or twice as many, and so on. The max number of objects | 34 | |
23 | allowed per region remains 15,000 no matter what the | 35 | Reflection Detail: Sets the types of objects that water can reflect. |
24 | Object Bonus is. Once set, be aware that lowering the Object Bonus may cause objects to be returned or deleted. | 36 | |
25 | 37 | Avatar Rendering: Sets options that affect how the client renders avatars. | |
26 | Default: 1.0 | 38 | |
39 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. | ||
40 | |||
41 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. | ||
42 | |||
43 | Post Process Quality: Sets the resolution with which Glow is rendered. | ||
44 | |||
45 | Mesh Detail: Sets the amount of detail or number of triangles used in rendering certain objects. A higher value takes longer to render, but makes these objects appear with more detail. | ||
46 | |||
47 | Lighting Detail: Selects what types of lights you would like to render. | ||
48 | |||
49 | Terrain Detail: Sets the amount of detail you would like to see for the terrain texture. | ||
27 | </e_new> | 50 | </e_new> |
51 | <f_old_trans></f_old_trans> | ||
28 | <f_translation> | 52 | <f_translation> |
29 | オブジェクトボーナスは、区画において許可されているプリムの倍率数を | 53 | このパネルはウィンドウのサイズと解像度、およびクライアントのグラフィックの品質を制御します。 [環境設定]>[グラフィック]のインタフェースでは、次の 4 つの中からグラフィック・レベルを選択できます。低、中、高、超高。 また、[カスタム]チェックボックスをクリックし、次の設定を操作することで、グラフィックスの設定をカスタマイズすることもできます。 |
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 | ||
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 | シェーダー:ピクセル・シェーダーのさまざまな種類を有効または無効にします。 |
55 | 56 | ||
56 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 57 | 反射詳細:水が反射するオブジェクトの種類を設定します。 |
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 | 58 | ||
71 | All rights reserved. See licenses.txt for details. | 59 | アバター・レンダリング:クライアントによるアバターのレンダリング方法に影響するオプションを設定します。 |
72 | 60 | ||
73 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 61 | 描画距離:あなたの視点から視界のどのくらいの距離まで、オブジェクトがレンダリングされるかに影響します。 |
74 | 62 | ||
63 | 最大パーティクル数:画面に一度に見ることができるパーティクルの最大数を設定します。 | ||
75 | 64 | ||
76 | Happiness is a warm puppy. -- Charles M. Schulz | 65 | ポストプロセス品質:グロー効果(輝き)がレンダリングされる際の解像度を設定します。 |
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 | 66 | ||
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 | 67 | メッシュ詳細: 特定のオブジェクトのレンダリング時の細部表現、または三角形の数を設定します。 値を大きくするほどレンダリングに時間がかかりますが、オブジェクトがより詳細に表示されます。 |
82 | 68 | ||
83 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | 69 | ライティング詳細:レンダリングする光源の種類を選択します。 |
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 | 70 | ||
99 | All rights reserved. See licenses.txt for details. | 71 | 地形詳細: 地形テクスチャの細部表現を設定します。 |
72 | </f_translation> | ||
100 | 73 | ||
101 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 74 | <f_old_trans> |
75 | このパネルはウィンドウのサイズと解像度、およびクライアントのグラフィックの品質を制御します。 グラフィックの環境設定のインタフェースでは、次の 4 つの中からグラフィック・レベルを選択できます。 低、中、高、超高。 [カスタム]チェックボックをクリックし、次の設定を操作することで、グラフィックスの設定をカスタマイズすることができます。 | ||
102 | 76 | ||
77 | シェーダー: ピクセル・シェーダーのさまざまな種類を有効または無効にします。 | ||
103 | 78 | ||
104 | Happiness is a warm puppy. -- Charles M. Schulz</e_new> | 79 | 反射詳細: 水が反射するオブジェクトの種類を設定します。 |
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 | 80 | ||
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 | 81 | アバター・レンダリング: クライアントによるアバターのレンダリング方法に影響するオプションを設定します。 |
109 | 82 | ||
110 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | 83 | 描画距離: あなたの視点から視界のどのくらいの距離まで、オブジェクトがレンダリングされるかに影響します。 |
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 | 84 | ||
126 | 無複・詳細licenses.txt照。 | 85 | パーク数: に一度にテ最大数設定。 |
127 | 86 | ||
128 | Voice chat Audio coding:Polycom(R) Siren14(TM) (ITU-T Rec.G.722.1 Annex C) | 87 | ポストプロセス品質: グロー効果(輝き)がレンダリングされる際の解像度を設定します。 |
129 | 88 | ||
89 | メッシュ詳細: 特定のオブジェクトのレンダリング時の細部表現を設定します。 | ||
130 | 90 | ||
131 | Happiness is a warm puppy. (しあわせはcあったかい子犬)-- チャールズ・M・シュルツ</f_translation> | 91 | ライティング詳細: レンダリングする光源の種類を選択します。 |
132 | <f_old_trans> | 92 | |
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 と、その他多数の人達によって作成されました。 | 93 | 地形詳細: 地形の細部表現を設定します。 |
134 | 94 | </f_old_trans> | |
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> | 95 | </string> |
155 | </strings> | 96 | </strings> |
diff --git a/linden/indra/newview/skins/xui/ja/need_to_translate.xml b/linden/indra/newview/skins/xui/ja/need_to_translate.xml index bf2914c..3fd5d5e 100644 --- a/linden/indra/newview/skins/xui/ja/need_to_translate.xml +++ b/linden/indra/newview/skins/xui/ja/need_to_translate.xml | |||
@@ -2,2128 +2,1427 @@ | |||
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> | 5 | <b_path>//UnsupportedHardware/ignore</b_path> |
6 | <c_attribute></c_attribute> | 6 | <c_attribute></c_attribute> |
7 | <d_old></d_old> | 7 | <d_old></d_old> |
8 | <e_new> | 8 | <e_new> |
9 | No tutorial is currently available. | 9 | Ignore unsupported hardware |
10 | </e_new> | 10 | </e_new> |
11 | <f_old_trans></f_old_trans> | 11 | <f_old_trans></f_old_trans> |
12 | <f_translation> | 12 | <f_translation> |
13 | 現在利用可能ト。 | 13 | ート外無視 |
14 | </f_translation> | 14 | </f_translation> |
15 | </string><string><a_file>alerts.xml</a_file> | 15 | </string><string><a_file>alerts.xml</a_file> |
16 | <b_path>//TutorialNotFound/OK</b_path> | 16 | <b_path>//UnknownGPU/message</b_path> |
17 | <c_attribute></c_attribute> | 17 | <c_attribute></c_attribute> |
18 | <d_old></d_old> | 18 | <d_old></d_old> |
19 | <e_new> | 19 | <e_new> |
20 | OK | 20 | Your system contains a graphics card that is unknown to us at this time. |
21 | This is often the case with new hardware we haven't had a chance to | ||
22 | test. Second Life will most likely run properly, but you may need to | ||
23 | adjust your graphics settings to something more appropriate. | ||
24 | (Edit > Preferences > Graphics). | ||
21 | </e_new> | 25 | </e_new> |
22 | <f_old_trans></f_old_trans> | 26 | <f_old_trans></f_old_trans> |
23 | <f_translation> | 27 | <f_translation> |
24 | OK | 28 | お使いのシステムには、現時点では不明なグラフィック・カードが搭載されています。 |
29 | これは、当社による動作テストが行われていない新しいハードウェアが使用されている場合がほとんどです。 Second Lifeはほぼ間違いなく正常に動作しますが、必要に応じたグラフィック設定の調整が必要になる場合があります。 | ||
30 | ([編集]>[環境設定]>[グラフィック])。 | ||
25 | </f_translation> | 31 | </f_translation> |
26 | </string><string><a_file>alerts.xml</a_file> | 32 | </string><string><a_file>alerts.xml</a_file> |
27 | <b_path>//FreezeAvatarFullname/message</b_path> | 33 | <b_path>//UnknownGPU/ignore</b_path> |
28 | <c_attribute></c_attribute> | 34 | <c_attribute></c_attribute> |
29 | <d_old></d_old> | 35 | <d_old></d_old> |
30 | <e_new> | 36 | <e_new> |
31 | Freeze [AVATAR_NAME]? | 37 | Ignore unknown graphics card |
32 | He or she will temporarily be unable to move, | ||
33 | chat, or interact with the world. | ||
34 | </e_new> | 38 | </e_new> |
35 | <f_old_trans></f_old_trans> | 39 | <f_old_trans></f_old_trans> |
36 | <f_translation> | 40 | <f_translation> |
37 | [AVATAR_NAME]をフリーズしますか? | 41 | 不明なグラフィック・カードを無視する |
38 | フリーズされた人は一時的に動けなくなり、チャットなど、この世界に対する関わりを持つことができなくなります。 | ||
39 | </f_translation> | 42 | </f_translation> |
40 | </string><string><a_file>alerts.xml</a_file> | 43 | </string><string><a_file>alerts.xml</a_file> |
41 | <b_path>//FreezeAvatarFullname/Freeze</b_path> | 44 | <b_path>//ClothingLoading/ignore</b_path> |
42 | <c_attribute></c_attribute> | 45 | <c_attribute></c_attribute> |
43 | <d_old></d_old> | 46 | <d_old></d_old> |
44 | <e_new> | 47 | <e_new> |
45 | Freeze | 48 | When clothing is taking a long time to download |
46 | </e_new> | 49 | </e_new> |
47 | <f_old_trans></f_old_trans> | 50 | <f_old_trans></f_old_trans> |
48 | <f_translation> | 51 | <f_translation> |
49 | ー | 52 | 服に長い間がかかる場合 |
50 | </f_translation> | 53 | </f_translation> |
51 | </string><string><a_file>alerts.xml</a_file> | 54 | </string><string><a_file>alerts.xml</a_file> |
52 | <b_path>//FreezeAvatarFullname/Unfreeze</b_path> | 55 | <b_path>//SetClassifiedMature/message</b_path> |
53 | <c_attribute></c_attribute> | 56 | <c_attribute></c_attribute> |
54 | <d_old></d_old> | 57 | <d_old></d_old> |
55 | <e_new> | 58 | <e_new> |
56 | Unfreeze | 59 | Does this classified contain Mature content? |
57 | </e_new> | 60 | </e_new> |
58 | <f_old_trans></f_old_trans> | 61 | <f_old_trans></f_old_trans> |
59 | <f_translation> | 62 | <f_translation> |
60 | 解 | 63 | このクラシファイド告には、成人向けコンテンツが含まれていますか? |
61 | </f_translation> | 64 | </f_translation> |
62 | </string><string><a_file>alerts.xml</a_file> | 65 | </string><string><a_file>alerts.xml</a_file> |
63 | <b_path>//FreezeAvatarFullname/Cancel</b_path> | 66 | <b_path>//SetClassifiedMature/Mature</b_path> |
64 | <c_attribute></c_attribute> | 67 | <c_attribute></c_attribute> |
65 | <d_old></d_old> | 68 | <d_old></d_old> |
66 | <e_new> | 69 | <e_new> |
67 | Cancel | 70 | Yes |
68 | </e_new> | 71 | </e_new> |
69 | <f_old_trans></f_old_trans> | 72 | <f_old_trans></f_old_trans> |
70 | <f_translation> | 73 | <f_translation> |
71 | ンセル | 74 | |
72 | </f_translation> | 75 | </f_translation> |
73 | </string><string><a_file>alerts.xml</a_file> | 76 | </string><string><a_file>alerts.xml</a_file> |
74 | <b_path>//EjectAvatarFullname/message</b_path> | 77 | <b_path>//SetClassifiedMature/Not Mature</b_path> |
75 | <c_attribute></c_attribute> | 78 | <c_attribute></c_attribute> |
76 | <d_old></d_old> | 79 | <d_old></d_old> |
77 | <e_new> | 80 | <e_new> |
78 | Eject [AVATAR_NAME] from your land? | 81 | No |
79 | </e_new> | 82 | </e_new> |
80 | <f_old_trans></f_old_trans> | 83 | <f_old_trans></f_old_trans> |
81 | <f_translation> | 84 | <f_translation> |
82 | の土地から[AVATAR_NAME]を追放しますか? | 85 | |
83 | </f_translation> | 86 | </f_translation> |
84 | </string><string><a_file>alerts.xml</a_file> | 87 | </string><string><a_file>alerts.xml</a_file> |
85 | <b_path>//EjectAvatarFullname/Eject</b_path> | 88 | <b_path>//SetClassifiedMature/Cancel</b_path> |
86 | <c_attribute></c_attribute> | 89 | <c_attribute></c_attribute> |
87 | <d_old></d_old> | 90 | <d_old></d_old> |
88 | <e_new> | 91 | <e_new> |
89 | Eject | 92 | Cancel |
90 | </e_new> | 93 | </e_new> |
91 | <f_old_trans></f_old_trans> | 94 | <f_old_trans></f_old_trans> |
92 | <f_translation> | 95 | <f_translation> |
93 | 追放 | 96 | キャンセル |
94 | </f_translation> | 97 | </f_translation> |
95 | </string><string><a_file>alerts.xml</a_file> | 98 | </string><string><a_file>alerts.xml</a_file> |
96 | <b_path>//EjectAvatarFullname/EjectandBan</b_path> | 99 | <b_path>//SetGroupMature/message</b_path> |
97 | <c_attribute></c_attribute> | 100 | <c_attribute></c_attribute> |
98 | <d_old></d_old> | 101 | <d_old></d_old> |
99 | <e_new> | 102 | <e_new> |
100 | Eject and Ban | 103 | Does this group contain Mature content? |
101 | </e_new> | 104 | </e_new> |
102 | <f_old_trans></f_old_trans> | 105 | <f_old_trans></f_old_trans> |
103 | <f_translation> | 106 | <f_translation> |
104 | 追止 | 107 | このグループには、人向けコンテンツが含ますか? |
105 | </f_translation> | 108 | </f_translation> |
106 | </string><string><a_file>alerts.xml</a_file> | 109 | </string><string><a_file>alerts.xml</a_file> |
107 | <b_path>//EjectAvatarFullname/Cancel</b_path> | 110 | <b_path>//SetGroupMature/Mature</b_path> |
108 | <c_attribute></c_attribute> | 111 | <c_attribute></c_attribute> |
109 | <d_old></d_old> | 112 | <d_old></d_old> |
110 | <e_new> | 113 | <e_new> |
111 | Cancel | 114 | Yes |
112 | </e_new> | 115 | </e_new> |
113 | <f_old_trans></f_old_trans> | 116 | <f_old_trans></f_old_trans> |
114 | <f_translation> | 117 | <f_translation> |
115 | ンセル | 118 | |
116 | </f_translation> | 119 | </f_translation> |
117 | </string><string><a_file>alerts.xml</a_file> | 120 | </string><string><a_file>alerts.xml</a_file> |
118 | <b_path>//SeachFilteredOnShortWords/message</b_path> | 121 | <b_path>//SetGroupMature/Not Mature</b_path> |
119 | <c_attribute></c_attribute> | 122 | <c_attribute></c_attribute> |
120 | <d_old></d_old> | 123 | <d_old></d_old> |
121 | <e_new> | 124 | <e_new> |
122 | Your search query was modified and the | 125 | No |
123 | words that were too short were removed. | 126 | </e_new> |
124 | |||
125 | Searched for: [FINALQUERY] | ||
126 | </e_new> | ||
127 | <f_old_trans></f_old_trans> | 127 | <f_old_trans></f_old_trans> |
128 | <f_translation> | 128 | <f_translation> |
129 | 指定した検索クエリは変更され、短すぎる語句は取り除かれています。 | 129 | いいえ |
130 | 130 | </f_translation> | |
131 | 検索語句: [FINALQUERY] | ||
132 | </f_translation> | ||
133 | </string><string><a_file>alerts.xml</a_file> | 131 | </string><string><a_file>alerts.xml</a_file> |
134 | <b_path>//SeachFilteredOnShortWordsEmpty/message</b_path> | 132 | <b_path>//SetGroupMature/Cancel</b_path> |
135 | <c_attribute></c_attribute> | 133 | <c_attribute></c_attribute> |
136 | <d_old></d_old> | 134 | <d_old></d_old> |
137 | <e_new> | 135 | <e_new> |
138 | Your search terms were too short | 136 | Cancel |
139 | so no search was performed. | 137 | </e_new> |
140 | </e_new> | ||
141 | <f_old_trans></f_old_trans> | 138 | <f_old_trans></f_old_trans> |
142 | <f_translation> | 139 | <f_translation> |
143 | 指定た検索語句が短すぎたた検索行ませんでした。 | 140 | |
144 | </f_translation> | 141 | </f_translation> |
145 | </string><string><a_file>alerts.xml</a_file> | 142 | </string><string><a_file>alerts.xml</a_file> |
146 | <b_path>//CannotCloseFloaterBuyLand/message</b_path> | 143 | <b_path>//MissingString/message</b_path> |
147 | <c_attribute></c_attribute> | 144 | <c_attribute></c_attribute> |
148 | <d_old></d_old> | 145 | <d_old></d_old> |
149 | <e_new> | 146 | <e_new> |
150 | You cannot close the Buy Land window until Second Life | 147 | The string [STRING_NAME] is missing from strings.xml |
151 | estimates the price of this transaction. | ||
152 | </e_new> | 148 | </e_new> |
153 | <f_old_trans></f_old_trans> | 149 | <f_old_trans></f_old_trans> |
154 | <f_translation> | 150 | <f_translation> |
155 | Second Lifeによるこの取引の見積りが完了するまで[土地を購入]ウィンドウを閉じることはできません。 | 151 | 文字列[STRING_NAME]がstrings.xmlに含まれていません |
156 | </f_translation> | 152 | </f_translation> |
157 | </string><string><a_file>alerts.xml</a_file> | 153 | </string><string><a_file>floater_active_speakers.xml</a_file> |
158 | <b_path>//MaxAgentOnRegionBatch/message</b_path> | 154 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> |
159 | <c_attribute></c_attribute> | 155 | <c_attribute>label</c_attribute> |
160 | <d_old></d_old> | 156 | <d_old></d_old> |
161 | <e_new> | 157 | <e_new></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> | 158 | <f_old_trans></f_old_trans> |
166 | <f_translation> | 159 | <f_translation></f_translation> |
167 | [NUM_ADDED] 個のエージェントを追加しようとして失敗しました: [MAX_AGENTS] [LIST_TYPE] 制限を [NUM_EXCESS] 個超過しています。 | 160 | </string><string><a_file>floater_directory.xml</a_file> |
168 | </f_translation> | 161 | <b_path>/directory/Directory Tabs/showcase_panel</b_path> |
169 | </string><string><a_file>alerts.xml</a_file> | 162 | <c_attribute>label</c_attribute> |
170 | <b_path>//WebLaunchExternalTarget/message</b_path> | ||
171 | <c_attribute></c_attribute> | ||
172 | <d_old></d_old> | 163 | <d_old></d_old> |
173 | <e_new> | 164 | <e_new>Showcase</e_new> |
174 | Open your system Web browser to view this content? | ||
175 | </e_new> | ||
176 | <f_old_trans></f_old_trans> | 165 | <f_old_trans></f_old_trans> |
177 | <f_translation> | 166 | <f_translation>ショーケース</f_translation> |
178 | お使いのシステムのウェブ・ブラウザーを開いて、この内容を表示しますか? | 167 | </string><string><a_file>floater_directory.xml</a_file> |
179 | </f_translation> | 168 | <b_path>/directory/Directory Tabs/showcase_panel/searching_text</b_path> |
180 | </string><string><a_file>alerts.xml</a_file> | ||
181 | <b_path>//WebLaunchExternalTarget/ignore</b_path> | ||
182 | <c_attribute></c_attribute> | 169 | <c_attribute></c_attribute> |
183 | <d_old></d_old> | 170 | <d_old></d_old> |
184 | <e_new> | 171 | <e_new>Searching...</e_new> |
185 | When opening your system browser to view a Web page | ||
186 | </e_new> | ||
187 | <f_old_trans></f_old_trans> | 172 | <f_old_trans></f_old_trans> |
188 | <f_translation> | 173 | <f_translation>検索中...</f_translation> |
189 | お使いのシステムのブラウザーを開いてウェブ・ページを表示しようとしたとき | 174 | </string><string><a_file>floater_directory.xml</a_file> |
190 | </f_translation> | 175 | <b_path>/directory/Directory Tabs/showcase_panel/not_found_text</b_path> |
191 | </string><string><a_file>alerts.xml</a_file> | ||
192 | <b_path>//WebLaunchExternalTarget/Open</b_path> | ||
193 | <c_attribute></c_attribute> | 176 | <c_attribute></c_attribute> |
194 | <d_old></d_old> | 177 | <d_old></d_old> |
195 | <e_new> | 178 | <e_new>None Found.</e_new> |
196 | OK | ||
197 | </e_new> | ||
198 | <f_old_trans></f_old_trans> | 179 | <f_old_trans></f_old_trans> |
199 | <f_translation> | 180 | <f_translation>何も見つかりませんでした。</f_translation> |
200 | OK | 181 | </string><string><a_file>floater_directory.xml</a_file> |
201 | </f_translation> | 182 | <b_path>/directory/Directory Tabs/showcase_panel/back_btn</b_path> |
202 | </string><string><a_file>alerts.xml</a_file> | 183 | <c_attribute>label</c_attribute> |
203 | <b_path>//WebLaunchExternalTarget/Cancel</b_path> | ||
204 | <c_attribute></c_attribute> | ||
205 | <d_old></d_old> | 184 | <d_old></d_old> |
206 | <e_new> | 185 | <e_new>Back</e_new> |
207 | Cancel | ||
208 | </e_new> | ||
209 | <f_old_trans></f_old_trans> | 186 | <f_old_trans></f_old_trans> |
210 | <f_translation> | 187 | <f_translation>戻る</f_translation> |
211 | キャンセル | 188 | </string><string><a_file>floater_directory.xml</a_file> |
212 | </f_translation> | 189 | <b_path>/directory/Directory Tabs/showcase_panel/forward_btn</b_path> |
213 | </string><string><a_file>alerts.xml</a_file> | 190 | <c_attribute>label</c_attribute> |
214 | <b_path>//ProblemAddingEstateGeneric/message</b_path> | ||
215 | <c_attribute></c_attribute> | ||
216 | <d_old></d_old> | 191 | <d_old></d_old> |
217 | <e_new> | 192 | <e_new>Forward</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> | 193 | <f_old_trans></f_old_trans> |
221 | <f_translation> | 194 | <f_translation>転送</f_translation> |
222 | 不動産リストの追加に関する問題。1つ以上の不動産で、リストが満杯になっています。 | 195 | </string><string><a_file>floater_directory.xml</a_file> |
223 | </f_translation> | 196 | <b_path>/directory/Directory Tabs/showcase_panel/loading_text</b_path> |
224 | </string><string><a_file>alerts.xml</a_file> | ||
225 | <b_path>//ReplaceAttachment/ignore</b_path> | ||
226 | <c_attribute></c_attribute> | 197 | <c_attribute></c_attribute> |
227 | <d_old></d_old> | 198 | <d_old></d_old> |
228 | <e_new> | 199 | <e_new>Loading...</e_new> |
229 | When replacing existing attachments | ||
230 | </e_new> | ||
231 | <f_old_trans></f_old_trans> | 200 | <f_old_trans></f_old_trans> |
232 | <f_translation> | 201 | <f_translation>ロード中...</f_translation> |
233 | 現在、装着しているものを置換するとき | 202 | </string><string><a_file>floater_directory.xml</a_file> |
234 | </f_translation> | 203 | <b_path>/directory/Directory Tabs/showcase_panel/done_text</b_path> |
235 | </string><string><a_file>alerts.xml</a_file> | ||
236 | <b_path>//BusyModePay/ignore</b_path> | ||
237 | <c_attribute></c_attribute> | 204 | <c_attribute></c_attribute> |
238 | <d_old></d_old> | 205 | <d_old></d_old> |
239 | <e_new> | 206 | <e_new>Done</e_new> |
240 | When paying a person or object in busy mode | ||
241 | </e_new> | ||
242 | <f_old_trans></f_old_trans> | 207 | <f_old_trans></f_old_trans> |
243 | <f_translation> | 208 | <f_translation>完了</f_translation> |
244 | ビジー・モードの人またはオブジェクトに支払うとき | 209 | </string><string><a_file>floater_directory.xml</a_file> |
245 | </f_translation> | 210 | <b_path>/directory/Directory Tabs/groups_panel/back_btn</b_path> |
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> | 211 | <c_attribute>label</c_attribute> |
256 | <d_old></d_old> | 212 | <d_old></d_old> |
257 | <e_new>Name</e_new> | 213 | <e_new>Back</e_new> |
258 | <f_old_trans></f_old_trans> | 214 | <f_old_trans></f_old_trans> |
259 | <f_translation>名前</f_translation> | 215 | <f_translation>戻る</f_translation> |
260 | </string><string><a_file>floater_about_land.xml</a_file> | 216 | </string><string><a_file>floater_directory.xml</a_file> |
261 | <b_path>/floaterland/landtab/land_objects_panel/owner list/count</b_path> | 217 | <b_path>/directory/Directory Tabs/groups_panel/forward_btn</b_path> |
262 | <c_attribute>label</c_attribute> | 218 | <c_attribute>label</c_attribute> |
263 | <d_old></d_old> | 219 | <d_old></d_old> |
264 | <e_new>Count</e_new> | 220 | <e_new>Forward</e_new> |
265 | <f_old_trans></f_old_trans> | 221 | <f_old_trans></f_old_trans> |
266 | <f_translation>カウント</f_translation> | 222 | <f_translation>転送</f_translation> |
267 | </string><string><a_file>floater_active_speakers.xml</a_file> | 223 | </string><string><a_file>floater_directory.xml</a_file> |
268 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> | 224 | <b_path>/directory/Directory Tabs/groups_panel/search_editor</b_path> |
269 | <c_attribute>label</c_attribute> | 225 | <c_attribute>label</c_attribute> |
270 | <d_old></d_old> | 226 | <d_old></d_old> |
271 | <e_new></e_new> | 227 | <e_new>Search</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> | 228 | <f_old_trans></f_old_trans> |
282 | <f_translation> | 229 | <f_translation>検索</f_translation> |
283 | 構築されたテクスチャー | 230 | </string><string><a_file>floater_directory.xml</a_file> |
284 | </f_translation> | 231 | <b_path>/directory/Directory Tabs/groups_panel/search_editor</b_path> |
285 | </string><string><a_file>floater_avatar_textures.xml</a_file> | 232 | <c_attribute>tool_tip</c_attribute> |
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> | 233 | <d_old></d_old> |
300 | <e_new> | 234 | <e_new>Search Second Life</e_new> |
301 | Getting data... | ||
302 | </e_new> | ||
303 | <f_old_trans></f_old_trans> | 235 | <f_old_trans></f_old_trans> |
304 | <f_translation> | 236 | <f_translation>Second Lifeを検索</f_translation> |
305 | データを取得しています... | 237 | </string><string><a_file>floater_directory.xml</a_file> |
306 | </f_translation> | 238 | <b_path>/directory/Directory Tabs/groups_panel/search_btn</b_path> |
307 | </string><string><a_file>floater_camera.xml</a_file> | 239 | <c_attribute>label</c_attribute> |
308 | <b_path>/move floater</b_path> | ||
309 | <c_attribute>title</c_attribute> | ||
310 | <d_old></d_old> | 240 | <d_old></d_old> |
311 | <e_new></e_new> | 241 | <e_new>Search</e_new> |
312 | <f_old_trans></f_old_trans> | 242 | <f_old_trans></f_old_trans> |
313 | <f_translation></f_translation> | 243 | <f_translation>検索</f_translation> |
314 | </string><string><a_file>floater_camera.xml</a_file> | 244 | </string><string><a_file>floater_directory.xml</a_file> |
315 | <b_path>/move floater/rotate_tooltip</b_path> | 245 | <b_path>/directory/Directory Tabs/groups_panel/mature_check</b_path> |
316 | <c_attribute></c_attribute> | 246 | <c_attribute>label</c_attribute> |
317 | <d_old></d_old> | 247 | <d_old></d_old> |
318 | <e_new>Rotate Camera Around Focus</e_new> | 248 | <e_new>Include Mature content</e_new> |
319 | <f_old_trans></f_old_trans> | 249 | <f_old_trans></f_old_trans> |
320 | <f_translation>を中ラ回転</f_translation> | 250 | <f_translation>成人向</f_translation> |
321 | </string><string><a_file>floater_camera.xml</a_file> | 251 | </string><string><a_file>floater_directory.xml</a_file> |
322 | <b_path>/move floater/zoom_tooltip</b_path> | 252 | <b_path>/directory/Directory Tabs/groups_panel/loading_text</b_path> |
323 | <c_attribute></c_attribute> | 253 | <c_attribute></c_attribute> |
324 | <d_old></d_old> | 254 | <d_old></d_old> |
325 | <e_new>Zoom Camera Towards Focus</e_new> | 255 | <e_new>Loading...</e_new> |
326 | <f_old_trans></f_old_trans> | 256 | <f_old_trans></f_old_trans> |
327 | <f_translation>スに向けてカラをズーム</f_translation> | 257 | <f_translation>ー中...</f_translation> |
328 | </string><string><a_file>floater_camera.xml</a_file> | 258 | </string><string><a_file>floater_directory.xml</a_file> |
329 | <b_path>/move floater/move_tooltip</b_path> | 259 | <b_path>/directory/Directory Tabs/groups_panel/done_text</b_path> |
330 | <c_attribute></c_attribute> | 260 | <c_attribute></c_attribute> |
331 | <d_old></d_old> | 261 | <d_old></d_old> |
332 | <e_new>Move Camera Up and Down, Left and Right</e_new> | 262 | <e_new>Done</e_new> |
333 | <f_old_trans></f_old_trans> | 263 | <f_old_trans></f_old_trans> |
334 | <f_translation>カメラを上下左右に移動</f_translation> | 264 | <f_translation>完了</f_translation> |
335 | </string><string><a_file>floater_chatterbox.xml</a_file> | 265 | </string><string><a_file>floater_im.xml</a_file> |
336 | <b_path>/floater_chatterbox</b_path> | 266 | <b_path>/im_floater/muted_message</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> | 267 | <c_attribute></c_attribute> |
345 | <d_old></d_old> | 268 | <d_old></d_old> |
346 | <e_new> | 269 | <e_new> |
347 | -- Instant message logging enabled -- | 270 | [FIRST] [LAST] is muted. |
348 | </e_new> | 271 | </e_new> |
349 | <f_old_trans></f_old_trans> | 272 | <f_old_trans></f_old_trans> |
350 | <f_translation> | 273 | <f_translation> |
351 | -- タ記録が有効 -- | 274 | [FIRST] [LAST] |
352 | </f_translation> | 275 | </f_translation> |
353 | </string><string><a_file>floater_chat_history.xml</a_file> | 276 | </string><string><a_file>notify.xml</a_file> |
354 | <b_path>/chat floater/IM_end_log_string</b_path> | 277 | <b_path>//AutoUnmuteByIM/message</b_path> |
355 | <c_attribute></c_attribute> | 278 | <c_attribute></c_attribute> |
356 | <d_old></d_old> | 279 | <d_old></d_old> |
357 | <e_new> | 280 | <e_new> |
358 | -- End of Log -- | 281 | [FIRST] [LAST] was sent an instant message and has been automatically unmuted. |
359 | </e_new> | 282 | </e_new> |
360 | <f_old_trans></f_old_trans> | 283 | <f_old_trans></f_old_trans> |
361 | <f_translation> | 284 | <f_translation> |
362 | -- ログ記録終了 -- | 285 | [FIRST] [LAST]にインスタント・メッセージが送信され、ミュートが自動的に解除されました。 |
363 | </f_translation> | 286 | </f_translation> |
364 | </string><string><a_file>floater_chat_history.xml</a_file> | 287 | </string><string><a_file>notify.xml</a_file> |
365 | <b_path>/chat floater/panels/im_contents_panel/Gesture</b_path> | 288 | <b_path>//AutoUnmuteByMoney/message</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> | 289 | <c_attribute></c_attribute> |
374 | <d_old></d_old> | 290 | <d_old></d_old> |
375 | <e_new> | 291 | <e_new> |
376 | Gestures | 292 | [FIRST] [LAST] was given money and has been automatically unmuted. |
377 | </e_new> | 293 | </e_new> |
378 | <f_old_trans></f_old_trans> | 294 | <f_old_trans></f_old_trans> |
379 | <f_translation> | 295 | <f_translation> |
380 | ジェスチャー | 296 | [FIRST] [LAST]にお金が与えられ、ミュートが自動的に解除されました。 |
381 | </f_translation> | 297 | </f_translation> |
382 | </string><string><a_file>floater_chat_history.xml</a_file> | 298 | </string><string><a_file>notify.xml</a_file> |
383 | <b_path>/chat floater/panels/im_contents_panel/show mutes</b_path> | 299 | <b_path>//AutoUnmuteByInventory/message</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> | 300 | <c_attribute></c_attribute> |
434 | <d_old></d_old> | 301 | <d_old></d_old> |
435 | <e_new> | 302 | <e_new> |
436 | Critical Message | 303 | [FIRST] [LAST] was offered inventory and has been automatically unmuted. |
437 | </e_new> | 304 | </e_new> |
438 | <f_old_trans></f_old_trans> | 305 | <f_old_trans></f_old_trans> |
439 | <f_translation> | 306 | <f_translation> |
440 | クリティカル・メッセージ | 307 | [FIRST] [LAST]に持ち物が与えられ、ミュートが自動的に解除されました。 |
441 | </f_translation> | 308 | </f_translation> |
442 | </string><string><a_file>floater_customize.xml</a_file> | 309 | </string><string><a_file>panel_avatar_classified.xml</a_file> |
443 | <b_path>/floater customize/customize tab container/body_parts_placeholder</b_path> | 310 | <b_path>/Classified/classified_mature_check/select_mature</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> | 311 | <c_attribute></c_attribute> |
515 | <d_old></d_old> | 312 | <d_old></d_old> |
516 | <e_new> | 313 | <e_new> |
517 | Antialiasing: | 314 | - Select Mature - |
518 | </e_new> | 315 | </e_new> |
519 | <f_old_trans></f_old_trans> | 316 | <f_old_trans></f_old_trans> |
520 | <f_translation> | 317 | <f_translation> |
521 | アンチエイリアシング: | 318 | -成熟度を選択- |
522 | </f_translation> | 319 | </f_translation> |
523 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 320 | </string><string><a_file>panel_avatar_classified.xml</a_file> |
524 | <b_path>/Hardware Settings Floater/fsaa</b_path> | 321 | <b_path>/Classified/classified_mature_check/mature</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> | 322 | <c_attribute></c_attribute> |
533 | <d_old></d_old> | 323 | <d_old></d_old> |
534 | <e_new> | 324 | <e_new> |
535 | Disabled | 325 | Mature Content |
536 | </e_new> | 326 | </e_new> |
537 | <f_old_trans></f_old_trans> | 327 | <f_old_trans></f_old_trans> |
538 | <f_translation> | 328 | <f_translation> |
539 | 無 | 329 | 成人けコンテンツ |
540 | </f_translation> | 330 | </f_translation> |
541 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 331 | </string><string><a_file>panel_avatar_classified.xml</a_file> |
542 | <b_path>/Hardware Settings Floater/fsaa/2x</b_path> | 332 | <b_path>/Classified/classified_mature_check/not_mature</b_path> |
543 | <c_attribute></c_attribute> | 333 | <c_attribute></c_attribute> |
544 | <d_old></d_old> | 334 | <d_old></d_old> |
545 | <e_new> | 335 | <e_new> |
546 | 2x | 336 | Not Mature Content |
547 | </e_new> | 337 | </e_new> |
548 | <f_old_trans></f_old_trans> | 338 | <f_old_trans></f_old_trans> |
549 | <f_translation> | 339 | <f_translation> |
550 | 2x | 340 | 非成人向けコンテンツ |
551 | </f_translation> | 341 | </f_translation> |
552 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 342 | </string><string><a_file>panel_classified.xml</a_file> |
553 | <b_path>/Hardware Settings Floater/fsaa/4x</b_path> | 343 | <b_path>/Classified/classified_mature_check/select_mature</b_path> |
554 | <c_attribute></c_attribute> | 344 | <c_attribute></c_attribute> |
555 | <d_old></d_old> | 345 | <d_old></d_old> |
556 | <e_new> | 346 | <e_new> |
557 | 4x | 347 | - Select Mature - |
558 | </e_new> | 348 | </e_new> |
559 | <f_old_trans></f_old_trans> | 349 | <f_old_trans></f_old_trans> |
560 | <f_translation> | 350 | <f_translation> |
561 | 4x | 351 | -成熟度を選択- |
562 | </f_translation> | 352 | </f_translation> |
563 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 353 | </string><string><a_file>panel_classified.xml</a_file> |
564 | <b_path>/Hardware Settings Floater/fsaa/8x</b_path> | 354 | <b_path>/Classified/classified_mature_check/mature</b_path> |
565 | <c_attribute></c_attribute> | 355 | <c_attribute></c_attribute> |
566 | <d_old></d_old> | 356 | <d_old></d_old> |
567 | <e_new> | 357 | <e_new> |
568 | 8x | 358 | Mature Content |
569 | </e_new> | 359 | </e_new> |
570 | <f_old_trans></f_old_trans> | 360 | <f_old_trans></f_old_trans> |
571 | <f_translation> | 361 | <f_translation> |
572 | 8x | 362 | 成人向けコンテンツ |
573 | </f_translation> | 363 | </f_translation> |
574 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 364 | </string><string><a_file>panel_classified.xml</a_file> |
575 | <b_path>/Hardware Settings Floater/fsaa/16x</b_path> | 365 | <b_path>/Classified/classified_mature_check/not_mature</b_path> |
576 | <c_attribute></c_attribute> | 366 | <c_attribute></c_attribute> |
577 | <d_old></d_old> | 367 | <d_old></d_old> |
578 | <e_new> | 368 | <e_new> |
579 | 16x | 369 | Not Mature Content |
580 | </e_new> | 370 | </e_new> |
581 | <f_old_trans></f_old_trans> | 371 | <f_old_trans></f_old_trans> |
582 | <f_translation> | 372 | <f_translation> |
583 | 16x | 373 | 非成人向けコンテンツ |
584 | </f_translation> | 374 | </f_translation> |
585 | </string><string><a_file>floater_hud.xml</a_file> | 375 | </string><string><a_file>panel_groups.xml</a_file> |
586 | <b_path>/floater_hud</b_path> | 376 | <b_path>/groups/group list/name</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> | 377 | <c_attribute>label</c_attribute> |
637 | <d_old></d_old> | 378 | <d_old></d_old> |
638 | <e_new>Roll Mapping</e_new> | 379 | <e_new></e_new> |
639 | <f_old_trans></f_old_trans> | 380 | <f_old_trans></f_old_trans> |
640 | <f_translation>ロール・マッピング</f_translation> | 381 | <f_translation></f_translation> |
641 | </string><string><a_file>floater_joystick.xml</a_file> | 382 | </string><string><a_file>panel_group_general.xml</a_file> |
642 | <b_path>/Joystick/JoystickAxis6</b_path> | 383 | <b_path>/general_tab/preferences_container/group_mature_check</b_path> |
643 | <c_attribute>label</c_attribute> | 384 | <c_attribute>tool_tip</c_attribute> |
644 | <d_old></d_old> | 385 | <d_old></d_old> |
645 | <e_new>Zoom Mapping</e_new> | 386 | <e_new>Sets whether your group information is considered mature.</e_new> |
646 | <f_old_trans></f_old_trans> | 387 | <f_old_trans></f_old_trans> |
647 | <f_translation>ズーム・マッピング</f_translation> | 388 | <f_translation>あなたのグループ情報が成人向けとみなされるかどうかを指定します。</f_translation> |
648 | </string><string><a_file>floater_joystick.xml</a_file> | 389 | </string><string><a_file>panel_group_general.xml</a_file> |
649 | <b_path>/Joystick/ZoomDirect</b_path> | 390 | <b_path>/general_tab/preferences_container/group_mature_check/select_mature</b_path> |
650 | <c_attribute>label</c_attribute> | 391 | <c_attribute></c_attribute> |
651 | <d_old></d_old> | 392 | <d_old></d_old> |
652 | <e_new>Direct Zoom</e_new> | 393 | <e_new> |
394 | - Select Mature - | ||
395 | </e_new> | ||
653 | <f_old_trans></f_old_trans> | 396 | <f_old_trans></f_old_trans> |
654 | <f_translation>直接ズーム</f_translation> | 397 | <f_translation> |
655 | </string><string><a_file>floater_joystick.xml</a_file> | 398 | -成熟度を選択- |
656 | <b_path>/Joystick/Cursor3D</b_path> | 399 | </f_translation> |
657 | <c_attribute>label</c_attribute> | 400 | </string><string><a_file>panel_group_general.xml</a_file> |
401 | <b_path>/general_tab/preferences_container/group_mature_check/mature</b_path> | ||
402 | <c_attribute></c_attribute> | ||
658 | <d_old></d_old> | 403 | <d_old></d_old> |
659 | <e_new>3D Cursor</e_new> | 404 | <e_new> |
405 | Mature Content | ||
406 | </e_new> | ||
660 | <f_old_trans></f_old_trans> | 407 | <f_old_trans></f_old_trans> |
661 | <f_translation>3Dカーソル</f_translation> | 408 | <f_translation> |
662 | </string><string><a_file>floater_joystick.xml</a_file> | 409 | 成人向けコンテンツ |
663 | <b_path>/Joystick/AutoLeveling</b_path> | 410 | </f_translation> |
664 | <c_attribute>label</c_attribute> | 411 | </string><string><a_file>panel_group_general.xml</a_file> |
412 | <b_path>/general_tab/preferences_container/group_mature_check/not_mature</b_path> | ||
413 | <c_attribute></c_attribute> | ||
665 | <d_old></d_old> | 414 | <d_old></d_old> |
666 | <e_new>Auto Level</e_new> | 415 | <e_new> |
416 | Not Mature Content | ||
417 | </e_new> | ||
667 | <f_old_trans></f_old_trans> | 418 | <f_old_trans></f_old_trans> |
668 | <f_translation>自動レベル</f_translation> | 419 | <f_translation> |
669 | </string><string><a_file>floater_joystick.xml</a_file> | 420 | 非成人向けコンテンツ |
670 | <b_path>/Joystick/Control Modes:</b_path> | 421 | </f_translation> |
422 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
423 | <b_path>/Display panel/WindowSizeLabel</b_path> | ||
671 | <c_attribute></c_attribute> | 424 | <c_attribute></c_attribute> |
672 | <d_old></d_old> | 425 | <d_old></d_old> |
673 | <e_new> | 426 | <e_new> |
674 | Control Modes: | 427 | Window Size: |
675 | </e_new> | 428 | </e_new> |
676 | <f_old_trans></f_old_trans> | 429 | <f_old_trans></f_old_trans> |
677 | <f_translation> | 430 | <f_translation> |
678 | 制御ド: | 431 | ドウ・サイズ: |
679 | </f_translation> | 432 | </f_translation> |
680 | </string><string><a_file>floater_joystick.xml</a_file> | 433 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> |
681 | <b_path>/Joystick/XScale</b_path> | 434 | <b_path>/Display panel/windowsize combo/640x480</b_path> |
682 | <c_attribute></c_attribute> | 435 | <c_attribute></c_attribute> |
683 | <d_old></d_old> | 436 | <d_old></d_old> |
684 | <e_new>X Scale</e_new> | 437 | <e_new> |
438 | 640x480 | ||
439 | </e_new> | ||
685 | <f_old_trans></f_old_trans> | 440 | <f_old_trans></f_old_trans> |
686 | <f_translation>Xスケール</f_translation> | 441 | <f_translation> |
687 | </string><string><a_file>floater_joystick.xml</a_file> | 442 | 640x480 |
688 | <b_path>/Joystick/YScale</b_path> | 443 | </f_translation> |
444 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
445 | <b_path>/Display panel/windowsize combo/800x600</b_path> | ||
689 | <c_attribute></c_attribute> | 446 | <c_attribute></c_attribute> |
690 | <d_old></d_old> | 447 | <d_old></d_old> |
691 | <e_new>Y Scale</e_new> | 448 | <e_new> |
449 | 800x600 | ||
450 | </e_new> | ||
692 | <f_old_trans></f_old_trans> | 451 | <f_old_trans></f_old_trans> |
693 | <f_translation>Yスケール</f_translation> | 452 | <f_translation> |
694 | </string><string><a_file>floater_joystick.xml</a_file> | 453 | 800x600 |
695 | <b_path>/Joystick/ZScale</b_path> | 454 | </f_translation> |
455 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
456 | <b_path>/Display panel/windowsize combo/720x480</b_path> | ||
696 | <c_attribute></c_attribute> | 457 | <c_attribute></c_attribute> |
697 | <d_old></d_old> | 458 | <d_old></d_old> |
698 | <e_new>Z Scale</e_new> | 459 | <e_new> |
460 | 720x480 (NTSC) | ||
461 | </e_new> | ||
699 | <f_old_trans></f_old_trans> | 462 | <f_old_trans></f_old_trans> |
700 | <f_translation>Zスケール</f_translation> | 463 | <f_translation> |
701 | </string><string><a_file>floater_joystick.xml</a_file> | 464 | 720x480 (NTSC) |
702 | <b_path>/Joystick/PitchScale</b_path> | 465 | </f_translation> |
466 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
467 | <b_path>/Display panel/windowsize combo/768x576</b_path> | ||
703 | <c_attribute></c_attribute> | 468 | <c_attribute></c_attribute> |
704 | <d_old></d_old> | 469 | <d_old></d_old> |
705 | <e_new>Pitch Scale</e_new> | 470 | <e_new> |
471 | 768x576 (PAL) | ||
472 | </e_new> | ||
706 | <f_old_trans></f_old_trans> | 473 | <f_old_trans></f_old_trans> |
707 | <f_translation>ピッチ・スケール</f_translation> | 474 | <f_translation> |
708 | </string><string><a_file>floater_joystick.xml</a_file> | 475 | 768x576 (PAL) |
709 | <b_path>/Joystick/YawScale</b_path> | 476 | </f_translation> |
477 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
478 | <b_path>/Display panel/windowsize combo/1024x768</b_path> | ||
710 | <c_attribute></c_attribute> | 479 | <c_attribute></c_attribute> |
711 | <d_old></d_old> | 480 | <d_old></d_old> |
712 | <e_new>Yaw Scale</e_new> | 481 | <e_new> |
482 | 1024x768 | ||
483 | </e_new> | ||
713 | <f_old_trans></f_old_trans> | 484 | <f_old_trans></f_old_trans> |
714 | <f_translation>ヨー・スケール</f_translation> | 485 | <f_translation> |
715 | </string><string><a_file>floater_joystick.xml</a_file> | 486 | 1024x768 |
716 | <b_path>/Joystick/RollScale</b_path> | 487 | </f_translation> |
717 | <c_attribute></c_attribute> | 488 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> |
489 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | ||
490 | <c_attribute>label</c_attribute> | ||
718 | <d_old></d_old> | 491 | <d_old></d_old> |
719 | <e_new>Roll Scale</e_new> | 492 | <e_new></e_new> |
720 | <f_old_trans></f_old_trans> | 493 | <f_old_trans></f_old_trans> |
721 | <f_translation>ロール・スケール</f_translation> | 494 | <f_translation></f_translation> |
722 | </string><string><a_file>floater_joystick.xml</a_file> | 495 | </string><string><a_file>panel_preferences_web.xml</a_file> |
723 | <b_path>/Joystick/XDeadZone</b_path> | 496 | <b_path>/web/use_external_browser/internal</b_path> |
724 | <c_attribute></c_attribute> | 497 | <c_attribute>tool_tip</c_attribute> |
725 | <d_old></d_old> | 498 | <d_old></d_old> |
726 | <e_new>X Dead Zone</e_new> | 499 | <e_new>Use the built-in web browser for help, web links, etc. This browser opens as a new window inside Second Life.</e_new> |
727 | <f_old_trans></f_old_trans> | 500 | <f_old_trans></f_old_trans> |
728 | <f_translation>Xデッド・ゾーン</f_translation> | 501 | <f_translation>ヘルプやWebリンクに埋め込みWebブラウザを使用します。ブラウザはSecond Lifeの新しいウィンドウとして開きます。</f_translation> |
729 | </string><string><a_file>floater_joystick.xml</a_file> | 502 | </string><string><a_file>panel_region_general.xml</a_file> |
730 | <b_path>/Joystick/YDeadZone</b_path> | 503 | <b_path>/General/version_channel_text_lbl</b_path> |
731 | <c_attribute></c_attribute> | 504 | <c_attribute></c_attribute> |
732 | <d_old></d_old> | 505 | <d_old></d_old> |
733 | <e_new>Y Dead Zone</e_new> | 506 | <e_new> |
507 | Version: | ||
508 | </e_new> | ||
734 | <f_old_trans></f_old_trans> | 509 | <f_old_trans></f_old_trans> |
735 | <f_translation>Yデッド・ゾーン</f_translation> | 510 | <f_translation> |
736 | </string><string><a_file>floater_joystick.xml</a_file> | 511 | バージョン: |
737 | <b_path>/Joystick/ZDeadZone</b_path> | 512 | </f_translation> |
513 | </string><string><a_file>panel_region_general.xml</a_file> | ||
514 | <b_path>/General/version_channel_text</b_path> | ||
738 | <c_attribute></c_attribute> | 515 | <c_attribute></c_attribute> |
739 | <d_old></d_old> | 516 | <d_old></d_old> |
740 | <e_new>Z Dead Zone</e_new> | 517 | <e_new> |
518 | unknown | ||
519 | </e_new> | ||
741 | <f_old_trans></f_old_trans> | 520 | <f_old_trans></f_old_trans> |
742 | <f_translation>Zデッド・ゾーン</f_translation> | 521 | <f_translation> |
743 | </string><string><a_file>floater_joystick.xml</a_file> | 522 | 不明 |
744 | <b_path>/Joystick/PitchDeadZone</b_path> | 523 | </f_translation> |
524 | </string><string><a_file>strings.xml</a_file> | ||
525 | <b_path>//LoginInProgress</b_path> | ||
745 | <c_attribute></c_attribute> | 526 | <c_attribute></c_attribute> |
746 | <d_old></d_old> | 527 | <d_old></d_old> |
747 | <e_new>Pitch Dead Zone</e_new> | 528 | <e_new>Logging in. [APP_NAME] may appear frozen. Please wait.</e_new> |
748 | <f_old_trans></f_old_trans> | 529 | <f_old_trans></f_old_trans> |
749 | <f_translation>ピッチ・デッド・ゾーン</f_translation> | 530 | <f_translation>ログイン中です。[APP_NAME]の表示がフリーズする場合があります。 しばらくお待ちください。</f_translation> |
750 | </string><string><a_file>floater_joystick.xml</a_file> | 531 | </string><string><a_file>strings.xml</a_file> |
751 | <b_path>/Joystick/YawDeadZone</b_path> | 532 | <b_path>//LoginAuthenticating</b_path> |
752 | <c_attribute></c_attribute> | 533 | <c_attribute></c_attribute> |
753 | <d_old></d_old> | 534 | <d_old></d_old> |
754 | <e_new>Yaw Dead Zone</e_new> | 535 | <e_new>Authenticating</e_new> |
755 | <f_old_trans></f_old_trans> | 536 | <f_old_trans></f_old_trans> |
756 | <f_translation>・ン</f_translation> | 537 | <f_translation>認...</f_translation> |
757 | </string><string><a_file>floater_joystick.xml</a_file> | 538 | </string><string><a_file>strings.xml</a_file> |
758 | <b_path>/Joystick/RollDeadZone</b_path> | 539 | <b_path>//LoginMaintenance</b_path> |
759 | <c_attribute></c_attribute> | 540 | <c_attribute></c_attribute> |
760 | <d_old></d_old> | 541 | <d_old></d_old> |
761 | <e_new>Roll Dead Zone</e_new> | 542 | <e_new>Performing account maintenance...</e_new> |
762 | <f_old_trans></f_old_trans> | 543 | <f_old_trans></f_old_trans> |
763 | <f_translation>・ッ</f_translation> | 544 | <f_translation>ウ・実行ています...</f_translation> |
764 | </string><string><a_file>floater_joystick.xml</a_file> | 545 | </string><string><a_file>strings.xml</a_file> |
765 | <b_path>/Joystick/Feathering</b_path> | 546 | <b_path>//LoginAttempt</b_path> |
766 | <c_attribute></c_attribute> | 547 | <c_attribute></c_attribute> |
767 | <d_old></d_old> | 548 | <d_old></d_old> |
768 | <e_new>Feathering</e_new> | 549 | <e_new>Previous login attempt failed. Logging in, attempt [NUMBER]</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> | 550 | <f_old_trans></f_old_trans> |
791 | <f_translation></f_translation> | 551 | <f_translation>前回のログインに失敗しました。 ログイン中です([NUMBER]回目)</f_translation> |
792 | </string><string><a_file>floater_joystick.xml</a_file> | 552 | </string><string><a_file>strings.xml</a_file> |
793 | <b_path>/Joystick/ZoomScale2</b_path> | 553 | <b_path>//LoginPrecaching</b_path> |
794 | <c_attribute></c_attribute> | 554 | <c_attribute></c_attribute> |
795 | <d_old></d_old> | 555 | <d_old></d_old> |
796 | <e_new>Zoom Scale</e_new> | 556 | <e_new>Loading world...</e_new> |
797 | <f_old_trans></f_old_trans> | 557 | <f_old_trans></f_old_trans> |
798 | <f_translation>ズーム・スケール</f_translation> | 558 | <f_translation>ワールドをロードしています...</f_translation> |
799 | </string><string><a_file>floater_joystick.xml</a_file> | 559 | </string><string><a_file>strings.xml</a_file> |
800 | <b_path>/Joystick/FlycamAxisScale6</b_path> | 560 | <b_path>//LoginInitializingBrowser</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> | 561 | <c_attribute></c_attribute> |
809 | <d_old></d_old> | 562 | <d_old></d_old> |
810 | <e_new>Zoom Dead Zone</e_new> | 563 | <e_new>Initializing embedded web browser...</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> | 564 | <f_old_trans></f_old_trans> |
826 | <f_translation>SpaceNavigator設</f_translation> | 565 | <f_translation>埋込Web期しています...</f_translation> |
827 | </string><string><a_file>floater_joystick.xml</a_file> | 566 | </string><string><a_file>strings.xml</a_file> |
828 | <b_path>/Joystick/JoystickMonitor</b_path> | 567 | <b_path>//LoginVerifyingCache</b_path> |
829 | <c_attribute></c_attribute> | 568 | <c_attribute></c_attribute> |
830 | <d_old></d_old> | 569 | <d_old></d_old> |
831 | <e_new>Joystick Monitor</e_new> | 570 | <e_new>Verifying cache files (can take 60-90 seconds)...</e_new> |
832 | <f_old_trans></f_old_trans> | 571 | <f_old_trans></f_old_trans> |
833 | <f_translation>イステッー</f_translation> | 572 | <f_translation>ャッを検しています(所要時間は60~90秒)...</f_translation> |
834 | </string><string><a_file>floater_joystick.xml</a_file> | 573 | </string><string><a_file>strings.xml</a_file> |
835 | <b_path>/Joystick/Axis</b_path> | 574 | <b_path>//LoginProcessingResponse</b_path> |
836 | <c_attribute></c_attribute> | 575 | <c_attribute></c_attribute> |
837 | <d_old></d_old> | 576 | <d_old></d_old> |
838 | <e_new>Axis [NUM]</e_new> | 577 | <e_new>Processing Response...</e_new> |
839 | <f_old_trans></f_old_trans> | 578 | <f_old_trans></f_old_trans> |
840 | <f_translation>軸 [NUM]</f_translation> | 579 | <f_translation>応答を処理しています...</f_translation> |
841 | </string><string><a_file>floater_joystick.xml</a_file> | 580 | </string><string><a_file>strings.xml</a_file> |
842 | <b_path>/Joystick/NoDevice</b_path> | 581 | <b_path>//LoginInitializingWorld</b_path> |
843 | <c_attribute></c_attribute> | 582 | <c_attribute></c_attribute> |
844 | <d_old></d_old> | 583 | <d_old></d_old> |
845 | <e_new>no device detected</e_new> | 584 | <e_new>Initializing World...</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> | 585 | <f_old_trans></f_old_trans> |
889 | <f_translation></f_translation> | 586 | <f_translation>ワールドを初期化しています...</f_translation> |
890 | </string><string><a_file>floater_post_process.xml</a_file> | 587 | </string><string><a_file>strings.xml</a_file> |
891 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomExtract</b_path> | 588 | <b_path>//LoginDecodingImages</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> | 589 | <c_attribute></c_attribute> |
928 | <d_old></d_old> | 590 | <d_old></d_old> |
929 | <e_new> | 591 | <e_new>Decoding images...</e_new> |
930 | Library: | ||
931 | </e_new> | ||
932 | <f_old_trans></f_old_trans> | 592 | <f_old_trans></f_old_trans> |
933 | <f_translation> | 593 | <f_translation>画像をデコードしています...</f_translation> |
934 | ライブラリ: | 594 | </string><string><a_file>strings.xml</a_file> |
935 | </f_translation> | 595 | <b_path>//LoginInitializingQuicktime</b_path> |
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> | 596 | <c_attribute></c_attribute> |
939 | <d_old></d_old> | 597 | <d_old></d_old> |
940 | <e_new> | 598 | <e_new>Initializing QuickTime...</e_new> |
941 | Steps: | ||
942 | </e_new> | ||
943 | <f_old_trans></f_old_trans> | 599 | <f_old_trans></f_old_trans> |
944 | <f_translation> | 600 | <f_translation>QuickTimeを初期化しています...</f_translation> |
945 | 手順: | 601 | </string><string><a_file>strings.xml</a_file> |
946 | </f_translation> | 602 | <b_path>//LoginQuicktimeNotFound</b_path> |
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> | 603 | <c_attribute></c_attribute> |
950 | <d_old></d_old> | 604 | <d_old></d_old> |
951 | <e_new> | 605 | <e_new>QuickTime not found - unable to initialize.</e_new> |
952 | Start | ||
953 | </e_new> | ||
954 | <f_old_trans></f_old_trans> | 606 | <f_old_trans></f_old_trans> |
955 | <f_translation> | 607 | <f_translation>QuickTimeが見つかりません。初期化に失敗しました。</f_translation> |
956 | 開始 | 608 | </string><string><a_file>strings.xml</a_file> |
957 | </f_translation> | 609 | <b_path>//LoginQuicktimeOK</b_path> |
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> | 610 | <c_attribute></c_attribute> |
961 | <d_old></d_old> | 611 | <d_old></d_old> |
962 | <e_new> | 612 | <e_new>QuickTime initialized successfully.</e_new> |
963 | Stop | ||
964 | </e_new> | ||
965 | <f_old_trans></f_old_trans> | 613 | <f_old_trans></f_old_trans> |
966 | <f_translation> | 614 | <f_translation>QuickTimeが正常に初期化されました。</f_translation> |
967 | 停止 | 615 | </string><string><a_file>strings.xml</a_file> |
968 | </f_translation> | 616 | <b_path>//LoginWaitingForRegionHandshake</b_path> |
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> | 617 | <c_attribute></c_attribute> |
972 | <d_old></d_old> | 618 | <d_old></d_old> |
973 | <e_new>You are not allowed to view this note.</e_new> | 619 | <e_new>Waiting for region handshake...</e_new> |
974 | <f_old_trans></f_old_trans> | 620 | <f_old_trans></f_old_trans> |
975 | <f_translation>あなたはこのノートを見ることができません。</f_translation> | 621 | <f_translation>地域のハンドシェイクを待っています...</f_translation> |
976 | </string><string><a_file>floater_preview_url.xml</a_file> | 622 | </string><string><a_file>strings.xml</a_file> |
977 | <b_path>/url_preview</b_path> | 623 | <b_path>//LoginConnectingToRegion</b_path> |
978 | <c_attribute>title</c_attribute> | 624 | <c_attribute></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> | 625 | <d_old></d_old> |
1008 | <e_new>Pyramid</e_new> | 626 | <e_new>Connecting to region...</e_new> |
1009 | <f_old_trans></f_old_trans> | 627 | <f_old_trans></f_old_trans> |
1010 | <f_translation></f_translation> | 628 | <f_translation>地域接続す...</f_translation> |
1011 | </string><string><a_file>floater_tools.xml</a_file> | 629 | </string><string><a_file>strings.xml</a_file> |
1012 | <b_path>/toolbox floater/ToolTetrahedron</b_path> | 630 | <b_path>//LoginDownloadingClothing</b_path> |
1013 | <c_attribute>tool_tip</c_attribute> | 631 | <c_attribute></c_attribute> |
1014 | <d_old></d_old> | 632 | <d_old></d_old> |
1015 | <e_new>Tetrahedron</e_new> | 633 | <e_new>Downloading clothing...</e_new> |
1016 | <f_old_trans></f_old_trans> | 634 | <f_old_trans></f_old_trans> |
1017 | <f_translation>4面体</f_translation> | 635 | <f_translation>服をダウンロードしています...</f_translation> |
1018 | </string><string><a_file>floater_tools.xml</a_file> | 636 | </string><string><a_file>strings.xml</a_file> |
1019 | <b_path>/toolbox floater/ToolCylinder</b_path> | 637 | <b_path>//TooltipPerson</b_path> |
1020 | <c_attribute>tool_tip</c_attribute> | 638 | <c_attribute></c_attribute> |
1021 | <d_old></d_old> | 639 | <d_old></d_old> |
1022 | <e_new>Cylinder</e_new> | 640 | <e_new>Person</e_new> |
1023 | <f_old_trans></f_old_trans> | 641 | <f_old_trans></f_old_trans> |
1024 | <f_translation>シリンダー</f_translation> | 642 | <f_translation>人</f_translation> |
1025 | </string><string><a_file>floater_tools.xml</a_file> | 643 | </string><string><a_file>strings.xml</a_file> |
1026 | <b_path>/toolbox floater/ToolHemiCylinder</b_path> | 644 | <b_path>//TooltipNoName</b_path> |
1027 | <c_attribute>tool_tip</c_attribute> | 645 | <c_attribute></c_attribute> |
1028 | <d_old></d_old> | 646 | <d_old></d_old> |
1029 | <e_new>Hemicylinder</e_new> | 647 | <e_new>(no name)</e_new> |
1030 | <f_old_trans></f_old_trans> | 648 | <f_old_trans></f_old_trans> |
1031 | <f_translation>柱</f_translation> | 649 | <f_translation>(なし)</f_translation> |
1032 | </string><string><a_file>floater_tools.xml</a_file> | 650 | </string><string><a_file>strings.xml</a_file> |
1033 | <b_path>/toolbox floater/ToolCone</b_path> | 651 | <b_path>//TooltipOwner</b_path> |
1034 | <c_attribute>tool_tip</c_attribute> | 652 | <c_attribute></c_attribute> |
1035 | <d_old></d_old> | 653 | <d_old></d_old> |
1036 | <e_new>Cone</e_new> | 654 | <e_new>Owner:</e_new> |
1037 | <f_old_trans></f_old_trans> | 655 | <f_old_trans></f_old_trans> |
1038 | <f_translation>円錐</f_translation> | 656 | <f_translation>オーナー:</f_translation> |
1039 | </string><string><a_file>floater_tools.xml</a_file> | 657 | </string><string><a_file>strings.xml</a_file> |
1040 | <b_path>/toolbox floater/ToolHemiCone</b_path> | 658 | <b_path>//TooltipPublic</b_path> |
1041 | <c_attribute>tool_tip</c_attribute> | 659 | <c_attribute></c_attribute> |
1042 | <d_old></d_old> | 660 | <d_old></d_old> |
1043 | <e_new>Hemicone</e_new> | 661 | <e_new>Public</e_new> |
1044 | <f_old_trans></f_old_trans> | 662 | <f_old_trans></f_old_trans> |
1045 | <f_translation>錐</f_translation> | 663 | <f_translation></f_translation> |
1046 | </string><string><a_file>floater_tools.xml</a_file> | 664 | </string><string><a_file>strings.xml</a_file> |
1047 | <b_path>/toolbox floater/ToolSphere</b_path> | 665 | <b_path>//TooltipIsGroup</b_path> |
1048 | <c_attribute>tool_tip</c_attribute> | 666 | <c_attribute></c_attribute> |
1049 | <d_old></d_old> | 667 | <d_old></d_old> |
1050 | <e_new>Sphere</e_new> | 668 | <e_new>(Group)</e_new> |
1051 | <f_old_trans></f_old_trans> | 669 | <f_old_trans></f_old_trans> |
1052 | <f_translation>形</f_translation> | 670 | <f_translation>(グープ)</f_translation> |
1053 | </string><string><a_file>floater_tools.xml</a_file> | 671 | </string><string><a_file>strings.xml</a_file> |
1054 | <b_path>/toolbox floater/ToolHemiSphere</b_path> | 672 | <b_path>//TooltipFlagScript</b_path> |
1055 | <c_attribute>tool_tip</c_attribute> | 673 | <c_attribute></c_attribute> |
1056 | <d_old></d_old> | 674 | <d_old></d_old> |
1057 | <e_new>Hemisphere</e_new> | 675 | <e_new>Script</e_new> |
1058 | <f_old_trans></f_old_trans> | 676 | <f_old_trans></f_old_trans> |
1059 | <f_translation>半</f_translation> | 677 | <f_translation>スクプト</f_translation> |
1060 | </string><string><a_file>floater_tools.xml</a_file> | 678 | </string><string><a_file>strings.xml</a_file> |
1061 | <b_path>/toolbox floater/ToolTorus</b_path> | 679 | <b_path>//TooltipFlagPhysics</b_path> |
1062 | <c_attribute>tool_tip</c_attribute> | 680 | <c_attribute></c_attribute> |
1063 | <d_old></d_old> | 681 | <d_old></d_old> |
1064 | <e_new>Torus</e_new> | 682 | <e_new>Physics</e_new> |
1065 | <f_old_trans></f_old_trans> | 683 | <f_old_trans></f_old_trans> |
1066 | <f_translation>トース</f_translation> | 684 | <f_translation>理作用</f_translation> |
1067 | </string><string><a_file>floater_tools.xml</a_file> | 685 | </string><string><a_file>strings.xml</a_file> |
1068 | <b_path>/toolbox floater/ToolTube</b_path> | 686 | <b_path>//TooltipFlagTouch</b_path> |
1069 | <c_attribute>tool_tip</c_attribute> | 687 | <c_attribute></c_attribute> |
1070 | <d_old></d_old> | 688 | <d_old></d_old> |
1071 | <e_new>Tube</e_new> | 689 | <e_new>Touch</e_new> |
1072 | <f_old_trans></f_old_trans> | 690 | <f_old_trans></f_old_trans> |
1073 | <f_translation>ューブ</f_translation> | 691 | <f_translation>触</f_translation> |
1074 | </string><string><a_file>floater_tools.xml</a_file> | 692 | </string><string><a_file>strings.xml</a_file> |
1075 | <b_path>/toolbox floater/ToolRing</b_path> | 693 | <b_path>//TooltipFlagL$</b_path> |
1076 | <c_attribute>tool_tip</c_attribute> | 694 | <c_attribute></c_attribute> |
1077 | <d_old></d_old> | 695 | <d_old></d_old> |
1078 | <e_new>Ring</e_new> | 696 | <e_new>L$</e_new> |
1079 | <f_old_trans></f_old_trans> | 697 | <f_old_trans></f_old_trans> |
1080 | <f_translation>リング</f_translation> | 698 | <f_translation>L$</f_translation> |
1081 | </string><string><a_file>floater_tools.xml</a_file> | 699 | </string><string><a_file>strings.xml</a_file> |
1082 | <b_path>/toolbox floater/ToolTree</b_path> | 700 | <b_path>//TooltipFlagDropInventory</b_path> |
1083 | <c_attribute>tool_tip</c_attribute> | 701 | <c_attribute></c_attribute> |
1084 | <d_old></d_old> | 702 | <d_old></d_old> |
1085 | <e_new>Tree</e_new> | 703 | <e_new>Drop Inventory</e_new> |
1086 | <f_old_trans></f_old_trans> | 704 | <f_old_trans></f_old_trans> |
1087 | <f_translation>木</f_translation> | 705 | <f_translation>ち物をドロップする</f_translation> |
1088 | </string><string><a_file>floater_tools.xml</a_file> | 706 | </string><string><a_file>strings.xml</a_file> |
1089 | <b_path>/toolbox floater/ToolGrass</b_path> | 707 | <b_path>//TooltipFlagPhantom</b_path> |
1090 | <c_attribute>tool_tip</c_attribute> | 708 | <c_attribute></c_attribute> |
1091 | <d_old></d_old> | 709 | <d_old></d_old> |
1092 | <e_new>Grass</e_new> | 710 | <e_new>Phantom</e_new> |
1093 | <f_old_trans></f_old_trans> | 711 | <f_old_trans></f_old_trans> |
1094 | <f_translation>草地</f_translation> | 712 | <f_translation>ファントム</f_translation> |
1095 | </string><string><a_file>menu_viewer.xml</a_file> | 713 | </string><string><a_file>strings.xml</a_file> |
1096 | <b_path>/Main Menu/View/Joystick Flycam</b_path> | 714 | <b_path>//TooltipFlagTemporary</b_path> |
1097 | <c_attribute>label</c_attribute> | 715 | <c_attribute></c_attribute> |
1098 | <d_old></d_old> | 716 | <d_old></d_old> |
1099 | <e_new>Joystick Flycam</e_new> | 717 | <e_new>Temporary</e_new> |
1100 | <f_old_trans></f_old_trans> | 718 | <f_old_trans></f_old_trans> |
1101 | <f_translation>ョスティック・フライカム</f_translation> | 719 | <f_translation>的</f_translation> |
1102 | </string><string><a_file>menu_viewer.xml</a_file> | 720 | </string><string><a_file>strings.xml</a_file> |
1103 | <b_path>/Main Menu/Help/Tutorial</b_path> | 721 | <b_path>//TooltipFlagRightClickMenu</b_path> |
1104 | <c_attribute>label</c_attribute> | 722 | <c_attribute></c_attribute> |
1105 | <d_old></d_old> | 723 | <d_old></d_old> |
1106 | <e_new>Tutorial</e_new> | 724 | <e_new>(Right-click for menu)</e_new> |
1107 | <f_old_trans></f_old_trans> | 725 | <f_old_trans></f_old_trans> |
1108 | <f_translation>チル</f_translation> | 726 | <f_translation>(右ック表示)</f_translation> |
1109 | </string><string><a_file>menu_viewer.xml</a_file> | 727 | </string><string><a_file>strings.xml</a_file> |
1110 | <b_path>/Main Menu/Help/separator7</b_path> | 728 | <b_path>//TooltipFreeToCopy</b_path> |
1111 | <c_attribute>label</c_attribute> | 729 | <c_attribute></c_attribute> |
1112 | <d_old></d_old> | 730 | <d_old></d_old> |
1113 | <e_new>-----------</e_new> | 731 | <e_new>Free to copy</e_new> |
1114 | <f_old_trans></f_old_trans> | 732 | <f_old_trans></f_old_trans> |
1115 | <f_translation>-----------</f_translation> | 733 | <f_translation>コピー可能</f_translation> |
1116 | </string><string><a_file>menu_viewer.xml</a_file> | 734 | </string><string><a_file>strings.xml</a_file> |
1117 | <b_path>/Main Menu/Help/Bug Reporting/separator9</b_path> | 735 | <b_path>//TooltipForSaleL$</b_path> |
1118 | <c_attribute>label</c_attribute> | 736 | <c_attribute></c_attribute> |
1119 | <d_old></d_old> | 737 | <d_old></d_old> |
1120 | <e_new>-----------</e_new> | 738 | <e_new>For Sale: L$[AMOUNT]</e_new> |
1121 | <f_old_trans></f_old_trans> | 739 | <f_old_trans></f_old_trans> |
1122 | <f_translation>-----------</f_translation> | 740 | <f_translation>売り出し中:L$[AMOUNT]</f_translation> |
1123 | </string><string><a_file>mime_types.xml</a_file> | 741 | </string><string><a_file>strings.xml</a_file> |
1124 | <b_path>/default/web/</b_path> | 742 | <b_path>//TooltipForSaleMsg</b_path> |
1125 | <c_attribute></c_attribute> | 743 | <c_attribute></c_attribute> |
1126 | <d_old></d_old> | 744 | <d_old></d_old> |
1127 | <e_new> | 745 | <e_new>For Sale: [MESSAGE]</e_new> |
1128 | Web Content | ||
1129 | </e_new> | ||
1130 | <f_old_trans></f_old_trans> | 746 | <f_old_trans></f_old_trans> |
1131 | <f_translation> | 747 | <f_translation>売り出し中: [MESSAGE]</f_translation> |
1132 | ウェブ・コンテンツ | 748 | </string><string><a_file>strings.xml</a_file> |
1133 | </f_translation> | 749 | <b_path>//TooltipFlagGroupBuild</b_path> |
1134 | </string><string><a_file>mime_types.xml</a_file> | ||
1135 | <b_path>/default/web/</b_path> | ||
1136 | <c_attribute></c_attribute> | 750 | <c_attribute></c_attribute> |
1137 | <d_old></d_old> | 751 | <d_old></d_old> |
1138 | <e_new> | 752 | <e_new>Group Build</e_new> |
1139 | This location has Web content | ||
1140 | </e_new> | ||
1141 | <f_old_trans></f_old_trans> | 753 | <f_old_trans></f_old_trans> |
1142 | <f_translation> | 754 | <f_translation>グループ作成</f_translation> |
1143 | ここにウェブ・コンテンツがあります。 | 755 | </string><string><a_file>strings.xml</a_file> |
1144 | </f_translation> | 756 | <b_path>//TooltipFlagNoBuild</b_path> |
1145 | </string><string><a_file>mime_types.xml</a_file> | ||
1146 | <b_path>/default/web/</b_path> | ||
1147 | <c_attribute></c_attribute> | 757 | <c_attribute></c_attribute> |
1148 | <d_old></d_old> | 758 | <d_old></d_old> |
1149 | <e_new> | 759 | <e_new>No Build</e_new> |
1150 | Show Web content | ||
1151 | </e_new> | ||
1152 | <f_old_trans></f_old_trans> | 760 | <f_old_trans></f_old_trans> |
1153 | <f_translation> | 761 | <f_translation>作成禁止</f_translation> |
1154 | ウェブ・コンテンツを表示 | 762 | </string><string><a_file>strings.xml</a_file> |
1155 | </f_translation> | 763 | <b_path>//TooltipFlagNoEdit</b_path> |
1156 | </string><string><a_file>mime_types.xml</a_file> | ||
1157 | <b_path>/default/movie/</b_path> | ||
1158 | <c_attribute></c_attribute> | 764 | <c_attribute></c_attribute> |
1159 | <d_old></d_old> | 765 | <d_old></d_old> |
1160 | <e_new> | 766 | <e_new>Group Build</e_new> |
1161 | Movie | ||
1162 | </e_new> | ||
1163 | <f_old_trans></f_old_trans> | 767 | <f_old_trans></f_old_trans> |
1164 | <f_translation> | 768 | <f_translation>グループ作成</f_translation> |
1165 | ムービー | 769 | </string><string><a_file>strings.xml</a_file> |
1166 | </f_translation> | 770 | <b_path>//TooltipFlagNotSafe</b_path> |
1167 | </string><string><a_file>mime_types.xml</a_file> | ||
1168 | <b_path>/default/movie/</b_path> | ||
1169 | <c_attribute></c_attribute> | 771 | <c_attribute></c_attribute> |
1170 | <d_old></d_old> | 772 | <d_old></d_old> |
1171 | <e_new> | 773 | <e_new>Not Safe</e_new> |
1172 | There is a movie to play here | ||
1173 | </e_new> | ||
1174 | <f_old_trans></f_old_trans> | 774 | <f_old_trans></f_old_trans> |
1175 | <f_translation> | 775 | <f_translation>危険</f_translation> |
1176 | ここにはムービーがあります | 776 | </string><string><a_file>strings.xml</a_file> |
1177 | </f_translation> | 777 | <b_path>//TooltipFlagNoFly</b_path> |
1178 | </string><string><a_file>mime_types.xml</a_file> | ||
1179 | <b_path>/default/movie/</b_path> | ||
1180 | <c_attribute></c_attribute> | 778 | <c_attribute></c_attribute> |
1181 | <d_old></d_old> | 779 | <d_old></d_old> |
1182 | <e_new> | 780 | <e_new>No Fly</e_new> |
1183 | Play movie | ||
1184 | </e_new> | ||
1185 | <f_old_trans></f_old_trans> | 781 | <f_old_trans></f_old_trans> |
1186 | <f_translation> | 782 | <f_translation>飛行禁止</f_translation> |
1187 | ムービー再生 | 783 | </string><string><a_file>strings.xml</a_file> |
1188 | </f_translation> | 784 | <b_path>//TooltipFlagGroupScripts</b_path> |
1189 | </string><string><a_file>mime_types.xml</a_file> | ||
1190 | <b_path>/default/none/</b_path> | ||
1191 | <c_attribute></c_attribute> | 785 | <c_attribute></c_attribute> |
1192 | <d_old></d_old> | 786 | <d_old></d_old> |
1193 | <e_new> | 787 | <e_new>Group Scripts</e_new> |
1194 | No Content | ||
1195 | </e_new> | ||
1196 | <f_old_trans></f_old_trans> | 788 | <f_old_trans></f_old_trans> |
1197 | <f_translation> | 789 | <f_translation>グループ・スクリプト</f_translation> |
1198 | コンテンツなし | 790 | </string><string><a_file>strings.xml</a_file> |
1199 | </f_translation> | 791 | <b_path>//TooltipFlagNoScripts</b_path> |
1200 | </string><string><a_file>mime_types.xml</a_file> | ||
1201 | <b_path>/default/none/</b_path> | ||
1202 | <c_attribute></c_attribute> | 792 | <c_attribute></c_attribute> |
1203 | <d_old></d_old> | 793 | <d_old></d_old> |
1204 | <e_new> | 794 | <e_new>No Scripts</e_new> |
1205 | No media here | ||
1206 | </e_new> | ||
1207 | <f_old_trans></f_old_trans> | 795 | <f_old_trans></f_old_trans> |
1208 | <f_translation> | 796 | <f_translation>スクリプトなし</f_translation> |
1209 | メディアなし | 797 | </string><string><a_file>strings.xml</a_file> |
1210 | </f_translation> | 798 | <b_path>//TooltipLand</b_path> |
1211 | </string><string><a_file>mime_types.xml</a_file> | ||
1212 | <b_path>/default/image/</b_path> | ||
1213 | <c_attribute></c_attribute> | 799 | <c_attribute></c_attribute> |
1214 | <d_old></d_old> | 800 | <d_old></d_old> |
1215 | <e_new> | 801 | <e_new>Land:</e_new> |
1216 | Image | ||
1217 | </e_new> | ||
1218 | <f_old_trans></f_old_trans> | 802 | <f_old_trans></f_old_trans> |
1219 | <f_translation> | 803 | <f_translation>土地:</f_translation> |
1220 | 画像 | 804 | </string><string><a_file>strings.xml</a_file> |
1221 | </f_translation> | 805 | <b_path>//RetrievingData</b_path> |
1222 | </string><string><a_file>mime_types.xml</a_file> | ||
1223 | <b_path>/default/image/</b_path> | ||
1224 | <c_attribute></c_attribute> | 806 | <c_attribute></c_attribute> |
1225 | <d_old></d_old> | 807 | <d_old></d_old> |
1226 | <e_new> | 808 | <e_new>Retrieving...</e_new> |
1227 | There is an image at this location | ||
1228 | </e_new> | ||
1229 | <f_old_trans></f_old_trans> | 809 | <f_old_trans></f_old_trans> |
1230 | <f_translation> | 810 | <f_translation>検索中...</f_translation> |
1231 | ここには画像があります | 811 | </string><string><a_file>strings.xml</a_file> |
1232 | </f_translation> | 812 | <b_path>//LoadingData</b_path> |
1233 | </string><string><a_file>mime_types.xml</a_file> | ||
1234 | <b_path>/default/image/</b_path> | ||
1235 | <c_attribute></c_attribute> | 813 | <c_attribute></c_attribute> |
1236 | <d_old></d_old> | 814 | <d_old></d_old> |
1237 | <e_new> | 815 | <e_new>Loading...</e_new> |
1238 | View this location's image | ||
1239 | </e_new> | ||
1240 | <f_old_trans></f_old_trans> | 816 | <f_old_trans></f_old_trans> |
1241 | <f_translation> | 817 | <f_translation>ロード中...</f_translation> |
1242 | ここの画像を表示 | 818 | </string><string><a_file>strings.xml</a_file> |
1243 | </f_translation> | 819 | <b_path>//AvatarNameNobody</b_path> |
1244 | </string><string><a_file>mime_types.xml</a_file> | ||
1245 | <b_path>/default/audio/</b_path> | ||
1246 | <c_attribute></c_attribute> | 820 | <c_attribute></c_attribute> |
1247 | <d_old></d_old> | 821 | <d_old></d_old> |
1248 | <e_new> | 822 | <e_new>(nobody)</e_new> |
1249 | Audio | ||
1250 | </e_new> | ||
1251 | <f_old_trans></f_old_trans> | 823 | <f_old_trans></f_old_trans> |
1252 | <f_translation> | 824 | <f_translation>(無人)</f_translation> |
1253 | オーディオ | 825 | </string><string><a_file>strings.xml</a_file> |
1254 | </f_translation> | 826 | <b_path>//AvatarNameWaiting</b_path> |
1255 | </string><string><a_file>mime_types.xml</a_file> | ||
1256 | <b_path>/default/audio/</b_path> | ||
1257 | <c_attribute></c_attribute> | 827 | <c_attribute></c_attribute> |
1258 | <d_old></d_old> | 828 | <d_old></d_old> |
1259 | <e_new> | 829 | <e_new>(waiting)</e_new> |
1260 | There is audio at this location | ||
1261 | </e_new> | ||
1262 | <f_old_trans></f_old_trans> | 830 | <f_old_trans></f_old_trans> |
1263 | <f_translation> | 831 | <f_translation>(待機中)</f_translation> |
1264 | ここではオーディオが聞けます | 832 | </string><string><a_file>strings.xml</a_file> |
1265 | </f_translation> | 833 | <b_path>//AvatarNameHippos</b_path> |
1266 | </string><string><a_file>mime_types.xml</a_file> | ||
1267 | <b_path>/default/audio/</b_path> | ||
1268 | <c_attribute></c_attribute> | 834 | <c_attribute></c_attribute> |
1269 | <d_old></d_old> | 835 | <d_old></d_old> |
1270 | <e_new> | 836 | <e_new>(hippos)</e_new> |
1271 | View this location's audio | ||
1272 | </e_new> | ||
1273 | <f_old_trans></f_old_trans> | 837 | <f_old_trans></f_old_trans> |
1274 | <f_translation> | 838 | <f_translation>(カバ)</f_translation> |
1275 | ここのオーディオを再生する | 839 | </string><string><a_file>strings.xml</a_file> |
1276 | </f_translation> | 840 | <b_path>//GroupNameNone</b_path> |
1277 | </string><string><a_file>mime_types.xml</a_file> | ||
1278 | <b_path>/default/rtsp/</b_path> | ||
1279 | <c_attribute></c_attribute> | 841 | <c_attribute></c_attribute> |
1280 | <d_old></d_old> | 842 | <d_old></d_old> |
1281 | <e_new> | 843 | <e_new>(none)</e_new> |
1282 | Real Time Streaming | ||
1283 | </e_new> | ||
1284 | <f_old_trans></f_old_trans> | 844 | <f_old_trans></f_old_trans> |
1285 | <f_translation> | 845 | <f_translation>(なし)</f_translation> |
1286 | リアルタイム・ストリーミング | 846 | </string><string><a_file>strings.xml</a_file> |
1287 | </f_translation> | 847 | <b_path>//AssetErrorNone</b_path> |
1288 | </string><string><a_file>mime_types.xml</a_file> | ||
1289 | <b_path>/default/blank/</b_path> | ||
1290 | <c_attribute></c_attribute> | 848 | <c_attribute></c_attribute> |
1291 | <d_old></d_old> | 849 | <d_old></d_old> |
1292 | <e_new> | 850 | <e_new>No error</e_new> |
1293 | - None - | ||
1294 | </e_new> | ||
1295 | <f_old_trans></f_old_trans> | 851 | <f_old_trans></f_old_trans> |
1296 | <f_translation> | 852 | <f_translation>エラーなし</f_translation> |
1297 | -- なし -- | 853 | </string><string><a_file>strings.xml</a_file> |
1298 | </f_translation> | 854 | <b_path>//AssetErrorRequestFailed</b_path> |
1299 | </string><string><a_file>mime_types.xml</a_file> | ||
1300 | <b_path>/default/"none/none"/</b_path> | ||
1301 | <c_attribute></c_attribute> | 855 | <c_attribute></c_attribute> |
1302 | <d_old></d_old> | 856 | <d_old></d_old> |
1303 | <e_new> | 857 | <e_new>Asset request: failed</e_new> |
1304 | - None - | ||
1305 | </e_new> | ||
1306 | <f_old_trans></f_old_trans> | 858 | <f_old_trans></f_old_trans> |
1307 | <f_translation> | 859 | <f_translation>資産の要求: 失敗</f_translation> |
1308 | -- なし -- | 860 | </string><string><a_file>strings.xml</a_file> |
1309 | </f_translation> | 861 | <b_path>//AssetErrorNonexistentFile</b_path> |
1310 | </string><string><a_file>mime_types.xml</a_file> | ||
1311 | <b_path>/default/"audio/*"/</b_path> | ||
1312 | <c_attribute></c_attribute> | 862 | <c_attribute></c_attribute> |
1313 | <d_old></d_old> | 863 | <d_old></d_old> |
1314 | <e_new> | 864 | <e_new>Asset request: non-existent file</e_new> |
1315 | Audio | ||
1316 | </e_new> | ||
1317 | <f_old_trans></f_old_trans> | 865 | <f_old_trans></f_old_trans> |
1318 | <f_translation> | 866 | <f_translation>資産の要求: 存在しないファイル</f_translation> |
1319 | オーディオ | 867 | </string><string><a_file>strings.xml</a_file> |
1320 | </f_translation> | 868 | <b_path>//AssetErrorNotInDatabase</b_path> |
1321 | </string><string><a_file>mime_types.xml</a_file> | ||
1322 | <b_path>/default/"video/*"/</b_path> | ||
1323 | <c_attribute></c_attribute> | 869 | <c_attribute></c_attribute> |
1324 | <d_old></d_old> | 870 | <d_old></d_old> |
1325 | <e_new> | 871 | <e_new>Asset request: asset not found in database</e_new> |
1326 | Video | ||
1327 | </e_new> | ||
1328 | <f_old_trans></f_old_trans> | 872 | <f_old_trans></f_old_trans> |
1329 | <f_translation> | 873 | <f_translation>資産の要求: データベースでは見つからない資産</f_translation> |
1330 | ビデオ | 874 | </string><string><a_file>strings.xml</a_file> |
1331 | </f_translation> | 875 | <b_path>//AssetErrorEOF</b_path> |
1332 | </string><string><a_file>mime_types.xml</a_file> | ||
1333 | <b_path>/default/"image/*"/</b_path> | ||
1334 | <c_attribute></c_attribute> | 876 | <c_attribute></c_attribute> |
1335 | <d_old></d_old> | 877 | <d_old></d_old> |
1336 | <e_new> | 878 | <e_new>End of file</e_new> |
1337 | Image | ||
1338 | </e_new> | ||
1339 | <f_old_trans></f_old_trans> | 879 | <f_old_trans></f_old_trans> |
1340 | <f_translation> | 880 | <f_translation>ファイルの終わり</f_translation> |
1341 | 画像 | 881 | </string><string><a_file>strings.xml</a_file> |
1342 | </f_translation> | 882 | <b_path>//AssetErrorCannotOpenFile</b_path> |
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> | 883 | <c_attribute></c_attribute> |
1346 | <d_old></d_old> | 884 | <d_old></d_old> |
1347 | <e_new> | 885 | <e_new>Cannot open file</e_new> |
1348 | Movie (QuickTime) | ||
1349 | </e_new> | ||
1350 | <f_old_trans></f_old_trans> | 886 | <f_old_trans></f_old_trans> |
1351 | <f_translation> | 887 | <f_translation>ファイルを開くことができません</f_translation> |
1352 | ムービー (QuickTime) | 888 | </string><string><a_file>strings.xml</a_file> |
1353 | </f_translation> | 889 | <b_path>//AssetErrorFileNotFound</b_path> |
1354 | </string><string><a_file>mime_types.xml</a_file> | ||
1355 | <b_path>/default/"application/javascript"/</b_path> | ||
1356 | <c_attribute></c_attribute> | 890 | <c_attribute></c_attribute> |
1357 | <d_old></d_old> | 891 | <d_old></d_old> |
1358 | <e_new> | 892 | <e_new>File not found</e_new> |
1359 | Javascript | ||
1360 | </e_new> | ||
1361 | <f_old_trans></f_old_trans> | 893 | <f_old_trans></f_old_trans> |
1362 | <f_translation> | 894 | <f_translation>ファイルが見つかりません</f_translation> |
1363 | Javascript | 895 | </string><string><a_file>strings.xml</a_file> |
1364 | </f_translation> | 896 | <b_path>//AssetErrorTCPTimeout</b_path> |
1365 | </string><string><a_file>mime_types.xml</a_file> | ||
1366 | <b_path>/default/"application/ogg"/</b_path> | ||
1367 | <c_attribute></c_attribute> | 897 | <c_attribute></c_attribute> |
1368 | <d_old></d_old> | 898 | <d_old></d_old> |
1369 | <e_new> | 899 | <e_new>File transfer timeout</e_new> |
1370 | Ogg Audio/Video | ||
1371 | </e_new> | ||
1372 | <f_old_trans></f_old_trans> | 900 | <f_old_trans></f_old_trans> |
1373 | <f_translation> | 901 | <f_translation>ファイル転送タイムアウトです</f_translation> |
1374 | Oggオーディオ/ビデオ | 902 | </string><string><a_file>strings.xml</a_file> |
1375 | </f_translation> | 903 | <b_path>//AssetErrorCircuitGone</b_path> |
1376 | </string><string><a_file>mime_types.xml</a_file> | ||
1377 | <b_path>/default/"application/pdf"/</b_path> | ||
1378 | <c_attribute></c_attribute> | 904 | <c_attribute></c_attribute> |
1379 | <d_old></d_old> | 905 | <d_old></d_old> |
1380 | <e_new> | 906 | <e_new>Circuit gone</e_new> |
1381 | PDF Document | ||
1382 | </e_new> | ||
1383 | <f_old_trans></f_old_trans> | 907 | <f_old_trans></f_old_trans> |
1384 | <f_translation> | 908 | <f_translation>接続が解除されました</f_translation> |
1385 | PDFドキュメント | 909 | </string><string><a_file>strings.xml</a_file> |
1386 | </f_translation> | 910 | <b_path>//AssetErrorUnknownStatus</b_path> |
1387 | </string><string><a_file>mime_types.xml</a_file> | ||
1388 | <b_path>/default/"application/postscript"/</b_path> | ||
1389 | <c_attribute></c_attribute> | 911 | <c_attribute></c_attribute> |
1390 | <d_old></d_old> | 912 | <d_old></d_old> |
1391 | <e_new> | 913 | <e_new>Unknown status</e_new> |
1392 | Postscript Document | ||
1393 | </e_new> | ||
1394 | <f_old_trans></f_old_trans> | 914 | <f_old_trans></f_old_trans> |
1395 | <f_translation> | 915 | <f_translation>ステータスが不明です</f_translation> |
1396 | Postscriptドキュメント | 916 | </string><string><a_file>strings.xml</a_file> |
1397 | </f_translation> | 917 | <b_path>//AvatarEditingApparance</b_path> |
1398 | </string><string><a_file>mime_types.xml</a_file> | ||
1399 | <b_path>/default/"application/rtf"/</b_path> | ||
1400 | <c_attribute></c_attribute> | 918 | <c_attribute></c_attribute> |
1401 | <d_old></d_old> | 919 | <d_old></d_old> |
1402 | <e_new> | 920 | <e_new>(Editing Appearance)</e_new> |
1403 | Rich Text (RTF) | ||
1404 | </e_new> | ||
1405 | <f_old_trans></f_old_trans> | 921 | <f_old_trans></f_old_trans> |
1406 | <f_translation> | 922 | <f_translation>(容姿の編集)</f_translation> |
1407 | リッチ・テキスト (RTF) | 923 | </string><string><a_file>strings.xml</a_file> |
1408 | </f_translation> | 924 | <b_path>//AvatarAway</b_path> |
1409 | </string><string><a_file>mime_types.xml</a_file> | ||
1410 | <b_path>/default/"application/xhtml+xml"/</b_path> | ||
1411 | <c_attribute></c_attribute> | 925 | <c_attribute></c_attribute> |
1412 | <d_old></d_old> | 926 | <d_old></d_old> |
1413 | <e_new> | 927 | <e_new>Away</e_new> |
1414 | Web Page (XHTML) | ||
1415 | </e_new> | ||
1416 | <f_old_trans></f_old_trans> | 928 | <f_old_trans></f_old_trans> |
1417 | <f_translation> | 929 | <f_translation>退席中</f_translation> |
1418 | ウェブ・ページ (XHTML) | 930 | </string><string><a_file>strings.xml</a_file> |
1419 | </f_translation> | 931 | <b_path>//AvatarBusy</b_path> |
1420 | </string><string><a_file>mime_types.xml</a_file> | ||
1421 | <b_path>/default/"application/x-director"/</b_path> | ||
1422 | <c_attribute></c_attribute> | 932 | <c_attribute></c_attribute> |
1423 | <d_old></d_old> | 933 | <d_old></d_old> |
1424 | <e_new> | 934 | <e_new>Busy</e_new> |
1425 | Macromedia Director | ||
1426 | </e_new> | ||
1427 | <f_old_trans></f_old_trans> | 935 | <f_old_trans></f_old_trans> |
1428 | <f_translation> | 936 | <f_translation>取り込み中</f_translation> |
1429 | Macromedia Director | 937 | </string><string><a_file>strings.xml</a_file> |
1430 | </f_translation> | 938 | <b_path>//AvatarMuted</b_path> |
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> | 939 | <c_attribute></c_attribute> |
1434 | <d_old></d_old> | 940 | <d_old></d_old> |
1435 | <e_new> | 941 | <e_new>Muted</e_new> |
1436 | Flash | ||
1437 | </e_new> | ||
1438 | <f_old_trans></f_old_trans> | 942 | <f_old_trans></f_old_trans> |
1439 | <f_translation> | 943 | <f_translation>ミュート</f_translation> |
1440 | Flash | 944 | </string><string><a_file>strings.xml</a_file> |
1441 | </f_translation> | 945 | <b_path>//anim_express_afraid</b_path> |
1442 | </string><string><a_file>mime_types.xml</a_file> | ||
1443 | <b_path>/default/"audio/mid"/</b_path> | ||
1444 | <c_attribute></c_attribute> | 946 | <c_attribute></c_attribute> |
1445 | <d_old></d_old> | 947 | <d_old></d_old> |
1446 | <e_new> | 948 | <e_new>Afraid</e_new> |
1447 | Audio (MIDI) | ||
1448 | </e_new> | ||
1449 | <f_old_trans></f_old_trans> | 949 | <f_old_trans></f_old_trans> |
1450 | <f_translation> | 950 | <f_translation>怖れ</f_translation> |
1451 | オーディオ (MIDI) | 951 | </string><string><a_file>strings.xml</a_file> |
1452 | </f_translation> | 952 | <b_path>//anim_express_anger</b_path> |
1453 | </string><string><a_file>mime_types.xml</a_file> | ||
1454 | <b_path>/default/"audio/mpeg"/</b_path> | ||
1455 | <c_attribute></c_attribute> | 953 | <c_attribute></c_attribute> |
1456 | <d_old></d_old> | 954 | <d_old></d_old> |
1457 | <e_new> | 955 | <e_new>Angry</e_new> |
1458 | Audio (MP3) | ||
1459 | </e_new> | ||
1460 | <f_old_trans></f_old_trans> | 956 | <f_old_trans></f_old_trans> |
1461 | <f_translation> | 957 | <f_translation>怒り</f_translation> |
1462 | オーディオ (MP3) | 958 | </string><string><a_file>strings.xml</a_file> |
1463 | </f_translation> | 959 | <b_path>//anim_away</b_path> |
1464 | </string><string><a_file>mime_types.xml</a_file> | ||
1465 | <b_path>/default/"audio/x-aiff"/</b_path> | ||
1466 | <c_attribute></c_attribute> | 960 | <c_attribute></c_attribute> |
1467 | <d_old></d_old> | 961 | <d_old></d_old> |
1468 | <e_new> | 962 | <e_new>Away</e_new> |
1469 | Audio (AIFF) | ||
1470 | </e_new> | ||
1471 | <f_old_trans></f_old_trans> | 963 | <f_old_trans></f_old_trans> |
1472 | <f_translation> | 964 | <f_translation>退席中</f_translation> |
1473 | オーディオ (AIFF) | 965 | </string><string><a_file>strings.xml</a_file> |
1474 | </f_translation> | 966 | <b_path>//anim_backflip</b_path> |
1475 | </string><string><a_file>mime_types.xml</a_file> | ||
1476 | <b_path>/default/"audio/x-wav"/</b_path> | ||
1477 | <c_attribute></c_attribute> | 967 | <c_attribute></c_attribute> |
1478 | <d_old></d_old> | 968 | <d_old></d_old> |
1479 | <e_new> | 969 | <e_new>Backflip</e_new> |
1480 | Audio (WAV) | ||
1481 | </e_new> | ||
1482 | <f_old_trans></f_old_trans> | 970 | <f_old_trans></f_old_trans> |
1483 | <f_translation> | 971 | <f_translation>後ろ宙返り</f_translation> |
1484 | オーディオ (WAV) | 972 | </string><string><a_file>strings.xml</a_file> |
1485 | </f_translation> | 973 | <b_path>//anim_express_laugh</b_path> |
1486 | </string><string><a_file>mime_types.xml</a_file> | ||
1487 | <b_path>/default/"image/bmp"/</b_path> | ||
1488 | <c_attribute></c_attribute> | 974 | <c_attribute></c_attribute> |
1489 | <d_old></d_old> | 975 | <d_old></d_old> |
1490 | <e_new> | 976 | <e_new>Belly Laugh</e_new> |
1491 | Image (BMP) | ||
1492 | </e_new> | ||
1493 | <f_old_trans></f_old_trans> | 977 | <f_old_trans></f_old_trans> |
1494 | <f_translation> | 978 | <f_translation>大笑い</f_translation> |
1495 | 画像 (BMP) | 979 | </string><string><a_file>strings.xml</a_file> |
1496 | </f_translation> | 980 | <b_path>//anim_express_toothsmile</b_path> |
1497 | </string><string><a_file>mime_types.xml</a_file> | ||
1498 | <b_path>/default/"image/gif"/</b_path> | ||
1499 | <c_attribute></c_attribute> | 981 | <c_attribute></c_attribute> |
1500 | <d_old></d_old> | 982 | <d_old></d_old> |
1501 | <e_new> | 983 | <e_new>BigSmile</e_new> |
1502 | Image (GIF) | ||
1503 | </e_new> | ||
1504 | <f_old_trans></f_old_trans> | 984 | <f_old_trans></f_old_trans> |
1505 | <f_translation> | 985 | <f_translation>満面の笑顔</f_translation> |
1506 | 画像 (GIF) | 986 | </string><string><a_file>strings.xml</a_file> |
1507 | </f_translation> | 987 | <b_path>//anim_blowkiss</b_path> |
1508 | </string><string><a_file>mime_types.xml</a_file> | ||
1509 | <b_path>/default/"image/jpeg"/</b_path> | ||
1510 | <c_attribute></c_attribute> | 988 | <c_attribute></c_attribute> |
1511 | <d_old></d_old> | 989 | <d_old></d_old> |
1512 | <e_new> | 990 | <e_new>Blow Kiss</e_new> |
1513 | Image (JPEG) | ||
1514 | </e_new> | ||
1515 | <f_old_trans></f_old_trans> | 991 | <f_old_trans></f_old_trans> |
1516 | <f_translation> | 992 | <f_translation>投げキッス</f_translation> |
1517 | 画像 (JPEG) | 993 | </string><string><a_file>strings.xml</a_file> |
1518 | </f_translation> | 994 | <b_path>//anim_express_bored</b_path> |
1519 | </string><string><a_file>mime_types.xml</a_file> | ||
1520 | <b_path>/default/"image/png"/</b_path> | ||
1521 | <c_attribute></c_attribute> | 995 | <c_attribute></c_attribute> |
1522 | <d_old></d_old> | 996 | <d_old></d_old> |
1523 | <e_new> | 997 | <e_new>Bored</e_new> |
1524 | Image (PNG) | ||
1525 | </e_new> | ||
1526 | <f_old_trans></f_old_trans> | 998 | <f_old_trans></f_old_trans> |
1527 | <f_translation> | 999 | <f_translation>退屈</f_translation> |
1528 | 画像 (PNG) | 1000 | </string><string><a_file>strings.xml</a_file> |
1529 | </f_translation> | 1001 | <b_path>//anim_bow</b_path> |
1530 | </string><string><a_file>mime_types.xml</a_file> | ||
1531 | <b_path>/default/"image/svg+xml"/</b_path> | ||
1532 | <c_attribute></c_attribute> | 1002 | <c_attribute></c_attribute> |
1533 | <d_old></d_old> | 1003 | <d_old></d_old> |
1534 | <e_new> | 1004 | <e_new>Bow</e_new> |
1535 | Image (SVG) | ||
1536 | </e_new> | ||
1537 | <f_old_trans></f_old_trans> | 1005 | <f_old_trans></f_old_trans> |
1538 | <f_translation> | 1006 | <f_translation>おじぎ</f_translation> |
1539 | 画像 (SVG) | 1007 | </string><string><a_file>strings.xml</a_file> |
1540 | </f_translation> | 1008 | <b_path>//anim_clap</b_path> |
1541 | </string><string><a_file>mime_types.xml</a_file> | ||
1542 | <b_path>/default/"image/tiff"/</b_path> | ||
1543 | <c_attribute></c_attribute> | 1009 | <c_attribute></c_attribute> |
1544 | <d_old></d_old> | 1010 | <d_old></d_old> |
1545 | <e_new> | 1011 | <e_new>Clap</e_new> |
1546 | Image (TIFF) | ||
1547 | </e_new> | ||
1548 | <f_old_trans></f_old_trans> | 1012 | <f_old_trans></f_old_trans> |
1549 | <f_translation> | 1013 | <f_translation>拍手</f_translation> |
1550 | 画像 (TIFF) | 1014 | </string><string><a_file>strings.xml</a_file> |
1551 | </f_translation> | 1015 | <b_path>//anim_courtbow</b_path> |
1552 | </string><string><a_file>mime_types.xml</a_file> | ||
1553 | <b_path>/default/"text/html"/</b_path> | ||
1554 | <c_attribute></c_attribute> | 1016 | <c_attribute></c_attribute> |
1555 | <d_old></d_old> | 1017 | <d_old></d_old> |
1556 | <e_new> | 1018 | <e_new>Court Bow</e_new> |
1557 | Web Page | ||
1558 | </e_new> | ||
1559 | <f_old_trans></f_old_trans> | 1019 | <f_old_trans></f_old_trans> |
1560 | <f_translation> | 1020 | <f_translation>深いおじぎ</f_translation> |
1561 | ウェブ・ページ | 1021 | </string><string><a_file>strings.xml</a_file> |
1562 | </f_translation> | 1022 | <b_path>//anim_express_cry</b_path> |
1563 | </string><string><a_file>mime_types.xml</a_file> | ||
1564 | <b_path>/default/"text/plain"/</b_path> | ||
1565 | <c_attribute></c_attribute> | 1023 | <c_attribute></c_attribute> |
1566 | <d_old></d_old> | 1024 | <d_old></d_old> |
1567 | <e_new> | 1025 | <e_new>Cry</e_new> |
1568 | Text | ||
1569 | </e_new> | ||
1570 | <f_old_trans></f_old_trans> | 1026 | <f_old_trans></f_old_trans> |
1571 | <f_translation> | 1027 | <f_translation>泣く</f_translation> |
1572 | テキスト | 1028 | </string><string><a_file>strings.xml</a_file> |
1573 | </f_translation> | 1029 | <b_path>//anim_dance1</b_path> |
1574 | </string><string><a_file>mime_types.xml</a_file> | ||
1575 | <b_path>/default/"text/xml"/</b_path> | ||
1576 | <c_attribute></c_attribute> | 1030 | <c_attribute></c_attribute> |
1577 | <d_old></d_old> | 1031 | <d_old></d_old> |
1578 | <e_new> | 1032 | <e_new>Dance 1</e_new> |
1579 | XML | ||
1580 | </e_new> | ||
1581 | <f_old_trans></f_old_trans> | 1033 | <f_old_trans></f_old_trans> |
1582 | <f_translation> | 1034 | <f_translation>ダンス1</f_translation> |
1583 | XML | 1035 | </string><string><a_file>strings.xml</a_file> |
1584 | </f_translation> | 1036 | <b_path>//anim_dance2</b_path> |
1585 | </string><string><a_file>mime_types.xml</a_file> | ||
1586 | <b_path>/default/"video/mpeg"/</b_path> | ||
1587 | <c_attribute></c_attribute> | 1037 | <c_attribute></c_attribute> |
1588 | <d_old></d_old> | 1038 | <d_old></d_old> |
1589 | <e_new> | 1039 | <e_new>Dance 2</e_new> |
1590 | Movie (MPEG) | ||
1591 | </e_new> | ||
1592 | <f_old_trans></f_old_trans> | 1040 | <f_old_trans></f_old_trans> |
1593 | <f_translation> | 1041 | <f_translation>ダンス2</f_translation> |
1594 | ムービー (MPEG) | 1042 | </string><string><a_file>strings.xml</a_file> |
1595 | </f_translation> | 1043 | <b_path>//anim_dance3</b_path> |
1596 | </string><string><a_file>mime_types.xml</a_file> | ||
1597 | <b_path>/default/"video/mp4"/</b_path> | ||
1598 | <c_attribute></c_attribute> | 1044 | <c_attribute></c_attribute> |
1599 | <d_old></d_old> | 1045 | <d_old></d_old> |
1600 | <e_new> | 1046 | <e_new>Dance 3</e_new> |
1601 | Movie (MP4) | ||
1602 | </e_new> | ||
1603 | <f_old_trans></f_old_trans> | 1047 | <f_old_trans></f_old_trans> |
1604 | <f_translation> | 1048 | <f_translation>ダンス3</f_translation> |
1605 | ムービー (MP4) | 1049 | </string><string><a_file>strings.xml</a_file> |
1606 | </f_translation> | 1050 | <b_path>//anim_dance4</b_path> |
1607 | </string><string><a_file>mime_types.xml</a_file> | ||
1608 | <b_path>/default/"video/quicktime"/</b_path> | ||
1609 | <c_attribute></c_attribute> | 1051 | <c_attribute></c_attribute> |
1610 | <d_old></d_old> | 1052 | <d_old></d_old> |
1611 | <e_new> | 1053 | <e_new>Dance 4</e_new> |
1612 | Movie (QuickTime) | ||
1613 | </e_new> | ||
1614 | <f_old_trans></f_old_trans> | 1054 | <f_old_trans></f_old_trans> |
1615 | <f_translation> | 1055 | <f_translation>ダンス4</f_translation> |
1616 | ムービー (QuickTime) | 1056 | </string><string><a_file>strings.xml</a_file> |
1617 | </f_translation> | 1057 | <b_path>//anim_dance5</b_path> |
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> | 1058 | <c_attribute></c_attribute> |
1621 | <d_old></d_old> | 1059 | <d_old></d_old> |
1622 | <e_new> | 1060 | <e_new>Dance 5</e_new> |
1623 | Movie (Windows Media ASF) | ||
1624 | </e_new> | ||
1625 | <f_old_trans></f_old_trans> | 1061 | <f_old_trans></f_old_trans> |
1626 | <f_translation> | 1062 | <f_translation>ダンス5</f_translation> |
1627 | ムービー (Windows Media ASF) | 1063 | </string><string><a_file>strings.xml</a_file> |
1628 | </f_translation> | 1064 | <b_path>//anim_dance6</b_path> |
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> | 1065 | <c_attribute></c_attribute> |
1632 | <d_old></d_old> | 1066 | <d_old></d_old> |
1633 | <e_new> | 1067 | <e_new>Dance 6</e_new> |
1634 | Movie (Windows Media WMV) | ||
1635 | </e_new> | ||
1636 | <f_old_trans></f_old_trans> | 1068 | <f_old_trans></f_old_trans> |
1637 | <f_translation> | 1069 | <f_translation>ダンス6</f_translation> |
1638 | ムービー (Windows Media WMV) | 1070 | </string><string><a_file>strings.xml</a_file> |
1639 | </f_translation> | 1071 | <b_path>//anim_dance7</b_path> |
1640 | </string><string><a_file>mime_types.xml</a_file> | ||
1641 | <b_path>/default/"video/x-msvideo"/</b_path> | ||
1642 | <c_attribute></c_attribute> | 1072 | <c_attribute></c_attribute> |
1643 | <d_old></d_old> | 1073 | <d_old></d_old> |
1644 | <e_new> | 1074 | <e_new>Dance 7</e_new> |
1645 | Movie (AVI) | ||
1646 | </e_new> | ||
1647 | <f_old_trans></f_old_trans> | 1075 | <f_old_trans></f_old_trans> |
1648 | <f_translation> | 1076 | <f_translation>ダンス7</f_translation> |
1649 | ムービー (AVI) | 1077 | </string><string><a_file>strings.xml</a_file> |
1650 | </f_translation> | 1078 | <b_path>//anim_dance8</b_path> |
1651 | </string><string><a_file>notify.xml</a_file> | ||
1652 | <b_path>//RezItemNoPermissions/message</b_path> | ||
1653 | <c_attribute></c_attribute> | 1079 | <c_attribute></c_attribute> |
1654 | <d_old></d_old> | 1080 | <d_old></d_old> |
1655 | <e_new> | 1081 | <e_new>Dance 8</e_new> |
1656 | Insufficient permissions to rez object. | ||
1657 | </e_new> | ||
1658 | <f_old_trans></f_old_trans> | 1082 | <f_old_trans></f_old_trans> |
1659 | <f_translation> | 1083 | <f_translation>ダンス8</f_translation> |
1660 | オブジェクトをrezするにはパーミッション(承認)が不足してます。 | 1084 | </string><string><a_file>strings.xml</a_file> |
1661 | </f_translation> | 1085 | <b_path>//anim_express_disdain</b_path> |
1662 | </string><string><a_file>panel_audio.xml</a_file> | 1086 | <c_attribute></c_attribute> |
1663 | <b_path>/Media panel/mute_audio</b_path> | ||
1664 | <c_attribute>label</c_attribute> | ||
1665 | <d_old></d_old> | 1087 | <d_old></d_old> |
1666 | <e_new></e_new> | 1088 | <e_new>Disdain</e_new> |
1667 | <f_old_trans></f_old_trans> | 1089 | <f_old_trans></f_old_trans> |
1668 | <f_translation></f_translation> | 1090 | <f_translation>侮蔑</f_translation> |
1669 | <f_old_trans></f_old_trans> | 1091 | </string><string><a_file>strings.xml</a_file> |
1670 | </string><string><a_file>panel_audio.xml</a_file> | 1092 | <b_path>//anim_drink</b_path> |
1671 | <b_path>/Media panel/mute_music</b_path> | 1093 | <c_attribute></c_attribute> |
1672 | <c_attribute>label</c_attribute> | ||
1673 | <d_old></d_old> | 1094 | <d_old></d_old> |
1674 | <e_new></e_new> | 1095 | <e_new>Drink</e_new> |
1675 | <f_old_trans></f_old_trans> | 1096 | <f_old_trans></f_old_trans> |
1676 | <f_translation></f_translation> | 1097 | <f_translation>酔っぱらう</f_translation> |
1677 | </string><string><a_file>panel_audio.xml</a_file> | 1098 | </string><string><a_file>strings.xml</a_file> |
1678 | <b_path>/Media panel/mute_media</b_path> | 1099 | <b_path>//anim_express_embarrased</b_path> |
1679 | <c_attribute>label</c_attribute> | 1100 | <c_attribute></c_attribute> |
1680 | <d_old></d_old> | 1101 | <d_old></d_old> |
1681 | <e_new></e_new> | 1102 | <e_new>Embarrassed</e_new> |
1682 | <f_old_trans></f_old_trans> | 1103 | <f_old_trans></f_old_trans> |
1683 | <f_translation></f_translation> | 1104 | <f_translation>困惑</f_translation> |
1684 | </string><string><a_file>panel_audio.xml</a_file> | 1105 | </string><string><a_file>strings.xml</a_file> |
1685 | <b_path>/Media panel/mute_voice</b_path> | 1106 | <b_path>//anim_angry_fingerwag</b_path> |
1686 | <c_attribute>label</c_attribute> | 1107 | <c_attribute></c_attribute> |
1687 | <d_old></d_old> | 1108 | <d_old></d_old> |
1688 | <e_new></e_new> | 1109 | <e_new>Finger Wag</e_new> |
1689 | <f_old_trans></f_old_trans> | 1110 | <f_old_trans></f_old_trans> |
1690 | <f_translation></f_translation> | 1111 | <f_translation>指を振る</f_translation> |
1691 | </string><string><a_file>panel_audio.xml</a_file> | 1112 | </string><string><a_file>strings.xml</a_file> |
1692 | <b_path>/Media panel/mute_sfx</b_path> | 1113 | <b_path>//anim_fist_pump</b_path> |
1693 | <c_attribute>label</c_attribute> | 1114 | <c_attribute></c_attribute> |
1694 | <d_old></d_old> | 1115 | <d_old></d_old> |
1695 | <e_new></e_new> | 1116 | <e_new>Fist Pump</e_new> |
1696 | <f_old_trans></f_old_trans> | 1117 | <f_old_trans></f_old_trans> |
1697 | <f_translation></f_translation> | 1118 | <f_translation>ガッツポーズ</f_translation> |
1698 | </string><string><a_file>panel_audio.xml</a_file> | 1119 | </string><string><a_file>strings.xml</a_file> |
1699 | <b_path>/Media panel/mute_wind</b_path> | 1120 | <b_path>//anim_yoga_float</b_path> |
1700 | <c_attribute>label</c_attribute> | 1121 | <c_attribute></c_attribute> |
1701 | <d_old></d_old> | 1122 | <d_old></d_old> |
1702 | <e_new></e_new> | 1123 | <e_new>Floating Yoga</e_new> |
1703 | <f_old_trans></f_old_trans> | 1124 | <f_old_trans></f_old_trans> |
1704 | <f_translation></f_translation> | 1125 | <f_translation>ヨガ浮遊</f_translation> |
1705 | </string><string><a_file>panel_audio.xml</a_file> | 1126 | </string><string><a_file>strings.xml</a_file> |
1706 | <b_path>/Media panel/mute_ui</b_path> | 1127 | <b_path>//anim_express_frown</b_path> |
1707 | <c_attribute>label</c_attribute> | 1128 | <c_attribute></c_attribute> |
1708 | <d_old></d_old> | 1129 | <d_old></d_old> |
1709 | <e_new></e_new> | 1130 | <e_new>Frown</e_new> |
1710 | <f_old_trans></f_old_trans> | 1131 | <f_old_trans></f_old_trans> |
1711 | <f_translation></f_translation> | 1132 | <f_translation>しかめっ面</f_translation> |
1712 | </string><string><a_file>panel_groups.xml</a_file> | 1133 | </string><string><a_file>strings.xml</a_file> |
1713 | <b_path>/groups/group list/name</b_path> | 1134 | <b_path>//anim_impatient</b_path> |
1714 | <c_attribute>label</c_attribute> | 1135 | <c_attribute></c_attribute> |
1715 | <d_old></d_old> | 1136 | <d_old></d_old> |
1716 | <e_new></e_new> | 1137 | <e_new>Impatient</e_new> |
1717 | <f_old_trans></f_old_trans> | 1138 | <f_old_trans></f_old_trans> |
1718 | <f_translation></f_translation> | 1139 | <f_translation>いらいらする</f_translation> |
1719 | </string><string><a_file>panel_group_invite.xml</a_file> | 1140 | </string><string><a_file>strings.xml</a_file> |
1720 | <b_path>/invite_panel/help_text</b_path> | 1141 | <b_path>//anim_jumpforjoy</b_path> |
1721 | <c_attribute></c_attribute> | 1142 | <c_attribute></c_attribute> |
1722 | <d_old></d_old> | 1143 | <d_old></d_old> |
1723 | <e_new> | 1144 | <e_new>Jump For Joy</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> | 1145 | <f_old_trans></f_old_trans> |
1729 | <f_translation> | 1146 | <f_translation>飛び上がって喜ぶ</f_translation> |
1730 | あなたのグループに、一度に複数の人を招待することができます。[リストから人を選ぶ]をクリックしてください。 | 1147 | </string><string><a_file>strings.xml</a_file> |
1731 | </f_translation> | 1148 | <b_path>//anim_kissmybutt</b_path> |
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> | 1149 | <c_attribute></c_attribute> |
1735 | <d_old></d_old> | 1150 | <d_old></d_old> |
1736 | <e_new> | 1151 | <e_new>Kiss My Butt</e_new> |
1737 | Choose what Role to assign them to: | ||
1738 | </e_new> | ||
1739 | <f_old_trans></f_old_trans> | 1152 | <f_old_trans></f_old_trans> |
1740 | <f_translation> | 1153 | <f_translation>挑発ポーズ</f_translation> |
1741 | 割り当て先の役割を選択: | 1154 | </string><string><a_file>strings.xml</a_file> |
1742 | </f_translation> | 1155 | <b_path>//anim_express_kiss</b_path> |
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> | 1156 | <c_attribute></c_attribute> |
1746 | <d_old></d_old> | 1157 | <d_old></d_old> |
1747 | <e_new> | 1158 | <e_new>Kiss</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> | 1159 | <f_old_trans></f_old_trans> |
1751 | <f_translation> | 1160 | <f_translation>キス</f_translation> |
1752 | 本当に新しい所有者を招待しますか?この操作は取り消しできません。 | 1161 | </string><string><a_file>strings.xml</a_file> |
1753 | </f_translation> | 1162 | <b_path>//anim_laugh_short</b_path> |
1754 | </string><string><a_file>panel_master_volume.xml</a_file> | 1163 | <c_attribute></c_attribute> |
1755 | <b_path>/master_volume/mute_master</b_path> | ||
1756 | <c_attribute>label</c_attribute> | ||
1757 | <d_old></d_old> | 1164 | <d_old></d_old> |
1758 | <e_new></e_new> | 1165 | <e_new>Laugh</e_new> |
1759 | <f_old_trans></f_old_trans> | 1166 | <f_old_trans></f_old_trans> |
1760 | <f_translation></f_translation> | 1167 | <f_translation>笑う</f_translation> |
1761 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | 1168 | </string><string><a_file>strings.xml</a_file> |
1762 | <b_path>/media_remote/play_label</b_path> | 1169 | <b_path>//anim_musclebeach</b_path> |
1763 | <c_attribute></c_attribute> | 1170 | <c_attribute></c_attribute> |
1764 | <d_old></d_old> | 1171 | <d_old></d_old> |
1765 | <e_new> | 1172 | <e_new>Muscle Beach</e_new> |
1766 | Play | ||
1767 | </e_new> | ||
1768 | <f_old_trans></f_old_trans> | 1173 | <f_old_trans></f_old_trans> |
1769 | <f_translation> | 1174 | <f_translation>力こぶを見せる</f_translation> |
1770 | 再生 | 1175 | </string><string><a_file>strings.xml</a_file> |
1771 | </f_translation> | 1176 | <b_path>//anim_no_unhappy</b_path> |
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> | 1177 | <c_attribute></c_attribute> |
1775 | <d_old></d_old> | 1178 | <d_old></d_old> |
1776 | <e_new> | 1179 | <e_new>No (Unhappy)</e_new> |
1777 | Stop | ||
1778 | </e_new> | ||
1779 | <f_old_trans></f_old_trans> | 1180 | <f_old_trans></f_old_trans> |
1780 | <f_translation> | 1181 | <f_translation>不満げに否定する</f_translation> |
1781 | 停止 | 1182 | </string><string><a_file>strings.xml</a_file> |
1782 | </f_translation> | 1183 | <b_path>//anim_no_head</b_path> |
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> | 1184 | <c_attribute></c_attribute> |
1786 | <d_old></d_old> | 1185 | <d_old></d_old> |
1787 | <e_new> | 1186 | <e_new>No</e_new> |
1788 | Pause | ||
1789 | </e_new> | ||
1790 | <f_old_trans></f_old_trans> | 1187 | <f_old_trans></f_old_trans> |
1791 | <f_translation> | 1188 | <f_translation>否定する</f_translation> |
1792 | 一時停止 | 1189 | </string><string><a_file>strings.xml</a_file> |
1793 | </f_translation> | 1190 | <b_path>//anim_nyanya</b_path> |
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> | 1191 | <c_attribute></c_attribute> |
1797 | <d_old></d_old> | 1192 | <d_old></d_old> |
1798 | <e_new> | 1193 | <e_new>Nya-nya-nya</e_new> |
1799 | No Media Specified | ||
1800 | </e_new> | ||
1801 | <f_old_trans></f_old_trans> | 1194 | <f_old_trans></f_old_trans> |
1802 | <f_translation> | 1195 | <f_translation>冷やかす</f_translation> |
1803 | メディアが指定されていません | 1196 | </string><string><a_file>strings.xml</a_file> |
1804 | </f_translation> | 1197 | <b_path>//anim_punch_onetwo</b_path> |
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> | 1198 | <c_attribute></c_attribute> |
1808 | <d_old></d_old> | 1199 | <d_old></d_old> |
1809 | <e_new> | 1200 | <e_new>One-Two Punch</e_new> |
1810 | (URL hidden by parcel owner) | ||
1811 | </e_new> | ||
1812 | <f_old_trans></f_old_trans> | 1201 | <f_old_trans></f_old_trans> |
1813 | <f_translation> | 1202 | <f_translation>ワンツー・パンチ</f_translation> |
1814 | (区画オーナーが URL を非表示に設定) | 1203 | </string><string><a_file>strings.xml</a_file> |
1815 | </f_translation> | 1204 | <b_path>//anim_express_open_mouth</b_path> |
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> | 1205 | <c_attribute></c_attribute> |
1819 | <d_old></d_old> | 1206 | <d_old></d_old> |
1820 | <e_new> | 1207 | <e_new>Open Mouth</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> | 1208 | <f_old_trans></f_old_trans> |
1824 | <f_translation> | 1209 | <f_translation>口を開けて驚く</f_translation> |
1825 | このロケーションではワールド・ワイド・ウェブの内容が表示されます。ウェブ・コンテンツを表示するには[再生]ボタンをクリックしてください。 | 1210 | </string><string><a_file>strings.xml</a_file> |
1826 | </f_translation> | 1211 | <b_path>//anim_peace</b_path> |
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> | 1212 | <c_attribute></c_attribute> |
1830 | <d_old></d_old> | 1213 | <d_old></d_old> |
1831 | <e_new> | 1214 | <e_new>Peace</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> | 1215 | <f_old_trans></f_old_trans> |
1835 | <f_translation> | 1216 | <f_translation>ピース・サイン</f_translation> |
1836 | このロケーションではビデオ・コンテンツが表示されます。ビデオを再生するには[再生]ボタンをクリックしてください。 | 1217 | </string><string><a_file>strings.xml</a_file> |
1837 | </f_translation> | 1218 | <b_path>//anim_point_you</b_path> |
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> | 1219 | <c_attribute></c_attribute> |
1841 | <d_old></d_old> | 1220 | <d_old></d_old> |
1842 | <e_new> | 1221 | <e_new>Point at Other</e_new> |
1843 | Display Web content at this location. | ||
1844 | </e_new> | ||
1845 | <f_old_trans></f_old_trans> | 1222 | <f_old_trans></f_old_trans> |
1846 | <f_translation> | 1223 | <f_translation>他人を指差す</f_translation> |
1847 | このロケーションでウェブ・コンテンツを表示します。 | 1224 | </string><string><a_file>strings.xml</a_file> |
1848 | </f_translation> | 1225 | <b_path>//anim_point_me</b_path> |
1849 | </string><string><a_file>panel_place.xml</a_file> | ||
1850 | <b_path>/Place/name_label</b_path> | ||
1851 | <c_attribute></c_attribute> | 1226 | <c_attribute></c_attribute> |
1852 | <d_old></d_old> | 1227 | <d_old></d_old> |
1853 | <e_new> | 1228 | <e_new>Point at Self</e_new> |
1854 | Name: | ||
1855 | </e_new> | ||
1856 | <f_old_trans></f_old_trans> | 1229 | <f_old_trans></f_old_trans> |
1857 | <f_translation> | 1230 | <f_translation>自分を指差す</f_translation> |
1858 | 名前: | 1231 | </string><string><a_file>strings.xml</a_file> |
1859 | </f_translation> | 1232 | <b_path>//anim_punch_l</b_path> |
1860 | </string><string><a_file>panel_place.xml</a_file> | ||
1861 | <b_path>/Place/description_label</b_path> | ||
1862 | <c_attribute></c_attribute> | 1233 | <c_attribute></c_attribute> |
1863 | <d_old></d_old> | 1234 | <d_old></d_old> |
1864 | <e_new> | 1235 | <e_new>Punch Left</e_new> |
1865 | Description: | ||
1866 | </e_new> | ||
1867 | <f_old_trans></f_old_trans> | 1236 | <f_old_trans></f_old_trans> |
1868 | <f_translation> | 1237 | <f_translation>左パンチ</f_translation> |
1869 | 説明: | 1238 | </string><string><a_file>strings.xml</a_file> |
1870 | </f_translation> | 1239 | <b_path>//anim_punch_r</b_path> |
1871 | </string><string><a_file>panel_place.xml</a_file> | ||
1872 | <b_path>/Place/information_label</b_path> | ||
1873 | <c_attribute></c_attribute> | 1240 | <c_attribute></c_attribute> |
1874 | <d_old></d_old> | 1241 | <d_old></d_old> |
1875 | <e_new> | 1242 | <e_new>Punch Right</e_new> |
1876 | Information: | ||
1877 | </e_new> | ||
1878 | <f_old_trans></f_old_trans> | 1243 | <f_old_trans></f_old_trans> |
1879 | <f_translation> | 1244 | <f_translation>右パンチ</f_translation> |
1880 | 情報: | 1245 | </string><string><a_file>strings.xml</a_file> |
1881 | </f_translation> | 1246 | <b_path>//anim_rps_countdown</b_path> |
1882 | </string><string><a_file>panel_place.xml</a_file> | ||
1883 | <b_path>/Place/location_label</b_path> | ||
1884 | <c_attribute></c_attribute> | 1247 | <c_attribute></c_attribute> |
1885 | <d_old></d_old> | 1248 | <d_old></d_old> |
1886 | <e_new> | 1249 | <e_new>RPS count</e_new> |
1887 | Location: | ||
1888 | </e_new> | ||
1889 | <f_old_trans></f_old_trans> | 1250 | <f_old_trans></f_old_trans> |
1890 | <f_translation> | 1251 | <f_translation>じゃんけんポーズ</f_translation> |
1891 | ロケーション: | 1252 | </string><string><a_file>strings.xml</a_file> |
1892 | </f_translation> | 1253 | <b_path>//anim_rps_paper</b_path> |
1893 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1894 | <b_path>/Place/name_label</b_path> | ||
1895 | <c_attribute></c_attribute> | 1254 | <c_attribute></c_attribute> |
1896 | <d_old></d_old> | 1255 | <d_old></d_old> |
1897 | <e_new> | 1256 | <e_new>RPS paper</e_new> |
1898 | Name: | ||
1899 | </e_new> | ||
1900 | <f_old_trans></f_old_trans> | 1257 | <f_old_trans></f_old_trans> |
1901 | <f_translation> | 1258 | <f_translation>パー</f_translation> |
1902 | 名前: | 1259 | </string><string><a_file>strings.xml</a_file> |
1903 | </f_translation> | 1260 | <b_path>//anim_rps_rock</b_path> |
1904 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1905 | <b_path>/Place/description_label</b_path> | ||
1906 | <c_attribute></c_attribute> | 1261 | <c_attribute></c_attribute> |
1907 | <d_old></d_old> | 1262 | <d_old></d_old> |
1908 | <e_new> | 1263 | <e_new>RPS rock</e_new> |
1909 | Description: | ||
1910 | </e_new> | ||
1911 | <f_old_trans></f_old_trans> | 1264 | <f_old_trans></f_old_trans> |
1912 | <f_translation> | 1265 | <f_translation>グー</f_translation> |
1913 | 説明: | 1266 | </string><string><a_file>strings.xml</a_file> |
1914 | </f_translation> | 1267 | <b_path>//anim_rps_scissors</b_path> |
1915 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1916 | <b_path>/Place/information_label</b_path> | ||
1917 | <c_attribute></c_attribute> | 1268 | <c_attribute></c_attribute> |
1918 | <d_old></d_old> | 1269 | <d_old></d_old> |
1919 | <e_new> | 1270 | <e_new>RPS scissors</e_new> |
1920 | Information: | ||
1921 | </e_new> | ||
1922 | <f_old_trans></f_old_trans> | 1271 | <f_old_trans></f_old_trans> |
1923 | <f_translation> | 1272 | <f_translation>チョキ</f_translation> |
1924 | 情報: | 1273 | </string><string><a_file>strings.xml</a_file> |
1925 | </f_translation> | 1274 | <b_path>//anim_express_repulsed</b_path> |
1926 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1927 | <b_path>/Place/location_label</b_path> | ||
1928 | <c_attribute></c_attribute> | 1275 | <c_attribute></c_attribute> |
1929 | <d_old></d_old> | 1276 | <d_old></d_old> |
1930 | <e_new> | 1277 | <e_new>Repulsed</e_new> |
1931 | Location: | ||
1932 | </e_new> | ||
1933 | <f_old_trans></f_old_trans> | 1278 | <f_old_trans></f_old_trans> |
1934 | <f_translation> | 1279 | <f_translation>嫌悪感</f_translation> |
1935 | ロケーション: | 1280 | </string><string><a_file>strings.xml</a_file> |
1936 | </f_translation> | 1281 | <b_path>//anim_kick_roundhouse_r</b_path> |
1937 | </string><string><a_file>panel_preferences_chat.xml</a_file> | 1282 | <c_attribute></c_attribute> |
1938 | <b_path>/chat/im</b_path> | ||
1939 | <c_attribute>label</c_attribute> | ||
1940 | <d_old></d_old> | 1283 | <d_old></d_old> |
1941 | <e_new>IM</e_new> | 1284 | <e_new>Roundhouse Kick</e_new> |
1942 | <f_old_trans></f_old_trans> | 1285 | <f_old_trans></f_old_trans> |
1943 | <f_translation>IM</f_translation> | 1286 | <f_translation>まわし蹴り</f_translation> |
1944 | </string><string><a_file>panel_preferences_general.xml</a_file> | 1287 | </string><string><a_file>strings.xml</a_file> |
1945 | <b_path>/general_panel/fade_out_combobox/Never</b_path> | 1288 | <b_path>//anim_express_sad</b_path> |
1946 | <c_attribute></c_attribute> | 1289 | <c_attribute></c_attribute> |
1947 | <d_old></d_old> | 1290 | <d_old></d_old> |
1948 | <e_new> | 1291 | <e_new>Sad</e_new> |
1949 | Never | ||
1950 | </e_new> | ||
1951 | <f_old_trans></f_old_trans> | 1292 | <f_old_trans></f_old_trans> |
1952 | <f_translation> | 1293 | <f_translation>悲しむ</f_translation> |
1953 | なし | 1294 | </string><string><a_file>strings.xml</a_file> |
1954 | </f_translation> | 1295 | <b_path>//anim_salute</b_path> |
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> | 1296 | <c_attribute></c_attribute> |
1958 | <d_old></d_old> | 1297 | <d_old></d_old> |
1959 | <e_new> | 1298 | <e_new>Salute</e_new> |
1960 | Show Temporarily | ||
1961 | </e_new> | ||
1962 | <f_old_trans></f_old_trans> | 1299 | <f_old_trans></f_old_trans> |
1963 | <f_translation> | 1300 | <f_translation>敬礼する</f_translation> |
1964 | 一時的に表示 | 1301 | </string><string><a_file>strings.xml</a_file> |
1965 | </f_translation> | 1302 | <b_path>//anim_shout</b_path> |
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> | 1303 | <c_attribute></c_attribute> |
1969 | <d_old></d_old> | 1304 | <d_old></d_old> |
1970 | <e_new> | 1305 | <e_new>Shout</e_new> |
1971 | Always | ||
1972 | </e_new> | ||
1973 | <f_old_trans></f_old_trans> | 1306 | <f_old_trans></f_old_trans> |
1974 | <f_translation> | 1307 | <f_translation>叫ぶ</f_translation> |
1975 | いつも | 1308 | </string><string><a_file>strings.xml</a_file> |
1976 | </f_translation> | 1309 | <b_path>//anim_express_shrug</b_path> |
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> | 1310 | <c_attribute></c_attribute> |
1980 | <d_old></d_old> | 1311 | <d_old></d_old> |
1981 | <e_new> | 1312 | <e_new>Shrug</e_new> |
1982 | Group Titles: | ||
1983 | </e_new> | ||
1984 | <f_old_trans></f_old_trans> | 1313 | <f_old_trans></f_old_trans> |
1985 | <f_translation> | 1314 | <f_translation>肩をすくめる</f_translation> |
1986 | グループ・タイトル: | 1315 | </string><string><a_file>strings.xml</a_file> |
1987 | </f_translation> | 1316 | <b_path>//anim_express_smile</b_path> |
1988 | </string><string><a_file>panel_preferences_general.xml</a_file> | 1317 | <c_attribute></c_attribute> |
1989 | <b_path>/general_panel/show_all_title_checkbox</b_path> | ||
1990 | <c_attribute>label</c_attribute> | ||
1991 | <d_old></d_old> | 1318 | <d_old></d_old> |
1992 | <e_new>Hide All Group Titles</e_new> | 1319 | <e_new>Smile</e_new> |
1993 | <f_old_trans></f_old_trans> | 1320 | <f_old_trans></f_old_trans> |
1994 | <f_translation>ループ・タイトルをすべて非表示</f_translation> | 1321 | <f_translation>微笑</f_translation> |
1995 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | 1322 | </string><string><a_file>strings.xml</a_file> |
1996 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | 1323 | <b_path>//anim_smoke_idle</b_path> |
1997 | <c_attribute>label</c_attribute> | 1324 | <c_attribute></c_attribute> |
1998 | <d_old></d_old> | 1325 | <d_old></d_old> |
1999 | <e_new></e_new> | 1326 | <e_new>Smoke Idle</e_new> |
2000 | <f_old_trans></f_old_trans> | 1327 | <f_old_trans></f_old_trans> |
2001 | <f_translation></f_translation> | 1328 | <f_translation>たばこをくゆらす</f_translation> |
2002 | </string><string><a_file>panel_preferences_input.xml</a_file> | 1329 | </string><string><a_file>strings.xml</a_file> |
2003 | <b_path>/Input panel/Camera Follow Distance:</b_path> | 1330 | <b_path>//anim_smoke_inhale</b_path> |
2004 | <c_attribute></c_attribute> | 1331 | <c_attribute></c_attribute> |
2005 | <d_old></d_old> | 1332 | <d_old></d_old> |
2006 | <e_new> | 1333 | <e_new>Smoke Inhale</e_new> |
2007 | Camera Follow Distance: | ||
2008 | </e_new> | ||
2009 | <f_old_trans></f_old_trans> | 1334 | <f_old_trans></f_old_trans> |
2010 | <f_translation> | 1335 | <f_translation>たばこを吸う</f_translation> |
2011 | カメラ追従距離: | 1336 | </string><string><a_file>strings.xml</a_file> |
2012 | </f_translation> | 1337 | <b_path>//anim_smoke_throw_down</b_path> |
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> | 1338 | <c_attribute></c_attribute> |
2016 | <d_old></d_old> | 1339 | <d_old></d_old> |
2017 | <e_new> | 1340 | <e_new>Smoke Throw Down</e_new> |
2018 | Camera Transition Time: | ||
2019 | </e_new> | ||
2020 | <f_old_trans></f_old_trans> | 1341 | <f_old_trans></f_old_trans> |
2021 | <f_translation> | 1342 | <f_translation>たばこを捨てる</f_translation> |
2022 | カメラ移動時間: | 1343 | </string><string><a_file>strings.xml</a_file> |
2023 | </f_translation> | 1344 | <b_path>//anim_express_surprise</b_path> |
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> | 1345 | <c_attribute></c_attribute> |
2027 | <d_old></d_old> | 1346 | <d_old></d_old> |
2028 | <e_new> | 1347 | <e_new>Surprise</e_new> |
2029 | Camera Smoothing: | ||
2030 | </e_new> | ||
2031 | <f_old_trans></f_old_trans> | 1348 | <f_old_trans></f_old_trans> |
2032 | <f_translation> | 1349 | <f_translation>驚く</f_translation> |
2033 | カメラ・スムージング: | 1350 | </string><string><a_file>strings.xml</a_file> |
2034 | </f_translation> | 1351 | <b_path>//anim_sword_strike_r</b_path> |
2035 | </string><string><a_file>panel_preferences_input.xml</a_file> | 1352 | <c_attribute></c_attribute> |
2036 | <b_path>/Input panel/joystic_setup_button</b_path> | ||
2037 | <c_attribute>label</c_attribute> | ||
2038 | <d_old></d_old> | 1353 | <d_old></d_old> |
2039 | <e_new>Joystick Setup</e_new> | 1354 | <e_new>Sword Strike</e_new> |
2040 | <f_old_trans></f_old_trans> | 1355 | <f_old_trans></f_old_trans> |
2041 | <f_translation>ック設定</f_translation> | 1356 | <f_translation>剣斬</f_translation> |
2042 | </string><string><a_file>panel_preferences_popups.xml</a_file> | 1357 | </string><string><a_file>strings.xml</a_file> |
2043 | <b_path>/popups/dont_show_label</b_path> | 1358 | <b_path>//anim_angry_tantrum</b_path> |
2044 | <c_attribute></c_attribute> | 1359 | <c_attribute></c_attribute> |
2045 | <d_old></d_old> | 1360 | <d_old></d_old> |
2046 | <e_new> | 1361 | <e_new>Tantrum</e_new> |
2047 | Do not show popups: | ||
2048 | </e_new> | ||
2049 | <f_old_trans></f_old_trans> | 1362 | <f_old_trans></f_old_trans> |
2050 | <f_translation> | 1363 | <f_translation>じだんだを踏む</f_translation> |
2051 | ポップアップを表示しない: | 1364 | </string><string><a_file>strings.xml</a_file> |
2052 | </f_translation> | 1365 | <b_path>//anim_express_tongue_out</b_path> |
2053 | </string><string><a_file>panel_preferences_popups.xml</a_file> | ||
2054 | <b_path>/popups/show_label</b_path> | ||
2055 | <c_attribute></c_attribute> | 1366 | <c_attribute></c_attribute> |
2056 | <d_old></d_old> | 1367 | <d_old></d_old> |
2057 | <e_new> | 1368 | <e_new>TongueOut</e_new> |
2058 | Show popups: | ||
2059 | </e_new> | ||
2060 | <f_old_trans></f_old_trans> | 1369 | <f_old_trans></f_old_trans> |
2061 | <f_translation> | 1370 | <f_translation>舌を出す</f_translation> |
2062 | ポップアップを表示: | 1371 | </string><string><a_file>strings.xml</a_file> |
2063 | </f_translation> | 1372 | <b_path>//anim_hello</b_path> |
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> | 1373 | <c_attribute></c_attribute> |
2067 | <d_old></d_old> | 1374 | <d_old></d_old> |
2068 | <e_new> | 1375 | <e_new>Wave</e_new> |
2069 | Open Voice (default) | ||
2070 | </e_new> | ||
2071 | <f_old_trans></f_old_trans> | 1376 | <f_old_trans></f_old_trans> |
2072 | <f_translation> | 1377 | <f_translation>手を振る</f_translation> |
2073 | ボイスを開く(デフォルト) | 1378 | </string><string><a_file>strings.xml</a_file> |
2074 | </f_translation> | 1379 | <b_path>//anim_whisper</b_path> |
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> | 1380 | <c_attribute></c_attribute> |
2078 | <d_old></d_old> | 1381 | <d_old></d_old> |
2079 | <e_new> | 1382 | <e_new>Whisper</e_new> |
2080 | Moderated Voice | ||
2081 | </e_new> | ||
2082 | <f_old_trans></f_old_trans> | 1383 | <f_old_trans></f_old_trans> |
2083 | <f_translation> | 1384 | <f_translation>小声で話す</f_translation> |
2084 | モデレート済みボイス | 1385 | </string><string><a_file>strings.xml</a_file> |
2085 | </f_translation> | 1386 | <b_path>//anim_whistle</b_path> |
2086 | </string><string><a_file>panel_speaker_controls.xml</a_file> | 1387 | <c_attribute></c_attribute> |
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> | 1388 | <d_old></d_old> |
2090 | <e_new></e_new> | 1389 | <e_new>Whistle</e_new> |
2091 | <f_old_trans></f_old_trans> | 1390 | <f_old_trans></f_old_trans> |
2092 | <f_translation></f_translation> | 1391 | <f_translation>口笛を吹く</f_translation> |
2093 | </string><string><a_file>panel_speaker_controls.xml</a_file> | 1392 | </string><string><a_file>strings.xml</a_file> |
2094 | <b_path>/active_speakers_panel/panels/moderate_chat_panel/speaker_controls/profile_btn</b_path> | 1393 | <b_path>//anim_express_wink</b_path> |
2095 | <c_attribute>label</c_attribute> | 1394 | <c_attribute></c_attribute> |
2096 | <d_old></d_old> | 1395 | <d_old></d_old> |
2097 | <e_new></e_new> | 1396 | <e_new>Wink</e_new> |
2098 | <f_old_trans></f_old_trans> | 1397 | <f_old_trans></f_old_trans> |
2099 | <f_translation></f_translation> | 1398 | <f_translation>ウィンク</f_translation> |
2100 | </string><string><a_file>panel_status_bar.xml</a_file> | 1399 | </string><string><a_file>strings.xml</a_file> |
2101 | <b_path>/status/menubar_search_bevel_bg</b_path> | 1400 | <b_path>//anim_wink_hollywood</b_path> |
2102 | <c_attribute>label</c_attribute> | 1401 | <c_attribute></c_attribute> |
2103 | <d_old></d_old> | 1402 | <d_old></d_old> |
2104 | <e_new></e_new> | 1403 | <e_new>Wink (Hollywood)</e_new> |
2105 | <f_old_trans></f_old_trans> | 1404 | <f_old_trans></f_old_trans> |
2106 | <f_translation></f_translation> | 1405 | <f_translation>ウィンク(ハリウッド)</f_translation> |
2107 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 1406 | </string><string><a_file>strings.xml</a_file> |
2108 | <b_path>/voice_remote/voice_channel_bg</b_path> | 1407 | <b_path>//anim_express_worry</b_path> |
2109 | <c_attribute>label</c_attribute> | 1408 | <c_attribute></c_attribute> |
2110 | <d_old></d_old> | 1409 | <d_old></d_old> |
2111 | <e_new></e_new> | 1410 | <e_new>Worry</e_new> |
2112 | <f_old_trans></f_old_trans> | 1411 | <f_old_trans></f_old_trans> |
2113 | <f_translation></f_translation> | 1412 | <f_translation>心配する</f_translation> |
2114 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 1413 | </string><string><a_file>strings.xml</a_file> |
2115 | <b_path>/voice_remote/voice_channel_icon</b_path> | 1414 | <b_path>//anim_yes_happy</b_path> |
2116 | <c_attribute>label</c_attribute> | 1415 | <c_attribute></c_attribute> |
2117 | <d_old></d_old> | 1416 | <d_old></d_old> |
2118 | <e_new></e_new> | 1417 | <e_new>Yes (Happy)</e_new> |
2119 | <f_old_trans></f_old_trans> | 1418 | <f_old_trans></f_old_trans> |
2120 | <f_translation></f_translation> | 1419 | <f_translation>笑顔で頷く</f_translation> |
2121 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 1420 | </string><string><a_file>strings.xml</a_file> |
2122 | <b_path>/voice_remote/channel_label</b_path> | 1421 | <b_path>//anim_yes_head</b_path> |
2123 | <c_attribute>label</c_attribute> | 1422 | <c_attribute></c_attribute> |
2124 | <d_old></d_old> | 1423 | <d_old></d_old> |
2125 | <e_new></e_new> | 1424 | <e_new>Yes</e_new> |
2126 | <f_old_trans></f_old_trans> | 1425 | <f_old_trans></f_old_trans> |
2127 | <f_translation></f_translation> | 1426 | <f_translation>頷く</f_translation> |
2128 | </string> | 1427 | </string> |
2129 | </strings> | 1428 | </strings> |
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 2c3305f..c8763a5 100644 --- a/linden/indra/newview/skins/xui/ja/need_to_update.xml +++ b/linden/indra/newview/skins/xui/ja/need_to_update.xml | |||
@@ -2,340 +2,176 @@ | |||
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> | 5 | <b_path>//ClothingLoading/message</b_path> |
6 | <c_attribute></c_attribute> | 6 | <c_attribute></c_attribute> |
7 | <d_old> | 7 | <d_old> |
8 | Granting modify rights to another resident allows them to change | 8 | Your clothing is still downloading. |
9 | ANY objects you may have in-world. Be VERY careful when handing | 9 | You can use the world normally, and other users |
10 | out this permission. | 10 | will see you correctly. |
11 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | ||
12 | </d_old> | 11 | </d_old> |
13 | <e_new> | 12 | <e_new> |
14 | Granting modify rights to another resident allows them to change, | 13 | Your clothing is still downloading. |
15 | delete or take ANY objects you may have in-world. Be VERY careful | 14 | You can use [SECOND_LIFE] normally and other users will see you correctly. |
16 | when handing out this permission. | ||
17 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | ||
18 | </e_new> | 15 | </e_new> |
19 | <f_translation> | 16 | <f_translation> |
20 | 他の住人に変更権限を与えると、その人はあなたが所有している | 17 | あなたの服を、ダウンロード中です。 |
21 | すべてのオブジェクトを変更、削除、または取得することができるようになります。この許可を与えるときは細心の注意を払ってください。 | 18 | 通常どおりに[SECOND_LIFE]を使え、他のユーザーもあなたを正常に見ることができます。 |
22 | [FIRST_NAME][LAST_NAME]に対して変更権限を与えますか? | ||
23 | </f_translation> | 19 | </f_translation> |
24 | <f_old_trans> | 20 | <f_old_trans> |
25 | 他住人に変更権限与そ人所有 | 21 | あの服中 |
26 | すべてのオブジェクトを変更できるようになります。 この許可を与えるときには細心の注意を払ってください。 | 22 | 通常どおりに世界を使え、他のユーザーもあなたを |
27 | [FIRST_NAME] [LAST_NAME]に変更権限与ます? | 23 | 正常に見ができす |
28 | </f_old_trans> | 24 | </f_old_trans> |
29 | </string><string><a_file>alerts.xml</a_file> | 25 | </string><string><a_file>floater_directory.xml</a_file> |
30 | <b_path>//CannotBuyLandNoRegion/message</b_path> | 26 | <b_path>/directory/Directory Tabs/places_panel/searching_text</b_path> |
31 | <c_attribute></c_attribute> | 27 | <c_attribute></c_attribute> |
32 | <d_old> | 28 | <d_old> |
33 | Unable to buy land: | 29 | Searching... |
34 | Cannot find the region this land is in. | 30 | </d_old> |
35 | </d_old> | 31 | <e_new>Searching...</e_new> |
36 | <e_new> | 32 | <f_translation>検索中...</f_translation> |
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> | 33 | <f_old_trans> |
45 | 土地を購入できません: | 34 | 検索中... |
46 | この土地がある地域が見つかりません。 | 35 | </f_old_trans> |
47 | </f_old_trans> | 36 | </string><string><a_file>floater_directory.xml</a_file> |
48 | </string><string><a_file>alerts.xml</a_file> | 37 | <b_path>/directory/Directory Tabs/places_panel/not_found_text</b_path> |
49 | <b_path>//ParcelCanPlayMedia/message</b_path> | ||
50 | <c_attribute></c_attribute> | 38 | <c_attribute></c_attribute> |
51 | <d_old> | 39 | <d_old> |
52 | This location can play streaming video. | 40 | None Found. |
53 | Streaming video requires a 768 kbps or | 41 | </d_old> |
54 | faster Internet connection. | 42 | <e_new>None Found.</e_new> |
55 | 43 | <f_translation>何も見つかりませんでした。</f_translation> | |
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> | 44 | <f_old_trans> |
76 | ここではストリーミング・ビデオ再生が可能です。 | 45 | 何も見つかりませんでした |
77 | ビデオの再生には768 kbpsより速い | 46 | </f_old_trans> |
78 | 接続環境が必要です。 | 47 | </string><string><a_file>floater_directory.xml</a_file> |
79 | 48 | <b_path>/directory/Directory Tabs/people_panel/find</b_path> | |
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> | 49 | <c_attribute></c_attribute> |
87 | <d_old> | 50 | <d_old> |
88 | Are you sure you want to clear your | 51 | Find: |
89 | browser cache? | 52 | </d_old> |
90 | </d_old> | ||
91 | <e_new> | 53 | <e_new> |
92 | Are you sure you want to clear your browser cache? | 54 | Find: |
93 | </e_new> | 55 | </e_new> |
94 | <f_translation> | 56 | <f_translation> |
95 | 当にブラウザのキャッシュをクリしますか? | 57 | : |
96 | </f_translation> | 58 | </f_translation> |
97 | <f_old_trans> | 59 | <f_old_trans> |
98 | 本当にブラウザのキャッシュを | 60 | 検索: |
99 | クリアしますか? | 61 | </f_old_trans> |
100 | </f_old_trans> | 62 | </string><string><a_file>floater_directory.xml</a_file> |
101 | </string><string><a_file>alerts.xml</a_file> | 63 | <b_path>/directory/Directory Tabs/groups_panel/searching_text</b_path> |
102 | <b_path>//HelpWaterNormalMap/message</b_path> | ||
103 | <c_attribute></c_attribute> | 64 | <c_attribute></c_attribute> |
104 | <d_old> | 65 | <d_old> |
105 | Controls what normal map is layered across the water | 66 | Searching... |
106 | to determine reflections/refractions. | 67 | </d_old> |
107 | </d_old> | 68 | <e_new>Searching...</e_new> |
108 | <e_new> | 69 | <f_translation>検索中...</f_translation> |
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> | 70 | <f_old_trans> |
115 | 反射や屈折を決定するために水に重ねられるノーマル・マップを制御します。 | 71 | 検索中... |
116 | </f_old_trans> | 72 | </f_old_trans> |
117 | </string><string><a_file>alerts.xml</a_file> | 73 | </string><string><a_file>floater_directory.xml</a_file> |
118 | <b_path>//HelpWaterWave1/message</b_path> | 74 | <b_path>/directory/Directory Tabs/groups_panel/not_found_text</b_path> |
75 | <c_attribute></c_attribute> | ||
76 | <d_old> | ||
77 | None Found. | ||
78 | </d_old> | ||
79 | <e_new>None Found.</e_new> | ||
80 | <f_translation>何も見つかりませんでした。</f_translation> | ||
81 | <f_old_trans> | ||
82 | 何も見つかりませんでした | ||
83 | </f_old_trans> | ||
84 | </string><string><a_file>floater_script_debug.xml</a_file> | ||
85 | <b_path>/script debug floater</b_path> | ||
86 | <c_attribute>title</c_attribute> | ||
87 | <d_old>Script Errors/Warning</d_old> | ||
88 | <e_new>Script Warning/Error</e_new> | ||
89 | <f_translation>スクリプト警告/エラー</f_translation> | ||
90 | <f_old_trans>スクリプト・エラー/警告</f_old_trans> | ||
91 | </string><string><a_file>floater_world_map.xml</a_file> | ||
92 | <b_path>/worldmap/friend combo</b_path> | ||
93 | <c_attribute>label</c_attribute> | ||
94 | <d_old>My Friends</d_old> | ||
95 | <e_new>Online Friends</e_new> | ||
96 | <f_translation>オンラインのフレンド</f_translation> | ||
97 | <f_old_trans>自分のフレンド</f_old_trans> | ||
98 | </string><string><a_file>floater_world_map.xml</a_file> | ||
99 | <b_path>/worldmap/friend combo/none_selected</b_path> | ||
119 | <c_attribute></c_attribute> | 100 | <c_attribute></c_attribute> |
120 | <d_old> | 101 | <d_old> |
121 | Controls where and how fast the large scaled version of the normal | 102 | My Friends |
122 | map moves in the X and Y direction. | ||
123 | </d_old> | 103 | </d_old> |
124 | <e_new> | 104 | <e_new> |
125 | Controls where and how fast the large scaled version of the normal map moves in the X and Y direction. | 105 | Online Friends |
126 | </e_new> | 106 | </e_new> |
127 | <f_translation> | 107 | <f_translation> |
128 | 拡大されたノーマル・マップが移動する方向(X 軸と Y 軸で表現)と速度を制御します。 | 108 | オンラインのフレンド |
129 | </f_translation> | 109 | </f_translation> |
130 | <f_old_trans> | 110 | <f_old_trans> |
131 | 引き伸ばされたノーマル・マップがX と Y 軸でどの方向にそして | 111 | 自分のフレンド |
132 | どのくらいの速度で移動するかを制御します。 | ||
133 | </f_old_trans> | 112 | </f_old_trans> |
134 | </string><string><a_file>alerts.xml</a_file> | 113 | </string><string><a_file>floater_world_map.xml</a_file> |
135 | <b_path>//HelpWaterWave2/message</b_path> | 114 | <b_path>/worldmap/landmark combo</b_path> |
115 | <c_attribute>label</c_attribute> | ||
116 | <d_old>My Landmarks</d_old> | ||
117 | <e_new>Landmarks</e_new> | ||
118 | <f_translation>ランドマーク</f_translation> | ||
119 | <f_old_trans>自分のランドマーク</f_old_trans> | ||
120 | </string><string><a_file>floater_world_map.xml</a_file> | ||
121 | <b_path>/worldmap/landmark combo/none_selected</b_path> | ||
136 | <c_attribute></c_attribute> | 122 | <c_attribute></c_attribute> |
137 | <d_old> | 123 | <d_old> |
138 | Controls where and how fast the the small scaled version of the | 124 | My Landmarks |
139 | normal map moves in the X and Y direction. | ||
140 | </d_old> | 125 | </d_old> |
141 | <e_new> | 126 | <e_new> |
142 | Controls where and how fast the the small scaled version of the normal map moves in the X and Y direction. | 127 | Landmarks |
143 | </e_new> | 128 | </e_new> |
144 | <f_translation> | 129 | <f_translation> |
145 | 縮小されたノーマル・マップが移動する方向(X 軸と Y 軸で表現)と速度を制御します。 | 130 | ランドマーク |
146 | </f_translation> | 131 | </f_translation> |
147 | <f_old_trans> | 132 | <f_old_trans> |
148 | 縮められたノーマル・マップがX と Y 軸でどの方向にそしてどのくらいの速度で移動するかを制御します。 | 133 | 自分のランドマーク |
149 | </f_old_trans> | 134 | </f_old_trans> |
150 | </string><string><a_file>floater_buy_land.xml</a_file> | 135 | </string><string><a_file>panel_avatar_classified.xml</a_file> |
151 | <b_path>/buy land/land_use_reason</b_path> | 136 | <b_path>/Classified/classified_mature_check</b_path> |
152 | <c_attribute></c_attribute> | 137 | <c_attribute>label</c_attribute> |
153 | <d_old> | 138 | <d_old>Mature</d_old> |
154 | You hold 1,309 square meters of land. | 139 | <e_new></e_new> |
155 | This parcel is 512 square meters of land. | 140 | <f_translation></f_translation> |
156 | </d_old> | 141 | <f_old_trans>成人</f_old_trans> |
157 | <e_new> | 142 | </string><string><a_file>panel_group_notices.xml</a_file> |
158 | You hold 1,309 square meters of land. | 143 | <b_path>/notices_tab/lbl2</b_path> |
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> | 144 | <c_attribute></c_attribute> |
248 | <d_old> | 145 | <d_old> |
249 | Click a gesture or press a key to play animations and sounds. | 146 | Notices are kept for 30 days. Click the notice below you wish to view. |
147 | Click the 'Refresh' button to check if new notices have been received. | ||
250 | </d_old> | 148 | </d_old> |
251 | <e_new> | 149 | <e_new> |
252 | Double-click a gesture to play animations and sounds. | 150 | Notices are kept for 14 days. Click the notice below you wish to view. |
151 | Click the 'Refresh' button to check if new notices have been received. | ||
152 | Notice lists are limited to 200 notices per group on a daily basis. | ||
253 | </e_new> | 153 | </e_new> |
254 | <f_translation> | 154 | <f_translation> |
255 | ジェスチャーをダブルクリックして、アニメーションとサウンドを再生。 | 155 | 通知は、14日間保存されます。閲覧したい通知をクリックしてください。 |
156 | 新着の通知をチェックするには、[更新]ボタンをクリックします。 | ||
157 | ただし、各グループの通知リストは1日あたり200通に制限されます。 | ||
256 | </f_translation> | 158 | </f_translation> |
257 | <f_old_trans> | 159 | <f_old_trans> |
258 | ジェスチャーをクリックするか、キーを押してアニメーションとサウンドを再生。 | 160 | 通知は、14日間保存されます。 閲覧したい通知をクリックしてください。 |
259 | </f_old_trans> | 161 | 新着の通知をチェックするには、[更新]ボタンをクリックします。 |
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> | 162 | </f_old_trans> |
277 | </string><string><a_file>panel_friends.xml</a_file> | 163 | </string><string><a_file>panel_login.xml</a_file> |
278 | <b_path>/friends/friend_list/icon_edit_mine</b_path> | 164 | <b_path>/panel_login/forgot_password_text</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> | 165 | <c_attribute></c_attribute> |
301 | <d_old> | 166 | <d_old> |
302 | (loading...) | 167 | Forgot your password? |
303 | </d_old> | 168 | </d_old> |
304 | <e_new>(loading...)</e_new> | 169 | <e_new>Forgot your name or password? |
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> | 170 | </e_new> |
325 | <f_translation> | 171 | <f_translation>名前またはパスワードをお忘れですか? |
326 | 注意:「機器の設定」を実行すると、一時的にボイス・チャットから切断されます。 | ||
327 | </f_translation> | 172 | </f_translation> |
328 | <f_old_trans> | 173 | <f_old_trans> |
329 | メモ: 「機器の設定」または「ボイス・チャットの設定」を実行すると、一時的にボイス・チャットから切断されます。 | 174 | パスワードをお忘れですか? |
330 | </f_old_trans> | 175 | </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> | 176 | </string> |
341 | </strings> | 177 | </strings> |
diff --git a/linden/indra/newview/skins/xui/ja/notify.xml b/linden/indra/newview/skins/xui/ja/notify.xml index d4c2661..1a10704 100644 --- a/linden/indra/newview/skins/xui/ja/notify.xml +++ b/linden/indra/newview/skins/xui/ja/notify.xml | |||
@@ -916,6 +916,21 @@ Mキーを押して移行します。 | |||
916 | ミュート | 916 | ミュート |
917 | </option> | 917 | </option> |
918 | </notify> | 918 | </notify> |
919 | <notify name="AutoUnmuteByIM"> | ||
920 | <message name="message"> | ||
921 | [FIRST] [LAST]にインスタント・メッセージが送信され、ミュートが自動的に解除されました。 | ||
922 | </message> | ||
923 | </notify> | ||
924 | <notify name="AutoUnmuteByMoney"> | ||
925 | <message name="message"> | ||
926 | [FIRST] [LAST]にお金が与えられ、ミュートが自動的に解除されました。 | ||
927 | </message> | ||
928 | </notify> | ||
929 | <notify name="AutoUnmuteByInventory"> | ||
930 | <message name="message"> | ||
931 | [FIRST] [LAST]に持ち物が与えられ、ミュートが自動的に解除されました。 | ||
932 | </message> | ||
933 | </notify> | ||
919 | <notify name="VoiceInviteGroup"> | 934 | <notify name="VoiceInviteGroup"> |
920 | <message name="message"> | 935 | <message name="message"> |
921 | [NAME]が、グループ[GROUP]とのボイスチャットコールに参加しました。 | 936 | [NAME]が、グループ[GROUP]とのボイスチャットコールに参加しました。 |
diff --git a/linden/indra/newview/skins/xui/ja/panel_avatar_classified.xml b/linden/indra/newview/skins/xui/ja/panel_avatar_classified.xml index 713fb01..c4a1328 100644 --- a/linden/indra/newview/skins/xui/ja/panel_avatar_classified.xml +++ b/linden/indra/newview/skins/xui/ja/panel_avatar_classified.xml | |||
@@ -8,7 +8,17 @@ | |||
8 | <button label="テレポート" name="classified_teleport_btn" /> | 8 | <button label="テレポート" name="classified_teleport_btn" /> |
9 | <button label="地図" name="classified_map_btn" /> | 9 | <button label="地図" name="classified_map_btn" /> |
10 | <combo_box label="" name="classified_category_combo" /> | 10 | <combo_box label="" name="classified_category_combo" /> |
11 | <check_box label="成人" name="classified_mature_check" /> | 11 | <check_box label="成人" name="classified_mature_check"> |
12 | <combo_item name="select_mature"> | ||
13 | -成熟度を選択- | ||
14 | </combo_item> | ||
15 | <combo_item name="mature"> | ||
16 | 成人向けコンテンツ | ||
17 | </combo_item> | ||
18 | <combo_item name="not_mature"> | ||
19 | 非成人向けコンテンツ | ||
20 | </combo_item> | ||
21 | </check_box> | ||
12 | <text name="classified_info_text" | 22 | <text name="classified_info_text" |
13 | tool_tip="広告料を多く払うほど、広告の掲載順は上がります。"> | 23 | tool_tip="広告料を多く払うほど、広告の掲載順は上がります。"> |
14 | 広告掲載:未発行 | 24 | 広告掲載:未発行 |
diff --git a/linden/indra/newview/skins/xui/ja/panel_classified.xml b/linden/indra/newview/skins/xui/ja/panel_classified.xml index 7d12719..22113f7 100644 --- a/linden/indra/newview/skins/xui/ja/panel_classified.xml +++ b/linden/indra/newview/skins/xui/ja/panel_classified.xml | |||
@@ -8,7 +8,17 @@ | |||
8 | <button label="テレポート" name="classified_teleport_btn" /> | 8 | <button label="テレポート" name="classified_teleport_btn" /> |
9 | <button label="地図上に表示" name="classified_map_btn" /> | 9 | <button label="地図上に表示" name="classified_map_btn" /> |
10 | <button label="プロフィール" name="classified_profile_btn" /> | 10 | <button label="プロフィール" name="classified_profile_btn" /> |
11 | <check_box label="成人" name="classified_mature_check" /> | 11 | <check_box label="成人" name="classified_mature_check"> |
12 | <combo_item name="select_mature"> | ||
13 | -成熟度を選択- | ||
14 | </combo_item> | ||
15 | <combo_item name="mature"> | ||
16 | 成人向けコンテンツ | ||
17 | </combo_item> | ||
18 | <combo_item name="not_mature"> | ||
19 | 非成人向けコンテンツ | ||
20 | </combo_item> | ||
21 | </check_box> | ||
12 | <combo_box label="" name="classified_category_combo" /> | 22 | <combo_box label="" name="classified_category_combo" /> |
13 | <button label="更新" name="classified_update_btn" /> | 23 | <button label="更新" name="classified_update_btn" /> |
14 | <string name="ad_placed_paid"> | 24 | <string name="ad_placed_paid"> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_group_general.xml b/linden/indra/newview/skins/xui/ja/panel_group_general.xml index 7c3b5bc..bed2bed 100644 --- a/linden/indra/newview/skins/xui/ja/panel_group_general.xml +++ b/linden/indra/newview/skins/xui/ja/panel_group_general.xml | |||
@@ -79,6 +79,18 @@ | |||
79 | tool_tip="「入会費」がチェックされている場合、新規会員は入会時にこの費用を支払う必要があります。" /> | 79 | tool_tip="「入会費」がチェックされている場合、新規会員は入会時にこの費用を支払う必要があります。" /> |
80 | <check_box label="成人向けグループ" name="mature" | 80 | <check_box label="成人向けグループ" name="mature" |
81 | tool_tip="あなたのグループ情報が成人向けとみなされるかどうかを指定します。" /> | 81 | tool_tip="あなたのグループ情報が成人向けとみなされるかどうかを指定します。" /> |
82 | <combo_box name="group_mature_check" | ||
83 | tool_tip="あなたのグループ情報が成人向けとみなされるかどうかを指定します。"> | ||
84 | <combo_item name="select_mature"> | ||
85 | -成熟度を選択- | ||
86 | </combo_item> | ||
87 | <combo_item name="mature"> | ||
88 | 成人向けコンテンツ | ||
89 | </combo_item> | ||
90 | <combo_item name="not_mature"> | ||
91 | 非成人向けコンテンツ | ||
92 | </combo_item> | ||
93 | </combo_box> | ||
82 | <panel name="title_container"> | 94 | <panel name="title_container"> |
83 | <text name="active_title_label"> | 95 | <text name="active_title_label"> |
84 | 私のアクティブ・タイトル | 96 | 私のアクティブ・タイトル |
diff --git a/linden/indra/newview/skins/xui/ja/panel_group_notices.xml b/linden/indra/newview/skins/xui/ja/panel_group_notices.xml index f63c368..2bdc45f 100644 --- a/linden/indra/newview/skins/xui/ja/panel_group_notices.xml +++ b/linden/indra/newview/skins/xui/ja/panel_group_notices.xml | |||
@@ -15,8 +15,9 @@ | |||
15 | グループ通知アーカイブ | 15 | グループ通知アーカイブ |
16 | </text> | 16 | </text> |
17 | <text name="lbl2"> | 17 | <text name="lbl2"> |
18 | 通知は、14日間保存されます。 閲覧したい通知をクリックしてください。 | 18 | 通知は、14日間保存されます。閲覧したい通知をクリックしてください。 |
19 | 新着の通知をチェックするには、[更新]ボタンをクリックします。 | 19 | 新着の通知をチェックするには、[更新]ボタンをクリックします。 |
20 | ただし、各グループの通知リストは1日あたり200通に制限されます。 | ||
20 | </text> | 21 | </text> |
21 | <scroll_list name="notice_list"> | 22 | <scroll_list name="notice_list"> |
22 | <column label="" name="icon" /> | 23 | <column label="" name="icon" /> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_login.xml b/linden/indra/newview/skins/xui/ja/panel_login.xml index df51507..f908a1f 100644 --- a/linden/indra/newview/skins/xui/ja/panel_login.xml +++ b/linden/indra/newview/skins/xui/ja/panel_login.xml | |||
@@ -39,7 +39,7 @@ | |||
39 | [Viewer Channel Name] | 39 | [Viewer Channel Name] |
40 | </text> | 40 | </text> |
41 | <text name="forgot_password_text"> | 41 | <text name="forgot_password_text"> |
42 | パスワードをお忘れですか? | 42 | 名前たはスワードをお忘れですか? |
43 | </text> | 43 | </text> |
44 | <text name="forgot_password_url"> | 44 | <text name="forgot_password_url"> |
45 | http://secondlife.com/account/request.php | 45 | http://secondlife.com/account/request.php |
diff --git a/linden/indra/newview/skins/xui/ja/panel_preferences_graphics1.xml b/linden/indra/newview/skins/xui/ja/panel_preferences_graphics1.xml index 19e443a..60de066 100644 --- a/linden/indra/newview/skins/xui/ja/panel_preferences_graphics1.xml +++ b/linden/indra/newview/skins/xui/ja/panel_preferences_graphics1.xml | |||
@@ -14,9 +14,29 @@ | |||
14 | <text type="string" length="1" name="(width / height)"> | 14 | <text type="string" length="1" name="(width / height)"> |
15 | (幅/高さ) | 15 | (幅/高さ) |
16 | </text> | 16 | </text> |
17 | <text_editor name="FullScreenInfo" width="480" bottom="-56" height="40"> | 17 | <text_editor bottom="-56" height="40" name="FullScreenInfo" width="480"> |
18 | チェックされていない場合は、ログインするとビューワがフルスクリーンで表示されます。 | 18 | チェックされていない場合は、ログインするとビューワがフルスクリーンで表示されます。 |
19 | </text_editor> | 19 | </text_editor> |
20 | <text name="WindowSizeLabel"> | ||
21 | ウィンドウ・サイズ: | ||
22 | </text> | ||
23 | <combo_box name="windowsize combo"> | ||
24 | <combo_item name="640x480"> | ||
25 | 640x480 | ||
26 | </combo_item> | ||
27 | <combo_item name="800x600"> | ||
28 | 800x600 | ||
29 | </combo_item> | ||
30 | <combo_item name="720x480"> | ||
31 | 720x480 (NTSC) | ||
32 | </combo_item> | ||
33 | <combo_item name="768x576"> | ||
34 | 768x576 (PAL) | ||
35 | </combo_item> | ||
36 | <combo_item name="1024x768"> | ||
37 | 1024x768 | ||
38 | </combo_item> | ||
39 | </combo_box> | ||
20 | <text name="DisplayResLabel"> | 40 | <text name="DisplayResLabel"> |
21 | 表示解像度: | 41 | 表示解像度: |
22 | </text> | 42 | </text> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_preferences_web.xml b/linden/indra/newview/skins/xui/ja/panel_preferences_web.xml index 0ed6c57..72dd64d 100644 --- a/linden/indra/newview/skins/xui/ja/panel_preferences_web.xml +++ b/linden/indra/newview/skins/xui/ja/panel_preferences_web.xml | |||
@@ -1,10 +1,12 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="ウェブ" name="web"> | 2 | <panel label="ウェブ" name="web"> |
3 | <radio_group name="use_external_browser"> | 3 | <radio_group name="use_external_browser"> |
4 | <radio_item name="external" tool_tip="ヘルプ、Webリンクなどのために、外部Webブラウザを使用します。フル画面で実行している場合には推奨できません。"> | 4 | <radio_item name="external" |
5 | tool_tip="ヘルプ、Webリンクなどのために、外部Webブラウザを使用します。フル画面で実行している場合には推奨できません。"> | ||
5 | 外部のウェブ・ブラウザー (Firefox, Safari, Internet Explorer) を使用 | 6 | 外部のウェブ・ブラウザー (Firefox, Safari, Internet Explorer) を使用 |
6 | </radio_item> | 7 | </radio_item> |
7 | <radio_item name="internal"> | 8 | <radio_item name="internal" |
9 | tool_tip="ヘルプやWebリンクに埋め込みWebブラウザを使用します。ブラウザはSecond Lifeの新しいウィンドウとして開きます。"> | ||
8 | 内蔵のウェブ・ブラウザーを使用 | 10 | 内蔵のウェブ・ブラウザーを使用 |
9 | </radio_item> | 11 | </radio_item> |
10 | </radio_group> | 12 | </radio_group> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_region_general.xml b/linden/indra/newview/skins/xui/ja/panel_region_general.xml index 6b0cfb4..0708c9c 100644 --- a/linden/indra/newview/skins/xui/ja/panel_region_general.xml +++ b/linden/indra/newview/skins/xui/ja/panel_region_general.xml | |||
@@ -6,6 +6,12 @@ | |||
6 | <text name="region_text"> | 6 | <text name="region_text"> |
7 | 未知 | 7 | 未知 |
8 | </text> | 8 | </text> |
9 | <text name="version_channel_text_lbl"> | ||
10 | バージョン: | ||
11 | </text> | ||
12 | <text name="version_channel_text"> | ||
13 | 不明 | ||
14 | </text> | ||
9 | <check_box label="土地整備をブロック" name="block_terraform_check" /> | 15 | <check_box label="土地整備をブロック" name="block_terraform_check" /> |
10 | <button label="?" name="terraform_help" /> | 16 | <button label="?" name="terraform_help" /> |
11 | <check_box label="飛行をブロック" name="block_fly_check" /> | 17 | <check_box label="飛行をブロック" name="block_fly_check" /> |
diff --git a/linden/indra/newview/skins/xui/ja/strings.xml b/linden/indra/newview/skins/xui/ja/strings.xml new file mode 100644 index 0000000..700f6bd --- /dev/null +++ b/linden/indra/newview/skins/xui/ja/strings.xml | |||
@@ -0,0 +1,390 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <strings name=""> | ||
3 | <string name="LoginInProgress"> | ||
4 | ログイン中です。[APP_NAME]の表示がフリーズする場合があります。 しばらくお待ちください。 | ||
5 | </string> | ||
6 | <string name="LoginAuthenticating"> | ||
7 | 認証しています... | ||
8 | </string> | ||
9 | <string name="LoginMaintenance"> | ||
10 | アカウント・メンテナンスを実行しています... | ||
11 | </string> | ||
12 | <string name="LoginAttempt"> | ||
13 | 前回のログインに失敗しました。 ログイン中です([NUMBER]回目) | ||
14 | </string> | ||
15 | <string name="LoginPrecaching"> | ||
16 | ワールドをロードしています... | ||
17 | </string> | ||
18 | <string name="LoginInitializingBrowser"> | ||
19 | 埋め込みWebブラウザを初期化しています... | ||
20 | </string> | ||
21 | <string name="LoginVerifyingCache"> | ||
22 | キャッシュ・ファイルを検証しています(所要時間は60~90秒)... | ||
23 | </string> | ||
24 | <string name="LoginProcessingResponse"> | ||
25 | 応答を処理しています... | ||
26 | </string> | ||
27 | <string name="LoginInitializingWorld"> | ||
28 | ワールドを初期化しています... | ||
29 | </string> | ||
30 | <string name="LoginDecodingImages"> | ||
31 | 画像をデコードしています... | ||
32 | </string> | ||
33 | <string name="LoginInitializingQuicktime"> | ||
34 | QuickTimeを初期化しています... | ||
35 | </string> | ||
36 | <string name="LoginQuicktimeNotFound"> | ||
37 | QuickTimeが見つかりません。初期化に失敗しました。 | ||
38 | </string> | ||
39 | <string name="LoginQuicktimeOK"> | ||
40 | QuickTimeが正常に初期化されました。 | ||
41 | </string> | ||
42 | <string name="LoginWaitingForRegionHandshake"> | ||
43 | 地域のハンドシェイクを待っています... | ||
44 | </string> | ||
45 | <string name="LoginConnectingToRegion"> | ||
46 | 地域に接続しています... | ||
47 | </string> | ||
48 | <string name="LoginDownloadingClothing"> | ||
49 | 服をダウンロードしています... | ||
50 | </string> | ||
51 | <string name="TooltipPerson"> | ||
52 | 人 | ||
53 | </string> | ||
54 | <string name="TooltipNoName"> | ||
55 | (名前なし) | ||
56 | </string> | ||
57 | <string name="TooltipOwner"> | ||
58 | オーナー: | ||
59 | </string> | ||
60 | <string name="TooltipPublic"> | ||
61 | 公共 | ||
62 | </string> | ||
63 | <string name="TooltipIsGroup"> | ||
64 | (グループ) | ||
65 | </string> | ||
66 | <string name="TooltipFlagScript"> | ||
67 | スクリプト | ||
68 | </string> | ||
69 | <string name="TooltipFlagPhysics"> | ||
70 | 物理作用 | ||
71 | </string> | ||
72 | <string name="TooltipFlagTouch"> | ||
73 | 触る | ||
74 | </string> | ||
75 | <string name="TooltipFlagL$"> | ||
76 | L$ | ||
77 | </string> | ||
78 | <string name="TooltipFlagDropInventory"> | ||
79 | 持ち物をドロップする | ||
80 | </string> | ||
81 | <string name="TooltipFlagPhantom"> | ||
82 | ファントム | ||
83 | </string> | ||
84 | <string name="TooltipFlagTemporary"> | ||
85 | 一時的 | ||
86 | </string> | ||
87 | <string name="TooltipFlagRightClickMenu"> | ||
88 | (右クリックでメニューを表示) | ||
89 | </string> | ||
90 | <string name="TooltipFreeToCopy"> | ||
91 | コピー可能 | ||
92 | </string> | ||
93 | <string name="TooltipForSaleL$"> | ||
94 | 売り出し中:L$[AMOUNT] | ||
95 | </string> | ||
96 | <string name="TooltipForSaleMsg"> | ||
97 | 売り出し中: [MESSAGE] | ||
98 | </string> | ||
99 | <string name="TooltipFlagGroupBuild"> | ||
100 | グループ作成 | ||
101 | </string> | ||
102 | <string name="TooltipFlagNoBuild"> | ||
103 | 作成禁止 | ||
104 | </string> | ||
105 | <string name="TooltipFlagNoEdit"> | ||
106 | グループ作成 | ||
107 | </string> | ||
108 | <string name="TooltipFlagNotSafe"> | ||
109 | 危険 | ||
110 | </string> | ||
111 | <string name="TooltipFlagNoFly"> | ||
112 | 飛行禁止 | ||
113 | </string> | ||
114 | <string name="TooltipFlagGroupScripts"> | ||
115 | グループ・スクリプト | ||
116 | </string> | ||
117 | <string name="TooltipFlagNoScripts"> | ||
118 | スクリプトなし | ||
119 | </string> | ||
120 | <string name="TooltipLand"> | ||
121 | 土地: | ||
122 | </string> | ||
123 | <string name="RetrievingData"> | ||
124 | 検索中... | ||
125 | </string> | ||
126 | <string name="LoadingData"> | ||
127 | ロード中... | ||
128 | </string> | ||
129 | <string name="AvatarNameNobody"> | ||
130 | (無人) | ||
131 | </string> | ||
132 | <string name="AvatarNameWaiting"> | ||
133 | (待機中) | ||
134 | </string> | ||
135 | <string name="AvatarNameHippos"> | ||
136 | (カバ) | ||
137 | </string> | ||
138 | <string name="GroupNameNone"> | ||
139 | (なし) | ||
140 | </string> | ||
141 | <string name="AssetErrorNone"> | ||
142 | エラーなし | ||
143 | </string> | ||
144 | <string name="AssetErrorRequestFailed"> | ||
145 | 資産の要求: 失敗 | ||
146 | </string> | ||
147 | <string name="AssetErrorNonexistentFile"> | ||
148 | 資産の要求: 存在しないファイル | ||
149 | </string> | ||
150 | <string name="AssetErrorNotInDatabase"> | ||
151 | 資産の要求: データベースでは見つからない資産 | ||
152 | </string> | ||
153 | <string name="AssetErrorEOF"> | ||
154 | ファイルの終わり | ||
155 | </string> | ||
156 | <string name="AssetErrorCannotOpenFile"> | ||
157 | ファイルを開くことができません | ||
158 | </string> | ||
159 | <string name="AssetErrorFileNotFound"> | ||
160 | ファイルが見つかりません | ||
161 | </string> | ||
162 | <string name="AssetErrorTCPTimeout"> | ||
163 | ファイル転送タイムアウトです | ||
164 | </string> | ||
165 | <string name="AssetErrorCircuitGone"> | ||
166 | 接続が解除されました | ||
167 | </string> | ||
168 | <string name="AssetErrorUnknownStatus"> | ||
169 | ステータスが不明です | ||
170 | </string> | ||
171 | <string name="AvatarEditingApparance"> | ||
172 | (容姿の編集) | ||
173 | </string> | ||
174 | <string name="AvatarAway"> | ||
175 | 退席中 | ||
176 | </string> | ||
177 | <string name="AvatarBusy"> | ||
178 | 取り込み中 | ||
179 | </string> | ||
180 | <string name="AvatarMuted"> | ||
181 | ミュート | ||
182 | </string> | ||
183 | <string name="anim_express_afraid"> | ||
184 | 怖れ | ||
185 | </string> | ||
186 | <string name="anim_express_anger"> | ||
187 | 怒り | ||
188 | </string> | ||
189 | <string name="anim_away"> | ||
190 | 退席中 | ||
191 | </string> | ||
192 | <string name="anim_backflip"> | ||
193 | 後ろ宙返り | ||
194 | </string> | ||
195 | <string name="anim_express_laugh"> | ||
196 | 大笑い | ||
197 | </string> | ||
198 | <string name="anim_express_toothsmile"> | ||
199 | 満面の笑顔 | ||
200 | </string> | ||
201 | <string name="anim_blowkiss"> | ||
202 | 投げキッス | ||
203 | </string> | ||
204 | <string name="anim_express_bored"> | ||
205 | 退屈 | ||
206 | </string> | ||
207 | <string name="anim_bow"> | ||
208 | おじぎ | ||
209 | </string> | ||
210 | <string name="anim_clap"> | ||
211 | 拍手 | ||
212 | </string> | ||
213 | <string name="anim_courtbow"> | ||
214 | 深いおじぎ | ||
215 | </string> | ||
216 | <string name="anim_express_cry"> | ||
217 | 泣く | ||
218 | </string> | ||
219 | <string name="anim_dance1"> | ||
220 | ダンス1 | ||
221 | </string> | ||
222 | <string name="anim_dance2"> | ||
223 | ダンス2 | ||
224 | </string> | ||
225 | <string name="anim_dance3"> | ||
226 | ダンス3 | ||
227 | </string> | ||
228 | <string name="anim_dance4"> | ||
229 | ダンス4 | ||
230 | </string> | ||
231 | <string name="anim_dance5"> | ||
232 | ダンス5 | ||
233 | </string> | ||
234 | <string name="anim_dance6"> | ||
235 | ダンス6 | ||
236 | </string> | ||
237 | <string name="anim_dance7"> | ||
238 | ダンス7 | ||
239 | </string> | ||
240 | <string name="anim_dance8"> | ||
241 | ダンス8 | ||
242 | </string> | ||
243 | <string name="anim_express_disdain"> | ||
244 | 侮蔑 | ||
245 | </string> | ||
246 | <string name="anim_drink"> | ||
247 | 酔っぱらう | ||
248 | </string> | ||
249 | <string name="anim_express_embarrased"> | ||
250 | 困惑 | ||
251 | </string> | ||
252 | <string name="anim_angry_fingerwag"> | ||
253 | 指を振る | ||
254 | </string> | ||
255 | <string name="anim_fist_pump"> | ||
256 | ガッツポーズ | ||
257 | </string> | ||
258 | <string name="anim_yoga_float"> | ||
259 | ヨガ浮遊 | ||
260 | </string> | ||
261 | <string name="anim_express_frown"> | ||
262 | しかめっ面 | ||
263 | </string> | ||
264 | <string name="anim_impatient"> | ||
265 | いらいらする | ||
266 | </string> | ||
267 | <string name="anim_jumpforjoy"> | ||
268 | 飛び上がって喜ぶ | ||
269 | </string> | ||
270 | <string name="anim_kissmybutt"> | ||
271 | 挑発ポーズ | ||
272 | </string> | ||
273 | <string name="anim_express_kiss"> | ||
274 | キス | ||
275 | </string> | ||
276 | <string name="anim_laugh_short"> | ||
277 | 笑う | ||
278 | </string> | ||
279 | <string name="anim_musclebeach"> | ||
280 | 力こぶを見せる | ||
281 | </string> | ||
282 | <string name="anim_no_unhappy"> | ||
283 | 不満げに否定する | ||
284 | </string> | ||
285 | <string name="anim_no_head"> | ||
286 | 否定する | ||
287 | </string> | ||
288 | <string name="anim_nyanya"> | ||
289 | 冷やかす | ||
290 | </string> | ||
291 | <string name="anim_punch_onetwo"> | ||
292 | ワンツー・パンチ | ||
293 | </string> | ||
294 | <string name="anim_express_open_mouth"> | ||
295 | 口を開けて驚く | ||
296 | </string> | ||
297 | <string name="anim_peace"> | ||
298 | ピース・サイン | ||
299 | </string> | ||
300 | <string name="anim_point_you"> | ||
301 | 他人を指差す | ||
302 | </string> | ||
303 | <string name="anim_point_me"> | ||
304 | 自分を指差す | ||
305 | </string> | ||
306 | <string name="anim_punch_l"> | ||
307 | 左パンチ | ||
308 | </string> | ||
309 | <string name="anim_punch_r"> | ||
310 | 右パンチ | ||
311 | </string> | ||
312 | <string name="anim_rps_countdown"> | ||
313 | じゃんけんポーズ | ||
314 | </string> | ||
315 | <string name="anim_rps_paper"> | ||
316 | パー | ||
317 | </string> | ||
318 | <string name="anim_rps_rock"> | ||
319 | グー | ||
320 | </string> | ||
321 | <string name="anim_rps_scissors"> | ||
322 | チョキ | ||
323 | </string> | ||
324 | <string name="anim_express_repulsed"> | ||
325 | 嫌悪感 | ||
326 | </string> | ||
327 | <string name="anim_kick_roundhouse_r"> | ||
328 | まわし蹴り | ||
329 | </string> | ||
330 | <string name="anim_express_sad"> | ||
331 | 悲しむ | ||
332 | </string> | ||
333 | <string name="anim_salute"> | ||
334 | 敬礼する | ||
335 | </string> | ||
336 | <string name="anim_shout"> | ||
337 | 叫ぶ | ||
338 | </string> | ||
339 | <string name="anim_express_shrug"> | ||
340 | 肩をすくめる | ||
341 | </string> | ||
342 | <string name="anim_express_smile"> | ||
343 | 微笑む | ||
344 | </string> | ||
345 | <string name="anim_smoke_idle"> | ||
346 | たばこをくゆらす | ||
347 | </string> | ||
348 | <string name="anim_smoke_inhale"> | ||
349 | たばこを吸う | ||
350 | </string> | ||
351 | <string name="anim_smoke_throw_down"> | ||
352 | たばこを捨てる | ||
353 | </string> | ||
354 | <string name="anim_express_surprise"> | ||
355 | 驚く | ||
356 | </string> | ||
357 | <string name="anim_sword_strike_r"> | ||
358 | 剣で斬りつける | ||
359 | </string> | ||
360 | <string name="anim_angry_tantrum"> | ||
361 | じだんだを踏む | ||
362 | </string> | ||
363 | <string name="anim_express_tongue_out"> | ||
364 | 舌を出す | ||
365 | </string> | ||
366 | <string name="anim_hello"> | ||
367 | 手を振る | ||
368 | </string> | ||
369 | <string name="anim_whisper"> | ||
370 | 小声で話す | ||
371 | </string> | ||
372 | <string name="anim_whistle"> | ||
373 | 口笛を吹く | ||
374 | </string> | ||
375 | <string name="anim_express_wink"> | ||
376 | ウィンク | ||
377 | </string> | ||
378 | <string name="anim_wink_hollywood"> | ||
379 | ウィンク(ハリウッド) | ||
380 | </string> | ||
381 | <string name="anim_express_worry"> | ||
382 | 心配する | ||
383 | </string> | ||
384 | <string name="anim_yes_happy"> | ||
385 | 笑顔で頷く | ||
386 | </string> | ||
387 | <string name="anim_yes_head"> | ||
388 | 頷く | ||
389 | </string> | ||
390 | </strings> | ||
diff --git a/linden/indra/newview/skins/xui/ko/alerts.xml b/linden/indra/newview/skins/xui/ko/alerts.xml index c2a514c..914648c 100644 --- a/linden/indra/newview/skins/xui/ko/alerts.xml +++ b/linden/indra/newview/skins/xui/ko/alerts.xml | |||
@@ -750,6 +750,9 @@ L$0로 판매하는 경우, 팔 사람을 선택하십시오. | |||
750 | 최소 사양 | 750 | 최소 사양 |
751 | [_URL]을 방문하여 추가 정보를 확인 하시겠습니까? | 751 | [_URL]을 방문하여 추가 정보를 확인 하시겠습니까? |
752 | </message> | 752 | </message> |
753 | <ignore name="ignore"> | ||
754 | 지원되지 않는 하드웨어 무시 | ||
755 | </ignore> | ||
753 | <option name="Yes"> | 756 | <option name="Yes"> |
754 | 예 | 757 | 예 |
755 | </option> | 758 | </option> |
@@ -782,6 +785,18 @@ L$0로 판매하는 경우, 팔 사람을 선택하십시오. | |||
782 | 510 | 785 | 510 |
783 | </message> | 786 | </message> |
784 | </alert> | 787 | </alert> |
788 | <alert name="UnknownGPU"> | ||
789 | <message name="message"> | ||
790 | 알 수 없는 그래픽 카드를 사용하고 있습니다. | ||
791 | 이 문제는 린든랩에서 검증하지 못한 새로운 하드웨어가 사용되었기 때문일 수 | ||
792 | 있습니다. 대부분의 경우 세컨드라이프는 정상적으로 실행되지만 사용 중인 그래픽 설정을 | ||
793 | 적합한 설정으로 조정해야 할 수 있습니다. | ||
794 | (편집 > 환경 설정 > 그래픽) | ||
795 | </message> | ||
796 | <ignore name="ignore"> | ||
797 | 알 수 없는 그래픽 카드 무시 | ||
798 | </ignore> | ||
799 | </alert> | ||
785 | <alert name="DisplaySettingsNoShaders"> | 800 | <alert name="DisplaySettingsNoShaders"> |
786 | <message name="message"> | 801 | <message name="message"> |
787 | 그래픽 드라이버 초기화 중 [SECOND_LIFE]에 오류가 발생했습니다. | 802 | 그래픽 드라이버 초기화 중 [SECOND_LIFE]에 오류가 발생했습니다. |
@@ -1422,6 +1437,34 @@ www.secondlife.com으로 돌아가 신규 계정을 만드시겠습니까? | |||
1422 | 사유지 목록에 추가하는 동안 문제가 발생했습니다. 하나 이상의 사유지 관리자 목록이 모두 찬 상태입니다. | 1437 | 사유지 목록에 추가하는 동안 문제가 발생했습니다. 하나 이상의 사유지 관리자 목록이 모두 찬 상태입니다. |
1423 | </message> | 1438 | </message> |
1424 | </alert> | 1439 | </alert> |
1440 | <alert name="SetClassifiedMature"> | ||
1441 | <message name="message"> | ||
1442 | 이 광고에 성인용 컨텐츠가 포함되어 있습니까? | ||
1443 | </message> | ||
1444 | <option name="Mature"> | ||
1445 | 예 | ||
1446 | </option> | ||
1447 | <option name="Not Mature"> | ||
1448 | 아니오 | ||
1449 | </option> | ||
1450 | <option name="Cancel"> | ||
1451 | 취소 | ||
1452 | </option> | ||
1453 | </alert> | ||
1454 | <alert name="SetGroupMature"> | ||
1455 | <message name="message"> | ||
1456 | 이 그룹에 성인용 컨텐츠가 포함되어 있습니까? | ||
1457 | </message> | ||
1458 | <option name="Mature"> | ||
1459 | 예 | ||
1460 | </option> | ||
1461 | <option name="Not Mature"> | ||
1462 | 아니오 | ||
1463 | </option> | ||
1464 | <option name="Cancel"> | ||
1465 | 취소 | ||
1466 | </option> | ||
1467 | </alert> | ||
1425 | <alert name="HelpRegionSearch" title="검색 보기 안 함"> | 1468 | <alert name="HelpRegionSearch" title="검색 보기 안 함"> |
1426 | <message name="message"> | 1469 | <message name="message"> |
1427 | 이 확인란을 선택하면 구획 소유주가 검색 구획 목록을 만들 수 없습니다. | 1470 | 이 확인란을 선택하면 구획 소유주가 검색 구획 목록을 만들 수 없습니다. |
@@ -2734,10 +2777,12 @@ www.secondlife.com으로 돌아가 신규 계정을 만드시겠습니까? | |||
2734 | </alert> | 2777 | </alert> |
2735 | <alert name="ClothingLoading"> | 2778 | <alert name="ClothingLoading"> |
2736 | <message name="message"> | 2779 | <message name="message"> |
2737 | 의상을 다운로드하는 중입니다. | 2780 | 의복을 다운로드하고 있습니다. |
2738 | 일반적으로 세컨드라이프를 사용할 수 있으며 다른 사용자에게 | 2781 | [SECOND_LIFE]를 사용할 수 있으며 다른 사용자에게 귀하의 모습이 정상적으로 표시될 것입니다. |
2739 | 귀하의 모습이 제대로 표시될 것입니다. | ||
2740 | </message> | 2782 | </message> |
2783 | <ignore name="ignore"> | ||
2784 | 의복 다운로드 시간이 오래 걸리는 경우 | ||
2785 | </ignore> | ||
2741 | </alert> | 2786 | </alert> |
2742 | <alert name="FirstRun"> | 2787 | <alert name="FirstRun"> |
2743 | <message name="message"> | 2788 | <message name="message"> |
@@ -4681,25 +4726,25 @@ http://secondlife.com/community/support.php | |||
4681 | </alert> | 4726 | </alert> |
4682 | <alert name="GraphicsPreferencesHelp"> | 4727 | <alert name="GraphicsPreferencesHelp"> |
4683 | <message name="message"> | 4728 | <message name="message"> |
4684 | 이 창은 창 크기와 클라이언트 그래픽의 해상도 및 품질을 제어합니다. 그래픽 환경 설정 인터페이스를 통해 낮음, 중간, 높음, 매우 높음 등 4개의 그래픽 레벨 중에서 원하는 설정을 선택할 수 있습니다. 사용자 지정 확인란을 선택하고 다음의 설정을 조작하여 이러한 그래픽을 원하는 대로 설정할 수 있습니다. | 4729 | 세컨드라이프 클라이언트의 그래픽 해상도 및 품질을 제어합니다. 낮음, 중간, 높음, 매우 높음 4단계의 설정을 선택할 수 있습니다. 또한 사용자 크기 확인란을 선택 후 설정을 세부 조작할 수 있습니다. |
4685 | 4730 | ||
4686 | 쉐이더: 러 가지 픽셀 이더 유형을 활성화하거나 비활성화합니다. | 4731 | 쉐이더: 쉐이더 유형을 활성화하거나 비활성화합니다. |
4687 | 4732 | ||
4688 | 반사 디테일: 물에 반사 있는 오브젝트 유형을 설정합니다. | 4733 | 반사 디테일: 물에 반사되는 오브젝트 유형을 설정합니다. |
4689 | 4734 | ||
4690 | 아바타 렌더링: 클라언트가 바타를 렌더링하는 방식 영향 는 션을 설정합니다. | 4735 | 아바타 렌더링: 아바타를 렌더링하는 방식 옵션을 설정합니다. |
4691 | 4736 | ||
4692 | 렌더링 거리 제한: 장면에서 현재 시점 오브젝트가 렌더링되는 거리를 조절합니다. | 4737 | 렌더링 거리 제한: 현재 시점서 부터 오브젝트가 렌더링되는 거리를 조절합니다. |
4693 | 4738 | ||
4694 | 최대 파티클 수: 화면에서 한 번에 볼 수 있는 최대 파티클 수를 설정합니다. | 4739 | 최대 파티클 수: 화면에서 한 번에 볼 수 있는 최대 파티클 수를 설정합니다. |
4695 | 4740 | ||
4696 | 빛 처리 품질: 빛이 렌더링되는 해상도를 설정합니다. | 4741 | 빛 처리 품질: 빛이 렌더링되는 해상도를 설정합니다. |
4697 | 4742 | ||
4698 | 메쉬 디테일: 오브젝트를 렌더링하는 디테일을 설정합니다. | 4743 | 메쉬 디테일: 특정 오브젝트를 렌더링하는 디테일 또는 삼각형 개수를 설정합니다. 값이 클수록 렌더링이 더 오래 걸리지만 오브젝트의 모양이 더 자세하게 표현됩니다. |
4699 | 4744 | ||
4700 | 조명 세부 사항: 렌더링할 조명 유형을 선택합니다. | 4745 | 조명 세부 사항: 조명의 유형을 선택합니다. |
4701 | 4746 | ||
4702 | 지형 세부 사항: 보려는 지형의 디테일을 설정합니다. | 4747 | 지형 세부 사항: 지형 텍처 디테일을 설정합니다. |
4703 | </message> | 4748 | </message> |
4704 | </alert> | 4749 | </alert> |
4705 | <alert name="WLSavePresetAlert"> | 4750 | <alert name="WLSavePresetAlert"> |
@@ -5141,4 +5186,9 @@ Second Life 웹사이트를 방문하여 이 정보를 설정하시겠습니까? | |||
5141 | 아니오 | 5186 | 아니오 |
5142 | </option> | 5187 | </option> |
5143 | </alert> | 5188 | </alert> |
5189 | <alert name="MissingString"> | ||
5190 | <message name="message"> | ||
5191 | strings.xml에 [STRING_NAME] 문자열이 없습니다. | ||
5192 | </message> | ||
5193 | </alert> | ||
5144 | </alerts> | 5194 | </alerts> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_directory.xml b/linden/indra/newview/skins/xui/ko/floater_directory.xml index aaa7c07..a9b41d8 100644 --- a/linden/indra/newview/skins/xui/ko/floater_directory.xml +++ b/linden/indra/newview/skins/xui/ko/floater_directory.xml | |||
@@ -229,6 +229,22 @@ | |||
229 | <column label="교통" name="dwell" /> | 229 | <column label="교통" name="dwell" /> |
230 | </scroll_list> | 230 | </scroll_list> |
231 | </panel> | 231 | </panel> |
232 | <panel label="쇼케이스" name="showcase_panel"> | ||
233 | <string name="searching_text"> | ||
234 | 검색 | ||
235 | </string> | ||
236 | <string name="not_found_text"> | ||
237 | 발견되지 않음. | ||
238 | </string> | ||
239 | <button label="뒤로" name="back_btn" /> | ||
240 | <button label="앞으로" name="forward_btn" /> | ||
241 | <string name="loading_text"> | ||
242 | 로딩 중 | ||
243 | </string> | ||
244 | <string name="done_text"> | ||
245 | 완료 | ||
246 | </string> | ||
247 | </panel> | ||
232 | <panel label="토지 매물" name="land_sales_panel"> | 248 | <panel label="토지 매물" name="land_sales_panel"> |
233 | <string name="searching_text"> | 249 | <string name="searching_text"> |
234 | 검색 | 250 | 검색 |
@@ -284,7 +300,7 @@ | |||
284 | 검색 | 300 | 검색 |
285 | </string> | 301 | </string> |
286 | <string name="not_found_text"> | 302 | <string name="not_found_text"> |
287 | 발되 | 303 | 결과 니다. |
288 | </string> | 304 | </string> |
289 | <button label="< 이전" label_selected="< 이전" name="< Prev" /> | 305 | <button label="< 이전" label_selected="< 이전" name="< Prev" /> |
290 | <button label="다음 >" label_selected="다음 >" name="Next >" /> | 306 | <button label="다음 >" label_selected="다음 >" name="Next >" /> |
@@ -365,7 +381,7 @@ | |||
365 | 검색 | 381 | 검색 |
366 | </string> | 382 | </string> |
367 | <string name="not_found_text"> | 383 | <string name="not_found_text"> |
368 | 발되 | 384 | 결과 니다. |
369 | </string> | 385 | </string> |
370 | <button label="< 이전" label_selected="< 이전" name="< Prev" /> | 386 | <button label="< 이전" label_selected="< 이전" name="< Prev" /> |
371 | <button label="다음 >" label_selected="다음 >" name="Next >" /> | 387 | <button label="다음 >" label_selected="다음 >" name="Next >" /> |
@@ -381,6 +397,17 @@ | |||
381 | <column label="회원" name="members" /> | 397 | <column label="회원" name="members" /> |
382 | <column label="" name="score" /> | 398 | <column label="" name="score" /> |
383 | </scroll_list> | 399 | </scroll_list> |
400 | <button label="뒤로" name="back_btn" /> | ||
401 | <button label="앞으로" name="forward_btn" /> | ||
402 | <line_editor label="검색" name="search_editor" tool_tip="세컨드라이프 검색" /> | ||
403 | <button label="검색" name="search_btn" /> | ||
404 | <check_box label="성인용 컨텐츠 포함" name="mature_check" /> | ||
405 | <string name="loading_text"> | ||
406 | 로딩 중 | ||
407 | </string> | ||
408 | <string name="done_text"> | ||
409 | 완료 | ||
410 | </string> | ||
384 | </panel> | 411 | </panel> |
385 | <panel label="전체(구)" name="find_all_old_panel"> | 412 | <panel label="전체(구)" name="find_all_old_panel"> |
386 | <string name="searching_text"> | 413 | <string name="searching_text"> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_im.xml b/linden/indra/newview/skins/xui/ko/floater_im.xml index 6fae990..64fb77d 100644 --- a/linden/indra/newview/skins/xui/ko/floater_im.xml +++ b/linden/indra/newview/skins/xui/ko/floater_im.xml | |||
@@ -6,6 +6,9 @@ | |||
6 | <text name="offline_message"> | 6 | <text name="offline_message"> |
7 | [FIRST] [LAST]님은 오프라인입니다. | 7 | [FIRST] [LAST]님은 오프라인입니다. |
8 | </text> | 8 | </text> |
9 | <string name="muted_message"> | ||
10 | [FIRST] [LAST]님이 음소거되었습니다. | ||
11 | </string> | ||
9 | <text name="generic_request_error"> | 12 | <text name="generic_request_error"> |
10 | 오류 보고 작성을 요청했으므로 나중에 다시 시도하십시오. | 13 | 오류 보고 작성을 요청했으므로 나중에 다시 시도하십시오. |
11 | </text> | 14 | </text> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_script_debug.xml b/linden/indra/newview/skins/xui/ko/floater_script_debug.xml index d4b5d3f..44b3e5f 100644 --- a/linden/indra/newview/skins/xui/ko/floater_script_debug.xml +++ b/linden/indra/newview/skins/xui/ko/floater_script_debug.xml | |||
@@ -1,5 +1,5 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <multi_floater name="script debug floater" title="스크립트 오류/경고"> | 2 | <multi_floater name="script debug floater" title="스크립트 경고/오류"> |
3 | <tab_container name="Preview Tabs"> | 3 | <tab_container name="Preview Tabs"> |
4 | <floater label="스크립트" name="all_scripts" title="[모든 스크립트]" /> | 4 | <floater label="스크립트" name="all_scripts" title="[모든 스크립트]" /> |
5 | </tab_container> | 5 | </tab_container> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_world_map.xml b/linden/indra/newview/skins/xui/ko/floater_world_map.xml index abe0e3f..e8d09c9 100644 --- a/linden/indra/newview/skins/xui/ko/floater_world_map.xml +++ b/linden/indra/newview/skins/xui/ko/floater_world_map.xml | |||
@@ -50,15 +50,16 @@ | |||
50 | 이벤트(성인) | 50 | 이벤트(성인) |
51 | </text> | 51 | </text> |
52 | <check_box label=" " name="event_mature_chk" /> | 52 | <check_box label=" " name="event_mature_chk" /> |
53 | <combo_box label="내 친구들" name="friend combo" tool_tip="Friend to Show on Map"> | 53 | <combo_box label="온라인 친구 보기" name="friend combo" |
54 | tool_tip="Friend to Show on Map"> | ||
54 | <combo_item name="none_selected"> | 55 | <combo_item name="none_selected"> |
55 | 친구 | 56 | 온인 친구 기 |
56 | </combo_item> | 57 | </combo_item> |
57 | </combo_box> | 58 | </combo_box> |
58 | <combo_box label=" 드마크" name="landmark combo" | 59 | <combo_box label="랜드마크 보기" name="landmark combo" |
59 | tool_tip="Landmark to Show on Map"> | 60 | tool_tip="Landmark to Show on Map"> |
60 | <combo_item name="none_selected"> | 61 | <combo_item name="none_selected"> |
61 | 드마크 | 62 | 랜드마크 보기 |
62 | </combo_item> | 63 | </combo_item> |
63 | </combo_box> | 64 | </combo_box> |
64 | <line_editor label="지역명으로 검색" name="location" tool_tip="지역 이름 입력" /> | 65 | <line_editor label="지역명으로 검색" name="location" tool_tip="지역 이름 입력" /> |
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 01b8974..f1fe853 100644 --- a/linden/indra/newview/skins/xui/ko/need_to_long.xml +++ b/linden/indra/newview/skins/xui/ko/need_to_long.xml | |||
@@ -2,161 +2,94 @@ | |||
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> | 5 | <b_path>//GraphicsPreferencesHelp/message</b_path> |
6 | <c_attribute></c_attribute> | 6 | <c_attribute></c_attribute> |
7 | <d_old> | 7 | <d_old> |
8 | The Object Bonus is a multiplier for primitives allowed on any given | 8 | This panel controls window size and resolution and the quality of the client's graphics. The graphics preferences interface allows you to choose between four graphics levels: Low, Mid, High, and Ultra. One may customize their graphics settings by checking the Custom checkbox and manipulating the following settings: |
9 | parcel. The range allowed is 1 to 10. Set at '1', each 512m2 parcel | 9 | |
10 | is allowed 117 objects. Set at '2', each 512m2 parcel is | 10 | Shaders: Enable or disable various types of pixel shaders. |
11 | allowed 234, or twice as many, and so on. The max number of objects | 11 | |
12 | allowed per region remains 15,000 no matter what the | 12 | Reflection Detail: Sets the types of objects that water can reflect. |
13 | Object Bonus is. once set, be aware that lowering the Object Bonus may cause | 13 | |
14 | objects to be returned or deleted. | 14 | Avatar Rendering: Sets options that affect how the client renders avatars. |
15 | 15 | ||
16 | Default: 1.0 | 16 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. |
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 | 17 | ||
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 | 18 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. |
57 | 19 | ||
58 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 20 | Post Process Quality: Sets the resolution with which Glow is rendered. |
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 | 21 | ||
73 | All rights reserved. See licenses.txt for details. | 22 | Mesh Detail: Sets the amout of detail used in rendering certain objects. |
74 | 23 | ||
75 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 24 | Lighting Detail: Selects what types of lights you would like to render. |
76 | 25 | ||
26 | Terrain Detail: Sets the amount of terrain detail you would like to see. | ||
77 | 27 | ||
78 | Happiness is a warm puppy. -- Charles M. Schulz | 28 | Sky Detail: Sets the amount of tesselation of the sky dome. A higher value takes longer to render, but makes the sun look more rounded. |
79 | </d_old> | 29 | </d_old> |
80 | <e_new> | 30 | <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. | 31 | This panel controls window size and resolution and the quality of the client's graphics. The Preferences > Graphics interface allows you to choose between four graphics levels: Low, Mid, High, and Ultra. You may also customize your graphics settings by checking the Custom checkbox and manipulating the following settings: |
32 | |||
33 | Shaders: Enable or disable various types of pixel shaders. | ||
34 | |||
35 | Reflection Detail: Sets the types of objects that water can reflect. | ||
36 | |||
37 | Avatar Rendering: Sets options that affect how the client renders avatars. | ||
82 | 38 | ||
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 | 39 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. |
84 | 40 | ||
85 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | 41 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. |
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 | 42 | ||
101 | All rights reserved. See licenses.txt for details. | 43 | Post Process Quality: Sets the resolution with which Glow is rendered. |
102 | 44 | ||
103 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 45 | Mesh Detail: Sets the amount of detail or number of triangles used in rendering certain objects. A higher value takes longer to render, but makes these objects appear with more detail. |
104 | 46 | ||
47 | Lighting Detail: Selects what types of lights you would like to render. | ||
105 | 48 | ||
106 | Happiness is a warm puppy. -- Charles M. Schulz</e_new> | 49 | Terrain Detail: Sets the amount of detail you would like to see for the terrain texture. |
50 | </e_new> | ||
51 | <f_old_trans></f_old_trans> | ||
107 | <f_translation> | 52 | <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, 그 외에 많은 분들이 수고해 주셨습니다. | 53 | 세컨드라이프 클라이언트의 그래픽 해상도 및 품질을 제어합니다. 낮음, 중간, 높음, 매우 높음 4단계의 설정을 선택할 수 있습니다. 또한 사용자 크기 확인란을 선택 후 설정을 세부 조작할 수 있습니다. |
54 | |||
55 | 쉐이더: 쉐이더 유형을 활성화하거나 비활성화합니다. | ||
56 | |||
57 | 반사 디테일: 물에 반사되는 오브젝트 유형을 설정합니다. | ||
109 | 58 | ||
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 | 59 | 아바타 렌더링: 아바타를 렌더링하는 방식의 옵션을 설정합니다. |
111 | 60 | ||
112 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | 61 | 렌더링 거리 제한: 현재 시점에서 부터 오브젝트가 렌더링되는 거리를 조절합니다. |
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 | 62 | ||
128 | 작 유. 한 licenses.txt를 . | 63 | 파티 수: 화면 한 볼 있는 최 파티클 수를 . |
129 | 64 | ||
130 | 성 채 : Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 65 | 빛 리 : 렌되 해상도를 설정합니다. |
131 | 66 | ||
67 | 메쉬 디테일: 특정 오브젝트를 렌더링하는 디테일 또는 삼각형 개수를 설정합니다. 값이 클수록 렌더링이 더 오래 걸리지만 오브젝트의 모양이 더 자세하게 표현됩니다. | ||
132 | 68 | ||
133 | 행복이란 포근한 강아지 한마리다. -- Charles M. Schulz</f_translation> | 69 | 조명 세부 사항: 조명의 유형을 선택합니다. |
70 | |||
71 | 지형 세부 사항: 지형 텍스처의 디테일을 설정합니다. | ||
72 | </f_translation> | ||
134 | <f_old_trans> | 73 | <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, 그 외에 많은 분들이 수고해 주셨습니다. | 74 | 이 창은 창 크기와 클라이언트 그래픽의 해상도 및 품질을 제어합니다. 그래픽 환경 설정 인터페이스를 통해 낮음, 중간, 높음, 매우 높음 등 4개의 그래픽 레벨 중에서 원하는 설정을 선택할 수 있습니다. 사용자 지정 확인란을 선택하고 다음의 설정을 조작하여 이러한 그래픽을 원하는 대로 설정할 수 있습니다. |
75 | |||
76 | 쉐이더: 여러 가지 픽셀 쉐이더 유형을 활성화하거나 비활성화합니다. | ||
136 | 77 | ||
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 | 78 | 반사 디테일: 물에 반사될 수 있는 오브젝트 유형을 설정합니다. |
138 | 79 | ||
139 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 80 | 아바타 렌더링: 클라이언트가 아바타를 렌더링하는 방식에 영향을 주는 옵션을 설정합니다. |
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 | 81 | ||
154 | 작 . 자 내은 licenses.txt를 . | 82 | 더링 거 한: 면 재 점의 브트 더링되는 거리 조절. |
155 | 83 | ||
156 | : Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 84 | 파티클 : 화면 번 최대 파티클 수를 설정합니다. |
157 | 85 | ||
86 | 빛 처리 품질: 빛이 렌더링되는 해상도를 설정합니다. | ||
158 | 87 | ||
159 | 행복이란 포근한 강아지 한마리다. -- Charles M. Schulz | 88 | 메쉬 디테일: 오브젝트를 렌더링하는 디테일을 설정합니다. |
160 | </f_old_trans> | 89 | |
90 | 조명 세부 사항: 렌더링할 조명 유형을 선택합니다. | ||
91 | |||
92 | 지형 세부 사항: 보려는 지형의 디테일을 설정합니다. | ||
93 | </f_old_trans> | ||
161 | </string> | 94 | </string> |
162 | </strings> | 95 | </strings> |
diff --git a/linden/indra/newview/skins/xui/ko/need_to_translate.xml b/linden/indra/newview/skins/xui/ko/need_to_translate.xml index 64496cf..c179201 100644 --- a/linden/indra/newview/skins/xui/ko/need_to_translate.xml +++ b/linden/indra/newview/skins/xui/ko/need_to_translate.xml | |||
@@ -2,2246 +2,1429 @@ | |||
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> | 5 | <b_path>//UnsupportedHardware/ignore</b_path> |
6 | <c_attribute></c_attribute> | 6 | <c_attribute></c_attribute> |
7 | <d_old></d_old> | 7 | <d_old></d_old> |
8 | <e_new> | 8 | <e_new> |
9 | No tutorial is currently available. | 9 | Ignore unsupported hardware |
10 | </e_new> | 10 | </e_new> |
11 | <f_old_trans></f_old_trans> | 11 | <f_old_trans></f_old_trans> |
12 | <f_translation> | 12 | <f_translation> |
13 | 토얼을 사용 다. | 13 | 지원 하드 |
14 | </f_translation> | 14 | </f_translation> |
15 | </string><string><a_file>alerts.xml</a_file> | 15 | </string><string><a_file>alerts.xml</a_file> |
16 | <b_path>//TutorialNotFound/OK</b_path> | 16 | <b_path>//UnknownGPU/message</b_path> |
17 | <c_attribute></c_attribute> | 17 | <c_attribute></c_attribute> |
18 | <d_old></d_old> | 18 | <d_old></d_old> |
19 | <e_new> | 19 | <e_new> |
20 | OK | 20 | Your system contains a graphics card that is unknown to us at this time. |
21 | This is often the case with new hardware we haven't had a chance to | ||
22 | test. Second Life will most likely run properly, but you may need to | ||
23 | adjust your graphics settings to something more appropriate. | ||
24 | (Edit > Preferences > Graphics). | ||
21 | </e_new> | 25 | </e_new> |
22 | <f_old_trans></f_old_trans> | 26 | <f_old_trans></f_old_trans> |
23 | <f_translation> | 27 | <f_translation> |
24 | 확인 | 28 | 알 수 없는 그래픽 카드를 사용하고 있습니다. |
29 | 이 문제는 린든랩에서 검증하지 못한 새로운 하드웨어가 사용되었기 때문일 수 | ||
30 | 있습니다. 대부분의 경우 세컨드라이프는 정상적으로 실행되지만 사용 중인 그래픽 설정을 | ||
31 | 적합한 설정으로 조정해야 할 수 있습니다. | ||
32 | (편집 > 환경 설정 > 그래픽) | ||
25 | </f_translation> | 33 | </f_translation> |
26 | </string><string><a_file>alerts.xml</a_file> | 34 | </string><string><a_file>alerts.xml</a_file> |
27 | <b_path>//FreezeAvatarFullname/message</b_path> | 35 | <b_path>//UnknownGPU/ignore</b_path> |
28 | <c_attribute></c_attribute> | 36 | <c_attribute></c_attribute> |
29 | <d_old></d_old> | 37 | <d_old></d_old> |
30 | <e_new> | 38 | <e_new> |
31 | Freeze [AVATAR_NAME]? | 39 | Ignore unknown graphics card |
32 | He or she will temporarily be unable to move, | ||
33 | chat, or interact with the world. | ||
34 | </e_new> | 40 | </e_new> |
35 | <f_old_trans></f_old_trans> | 41 | <f_old_trans></f_old_trans> |
36 | <f_translation> | 42 | <f_translation> |
37 | [AVATAR_NAME]을(를) 정지시키겠습니까? | 43 | 알 수 없는 그래픽 카드 무시 |
38 | 이렇게 하면 일시적으로 움직이지 못하게 되고, | ||
39 | 채팅이나 상호작용을 할 수 없습니다. | ||
40 | </f_translation> | 44 | </f_translation> |
41 | </string><string><a_file>alerts.xml</a_file> | 45 | </string><string><a_file>alerts.xml</a_file> |
42 | <b_path>//FreezeAvatarFullname/Freeze</b_path> | 46 | <b_path>//ClothingLoading/ignore</b_path> |
43 | <c_attribute></c_attribute> | 47 | <c_attribute></c_attribute> |
44 | <d_old></d_old> | 48 | <d_old></d_old> |
45 | <e_new> | 49 | <e_new> |
46 | Freeze | 50 | When clothing is taking a long time to download |
47 | </e_new> | 51 | </e_new> |
48 | <f_old_trans></f_old_trans> | 52 | <f_old_trans></f_old_trans> |
49 | <f_translation> | 53 | <f_translation> |
50 | 54 | 복 다로드 시간이 오래 걸리는 경우 | |
51 | </f_translation> | 55 | </f_translation> |
52 | </string><string><a_file>alerts.xml</a_file> | 56 | </string><string><a_file>alerts.xml</a_file> |
53 | <b_path>//FreezeAvatarFullname/Unfreeze</b_path> | 57 | <b_path>//SetClassifiedMature/message</b_path> |
54 | <c_attribute></c_attribute> | 58 | <c_attribute></c_attribute> |
55 | <d_old></d_old> | 59 | <d_old></d_old> |
56 | <e_new> | 60 | <e_new> |
57 | Unfreeze | 61 | Does this classified contain Mature content? |
58 | </e_new> | 62 | </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> | 63 | <f_old_trans></f_old_trans> |
71 | <f_translation> | 64 | <f_translation> |
72 | 65 | 이 광고에 성인용 컨텐츠가 포함되어 니? | |
73 | </f_translation> | 66 | </f_translation> |
74 | </string><string><a_file>alerts.xml</a_file> | 67 | </string><string><a_file>alerts.xml</a_file> |
75 | <b_path>//EjectAvatarFullname/message</b_path> | 68 | <b_path>//SetClassifiedMature/Mature</b_path> |
76 | <c_attribute></c_attribute> | 69 | <c_attribute></c_attribute> |
77 | <d_old></d_old> | 70 | <d_old></d_old> |
78 | <e_new> | 71 | <e_new> |
79 | Eject [AVATAR_NAME] from your land? | 72 | Yes |
80 | </e_new> | 73 | </e_new> |
81 | <f_old_trans></f_old_trans> | 74 | <f_old_trans></f_old_trans> |
82 | <f_translation> | 75 | <f_translation> |
83 | [AVATAR_NAME](를) 본인 토지에서 강제로 퇴장시키겠습까? | 76 | 예 |
84 | </f_translation> | 77 | </f_translation> |
85 | </string><string><a_file>alerts.xml</a_file> | 78 | </string><string><a_file>alerts.xml</a_file> |
86 | <b_path>//EjectAvatarFullname/Eject</b_path> | 79 | <b_path>//SetClassifiedMature/Not Mature</b_path> |
87 | <c_attribute></c_attribute> | 80 | <c_attribute></c_attribute> |
88 | <d_old></d_old> | 81 | <d_old></d_old> |
89 | <e_new> | 82 | <e_new> |
90 | Eject | 83 | No |
91 | </e_new> | 84 | </e_new> |
92 | <f_old_trans></f_old_trans> | 85 | <f_old_trans></f_old_trans> |
93 | <f_translation> | 86 | <f_translation> |
94 | 퇴 | 87 | 니오 |
95 | </f_translation> | 88 | </f_translation> |
96 | </string><string><a_file>alerts.xml</a_file> | 89 | </string><string><a_file>alerts.xml</a_file> |
97 | <b_path>//EjectAvatarFullname/EjectandBan</b_path> | 90 | <b_path>//SetClassifiedMature/Cancel</b_path> |
98 | <c_attribute></c_attribute> | 91 | <c_attribute></c_attribute> |
99 | <d_old></d_old> | 92 | <d_old></d_old> |
100 | <e_new> | 93 | <e_new> |
101 | Eject and Ban | 94 | Cancel |
102 | </e_new> | 95 | </e_new> |
103 | <f_old_trans></f_old_trans> | 96 | <f_old_trans></f_old_trans> |
104 | <f_translation> | 97 | <f_translation> |
105 | 강퇴 및 단 | 98 | 소 |
106 | </f_translation> | 99 | </f_translation> |
107 | </string><string><a_file>alerts.xml</a_file> | 100 | </string><string><a_file>alerts.xml</a_file> |
108 | <b_path>//EjectAvatarFullname/Cancel</b_path> | 101 | <b_path>//SetGroupMature/message</b_path> |
109 | <c_attribute></c_attribute> | 102 | <c_attribute></c_attribute> |
110 | <d_old></d_old> | 103 | <d_old></d_old> |
111 | <e_new> | 104 | <e_new> |
112 | Cancel | 105 | Does this group contain Mature content? |
113 | </e_new> | 106 | </e_new> |
114 | <f_old_trans></f_old_trans> | 107 | <f_old_trans></f_old_trans> |
115 | <f_translation> | 108 | <f_translation> |
116 | 109 | 이 그룹에 성인용 컨텐츠가 포함되어 니? | |
117 | </f_translation> | 110 | </f_translation> |
118 | </string><string><a_file>alerts.xml</a_file> | 111 | </string><string><a_file>alerts.xml</a_file> |
119 | <b_path>//SeachFilteredOnShortWords/message</b_path> | 112 | <b_path>//SetGroupMature/Mature</b_path> |
120 | <c_attribute></c_attribute> | 113 | <c_attribute></c_attribute> |
121 | <d_old></d_old> | 114 | <d_old></d_old> |
122 | <e_new> | 115 | <e_new> |
123 | Your search query was modified and the | 116 | Yes |
124 | words that were too short were removed. | 117 | </e_new> |
125 | |||
126 | Searched for: [FINALQUERY] | ||
127 | </e_new> | ||
128 | <f_old_trans></f_old_trans> | 118 | <f_old_trans></f_old_trans> |
129 | <f_translation> | 119 | <f_translation> |
130 | 귀하의 검색 질문이 수정되었으며 | 120 | 예 |
131 | 너무 짧은 검색어는 삭제되었습니다. | 121 | </f_translation> |
132 | |||
133 | 검색 대상: [FINALQUERY] | ||
134 | </f_translation> | ||
135 | </string><string><a_file>alerts.xml</a_file> | 122 | </string><string><a_file>alerts.xml</a_file> |
136 | <b_path>//SeachFilteredOnShortWordsEmpty/message</b_path> | 123 | <b_path>//SetGroupMature/Not Mature</b_path> |
137 | <c_attribute></c_attribute> | 124 | <c_attribute></c_attribute> |
138 | <d_old></d_old> | 125 | <d_old></d_old> |
139 | <e_new> | 126 | <e_new> |
140 | Your search terms were too short | 127 | No |
141 | so no search was performed. | 128 | </e_new> |
142 | </e_new> | ||
143 | <f_old_trans></f_old_trans> | 129 | <f_old_trans></f_old_trans> |
144 | <f_translation> | 130 | <f_translation> |
145 | 검색어가 너무 짧아 | 131 | 아니오 |
146 | 검색할 수 없습니다. | 132 | </f_translation> |
147 | </f_translation> | ||
148 | </string><string><a_file>alerts.xml</a_file> | 133 | </string><string><a_file>alerts.xml</a_file> |
149 | <b_path>//CannotCloseFloaterBuyLand/message</b_path> | 134 | <b_path>//SetGroupMature/Cancel</b_path> |
150 | <c_attribute></c_attribute> | 135 | <c_attribute></c_attribute> |
151 | <d_old></d_old> | 136 | <d_old></d_old> |
152 | <e_new> | 137 | <e_new> |
153 | You cannot close the Buy Land window until Second Life | 138 | Cancel |
154 | estimates the price of this transaction. | 139 | </e_new> |
155 | </e_new> | ||
156 | <f_old_trans></f_old_trans> | 140 | <f_old_trans></f_old_trans> |
157 | <f_translation> | 141 | <f_translation> |
158 | 세컨드라이프에서 이 거래 비용을 산정할 때까지 | 142 | 취소 |
159 | 토지 구매 창을 닫을 수 없습니다. | 143 | </f_translation> |
160 | </f_translation> | ||
161 | </string><string><a_file>alerts.xml</a_file> | 144 | </string><string><a_file>alerts.xml</a_file> |
162 | <b_path>//MaxAgentOnRegionBatch/message</b_path> | 145 | <b_path>//MissingString/message</b_path> |
163 | <c_attribute></c_attribute> | 146 | <c_attribute></c_attribute> |
164 | <d_old></d_old> | 147 | <d_old></d_old> |
165 | <e_new> | 148 | <e_new> |
166 | Failure while attempting to add [NUM_ADDED] agents: | 149 | The string [STRING_NAME] is missing from strings.xml |
167 | Exceeds the [MAX_AGENTS] [LIST_TYPE] limit by [NUM_EXCESS]. | ||
168 | </e_new> | 150 | </e_new> |
169 | <f_old_trans></f_old_trans> | 151 | <f_old_trans></f_old_trans> |
170 | <f_translation> | 152 | <f_translation> |
171 | [NUM_ADDED] 에이전트를 추가하는 데 실패했습니다: | 153 | strings.xml에 [STRING_NAME] 문자열이 없습니다. |
172 | [NUM_EXCESS]에 지정된 [MAX_AGENTS] [LIST_TYPE] 제한이 초과하였습니다. | ||
173 | </f_translation> | 154 | </f_translation> |
174 | </string><string><a_file>alerts.xml</a_file> | 155 | </string><string><a_file>floater_active_speakers.xml</a_file> |
175 | <b_path>//WebLaunchExternalTarget/message</b_path> | 156 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> |
176 | <c_attribute></c_attribute> | 157 | <c_attribute>label</c_attribute> |
177 | <d_old></d_old> | 158 | <d_old></d_old> |
178 | <e_new> | 159 | <e_new></e_new> |
179 | Open your system Web browser to view this content? | ||
180 | </e_new> | ||
181 | <f_old_trans></f_old_trans> | 160 | <f_old_trans></f_old_trans> |
182 | <f_translation> | 161 | <f_translation></f_translation> |
183 | 컨텐츠를 보려면 시스템 웹 브라우저를 여십시오. | 162 | </string><string><a_file>floater_directory.xml</a_file> |
184 | </f_translation> | 163 | <b_path>/directory/Directory Tabs/showcase_panel</b_path> |
185 | </string><string><a_file>alerts.xml</a_file> | 164 | <c_attribute>label</c_attribute> |
186 | <b_path>//WebLaunchExternalTarget/ignore</b_path> | ||
187 | <c_attribute></c_attribute> | ||
188 | <d_old></d_old> | 165 | <d_old></d_old> |
189 | <e_new> | 166 | <e_new>Showcase</e_new> |
190 | When opening your system browser to view a Web page | ||
191 | </e_new> | ||
192 | <f_old_trans></f_old_trans> | 167 | <f_old_trans></f_old_trans> |
193 | <f_translation> | 168 | <f_translation>쇼케이스</f_translation> |
194 | 시스템 브라우저를 열어 웹 페이지를 확인할 경우 | 169 | </string><string><a_file>floater_directory.xml</a_file> |
195 | </f_translation> | 170 | <b_path>/directory/Directory Tabs/showcase_panel/searching_text</b_path> |
196 | </string><string><a_file>alerts.xml</a_file> | ||
197 | <b_path>//WebLaunchExternalTarget/Open</b_path> | ||
198 | <c_attribute></c_attribute> | 171 | <c_attribute></c_attribute> |
199 | <d_old></d_old> | 172 | <d_old></d_old> |
200 | <e_new> | 173 | <e_new>Searching...</e_new> |
201 | OK | ||
202 | </e_new> | ||
203 | <f_old_trans></f_old_trans> | 174 | <f_old_trans></f_old_trans> |
204 | <f_translation> | 175 | <f_translation>검색</f_translation> |
205 | 확인 | 176 | </string><string><a_file>floater_directory.xml</a_file> |
206 | </f_translation> | 177 | <b_path>/directory/Directory Tabs/showcase_panel/not_found_text</b_path> |
207 | </string><string><a_file>alerts.xml</a_file> | ||
208 | <b_path>//WebLaunchExternalTarget/Cancel</b_path> | ||
209 | <c_attribute></c_attribute> | 178 | <c_attribute></c_attribute> |
210 | <d_old></d_old> | 179 | <d_old></d_old> |
211 | <e_new> | 180 | <e_new>None Found.</e_new> |
212 | Cancel | ||
213 | </e_new> | ||
214 | <f_old_trans></f_old_trans> | 181 | <f_old_trans></f_old_trans> |
215 | <f_translation> | 182 | <f_translation>발견되지 않음.</f_translation> |
216 | 취소 | 183 | </string><string><a_file>floater_directory.xml</a_file> |
217 | </f_translation> | 184 | <b_path>/directory/Directory Tabs/showcase_panel/back_btn</b_path> |
218 | </string><string><a_file>alerts.xml</a_file> | 185 | <c_attribute>label</c_attribute> |
219 | <b_path>//ProblemAddingEstateGeneric/message</b_path> | ||
220 | <c_attribute></c_attribute> | ||
221 | <d_old></d_old> | 186 | <d_old></d_old> |
222 | <e_new> | 187 | <e_new>Back</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> | 188 | <f_old_trans></f_old_trans> |
226 | <f_translation> | 189 | <f_translation>뒤로</f_translation> |
227 | 사유지 목록에 추가하는 동안 문제가 발생했습니다. 하나 이상의 사유지 관리자 목록이 모두 찬 상태입니다. | 190 | </string><string><a_file>floater_directory.xml</a_file> |
228 | </f_translation> | 191 | <b_path>/directory/Directory Tabs/showcase_panel/forward_btn</b_path> |
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> | 192 | <c_attribute>label</c_attribute> |
232 | <d_old></d_old> | 193 | <d_old></d_old> |
233 | <e_new>Type</e_new> | 194 | <e_new>Forward</e_new> |
234 | <f_old_trans></f_old_trans> | 195 | <f_old_trans></f_old_trans> |
235 | <f_translation></f_translation> | 196 | <f_translation>으로</f_translation> |
236 | </string><string><a_file>floater_about_land.xml</a_file> | 197 | </string><string><a_file>floater_directory.xml</a_file> |
237 | <b_path>/floaterland/landtab/land_objects_panel/owner list/name</b_path> | 198 | <b_path>/directory/Directory Tabs/showcase_panel/loading_text</b_path> |
238 | <c_attribute>label</c_attribute> | 199 | <c_attribute></c_attribute> |
239 | <d_old></d_old> | 200 | <d_old></d_old> |
240 | <e_new>Name</e_new> | 201 | <e_new>Loading...</e_new> |
241 | <f_old_trans></f_old_trans> | 202 | <f_old_trans></f_old_trans> |
242 | <f_translation>이</f_translation> | 203 | <f_translation>딩 중</f_translation> |
243 | </string><string><a_file>floater_about_land.xml</a_file> | 204 | </string><string><a_file>floater_directory.xml</a_file> |
244 | <b_path>/floaterland/landtab/land_objects_panel/owner list/count</b_path> | 205 | <b_path>/directory/Directory Tabs/showcase_panel/done_text</b_path> |
245 | <c_attribute>label</c_attribute> | 206 | <c_attribute></c_attribute> |
246 | <d_old></d_old> | 207 | <d_old></d_old> |
247 | <e_new>Count</e_new> | 208 | <e_new>Done</e_new> |
248 | <f_old_trans></f_old_trans> | 209 | <f_old_trans></f_old_trans> |
249 | <f_translation>개</f_translation> | 210 | <f_translation>료</f_translation> |
250 | </string><string><a_file>floater_active_speakers.xml</a_file> | 211 | </string><string><a_file>floater_directory.xml</a_file> |
251 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> | 212 | <b_path>/directory/Directory Tabs/groups_panel/back_btn</b_path> |
252 | <c_attribute>label</c_attribute> | 213 | <c_attribute>label</c_attribute> |
253 | <d_old></d_old> | 214 | <d_old></d_old> |
254 | <e_new></e_new> | 215 | <e_new>Back</e_new> |
255 | <f_old_trans></f_old_trans> | 216 | <f_old_trans></f_old_trans> |
256 | <f_translation></f_translation> | 217 | <f_translation>뒤로</f_translation> |
257 | </string><string><a_file>floater_avatar_textures.xml</a_file> | 218 | </string><string><a_file>floater_directory.xml</a_file> |
258 | <b_path>/avatar_texture_debug/baked_label</b_path> | 219 | <b_path>/directory/Directory Tabs/groups_panel/forward_btn</b_path> |
259 | <c_attribute></c_attribute> | 220 | <c_attribute>label</c_attribute> |
260 | <d_old></d_old> | 221 | <d_old></d_old> |
261 | <e_new> | 222 | <e_new>Forward</e_new> |
262 | Baked Textures | ||
263 | </e_new> | ||
264 | <f_old_trans></f_old_trans> | 223 | <f_old_trans></f_old_trans> |
265 | <f_translation> | 224 | <f_translation>앞으로</f_translation> |
266 | 저장된 텍스처 | 225 | </string><string><a_file>floater_directory.xml</a_file> |
267 | </f_translation> | 226 | <b_path>/directory/Directory Tabs/groups_panel/search_editor</b_path> |
268 | </string><string><a_file>floater_avatar_textures.xml</a_file> | 227 | <c_attribute>label</c_attribute> |
269 | <b_path>/avatar_texture_debug/composite_label</b_path> | ||
270 | <c_attribute></c_attribute> | ||
271 | <d_old></d_old> | 228 | <d_old></d_old> |
272 | <e_new> | 229 | <e_new>Search</e_new> |
273 | Composite Textures | ||
274 | </e_new> | ||
275 | <f_old_trans></f_old_trans> | 230 | <f_old_trans></f_old_trans> |
276 | <f_translation> | 231 | <f_translation>검색</f_translation> |
277 | 복합 텍스처 | 232 | </string><string><a_file>floater_directory.xml</a_file> |
278 | </f_translation> | 233 | <b_path>/directory/Directory Tabs/groups_panel/search_editor</b_path> |
279 | </string><string><a_file>floater_buy_currency.xml</a_file> | 234 | <c_attribute>tool_tip</c_attribute> |
280 | <b_path>/buy currency/getting_data</b_path> | ||
281 | <c_attribute></c_attribute> | ||
282 | <d_old></d_old> | 235 | <d_old></d_old> |
283 | <e_new> | 236 | <e_new>Search Second Life</e_new> |
284 | Getting data... | ||
285 | </e_new> | ||
286 | <f_old_trans></f_old_trans> | 237 | <f_old_trans></f_old_trans> |
287 | <f_translation> | 238 | <f_translation>세컨드라이프 검색</f_translation> |
288 | 데이터를 가져오는 중... | 239 | </string><string><a_file>floater_directory.xml</a_file> |
289 | </f_translation> | 240 | <b_path>/directory/Directory Tabs/groups_panel/search_btn</b_path> |
290 | </string><string><a_file>floater_camera.xml</a_file> | 241 | <c_attribute>label</c_attribute> |
291 | <b_path>/move floater</b_path> | ||
292 | <c_attribute>title</c_attribute> | ||
293 | <d_old></d_old> | 242 | <d_old></d_old> |
294 | <e_new></e_new> | 243 | <e_new>Search</e_new> |
295 | <f_old_trans></f_old_trans> | 244 | <f_old_trans></f_old_trans> |
296 | <f_translation></f_translation> | 245 | <f_translation>검색</f_translation> |
297 | </string><string><a_file>floater_camera.xml</a_file> | 246 | </string><string><a_file>floater_directory.xml</a_file> |
298 | <b_path>/move floater/rotate_tooltip</b_path> | 247 | <b_path>/directory/Directory Tabs/groups_panel/mature_check</b_path> |
299 | <c_attribute></c_attribute> | 248 | <c_attribute>label</c_attribute> |
300 | <d_old></d_old> | 249 | <d_old></d_old> |
301 | <e_new>Rotate Camera Around Focus</e_new> | 250 | <e_new>Include Mature content</e_new> |
302 | <f_old_trans></f_old_trans> | 251 | <f_old_trans></f_old_trans> |
303 | <f_translation>점 주로 메 </f_translation> | 252 | <f_translation>용 컨 포함</f_translation> |
304 | </string><string><a_file>floater_camera.xml</a_file> | 253 | </string><string><a_file>floater_directory.xml</a_file> |
305 | <b_path>/move floater/zoom_tooltip</b_path> | 254 | <b_path>/directory/Directory Tabs/groups_panel/loading_text</b_path> |
306 | <c_attribute></c_attribute> | 255 | <c_attribute></c_attribute> |
307 | <d_old></d_old> | 256 | <d_old></d_old> |
308 | <e_new>Zoom Camera Towards Focus</e_new> | 257 | <e_new>Loading...</e_new> |
309 | <f_old_trans></f_old_trans> | 258 | <f_old_trans></f_old_trans> |
310 | <f_translation>초점을 향해 카 확대/소</f_translation> | 259 | <f_translation> </f_translation> |
311 | </string><string><a_file>floater_camera.xml</a_file> | 260 | </string><string><a_file>floater_directory.xml</a_file> |
312 | <b_path>/move floater/move_tooltip</b_path> | 261 | <b_path>/directory/Directory Tabs/groups_panel/done_text</b_path> |
313 | <c_attribute></c_attribute> | 262 | <c_attribute></c_attribute> |
314 | <d_old></d_old> | 263 | <d_old></d_old> |
315 | <e_new>Move Camera Up and Down, Left and Right</e_new> | 264 | <e_new>Done</e_new> |
316 | <f_old_trans></f_old_trans> | 265 | <f_old_trans></f_old_trans> |
317 | <f_translation>위/아래, 왼쪽/오른쪽으로 카메라 이동</f_translation> | 266 | <f_translation>완료</f_translation> |
318 | </string><string><a_file>floater_chatterbox.xml</a_file> | 267 | </string><string><a_file>floater_im.xml</a_file> |
319 | <b_path>/floater_chatterbox</b_path> | 268 | <b_path>/im_floater/muted_message</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> | 269 | <c_attribute></c_attribute> |
328 | <d_old></d_old> | 270 | <d_old></d_old> |
329 | <e_new> | 271 | <e_new> |
330 | -- Instant message logging enabled -- | 272 | [FIRST] [LAST] is muted. |
331 | </e_new> | 273 | </e_new> |
332 | <f_old_trans></f_old_trans> | 274 | <f_old_trans></f_old_trans> |
333 | <f_translation> | 275 | <f_translation> |
334 | -- 로 -- | 276 | [FIRST] [LAST] 음소되니다. |
335 | </f_translation> | 277 | </f_translation> |
336 | </string><string><a_file>floater_chat_history.xml</a_file> | 278 | </string><string><a_file>notify.xml</a_file> |
337 | <b_path>/chat floater/IM_end_log_string</b_path> | 279 | <b_path>//AutoUnmuteByIM/message</b_path> |
338 | <c_attribute></c_attribute> | 280 | <c_attribute></c_attribute> |
339 | <d_old></d_old> | 281 | <d_old></d_old> |
340 | <e_new> | 282 | <e_new> |
341 | -- End of Log -- | 283 | [FIRST] [LAST] was sent an instant message and has been automatically unmuted. |
342 | </e_new> | 284 | </e_new> |
343 | <f_old_trans></f_old_trans> | 285 | <f_old_trans></f_old_trans> |
344 | <f_translation> | 286 | <f_translation> |
345 | -- 로그 끝 -- | 287 | [FIRST] [LAST]님에게 메시지가 전송되었으며 자동으로 음소거가 해제되었습니다. |
346 | </f_translation> | 288 | </f_translation> |
347 | </string><string><a_file>floater_chat_history.xml</a_file> | 289 | </string><string><a_file>notify.xml</a_file> |
348 | <b_path>/chat floater/panels/im_contents_panel/Gesture</b_path> | 290 | <b_path>//AutoUnmuteByMoney/message</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> | 291 | <c_attribute></c_attribute> |
357 | <d_old></d_old> | 292 | <d_old></d_old> |
358 | <e_new> | 293 | <e_new> |
359 | Gestures | 294 | [FIRST] [LAST] was given money and has been automatically unmuted. |
360 | </e_new> | 295 | </e_new> |
361 | <f_old_trans></f_old_trans> | 296 | <f_old_trans></f_old_trans> |
362 | <f_translation> | 297 | <f_translation> |
363 | 제스처 | 298 | [FIRST] [LAST]님에게 금액이 전송되었으며 자동으로 음소거가 해제되었습니다. |
364 | </f_translation> | 299 | </f_translation> |
365 | </string><string><a_file>floater_chat_history.xml</a_file> | 300 | </string><string><a_file>notify.xml</a_file> |
366 | <b_path>/chat floater/panels/im_contents_panel/show mutes</b_path> | 301 | <b_path>//AutoUnmuteByInventory/message</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> | 302 | <c_attribute></c_attribute> |
417 | <d_old></d_old> | 303 | <d_old></d_old> |
418 | <e_new> | 304 | <e_new> |
419 | Critical Message | 305 | [FIRST] [LAST] was offered inventory and has been automatically unmuted. |
420 | </e_new> | 306 | </e_new> |
421 | <f_old_trans></f_old_trans> | 307 | <f_old_trans></f_old_trans> |
422 | <f_translation> | 308 | <f_translation> |
423 | 중요 메시지 | 309 | [FIRST] [LAST]님에게 인벤토리가 전송되었으며 자동으로 음소거가 해제되었습니다. |
424 | </f_translation> | 310 | </f_translation> |
425 | </string><string><a_file>floater_customize.xml</a_file> | 311 | </string><string><a_file>panel_avatar_classified.xml</a_file> |
426 | <b_path>/floater customize/customize tab container/body_parts_placeholder</b_path> | 312 | <b_path>/Classified/classified_mature_check/select_mature</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> | 313 | <c_attribute></c_attribute> |
498 | <d_old></d_old> | 314 | <d_old></d_old> |
499 | <e_new> | 315 | <e_new> |
500 | Antialiasing: | 316 | - Select Mature - |
501 | </e_new> | 317 | </e_new> |
502 | <f_old_trans></f_old_trans> | 318 | <f_old_trans></f_old_trans> |
503 | <f_translation> | 319 | <f_translation> |
504 | 앤티앨리어싱: | 320 | - 성인용 컨텐츠 선택 - |
505 | </f_translation> | 321 | </f_translation> |
506 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 322 | </string><string><a_file>panel_avatar_classified.xml</a_file> |
507 | <b_path>/Hardware Settings Floater/fsaa</b_path> | 323 | <b_path>/Classified/classified_mature_check/mature</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> | 324 | <c_attribute></c_attribute> |
516 | <d_old></d_old> | 325 | <d_old></d_old> |
517 | <e_new> | 326 | <e_new> |
518 | Disabled | 327 | Mature Content |
519 | </e_new> | 328 | </e_new> |
520 | <f_old_trans></f_old_trans> | 329 | <f_old_trans></f_old_trans> |
521 | <f_translation> | 330 | <f_translation> |
522 | 비활성 | 331 | 성인용 컨츠 |
523 | </f_translation> | 332 | </f_translation> |
524 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 333 | </string><string><a_file>panel_avatar_classified.xml</a_file> |
525 | <b_path>/Hardware Settings Floater/fsaa/2x</b_path> | 334 | <b_path>/Classified/classified_mature_check/not_mature</b_path> |
526 | <c_attribute></c_attribute> | 335 | <c_attribute></c_attribute> |
527 | <d_old></d_old> | 336 | <d_old></d_old> |
528 | <e_new> | 337 | <e_new> |
529 | 2x | 338 | Not Mature Content |
530 | </e_new> | 339 | </e_new> |
531 | <f_old_trans></f_old_trans> | 340 | <f_old_trans></f_old_trans> |
532 | <f_translation> | 341 | <f_translation> |
533 | 2x | 342 | 성인용 컨텐츠 아님 |
534 | </f_translation> | 343 | </f_translation> |
535 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 344 | </string><string><a_file>panel_classified.xml</a_file> |
536 | <b_path>/Hardware Settings Floater/fsaa/4x</b_path> | 345 | <b_path>/Classified/classified_mature_check/select_mature</b_path> |
537 | <c_attribute></c_attribute> | 346 | <c_attribute></c_attribute> |
538 | <d_old></d_old> | 347 | <d_old></d_old> |
539 | <e_new> | 348 | <e_new> |
540 | 4x | 349 | - Select Mature - |
541 | </e_new> | 350 | </e_new> |
542 | <f_old_trans></f_old_trans> | 351 | <f_old_trans></f_old_trans> |
543 | <f_translation> | 352 | <f_translation> |
544 | 4x | 353 | - 성인용 컨텐츠 선택 - |
545 | </f_translation> | 354 | </f_translation> |
546 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 355 | </string><string><a_file>panel_classified.xml</a_file> |
547 | <b_path>/Hardware Settings Floater/fsaa/8x</b_path> | 356 | <b_path>/Classified/classified_mature_check/mature</b_path> |
548 | <c_attribute></c_attribute> | 357 | <c_attribute></c_attribute> |
549 | <d_old></d_old> | 358 | <d_old></d_old> |
550 | <e_new> | 359 | <e_new> |
551 | 8x | 360 | Mature Content |
552 | </e_new> | 361 | </e_new> |
553 | <f_old_trans></f_old_trans> | 362 | <f_old_trans></f_old_trans> |
554 | <f_translation> | 363 | <f_translation> |
555 | 8x | 364 | 성인용 컨텐츠 |
556 | </f_translation> | 365 | </f_translation> |
557 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 366 | </string><string><a_file>panel_classified.xml</a_file> |
558 | <b_path>/Hardware Settings Floater/fsaa/16x</b_path> | 367 | <b_path>/Classified/classified_mature_check/not_mature</b_path> |
559 | <c_attribute></c_attribute> | 368 | <c_attribute></c_attribute> |
560 | <d_old></d_old> | 369 | <d_old></d_old> |
561 | <e_new> | 370 | <e_new> |
562 | 16x | 371 | Not Mature Content |
563 | </e_new> | 372 | </e_new> |
564 | <f_old_trans></f_old_trans> | 373 | <f_old_trans></f_old_trans> |
565 | <f_translation> | 374 | <f_translation> |
566 | 16x | 375 | 성인용 컨텐츠 아님 |
567 | </f_translation> | 376 | </f_translation> |
568 | </string><string><a_file>floater_hud.xml</a_file> | 377 | </string><string><a_file>panel_groups.xml</a_file> |
569 | <b_path>/floater_hud</b_path> | 378 | <b_path>/groups/group list/name</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> | 379 | <c_attribute>label</c_attribute> |
641 | <d_old></d_old> | 380 | <d_old></d_old> |
642 | <e_new>3D Cursor</e_new> | 381 | <e_new></e_new> |
643 | <f_old_trans></f_old_trans> | 382 | <f_old_trans></f_old_trans> |
644 | <f_translation>3D 커서</f_translation> | 383 | <f_translation></f_translation> |
645 | </string><string><a_file>floater_joystick.xml</a_file> | 384 | </string><string><a_file>panel_group_general.xml</a_file> |
646 | <b_path>/Joystick/AutoLeveling</b_path> | 385 | <b_path>/general_tab/preferences_container/group_mature_check</b_path> |
647 | <c_attribute>label</c_attribute> | 386 | <c_attribute>tool_tip</c_attribute> |
648 | <d_old></d_old> | 387 | <d_old></d_old> |
649 | <e_new>Auto Level</e_new> | 388 | <e_new>Sets whether your group information is considered mature.</e_new> |
650 | <f_old_trans></f_old_trans> | 389 | <f_old_trans></f_old_trans> |
651 | <f_translation> 정</f_translation> | 390 | <f_translation>그 를 인용으 간할 여부를 설합니다.</f_translation> |
652 | </string><string><a_file>floater_joystick.xml</a_file> | 391 | </string><string><a_file>panel_group_general.xml</a_file> |
653 | <b_path>/Joystick/Control Modes:</b_path> | 392 | <b_path>/general_tab/preferences_container/group_mature_check/select_mature</b_path> |
654 | <c_attribute></c_attribute> | 393 | <c_attribute></c_attribute> |
655 | <d_old></d_old> | 394 | <d_old></d_old> |
656 | <e_new> | 395 | <e_new> |
657 | Control Modes: | 396 | - Select Mature - |
658 | </e_new> | 397 | </e_new> |
659 | <f_old_trans></f_old_trans> | 398 | <f_old_trans></f_old_trans> |
660 | <f_translation> | 399 | <f_translation> |
661 | 조절 모드: | 400 | - 성인용 컨텐츠 선택 - |
662 | </f_translation> | 401 | </f_translation> |
663 | </string><string><a_file>floater_joystick.xml</a_file> | 402 | </string><string><a_file>panel_group_general.xml</a_file> |
664 | <b_path>/Joystick/XScale</b_path> | 403 | <b_path>/general_tab/preferences_container/group_mature_check/mature</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> | 404 | <c_attribute></c_attribute> |
722 | <d_old></d_old> | 405 | <d_old></d_old> |
723 | <e_new>Z Dead Zone</e_new> | 406 | <e_new> |
724 | <f_old_trans></f_old_trans> | 407 | Mature Content |
725 | <f_translation>Z 사각지대</f_translation> | 408 | </e_new> |
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> | 409 | <f_old_trans></f_old_trans> |
739 | <f_translation>요 사각지대</f_translation> | 410 | <f_translation> |
740 | </string><string><a_file>floater_joystick.xml</a_file> | 411 | 성인용 컨텐츠 |
741 | <b_path>/Joystick/RollDeadZone</b_path> | 412 | </f_translation> |
413 | </string><string><a_file>panel_group_general.xml</a_file> | ||
414 | <b_path>/general_tab/preferences_container/group_mature_check/not_mature</b_path> | ||
742 | <c_attribute></c_attribute> | 415 | <c_attribute></c_attribute> |
743 | <d_old></d_old> | 416 | <d_old></d_old> |
744 | <e_new>Roll Dead Zone</e_new> | 417 | <e_new> |
418 | Not Mature Content | ||
419 | </e_new> | ||
745 | <f_old_trans></f_old_trans> | 420 | <f_old_trans></f_old_trans> |
746 | <f_translation>롤 사각지대</f_translation> | 421 | <f_translation> |
747 | </string><string><a_file>floater_joystick.xml</a_file> | 422 | 성인용 컨텐츠 아님 |
748 | <b_path>/Joystick/Feathering</b_path> | 423 | </f_translation> |
424 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
425 | <b_path>/Display panel/WindowSizeLabel</b_path> | ||
749 | <c_attribute></c_attribute> | 426 | <c_attribute></c_attribute> |
750 | <d_old></d_old> | 427 | <d_old></d_old> |
751 | <e_new>Feathering</e_new> | 428 | <e_new> |
752 | <f_old_trans></f_old_trans> | 429 | Window Size: |
753 | <f_translation>부드러움 효과</f_translation> | 430 | </e_new> |
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> | 431 | <f_old_trans></f_old_trans> |
774 | <f_translation></f_translation> | 432 | <f_translation> |
775 | </string><string><a_file>floater_joystick.xml</a_file> | 433 | 창 크기: |
776 | <b_path>/Joystick/ZoomScale2</b_path> | 434 | </f_translation> |
435 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
436 | <b_path>/Display panel/windowsize combo/640x480</b_path> | ||
777 | <c_attribute></c_attribute> | 437 | <c_attribute></c_attribute> |
778 | <d_old></d_old> | 438 | <d_old></d_old> |
779 | <e_new>Zoom Scale</e_new> | 439 | <e_new> |
780 | <f_old_trans></f_old_trans> | 440 | 640x480 |
781 | <f_translation>확대/축소 크기</f_translation> | 441 | </e_new> |
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> | 442 | <f_old_trans></f_old_trans> |
788 | <f_translation></f_translation> | 443 | <f_translation> |
789 | </string><string><a_file>floater_joystick.xml</a_file> | 444 | 640x480 |
790 | <b_path>/Joystick/ZoomDeadZone</b_path> | 445 | </f_translation> |
446 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
447 | <b_path>/Display panel/windowsize combo/800x600</b_path> | ||
791 | <c_attribute></c_attribute> | 448 | <c_attribute></c_attribute> |
792 | <d_old></d_old> | 449 | <d_old></d_old> |
793 | <e_new>Zoom Dead Zone</e_new> | 450 | <e_new> |
794 | <f_old_trans></f_old_trans> | 451 | 800x600 |
795 | <f_translation>확대/축소 사각지대</f_translation> | 452 | </e_new> |
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> | 453 | <f_old_trans></f_old_trans> |
809 | <f_translation>SpaceNavigator 기본값</f_translation> | 454 | <f_translation> |
810 | </string><string><a_file>floater_joystick.xml</a_file> | 455 | 800x600 |
811 | <b_path>/Joystick/JoystickMonitor</b_path> | 456 | </f_translation> |
457 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
458 | <b_path>/Display panel/windowsize combo/720x480</b_path> | ||
812 | <c_attribute></c_attribute> | 459 | <c_attribute></c_attribute> |
813 | <d_old></d_old> | 460 | <d_old></d_old> |
814 | <e_new>Joystick Monitor</e_new> | 461 | <e_new> |
462 | 720x480 (NTSC) | ||
463 | </e_new> | ||
815 | <f_old_trans></f_old_trans> | 464 | <f_old_trans></f_old_trans> |
816 | <f_translation>조이스틱 검사</f_translation> | 465 | <f_translation> |
817 | </string><string><a_file>floater_joystick.xml</a_file> | 466 | 720x480(NTSC) |
818 | <b_path>/Joystick/Axis</b_path> | 467 | </f_translation> |
468 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
469 | <b_path>/Display panel/windowsize combo/768x576</b_path> | ||
819 | <c_attribute></c_attribute> | 470 | <c_attribute></c_attribute> |
820 | <d_old></d_old> | 471 | <d_old></d_old> |
821 | <e_new>Axis [NUM]</e_new> | 472 | <e_new> |
473 | 768x576 (PAL) | ||
474 | </e_new> | ||
822 | <f_old_trans></f_old_trans> | 475 | <f_old_trans></f_old_trans> |
823 | <f_translation>축 [NUM]</f_translation> | 476 | <f_translation> |
824 | </string><string><a_file>floater_joystick.xml</a_file> | 477 | 768x576(PAL) |
825 | <b_path>/Joystick/NoDevice</b_path> | 478 | </f_translation> |
479 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
480 | <b_path>/Display panel/windowsize combo/1024x768</b_path> | ||
826 | <c_attribute></c_attribute> | 481 | <c_attribute></c_attribute> |
827 | <d_old></d_old> | 482 | <d_old></d_old> |
828 | <e_new>no device detected</e_new> | 483 | <e_new> |
829 | <f_old_trans></f_old_trans> | 484 | 1024x768 |
830 | <f_translation>검색된 장치가 없습니다.</f_translation> | 485 | </e_new> |
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> | 486 | <f_old_trans></f_old_trans> |
886 | <f_translation></f_translation> | 487 | <f_translation> |
887 | </string><string><a_file>floater_post_process.xml</a_file> | 488 | 1024x768 |
888 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomStrength</b_path> | 489 | </f_translation> |
490 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
491 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | ||
889 | <c_attribute>label</c_attribute> | 492 | <c_attribute>label</c_attribute> |
890 | <d_old></d_old> | 493 | <d_old></d_old> |
891 | <e_new></e_new> | 494 | <e_new></e_new> |
892 | <f_old_trans></f_old_trans> | 495 | <f_old_trans></f_old_trans> |
893 | <f_translation></f_translation> | 496 | <f_translation></f_translation> |
894 | </string><string><a_file>floater_preview_classified.xml</a_file> | 497 | </string><string><a_file>panel_preferences_web.xml</a_file> |
895 | <b_path>/classified_preview</b_path> | 498 | <b_path>/web/use_external_browser/internal</b_path> |
896 | <c_attribute>title</c_attribute> | 499 | <c_attribute>tool_tip</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> | 500 | <d_old></d_old> |
905 | <e_new>Event Information</e_new> | 501 | <e_new>Use the built-in web browser for help, web links, etc. This browser opens as a new window inside Second Life.</e_new> |
906 | <f_old_trans></f_old_trans> | 502 | <f_old_trans></f_old_trans> |
907 | <f_translation> </f_translation> | 503 | <f_translation>도, 웹 링 등은 컨드라이프 브라우 립니다.</f_translation> |
908 | </string><string><a_file>floater_preview_gesture.xml</a_file> | 504 | </string><string><a_file>panel_region_general.xml</a_file> |
909 | <b_path>/gesture_preview/library_label</b_path> | 505 | <b_path>/General/version_channel_text_lbl</b_path> |
910 | <c_attribute></c_attribute> | 506 | <c_attribute></c_attribute> |
911 | <d_old></d_old> | 507 | <d_old></d_old> |
912 | <e_new> | 508 | <e_new> |
913 | Library: | 509 | Version: |
914 | </e_new> | 510 | </e_new> |
915 | <f_old_trans></f_old_trans> | 511 | <f_old_trans></f_old_trans> |
916 | <f_translation> | 512 | <f_translation> |
917 | 브러리: | 513 | : |
918 | </f_translation> | 514 | </f_translation> |
919 | </string><string><a_file>floater_preview_gesture.xml</a_file> | 515 | </string><string><a_file>panel_region_general.xml</a_file> |
920 | <b_path>/gesture_preview/steps_label</b_path> | 516 | <b_path>/General/version_channel_text</b_path> |
921 | <c_attribute></c_attribute> | 517 | <c_attribute></c_attribute> |
922 | <d_old></d_old> | 518 | <d_old></d_old> |
923 | <e_new> | 519 | <e_new> |
924 | Steps: | 520 | unknown |
925 | </e_new> | 521 | </e_new> |
926 | <f_old_trans></f_old_trans> | 522 | <f_old_trans></f_old_trans> |
927 | <f_translation> | 523 | <f_translation> |
928 | 단계: | 524 | 알 수 없음 |
929 | </f_translation> | 525 | </f_translation> |
930 | </string><string><a_file>floater_preview_gesture.xml</a_file> | 526 | </string><string><a_file>strings.xml</a_file> |
931 | <b_path>/gesture_preview/animation_trigger_type/start</b_path> | 527 | <b_path>//LoginInProgress</b_path> |
932 | <c_attribute></c_attribute> | 528 | <c_attribute></c_attribute> |
933 | <d_old></d_old> | 529 | <d_old></d_old> |
934 | <e_new> | 530 | <e_new>Logging in. [APP_NAME] may appear frozen. Please wait.</e_new> |
935 | Start | ||
936 | </e_new> | ||
937 | <f_old_trans></f_old_trans> | 531 | <f_old_trans></f_old_trans> |
938 | <f_translation> | 532 | <f_translation>로그인 중. [APP_NAME]님은 정지된 상태로 나타날 수 있습니다. 잠시만 기다리십시오.</f_translation> |
939 | 시작 | 533 | </string><string><a_file>strings.xml</a_file> |
940 | </f_translation> | 534 | <b_path>//LoginAuthenticating</b_path> |
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> | 535 | <c_attribute></c_attribute> |
944 | <d_old></d_old> | 536 | <d_old></d_old> |
945 | <e_new> | 537 | <e_new>Authenticating</e_new> |
946 | Stop | ||
947 | </e_new> | ||
948 | <f_old_trans></f_old_trans> | 538 | <f_old_trans></f_old_trans> |
949 | <f_translation> | 539 | <f_translation>인증</f_translation> |
950 | 중지 | 540 | </string><string><a_file>strings.xml</a_file> |
951 | </f_translation> | 541 | <b_path>//LoginMaintenance</b_path> |
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> | 542 | <c_attribute></c_attribute> |
955 | <d_old></d_old> | 543 | <d_old></d_old> |
956 | <e_new>You are not allowed to view this note.</e_new> | 544 | <e_new>Performing account maintenance...</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> | 545 | <f_old_trans></f_old_trans> |
1000 | <f_translation>사면체</f_translation> | 546 | <f_translation>계정 확인 중</f_translation> |
1001 | </string><string><a_file>floater_tools.xml</a_file> | 547 | </string><string><a_file>strings.xml</a_file> |
1002 | <b_path>/toolbox floater/ToolCylinder</b_path> | 548 | <b_path>//LoginAttempt</b_path> |
1003 | <c_attribute>tool_tip</c_attribute> | 549 | <c_attribute></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> | 550 | <d_old></d_old> |
1047 | <e_new>Torus</e_new> | 551 | <e_new>Previous login attempt failed. Logging in, attempt [NUMBER]</e_new> |
1048 | <f_old_trans></f_old_trans> | 552 | <f_old_trans></f_old_trans> |
1049 | <f_translation></f_translation> | 553 | <f_translation>전 로그인 시도가 실했습니다. [NUMBER]번째 로그인 시도 중</f_translation> |
1050 | </string><string><a_file>floater_tools.xml</a_file> | 554 | </string><string><a_file>strings.xml</a_file> |
1051 | <b_path>/toolbox floater/ToolTube</b_path> | 555 | <b_path>//LoginPrecaching</b_path> |
1052 | <c_attribute>tool_tip</c_attribute> | 556 | <c_attribute></c_attribute> |
1053 | <d_old></d_old> | 557 | <d_old></d_old> |
1054 | <e_new>Tube</e_new> | 558 | <e_new>Loading world...</e_new> |
1055 | <f_old_trans></f_old_trans> | 559 | <f_old_trans></f_old_trans> |
1056 | <f_translation>관</f_translation> | 560 | <f_translation>로딩 중</f_translation> |
1057 | </string><string><a_file>floater_tools.xml</a_file> | 561 | </string><string><a_file>strings.xml</a_file> |
1058 | <b_path>/toolbox floater/ToolRing</b_path> | 562 | <b_path>//LoginInitializingBrowser</b_path> |
1059 | <c_attribute>tool_tip</c_attribute> | 563 | <c_attribute></c_attribute> |
1060 | <d_old></d_old> | 564 | <d_old></d_old> |
1061 | <e_new>Ring</e_new> | 565 | <e_new>Initializing embedded web browser...</e_new> |
1062 | <f_old_trans></f_old_trans> | 566 | <f_old_trans></f_old_trans> |
1063 | <f_translation></f_translation> | 567 | <f_translation>웹 라 초기화 중</f_translation> |
1064 | </string><string><a_file>floater_tools.xml</a_file> | 568 | </string><string><a_file>strings.xml</a_file> |
1065 | <b_path>/toolbox floater/ToolTree</b_path> | 569 | <b_path>//LoginVerifyingCache</b_path> |
1066 | <c_attribute>tool_tip</c_attribute> | 570 | <c_attribute></c_attribute> |
1067 | <d_old></d_old> | 571 | <d_old></d_old> |
1068 | <e_new>Tree</e_new> | 572 | <e_new>Verifying cache files (can take 60-90 seconds)...</e_new> |
1069 | <f_old_trans></f_old_trans> | 573 | <f_old_trans></f_old_trans> |
1070 | <f_translation>나</f_translation> | 574 | <f_translation>캐시 파일 확인 중(60-90 소요)</f_translation> |
1071 | </string><string><a_file>floater_tools.xml</a_file> | 575 | </string><string><a_file>strings.xml</a_file> |
1072 | <b_path>/toolbox floater/ToolGrass</b_path> | 576 | <b_path>//LoginProcessingResponse</b_path> |
1073 | <c_attribute>tool_tip</c_attribute> | 577 | <c_attribute></c_attribute> |
1074 | <d_old></d_old> | 578 | <d_old></d_old> |
1075 | <e_new>Grass</e_new> | 579 | <e_new>Processing Response...</e_new> |
1076 | <f_old_trans></f_old_trans> | 580 | <f_old_trans></f_old_trans> |
1077 | <f_translation></f_translation> | 581 | <f_translation> 처리 중</f_translation> |
1078 | </string><string><a_file>menu_viewer.xml</a_file> | 582 | </string><string><a_file>strings.xml</a_file> |
1079 | <b_path>/Main Menu/View/Joystick Flycam</b_path> | 583 | <b_path>//LoginInitializingWorld</b_path> |
1080 | <c_attribute>label</c_attribute> | 584 | <c_attribute></c_attribute> |
1081 | <d_old></d_old> | 585 | <d_old></d_old> |
1082 | <e_new>Joystick Flycam</e_new> | 586 | <e_new>Initializing World...</e_new> |
1083 | <f_old_trans></f_old_trans> | 587 | <f_old_trans></f_old_trans> |
1084 | <f_translation>스 Flycam</f_translation> | 588 | <f_translation>기 중</f_translation> |
1085 | </string><string><a_file>menu_viewer.xml</a_file> | 589 | </string><string><a_file>strings.xml</a_file> |
1086 | <b_path>/Main Menu/Help/Tutorial</b_path> | 590 | <b_path>//LoginDecodingImages</b_path> |
1087 | <c_attribute>label</c_attribute> | 591 | <c_attribute></c_attribute> |
1088 | <d_old></d_old> | 592 | <d_old></d_old> |
1089 | <e_new>Tutorial</e_new> | 593 | <e_new>Decoding images...</e_new> |
1090 | <f_old_trans></f_old_trans> | 594 | <f_old_trans></f_old_trans> |
1091 | <f_translation>튜토</f_translation> | 595 | <f_translation>이디 디딩 중</f_translation> |
1092 | </string><string><a_file>menu_viewer.xml</a_file> | 596 | </string><string><a_file>strings.xml</a_file> |
1093 | <b_path>/Main Menu/Help/separator7</b_path> | 597 | <b_path>//LoginInitializingQuicktime</b_path> |
1094 | <c_attribute>label</c_attribute> | 598 | <c_attribute></c_attribute> |
1095 | <d_old></d_old> | 599 | <d_old></d_old> |
1096 | <e_new>-----------</e_new> | 600 | <e_new>Initializing QuickTime...</e_new> |
1097 | <f_old_trans></f_old_trans> | 601 | <f_old_trans></f_old_trans> |
1098 | <f_translation>-----------</f_translation> | 602 | <f_translation>QuickTime 초기화 중...</f_translation> |
1099 | </string><string><a_file>menu_viewer.xml</a_file> | 603 | </string><string><a_file>strings.xml</a_file> |
1100 | <b_path>/Main Menu/Help/Bug Reporting/separator9</b_path> | 604 | <b_path>//LoginQuicktimeNotFound</b_path> |
1101 | <c_attribute>label</c_attribute> | 605 | <c_attribute></c_attribute> |
1102 | <d_old></d_old> | 606 | <d_old></d_old> |
1103 | <e_new>-----------</e_new> | 607 | <e_new>QuickTime not found - unable to initialize.</e_new> |
1104 | <f_old_trans></f_old_trans> | 608 | <f_old_trans></f_old_trans> |
1105 | <f_translation>-----------</f_translation> | 609 | <f_translation>QuickTime을 찾을 수 없으므로 초기화할 수 없습니다.</f_translation> |
1106 | </string><string><a_file>mime_types.xml</a_file> | 610 | </string><string><a_file>strings.xml</a_file> |
1107 | <b_path>/default/web/</b_path> | 611 | <b_path>//LoginQuicktimeOK</b_path> |
1108 | <c_attribute></c_attribute> | 612 | <c_attribute></c_attribute> |
1109 | <d_old></d_old> | 613 | <d_old></d_old> |
1110 | <e_new> | 614 | <e_new>QuickTime initialized successfully.</e_new> |
1111 | Web Content | ||
1112 | </e_new> | ||
1113 | <f_old_trans></f_old_trans> | 615 | <f_old_trans></f_old_trans> |
1114 | <f_translation> | 616 | <f_translation>QuickTime이 성공적으로 초기화되었습니다.</f_translation> |
1115 | 웹 컨텐츠 | 617 | </string><string><a_file>strings.xml</a_file> |
1116 | </f_translation> | 618 | <b_path>//LoginWaitingForRegionHandshake</b_path> |
1117 | </string><string><a_file>mime_types.xml</a_file> | ||
1118 | <b_path>/default/web/</b_path> | ||
1119 | <c_attribute></c_attribute> | 619 | <c_attribute></c_attribute> |
1120 | <d_old></d_old> | 620 | <d_old></d_old> |
1121 | <e_new> | 621 | <e_new>Waiting for region handshake...</e_new> |
1122 | This location has Web content | ||
1123 | </e_new> | ||
1124 | <f_old_trans></f_old_trans> | 622 | <f_old_trans></f_old_trans> |
1125 | <f_translation> | 623 | <f_translation>지역 대기 중</f_translation> |
1126 | 이 위치에는 웹 컨텐츠가 포함되어 있습니다. | 624 | </string><string><a_file>strings.xml</a_file> |
1127 | </f_translation> | 625 | <b_path>//LoginConnectingToRegion</b_path> |
1128 | </string><string><a_file>mime_types.xml</a_file> | ||
1129 | <b_path>/default/web/</b_path> | ||
1130 | <c_attribute></c_attribute> | 626 | <c_attribute></c_attribute> |
1131 | <d_old></d_old> | 627 | <d_old></d_old> |
1132 | <e_new> | 628 | <e_new>Connecting to region...</e_new> |
1133 | Show Web content | ||
1134 | </e_new> | ||
1135 | <f_old_trans></f_old_trans> | 629 | <f_old_trans></f_old_trans> |
1136 | <f_translation> | 630 | <f_translation>지역에 연결하는 중</f_translation> |
1137 | 웹 컨텐츠 표시 | 631 | </string><string><a_file>strings.xml</a_file> |
1138 | </f_translation> | 632 | <b_path>//LoginDownloadingClothing</b_path> |
1139 | </string><string><a_file>mime_types.xml</a_file> | ||
1140 | <b_path>/default/movie/</b_path> | ||
1141 | <c_attribute></c_attribute> | 633 | <c_attribute></c_attribute> |
1142 | <d_old></d_old> | 634 | <d_old></d_old> |
1143 | <e_new> | 635 | <e_new>Downloading clothing...</e_new> |
1144 | Movie | ||
1145 | </e_new> | ||
1146 | <f_old_trans></f_old_trans> | 636 | <f_old_trans></f_old_trans> |
1147 | <f_translation> | 637 | <f_translation>의복 다운로드 중</f_translation> |
1148 | 동영상 | 638 | </string><string><a_file>strings.xml</a_file> |
1149 | </f_translation> | 639 | <b_path>//TooltipPerson</b_path> |
1150 | </string><string><a_file>mime_types.xml</a_file> | ||
1151 | <b_path>/default/movie/</b_path> | ||
1152 | <c_attribute></c_attribute> | 640 | <c_attribute></c_attribute> |
1153 | <d_old></d_old> | 641 | <d_old></d_old> |
1154 | <e_new> | 642 | <e_new>Person</e_new> |
1155 | There is a movie to play here | ||
1156 | </e_new> | ||
1157 | <f_old_trans></f_old_trans> | 643 | <f_old_trans></f_old_trans> |
1158 | <f_translation> | 644 | <f_translation>아바타</f_translation> |
1159 | 여기서 동영상을 재생할 수 있습니다. | 645 | </string><string><a_file>strings.xml</a_file> |
1160 | </f_translation> | 646 | <b_path>//TooltipNoName</b_path> |
1161 | </string><string><a_file>mime_types.xml</a_file> | ||
1162 | <b_path>/default/movie/</b_path> | ||
1163 | <c_attribute></c_attribute> | 647 | <c_attribute></c_attribute> |
1164 | <d_old></d_old> | 648 | <d_old></d_old> |
1165 | <e_new> | 649 | <e_new>(no name)</e_new> |
1166 | Play movie | ||
1167 | </e_new> | ||
1168 | <f_old_trans></f_old_trans> | 650 | <f_old_trans></f_old_trans> |
1169 | <f_translation> | 651 | <f_translation>(이름 없음)</f_translation> |
1170 | 동영상 재생 | 652 | </string><string><a_file>strings.xml</a_file> |
1171 | </f_translation> | 653 | <b_path>//TooltipOwner</b_path> |
1172 | </string><string><a_file>mime_types.xml</a_file> | ||
1173 | <b_path>/default/none/</b_path> | ||
1174 | <c_attribute></c_attribute> | 654 | <c_attribute></c_attribute> |
1175 | <d_old></d_old> | 655 | <d_old></d_old> |
1176 | <e_new> | 656 | <e_new>Owner:</e_new> |
1177 | No Content | ||
1178 | </e_new> | ||
1179 | <f_old_trans></f_old_trans> | 657 | <f_old_trans></f_old_trans> |
1180 | <f_translation> | 658 | <f_translation>소유자:</f_translation> |
1181 | 컨텐츠 없음 | 659 | </string><string><a_file>strings.xml</a_file> |
1182 | </f_translation> | 660 | <b_path>//TooltipPublic</b_path> |
1183 | </string><string><a_file>mime_types.xml</a_file> | ||
1184 | <b_path>/default/none/</b_path> | ||
1185 | <c_attribute></c_attribute> | 661 | <c_attribute></c_attribute> |
1186 | <d_old></d_old> | 662 | <d_old></d_old> |
1187 | <e_new> | 663 | <e_new>Public</e_new> |
1188 | No media here | ||
1189 | </e_new> | ||
1190 | <f_old_trans></f_old_trans> | 664 | <f_old_trans></f_old_trans> |
1191 | <f_translation> | 665 | <f_translation>공개</f_translation> |
1192 | 미디어 없음 | 666 | </string><string><a_file>strings.xml</a_file> |
1193 | </f_translation> | 667 | <b_path>//TooltipIsGroup</b_path> |
1194 | </string><string><a_file>mime_types.xml</a_file> | ||
1195 | <b_path>/default/image/</b_path> | ||
1196 | <c_attribute></c_attribute> | 668 | <c_attribute></c_attribute> |
1197 | <d_old></d_old> | 669 | <d_old></d_old> |
1198 | <e_new> | 670 | <e_new>(Group)</e_new> |
1199 | Image | ||
1200 | </e_new> | ||
1201 | <f_old_trans></f_old_trans> | 671 | <f_old_trans></f_old_trans> |
1202 | <f_translation> | 672 | <f_translation>(그룹)</f_translation> |
1203 | 이미지 | 673 | </string><string><a_file>strings.xml</a_file> |
1204 | </f_translation> | 674 | <b_path>//TooltipFlagScript</b_path> |
1205 | </string><string><a_file>mime_types.xml</a_file> | ||
1206 | <b_path>/default/image/</b_path> | ||
1207 | <c_attribute></c_attribute> | 675 | <c_attribute></c_attribute> |
1208 | <d_old></d_old> | 676 | <d_old></d_old> |
1209 | <e_new> | 677 | <e_new>Script</e_new> |
1210 | There is an image at this location | ||
1211 | </e_new> | ||
1212 | <f_old_trans></f_old_trans> | 678 | <f_old_trans></f_old_trans> |
1213 | <f_translation> | 679 | <f_translation>스크립트</f_translation> |
1214 | 이 위치에 이미지가 있습니다. | 680 | </string><string><a_file>strings.xml</a_file> |
1215 | </f_translation> | 681 | <b_path>//TooltipFlagPhysics</b_path> |
1216 | </string><string><a_file>mime_types.xml</a_file> | ||
1217 | <b_path>/default/image/</b_path> | ||
1218 | <c_attribute></c_attribute> | 682 | <c_attribute></c_attribute> |
1219 | <d_old></d_old> | 683 | <d_old></d_old> |
1220 | <e_new> | 684 | <e_new>Physics</e_new> |
1221 | View this location's image | ||
1222 | </e_new> | ||
1223 | <f_old_trans></f_old_trans> | 685 | <f_old_trans></f_old_trans> |
1224 | <f_translation> | 686 | <f_translation>물리 엔진</f_translation> |
1225 | 이 위치의 이미지 보기 | 687 | </string><string><a_file>strings.xml</a_file> |
1226 | </f_translation> | 688 | <b_path>//TooltipFlagTouch</b_path> |
1227 | </string><string><a_file>mime_types.xml</a_file> | ||
1228 | <b_path>/default/audio/</b_path> | ||
1229 | <c_attribute></c_attribute> | 689 | <c_attribute></c_attribute> |
1230 | <d_old></d_old> | 690 | <d_old></d_old> |
1231 | <e_new> | 691 | <e_new>Touch</e_new> |
1232 | Audio | ||
1233 | </e_new> | ||
1234 | <f_old_trans></f_old_trans> | 692 | <f_old_trans></f_old_trans> |
1235 | <f_translation> | 693 | <f_translation>만지기</f_translation> |
1236 | 오디오 | 694 | </string><string><a_file>strings.xml</a_file> |
1237 | </f_translation> | 695 | <b_path>//TooltipFlagL$</b_path> |
1238 | </string><string><a_file>mime_types.xml</a_file> | ||
1239 | <b_path>/default/audio/</b_path> | ||
1240 | <c_attribute></c_attribute> | 696 | <c_attribute></c_attribute> |
1241 | <d_old></d_old> | 697 | <d_old></d_old> |
1242 | <e_new> | 698 | <e_new>L$</e_new> |
1243 | There is audio at this location | ||
1244 | </e_new> | ||
1245 | <f_old_trans></f_old_trans> | 699 | <f_old_trans></f_old_trans> |
1246 | <f_translation> | 700 | <f_translation>L$</f_translation> |
1247 | 이 위치에 오디오가 있습니다. | 701 | </string><string><a_file>strings.xml</a_file> |
1248 | </f_translation> | 702 | <b_path>//TooltipFlagDropInventory</b_path> |
1249 | </string><string><a_file>mime_types.xml</a_file> | ||
1250 | <b_path>/default/audio/</b_path> | ||
1251 | <c_attribute></c_attribute> | 703 | <c_attribute></c_attribute> |
1252 | <d_old></d_old> | 704 | <d_old></d_old> |
1253 | <e_new> | 705 | <e_new>Drop Inventory</e_new> |
1254 | View this location's audio | ||
1255 | </e_new> | ||
1256 | <f_old_trans></f_old_trans> | 706 | <f_old_trans></f_old_trans> |
1257 | <f_translation> | 707 | <f_translation>인벤토리 드롭</f_translation> |
1258 | 이 위치의 오디오 보기 | 708 | </string><string><a_file>strings.xml</a_file> |
1259 | </f_translation> | 709 | <b_path>//TooltipFlagPhantom</b_path> |
1260 | </string><string><a_file>mime_types.xml</a_file> | ||
1261 | <b_path>/default/rtsp/</b_path> | ||
1262 | <c_attribute></c_attribute> | 710 | <c_attribute></c_attribute> |
1263 | <d_old></d_old> | 711 | <d_old></d_old> |
1264 | <e_new> | 712 | <e_new>Phantom</e_new> |
1265 | Real Time Streaming | ||
1266 | </e_new> | ||
1267 | <f_old_trans></f_old_trans> | 713 | <f_old_trans></f_old_trans> |
1268 | <f_translation> | 714 | <f_translation>팬텀</f_translation> |
1269 | 실시간 스트리밍 | 715 | </string><string><a_file>strings.xml</a_file> |
1270 | </f_translation> | 716 | <b_path>//TooltipFlagTemporary</b_path> |
1271 | </string><string><a_file>mime_types.xml</a_file> | ||
1272 | <b_path>/default/blank/</b_path> | ||
1273 | <c_attribute></c_attribute> | 717 | <c_attribute></c_attribute> |
1274 | <d_old></d_old> | 718 | <d_old></d_old> |
1275 | <e_new> | 719 | <e_new>Temporary</e_new> |
1276 | - None - | ||
1277 | </e_new> | ||
1278 | <f_old_trans></f_old_trans> | 720 | <f_old_trans></f_old_trans> |
1279 | <f_translation> | 721 | <f_translation>임시</f_translation> |
1280 | - 없음 - | 722 | </string><string><a_file>strings.xml</a_file> |
1281 | </f_translation> | 723 | <b_path>//TooltipFlagRightClickMenu</b_path> |
1282 | </string><string><a_file>mime_types.xml</a_file> | ||
1283 | <b_path>/default/"none/none"/</b_path> | ||
1284 | <c_attribute></c_attribute> | 724 | <c_attribute></c_attribute> |
1285 | <d_old></d_old> | 725 | <d_old></d_old> |
1286 | <e_new> | 726 | <e_new>(Right-click for menu)</e_new> |
1287 | - None - | ||
1288 | </e_new> | ||
1289 | <f_old_trans></f_old_trans> | 727 | <f_old_trans></f_old_trans> |
1290 | <f_translation> | 728 | <f_translation>(오른쪽 클릭 메뉴)</f_translation> |
1291 | - 없음 - | 729 | </string><string><a_file>strings.xml</a_file> |
1292 | </f_translation> | 730 | <b_path>//TooltipFreeToCopy</b_path> |
1293 | </string><string><a_file>mime_types.xml</a_file> | ||
1294 | <b_path>/default/"audio/*"/</b_path> | ||
1295 | <c_attribute></c_attribute> | 731 | <c_attribute></c_attribute> |
1296 | <d_old></d_old> | 732 | <d_old></d_old> |
1297 | <e_new> | 733 | <e_new>Free to copy</e_new> |
1298 | Audio | ||
1299 | </e_new> | ||
1300 | <f_old_trans></f_old_trans> | 734 | <f_old_trans></f_old_trans> |
1301 | <f_translation> | 735 | <f_translation>무료 복사</f_translation> |
1302 | 오디오 | 736 | </string><string><a_file>strings.xml</a_file> |
1303 | </f_translation> | 737 | <b_path>//TooltipForSaleL$</b_path> |
1304 | </string><string><a_file>mime_types.xml</a_file> | ||
1305 | <b_path>/default/"video/*"/</b_path> | ||
1306 | <c_attribute></c_attribute> | 738 | <c_attribute></c_attribute> |
1307 | <d_old></d_old> | 739 | <d_old></d_old> |
1308 | <e_new> | 740 | <e_new>For Sale: L$[AMOUNT]</e_new> |
1309 | Video | ||
1310 | </e_new> | ||
1311 | <f_old_trans></f_old_trans> | 741 | <f_old_trans></f_old_trans> |
1312 | <f_translation> | 742 | <f_translation>판매: L$ [AMOUNT]</f_translation> |
1313 | 비디오 | 743 | </string><string><a_file>strings.xml</a_file> |
1314 | </f_translation> | 744 | <b_path>//TooltipForSaleMsg</b_path> |
1315 | </string><string><a_file>mime_types.xml</a_file> | ||
1316 | <b_path>/default/"image/*"/</b_path> | ||
1317 | <c_attribute></c_attribute> | 745 | <c_attribute></c_attribute> |
1318 | <d_old></d_old> | 746 | <d_old></d_old> |
1319 | <e_new> | 747 | <e_new>For Sale: [MESSAGE]</e_new> |
1320 | Image | ||
1321 | </e_new> | ||
1322 | <f_old_trans></f_old_trans> | 748 | <f_old_trans></f_old_trans> |
1323 | <f_translation> | 749 | <f_translation>판매: [MESSAGE]</f_translation> |
1324 | 이미지 | 750 | </string><string><a_file>strings.xml</a_file> |
1325 | </f_translation> | 751 | <b_path>//TooltipFlagGroupBuild</b_path> |
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> | 752 | <c_attribute></c_attribute> |
1329 | <d_old></d_old> | 753 | <d_old></d_old> |
1330 | <e_new> | 754 | <e_new>Group Build</e_new> |
1331 | Movie (QuickTime) | ||
1332 | </e_new> | ||
1333 | <f_old_trans></f_old_trans> | 755 | <f_old_trans></f_old_trans> |
1334 | <f_translation> | 756 | <f_translation>그룹 만들기</f_translation> |
1335 | 동영상(QuickTime) | 757 | </string><string><a_file>strings.xml</a_file> |
1336 | </f_translation> | 758 | <b_path>//TooltipFlagNoBuild</b_path> |
1337 | </string><string><a_file>mime_types.xml</a_file> | ||
1338 | <b_path>/default/"application/javascript"/</b_path> | ||
1339 | <c_attribute></c_attribute> | 759 | <c_attribute></c_attribute> |
1340 | <d_old></d_old> | 760 | <d_old></d_old> |
1341 | <e_new> | 761 | <e_new>No Build</e_new> |
1342 | Javascript | ||
1343 | </e_new> | ||
1344 | <f_old_trans></f_old_trans> | 762 | <f_old_trans></f_old_trans> |
1345 | <f_translation> | 763 | <f_translation>건축 금지</f_translation> |
1346 | Javascript | 764 | </string><string><a_file>strings.xml</a_file> |
1347 | </f_translation> | 765 | <b_path>//TooltipFlagNoEdit</b_path> |
1348 | </string><string><a_file>mime_types.xml</a_file> | ||
1349 | <b_path>/default/"application/ogg"/</b_path> | ||
1350 | <c_attribute></c_attribute> | 766 | <c_attribute></c_attribute> |
1351 | <d_old></d_old> | 767 | <d_old></d_old> |
1352 | <e_new> | 768 | <e_new>Group Build</e_new> |
1353 | Ogg Audio/Video | ||
1354 | </e_new> | ||
1355 | <f_old_trans></f_old_trans> | 769 | <f_old_trans></f_old_trans> |
1356 | <f_translation> | 770 | <f_translation>그룹 만들기</f_translation> |
1357 | Ogg 오디오/비디오 | 771 | </string><string><a_file>strings.xml</a_file> |
1358 | </f_translation> | 772 | <b_path>//TooltipFlagNotSafe</b_path> |
1359 | </string><string><a_file>mime_types.xml</a_file> | ||
1360 | <b_path>/default/"application/pdf"/</b_path> | ||
1361 | <c_attribute></c_attribute> | 773 | <c_attribute></c_attribute> |
1362 | <d_old></d_old> | 774 | <d_old></d_old> |
1363 | <e_new> | 775 | <e_new>Not Safe</e_new> |
1364 | PDF Document | ||
1365 | </e_new> | ||
1366 | <f_old_trans></f_old_trans> | 776 | <f_old_trans></f_old_trans> |
1367 | <f_translation> | 777 | <f_translation>안전하지 않음</f_translation> |
1368 | PDF 문서 | 778 | </string><string><a_file>strings.xml</a_file> |
1369 | </f_translation> | 779 | <b_path>//TooltipFlagNoFly</b_path> |
1370 | </string><string><a_file>mime_types.xml</a_file> | ||
1371 | <b_path>/default/"application/postscript"/</b_path> | ||
1372 | <c_attribute></c_attribute> | 780 | <c_attribute></c_attribute> |
1373 | <d_old></d_old> | 781 | <d_old></d_old> |
1374 | <e_new> | 782 | <e_new>No Fly</e_new> |
1375 | Postscript Document | ||
1376 | </e_new> | ||
1377 | <f_old_trans></f_old_trans> | 783 | <f_old_trans></f_old_trans> |
1378 | <f_translation> | 784 | <f_translation>비행 금지</f_translation> |
1379 | 포스트스크립트 문서 | 785 | </string><string><a_file>strings.xml</a_file> |
1380 | </f_translation> | 786 | <b_path>//TooltipFlagGroupScripts</b_path> |
1381 | </string><string><a_file>mime_types.xml</a_file> | ||
1382 | <b_path>/default/"application/rtf"/</b_path> | ||
1383 | <c_attribute></c_attribute> | 787 | <c_attribute></c_attribute> |
1384 | <d_old></d_old> | 788 | <d_old></d_old> |
1385 | <e_new> | 789 | <e_new>Group Scripts</e_new> |
1386 | Rich Text (RTF) | ||
1387 | </e_new> | ||
1388 | <f_old_trans></f_old_trans> | 790 | <f_old_trans></f_old_trans> |
1389 | <f_translation> | 791 | <f_translation>그룹 스크립트</f_translation> |
1390 | 서식있는 텍스트(RTF) | 792 | </string><string><a_file>strings.xml</a_file> |
1391 | </f_translation> | 793 | <b_path>//TooltipFlagNoScripts</b_path> |
1392 | </string><string><a_file>mime_types.xml</a_file> | ||
1393 | <b_path>/default/"application/xhtml+xml"/</b_path> | ||
1394 | <c_attribute></c_attribute> | 794 | <c_attribute></c_attribute> |
1395 | <d_old></d_old> | 795 | <d_old></d_old> |
1396 | <e_new> | 796 | <e_new>No Scripts</e_new> |
1397 | Web Page (XHTML) | ||
1398 | </e_new> | ||
1399 | <f_old_trans></f_old_trans> | 797 | <f_old_trans></f_old_trans> |
1400 | <f_translation> | 798 | <f_translation>스크립트 금지</f_translation> |
1401 | 웹 페이지(XHTML) | 799 | </string><string><a_file>strings.xml</a_file> |
1402 | </f_translation> | 800 | <b_path>//TooltipLand</b_path> |
1403 | </string><string><a_file>mime_types.xml</a_file> | ||
1404 | <b_path>/default/"application/x-director"/</b_path> | ||
1405 | <c_attribute></c_attribute> | 801 | <c_attribute></c_attribute> |
1406 | <d_old></d_old> | 802 | <d_old></d_old> |
1407 | <e_new> | 803 | <e_new>Land:</e_new> |
1408 | Macromedia Director | ||
1409 | </e_new> | ||
1410 | <f_old_trans></f_old_trans> | 804 | <f_old_trans></f_old_trans> |
1411 | <f_translation> | 805 | <f_translation>토지:</f_translation> |
1412 | Macromedia Director | 806 | </string><string><a_file>strings.xml</a_file> |
1413 | </f_translation> | 807 | <b_path>//RetrievingData</b_path> |
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> | 808 | <c_attribute></c_attribute> |
1417 | <d_old></d_old> | 809 | <d_old></d_old> |
1418 | <e_new> | 810 | <e_new>Retrieving...</e_new> |
1419 | Flash | ||
1420 | </e_new> | ||
1421 | <f_old_trans></f_old_trans> | 811 | <f_old_trans></f_old_trans> |
1422 | <f_translation> | 812 | <f_translation>가져오는 중</f_translation> |
1423 | 플래시 | 813 | </string><string><a_file>strings.xml</a_file> |
1424 | </f_translation> | 814 | <b_path>//LoadingData</b_path> |
1425 | </string><string><a_file>mime_types.xml</a_file> | ||
1426 | <b_path>/default/"audio/mid"/</b_path> | ||
1427 | <c_attribute></c_attribute> | 815 | <c_attribute></c_attribute> |
1428 | <d_old></d_old> | 816 | <d_old></d_old> |
1429 | <e_new> | 817 | <e_new>Loading...</e_new> |
1430 | Audio (MIDI) | ||
1431 | </e_new> | ||
1432 | <f_old_trans></f_old_trans> | 818 | <f_old_trans></f_old_trans> |
1433 | <f_translation> | 819 | <f_translation>로딩 중</f_translation> |
1434 | 오디오(MIDI) | 820 | </string><string><a_file>strings.xml</a_file> |
1435 | </f_translation> | 821 | <b_path>//AvatarNameNobody</b_path> |
1436 | </string><string><a_file>mime_types.xml</a_file> | ||
1437 | <b_path>/default/"audio/mpeg"/</b_path> | ||
1438 | <c_attribute></c_attribute> | 822 | <c_attribute></c_attribute> |
1439 | <d_old></d_old> | 823 | <d_old></d_old> |
1440 | <e_new> | 824 | <e_new>(nobody)</e_new> |
1441 | Audio (MP3) | ||
1442 | </e_new> | ||
1443 | <f_old_trans></f_old_trans> | 825 | <f_old_trans></f_old_trans> |
1444 | <f_translation> | 826 | <f_translation>(없음)</f_translation> |
1445 | 오디오(MP3) | 827 | </string><string><a_file>strings.xml</a_file> |
1446 | </f_translation> | 828 | <b_path>//AvatarNameWaiting</b_path> |
1447 | </string><string><a_file>mime_types.xml</a_file> | ||
1448 | <b_path>/default/"audio/x-aiff"/</b_path> | ||
1449 | <c_attribute></c_attribute> | 829 | <c_attribute></c_attribute> |
1450 | <d_old></d_old> | 830 | <d_old></d_old> |
1451 | <e_new> | 831 | <e_new>(waiting)</e_new> |
1452 | Audio (AIFF) | ||
1453 | </e_new> | ||
1454 | <f_old_trans></f_old_trans> | 832 | <f_old_trans></f_old_trans> |
1455 | <f_translation> | 833 | <f_translation>(대기 중)</f_translation> |
1456 | 오디오(AIFF) | 834 | </string><string><a_file>strings.xml</a_file> |
1457 | </f_translation> | 835 | <b_path>//AvatarNameHippos</b_path> |
1458 | </string><string><a_file>mime_types.xml</a_file> | ||
1459 | <b_path>/default/"audio/x-wav"/</b_path> | ||
1460 | <c_attribute></c_attribute> | 836 | <c_attribute></c_attribute> |
1461 | <d_old></d_old> | 837 | <d_old></d_old> |
1462 | <e_new> | 838 | <e_new>(hippos)</e_new> |
1463 | Audio (WAV) | ||
1464 | </e_new> | ||
1465 | <f_old_trans></f_old_trans> | 839 | <f_old_trans></f_old_trans> |
1466 | <f_translation> | 840 | <f_translation>(하마)</f_translation> |
1467 | 오디오(WAV) | 841 | </string><string><a_file>strings.xml</a_file> |
1468 | </f_translation> | 842 | <b_path>//GroupNameNone</b_path> |
1469 | </string><string><a_file>mime_types.xml</a_file> | ||
1470 | <b_path>/default/"image/bmp"/</b_path> | ||
1471 | <c_attribute></c_attribute> | 843 | <c_attribute></c_attribute> |
1472 | <d_old></d_old> | 844 | <d_old></d_old> |
1473 | <e_new> | 845 | <e_new>(none)</e_new> |
1474 | Image (BMP) | ||
1475 | </e_new> | ||
1476 | <f_old_trans></f_old_trans> | 846 | <f_old_trans></f_old_trans> |
1477 | <f_translation> | 847 | <f_translation>(없음)</f_translation> |
1478 | 이미지(BMP) | 848 | </string><string><a_file>strings.xml</a_file> |
1479 | </f_translation> | 849 | <b_path>//AssetErrorNone</b_path> |
1480 | </string><string><a_file>mime_types.xml</a_file> | ||
1481 | <b_path>/default/"image/gif"/</b_path> | ||
1482 | <c_attribute></c_attribute> | 850 | <c_attribute></c_attribute> |
1483 | <d_old></d_old> | 851 | <d_old></d_old> |
1484 | <e_new> | 852 | <e_new>No error</e_new> |
1485 | Image (GIF) | ||
1486 | </e_new> | ||
1487 | <f_old_trans></f_old_trans> | 853 | <f_old_trans></f_old_trans> |
1488 | <f_translation> | 854 | <f_translation>오류 없음</f_translation> |
1489 | 이미지(GIF) | 855 | </string><string><a_file>strings.xml</a_file> |
1490 | </f_translation> | 856 | <b_path>//AssetErrorRequestFailed</b_path> |
1491 | </string><string><a_file>mime_types.xml</a_file> | ||
1492 | <b_path>/default/"image/jpeg"/</b_path> | ||
1493 | <c_attribute></c_attribute> | 857 | <c_attribute></c_attribute> |
1494 | <d_old></d_old> | 858 | <d_old></d_old> |
1495 | <e_new> | 859 | <e_new>Asset request: failed</e_new> |
1496 | Image (JPEG) | ||
1497 | </e_new> | ||
1498 | <f_old_trans></f_old_trans> | 860 | <f_old_trans></f_old_trans> |
1499 | <f_translation> | 861 | <f_translation>자산 요청: 실패</f_translation> |
1500 | 이미지(JPEG) | 862 | </string><string><a_file>strings.xml</a_file> |
1501 | </f_translation> | 863 | <b_path>//AssetErrorNonexistentFile</b_path> |
1502 | </string><string><a_file>mime_types.xml</a_file> | ||
1503 | <b_path>/default/"image/png"/</b_path> | ||
1504 | <c_attribute></c_attribute> | 864 | <c_attribute></c_attribute> |
1505 | <d_old></d_old> | 865 | <d_old></d_old> |
1506 | <e_new> | 866 | <e_new>Asset request: non-existent file</e_new> |
1507 | Image (PNG) | ||
1508 | </e_new> | ||
1509 | <f_old_trans></f_old_trans> | 867 | <f_old_trans></f_old_trans> |
1510 | <f_translation> | 868 | <f_translation>자산 요청: 파일이 존재하지 않습니다.</f_translation> |
1511 | 이미지(PNG) | 869 | </string><string><a_file>strings.xml</a_file> |
1512 | </f_translation> | 870 | <b_path>//AssetErrorNotInDatabase</b_path> |
1513 | </string><string><a_file>mime_types.xml</a_file> | ||
1514 | <b_path>/default/"image/svg+xml"/</b_path> | ||
1515 | <c_attribute></c_attribute> | 871 | <c_attribute></c_attribute> |
1516 | <d_old></d_old> | 872 | <d_old></d_old> |
1517 | <e_new> | 873 | <e_new>Asset request: asset not found in database</e_new> |
1518 | Image (SVG) | ||
1519 | </e_new> | ||
1520 | <f_old_trans></f_old_trans> | 874 | <f_old_trans></f_old_trans> |
1521 | <f_translation> | 875 | <f_translation>자산 요청: 데이터베이스에 자산이 없습니다.</f_translation> |
1522 | 이미지(SVG) | 876 | </string><string><a_file>strings.xml</a_file> |
1523 | </f_translation> | 877 | <b_path>//AssetErrorEOF</b_path> |
1524 | </string><string><a_file>mime_types.xml</a_file> | ||
1525 | <b_path>/default/"image/tiff"/</b_path> | ||
1526 | <c_attribute></c_attribute> | 878 | <c_attribute></c_attribute> |
1527 | <d_old></d_old> | 879 | <d_old></d_old> |
1528 | <e_new> | 880 | <e_new>End of file</e_new> |
1529 | Image (TIFF) | ||
1530 | </e_new> | ||
1531 | <f_old_trans></f_old_trans> | 881 | <f_old_trans></f_old_trans> |
1532 | <f_translation> | 882 | <f_translation>파일 끝</f_translation> |
1533 | 이미지(TIFF) | 883 | </string><string><a_file>strings.xml</a_file> |
1534 | </f_translation> | 884 | <b_path>//AssetErrorCannotOpenFile</b_path> |
1535 | </string><string><a_file>mime_types.xml</a_file> | ||
1536 | <b_path>/default/"text/html"/</b_path> | ||
1537 | <c_attribute></c_attribute> | 885 | <c_attribute></c_attribute> |
1538 | <d_old></d_old> | 886 | <d_old></d_old> |
1539 | <e_new> | 887 | <e_new>Cannot open file</e_new> |
1540 | Web Page | ||
1541 | </e_new> | ||
1542 | <f_old_trans></f_old_trans> | 888 | <f_old_trans></f_old_trans> |
1543 | <f_translation> | 889 | <f_translation>파일을 열 수 없습니다.</f_translation> |
1544 | 웹 페이지 | 890 | </string><string><a_file>strings.xml</a_file> |
1545 | </f_translation> | 891 | <b_path>//AssetErrorFileNotFound</b_path> |
1546 | </string><string><a_file>mime_types.xml</a_file> | ||
1547 | <b_path>/default/"text/plain"/</b_path> | ||
1548 | <c_attribute></c_attribute> | 892 | <c_attribute></c_attribute> |
1549 | <d_old></d_old> | 893 | <d_old></d_old> |
1550 | <e_new> | 894 | <e_new>File not found</e_new> |
1551 | Text | ||
1552 | </e_new> | ||
1553 | <f_old_trans></f_old_trans> | 895 | <f_old_trans></f_old_trans> |
1554 | <f_translation> | 896 | <f_translation>파일을 찾을 수 없습니다.</f_translation> |
1555 | 텍스트 | 897 | </string><string><a_file>strings.xml</a_file> |
1556 | </f_translation> | 898 | <b_path>//AssetErrorTCPTimeout</b_path> |
1557 | </string><string><a_file>mime_types.xml</a_file> | ||
1558 | <b_path>/default/"text/xml"/</b_path> | ||
1559 | <c_attribute></c_attribute> | 899 | <c_attribute></c_attribute> |
1560 | <d_old></d_old> | 900 | <d_old></d_old> |
1561 | <e_new> | 901 | <e_new>File transfer timeout</e_new> |
1562 | XML | ||
1563 | </e_new> | ||
1564 | <f_old_trans></f_old_trans> | 902 | <f_old_trans></f_old_trans> |
1565 | <f_translation> | 903 | <f_translation>파일 전송 시간초과</f_translation> |
1566 | XML | 904 | </string><string><a_file>strings.xml</a_file> |
1567 | </f_translation> | 905 | <b_path>//AssetErrorCircuitGone</b_path> |
1568 | </string><string><a_file>mime_types.xml</a_file> | ||
1569 | <b_path>/default/"video/mpeg"/</b_path> | ||
1570 | <c_attribute></c_attribute> | 906 | <c_attribute></c_attribute> |
1571 | <d_old></d_old> | 907 | <d_old></d_old> |
1572 | <e_new> | 908 | <e_new>Circuit gone</e_new> |
1573 | Movie (MPEG) | ||
1574 | </e_new> | ||
1575 | <f_old_trans></f_old_trans> | 909 | <f_old_trans></f_old_trans> |
1576 | <f_translation> | 910 | <f_translation>연결이 끊겼습니다.</f_translation> |
1577 | 동영상(MPEG) | 911 | </string><string><a_file>strings.xml</a_file> |
1578 | </f_translation> | 912 | <b_path>//AssetErrorUnknownStatus</b_path> |
1579 | </string><string><a_file>mime_types.xml</a_file> | ||
1580 | <b_path>/default/"video/mp4"/</b_path> | ||
1581 | <c_attribute></c_attribute> | 913 | <c_attribute></c_attribute> |
1582 | <d_old></d_old> | 914 | <d_old></d_old> |
1583 | <e_new> | 915 | <e_new>Unknown status</e_new> |
1584 | Movie (MP4) | ||
1585 | </e_new> | ||
1586 | <f_old_trans></f_old_trans> | 916 | <f_old_trans></f_old_trans> |
1587 | <f_translation> | 917 | <f_translation>알 수 없는 상태</f_translation> |
1588 | 동영상(MP4) | 918 | </string><string><a_file>strings.xml</a_file> |
1589 | </f_translation> | 919 | <b_path>//AvatarEditingApparance</b_path> |
1590 | </string><string><a_file>mime_types.xml</a_file> | ||
1591 | <b_path>/default/"video/quicktime"/</b_path> | ||
1592 | <c_attribute></c_attribute> | 920 | <c_attribute></c_attribute> |
1593 | <d_old></d_old> | 921 | <d_old></d_old> |
1594 | <e_new> | 922 | <e_new>(Editing Appearance)</e_new> |
1595 | Movie (QuickTime) | ||
1596 | </e_new> | ||
1597 | <f_old_trans></f_old_trans> | 923 | <f_old_trans></f_old_trans> |
1598 | <f_translation> | 924 | <f_translation>(내 모습 편집)</f_translation> |
1599 | 동영상(QuickTime) | 925 | </string><string><a_file>strings.xml</a_file> |
1600 | </f_translation> | 926 | <b_path>//AvatarAway</b_path> |
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> | 927 | <c_attribute></c_attribute> |
1604 | <d_old></d_old> | 928 | <d_old></d_old> |
1605 | <e_new> | 929 | <e_new>Away</e_new> |
1606 | Movie (Windows Media ASF) | ||
1607 | </e_new> | ||
1608 | <f_old_trans></f_old_trans> | 930 | <f_old_trans></f_old_trans> |
1609 | <f_translation> | 931 | <f_translation>자리비움</f_translation> |
1610 | 동영상(Windows Media ASF) | 932 | </string><string><a_file>strings.xml</a_file> |
1611 | </f_translation> | 933 | <b_path>//AvatarBusy</b_path> |
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> | 934 | <c_attribute></c_attribute> |
1615 | <d_old></d_old> | 935 | <d_old></d_old> |
1616 | <e_new> | 936 | <e_new>Busy</e_new> |
1617 | Movie (Windows Media WMV) | ||
1618 | </e_new> | ||
1619 | <f_old_trans></f_old_trans> | 937 | <f_old_trans></f_old_trans> |
1620 | <f_translation> | 938 | <f_translation>다른 용무 중</f_translation> |
1621 | 동영상(Windows Media WMV) | 939 | </string><string><a_file>strings.xml</a_file> |
1622 | </f_translation> | 940 | <b_path>//AvatarMuted</b_path> |
1623 | </string><string><a_file>mime_types.xml</a_file> | ||
1624 | <b_path>/default/"video/x-msvideo"/</b_path> | ||
1625 | <c_attribute></c_attribute> | 941 | <c_attribute></c_attribute> |
1626 | <d_old></d_old> | 942 | <d_old></d_old> |
1627 | <e_new> | 943 | <e_new>Muted</e_new> |
1628 | Movie (AVI) | ||
1629 | </e_new> | ||
1630 | <f_old_trans></f_old_trans> | 944 | <f_old_trans></f_old_trans> |
1631 | <f_translation> | 945 | <f_translation>음소거</f_translation> |
1632 | 동영상(AVI) | 946 | </string><string><a_file>strings.xml</a_file> |
1633 | </f_translation> | 947 | <b_path>//anim_express_afraid</b_path> |
1634 | </string><string><a_file>notify.xml</a_file> | ||
1635 | <b_path>//RezItemNoPermissions/message</b_path> | ||
1636 | <c_attribute></c_attribute> | 948 | <c_attribute></c_attribute> |
1637 | <d_old></d_old> | 949 | <d_old></d_old> |
1638 | <e_new> | 950 | <e_new>Afraid</e_new> |
1639 | Insufficient permissions to rez object. | ||
1640 | </e_new> | ||
1641 | <f_old_trans></f_old_trans> | 951 | <f_old_trans></f_old_trans> |
1642 | <f_translation> | 952 | <f_translation>두려움</f_translation> |
1643 | rez 오브젝트에 대한 권한이 부족합니다. | 953 | </string><string><a_file>strings.xml</a_file> |
1644 | </f_translation> | 954 | <b_path>//anim_express_anger</b_path> |
1645 | </string><string><a_file>panel_audio.xml</a_file> | 955 | <c_attribute></c_attribute> |
1646 | <b_path>/Media panel/mute_audio</b_path> | ||
1647 | <c_attribute>label</c_attribute> | ||
1648 | <d_old></d_old> | 956 | <d_old></d_old> |
1649 | <e_new></e_new> | 957 | <e_new>Angry</e_new> |
1650 | <f_old_trans></f_old_trans> | 958 | <f_old_trans></f_old_trans> |
1651 | <f_translation></f_translation> | 959 | <f_translation>화남</f_translation> |
1652 | </string><string><a_file>panel_audio.xml</a_file> | 960 | </string><string><a_file>strings.xml</a_file> |
1653 | <b_path>/Media panel/mute_music</b_path> | 961 | <b_path>//anim_away</b_path> |
1654 | <c_attribute>label</c_attribute> | 962 | <c_attribute></c_attribute> |
1655 | <d_old></d_old> | 963 | <d_old></d_old> |
1656 | <e_new></e_new> | 964 | <e_new>Away</e_new> |
1657 | <f_old_trans></f_old_trans> | 965 | <f_old_trans></f_old_trans> |
1658 | <f_translation></f_translation> | 966 | <f_translation>자리비움</f_translation> |
1659 | </string><string><a_file>panel_audio.xml</a_file> | 967 | </string><string><a_file>strings.xml</a_file> |
1660 | <b_path>/Media panel/mute_media</b_path> | 968 | <b_path>//anim_backflip</b_path> |
1661 | <c_attribute>label</c_attribute> | 969 | <c_attribute></c_attribute> |
1662 | <d_old></d_old> | 970 | <d_old></d_old> |
1663 | <e_new></e_new> | 971 | <e_new>Backflip</e_new> |
1664 | <f_old_trans></f_old_trans> | 972 | <f_old_trans></f_old_trans> |
1665 | <f_translation></f_translation> | 973 | <f_translation>뒤공중제비</f_translation> |
1666 | </string><string><a_file>panel_audio.xml</a_file> | 974 | </string><string><a_file>strings.xml</a_file> |
1667 | <b_path>/Media panel/mute_voice</b_path> | 975 | <b_path>//anim_express_laugh</b_path> |
1668 | <c_attribute>label</c_attribute> | 976 | <c_attribute></c_attribute> |
1669 | <d_old></d_old> | 977 | <d_old></d_old> |
1670 | <e_new></e_new> | 978 | <e_new>Belly Laugh</e_new> |
1671 | <f_old_trans></f_old_trans> | 979 | <f_old_trans></f_old_trans> |
1672 | <f_translation></f_translation> | 980 | <f_translation>포복 절도</f_translation> |
1673 | </string><string><a_file>panel_audio.xml</a_file> | 981 | </string><string><a_file>strings.xml</a_file> |
1674 | <b_path>/Media panel/mute_sfx</b_path> | 982 | <b_path>//anim_express_toothsmile</b_path> |
1675 | <c_attribute>label</c_attribute> | 983 | <c_attribute></c_attribute> |
1676 | <d_old></d_old> | 984 | <d_old></d_old> |
1677 | <e_new></e_new> | 985 | <e_new>BigSmile</e_new> |
1678 | <f_old_trans></f_old_trans> | 986 | <f_old_trans></f_old_trans> |
1679 | <f_translation></f_translation> | 987 | <f_translation>함박 웃음</f_translation> |
1680 | </string><string><a_file>panel_audio.xml</a_file> | 988 | </string><string><a_file>strings.xml</a_file> |
1681 | <b_path>/Media panel/mute_wind</b_path> | 989 | <b_path>//anim_blowkiss</b_path> |
1682 | <c_attribute>label</c_attribute> | 990 | <c_attribute></c_attribute> |
1683 | <d_old></d_old> | 991 | <d_old></d_old> |
1684 | <e_new></e_new> | 992 | <e_new>Blow Kiss</e_new> |
1685 | <f_old_trans></f_old_trans> | 993 | <f_old_trans></f_old_trans> |
1686 | <f_translation></f_translation> | 994 | <f_translation>키스를 날리는 모습</f_translation> |
1687 | </string><string><a_file>panel_audio.xml</a_file> | 995 | </string><string><a_file>strings.xml</a_file> |
1688 | <b_path>/Media panel/mute_ui</b_path> | 996 | <b_path>//anim_express_bored</b_path> |
1689 | <c_attribute>label</c_attribute> | 997 | <c_attribute></c_attribute> |
1690 | <d_old></d_old> | 998 | <d_old></d_old> |
1691 | <e_new></e_new> | 999 | <e_new>Bored</e_new> |
1692 | <f_old_trans></f_old_trans> | 1000 | <f_old_trans></f_old_trans> |
1693 | <f_translation></f_translation> | 1001 | <f_translation>지루함</f_translation> |
1694 | </string><string><a_file>panel_groups.xml</a_file> | 1002 | </string><string><a_file>strings.xml</a_file> |
1695 | <b_path>/groups/group list/name</b_path> | 1003 | <b_path>//anim_bow</b_path> |
1696 | <c_attribute>label</c_attribute> | 1004 | <c_attribute></c_attribute> |
1697 | <d_old></d_old> | 1005 | <d_old></d_old> |
1698 | <e_new></e_new> | 1006 | <e_new>Bow</e_new> |
1699 | <f_old_trans></f_old_trans> | 1007 | <f_old_trans></f_old_trans> |
1700 | <f_translation></f_translation> | 1008 | <f_translation>인사</f_translation> |
1701 | </string><string><a_file>panel_group_invite.xml</a_file> | 1009 | </string><string><a_file>strings.xml</a_file> |
1702 | <b_path>/invite_panel/help_text</b_path> | 1010 | <b_path>//anim_clap</b_path> |
1703 | <c_attribute></c_attribute> | 1011 | <c_attribute></c_attribute> |
1704 | <d_old></d_old> | 1012 | <d_old></d_old> |
1705 | <e_new> | 1013 | <e_new>Clap</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> | 1014 | <f_old_trans></f_old_trans> |
1711 | <f_translation> | 1015 | <f_translation>박수</f_translation> |
1712 | 여러 주민을 선택하여 | 1016 | </string><string><a_file>strings.xml</a_file> |
1713 | 그룹에 초대할 수 있습니다. '주민 | 1017 | <b_path>//anim_courtbow</b_path> |
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> | 1018 | <c_attribute></c_attribute> |
1719 | <d_old></d_old> | 1019 | <d_old></d_old> |
1720 | <e_new> | 1020 | <e_new>Court Bow</e_new> |
1721 | Choose what Role to assign them to: | ||
1722 | </e_new> | ||
1723 | <f_old_trans></f_old_trans> | 1021 | <f_old_trans></f_old_trans> |
1724 | <f_translation> | 1022 | <f_translation>알현</f_translation> |
1725 | 할당할 역할을 선택하십시오: | 1023 | </string><string><a_file>strings.xml</a_file> |
1726 | </f_translation> | 1024 | <b_path>//anim_express_cry</b_path> |
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> | 1025 | <c_attribute></c_attribute> |
1730 | <d_old></d_old> | 1026 | <d_old></d_old> |
1731 | <e_new> | 1027 | <e_new>Cry</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> | 1028 | <f_old_trans></f_old_trans> |
1735 | <f_translation> | 1029 | <f_translation>울기</f_translation> |
1736 | 새 소유자를 초대하시겠습니까? 이 기능은 영구적으로 적용됩니다! | 1030 | </string><string><a_file>strings.xml</a_file> |
1737 | </f_translation> | 1031 | <b_path>//anim_dance1</b_path> |
1738 | </string><string><a_file>panel_master_volume.xml</a_file> | 1032 | <c_attribute></c_attribute> |
1739 | <b_path>/master_volume/mute_master</b_path> | ||
1740 | <c_attribute>label</c_attribute> | ||
1741 | <d_old></d_old> | 1033 | <d_old></d_old> |
1742 | <e_new></e_new> | 1034 | <e_new>Dance 1</e_new> |
1743 | <f_old_trans></f_old_trans> | 1035 | <f_old_trans></f_old_trans> |
1744 | <f_translation></f_translation> | 1036 | <f_translation>댄스 1</f_translation> |
1745 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | 1037 | </string><string><a_file>strings.xml</a_file> |
1746 | <b_path>/media_remote/play_label</b_path> | 1038 | <b_path>//anim_dance2</b_path> |
1747 | <c_attribute></c_attribute> | 1039 | <c_attribute></c_attribute> |
1748 | <d_old></d_old> | 1040 | <d_old></d_old> |
1749 | <e_new> | 1041 | <e_new>Dance 2</e_new> |
1750 | Play | ||
1751 | </e_new> | ||
1752 | <f_old_trans></f_old_trans> | 1042 | <f_old_trans></f_old_trans> |
1753 | <f_translation> | 1043 | <f_translation>댄스 2</f_translation> |
1754 | 재생 | 1044 | </string><string><a_file>strings.xml</a_file> |
1755 | </f_translation> | 1045 | <b_path>//anim_dance3</b_path> |
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> | 1046 | <c_attribute></c_attribute> |
1759 | <d_old></d_old> | 1047 | <d_old></d_old> |
1760 | <e_new> | 1048 | <e_new>Dance 3</e_new> |
1761 | Stop | ||
1762 | </e_new> | ||
1763 | <f_old_trans></f_old_trans> | 1049 | <f_old_trans></f_old_trans> |
1764 | <f_translation> | 1050 | <f_translation>댄스 3</f_translation> |
1765 | 중지 | 1051 | </string><string><a_file>strings.xml</a_file> |
1766 | </f_translation> | 1052 | <b_path>//anim_dance4</b_path> |
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> | 1053 | <c_attribute></c_attribute> |
1770 | <d_old></d_old> | 1054 | <d_old></d_old> |
1771 | <e_new> | 1055 | <e_new>Dance 4</e_new> |
1772 | Pause | ||
1773 | </e_new> | ||
1774 | <f_old_trans></f_old_trans> | 1056 | <f_old_trans></f_old_trans> |
1775 | <f_translation> | 1057 | <f_translation>댄스 4</f_translation> |
1776 | 일시 정지 | 1058 | </string><string><a_file>strings.xml</a_file> |
1777 | </f_translation> | 1059 | <b_path>//anim_dance5</b_path> |
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> | 1060 | <c_attribute></c_attribute> |
1781 | <d_old></d_old> | 1061 | <d_old></d_old> |
1782 | <e_new> | 1062 | <e_new>Dance 5</e_new> |
1783 | No Media Specified | ||
1784 | </e_new> | ||
1785 | <f_old_trans></f_old_trans> | 1063 | <f_old_trans></f_old_trans> |
1786 | <f_translation> | 1064 | <f_translation>댄스 5</f_translation> |
1787 | 지정된 미디어가 없습니다. | 1065 | </string><string><a_file>strings.xml</a_file> |
1788 | </f_translation> | 1066 | <b_path>//anim_dance6</b_path> |
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> | 1067 | <c_attribute></c_attribute> |
1792 | <d_old></d_old> | 1068 | <d_old></d_old> |
1793 | <e_new> | 1069 | <e_new>Dance 6</e_new> |
1794 | (URL hidden by parcel owner) | ||
1795 | </e_new> | ||
1796 | <f_old_trans></f_old_trans> | 1070 | <f_old_trans></f_old_trans> |
1797 | <f_translation> | 1071 | <f_translation>댄스 6</f_translation> |
1798 | (구획 소유자에 의해 URL이 숨겨져 있습니다.) | 1072 | </string><string><a_file>strings.xml</a_file> |
1799 | </f_translation> | 1073 | <b_path>//anim_dance7</b_path> |
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> | 1074 | <c_attribute></c_attribute> |
1803 | <d_old></d_old> | 1075 | <d_old></d_old> |
1804 | <e_new> | 1076 | <e_new>Dance 7</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> | 1077 | <f_old_trans></f_old_trans> |
1812 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | 1078 | <f_translation>댄스 7</f_translation> |
1813 | <b_path>/media_remote/media_icon_tooltip_movie</b_path> | 1079 | </string><string><a_file>strings.xml</a_file> |
1080 | <b_path>//anim_dance8</b_path> | ||
1814 | <c_attribute></c_attribute> | 1081 | <c_attribute></c_attribute> |
1815 | <d_old></d_old> | 1082 | <d_old></d_old> |
1816 | <e_new> | 1083 | <e_new>Dance 8</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> | 1084 | <f_old_trans></f_old_trans> |
1820 | <f_translation> | 1085 | <f_translation>댄스 8</f_translation> |
1821 | 이 위치에서는 비디오 컨텐츠가 표시됩니다. 비디오를 재생하려면 재생 버튼을 클릭하십시오. | 1086 | </string><string><a_file>strings.xml</a_file> |
1822 | </f_translation> | 1087 | <b_path>//anim_express_disdain</b_path> |
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> | 1088 | <c_attribute></c_attribute> |
1826 | <d_old></d_old> | 1089 | <d_old></d_old> |
1827 | <e_new> | 1090 | <e_new>Disdain</e_new> |
1828 | Display Web content at this location. | ||
1829 | </e_new> | ||
1830 | <f_old_trans></f_old_trans> | 1091 | <f_old_trans></f_old_trans> |
1831 | <f_translation> | 1092 | <f_translation>경멸</f_translation> |
1832 | 이 위치에서 웹 컨텐츠를 재생합니다. | 1093 | </string><string><a_file>strings.xml</a_file> |
1833 | </f_translation> | 1094 | <b_path>//anim_drink</b_path> |
1834 | </string><string><a_file>panel_place.xml</a_file> | ||
1835 | <b_path>/Place/name_label</b_path> | ||
1836 | <c_attribute></c_attribute> | 1095 | <c_attribute></c_attribute> |
1837 | <d_old></d_old> | 1096 | <d_old></d_old> |
1838 | <e_new> | 1097 | <e_new>Drink</e_new> |
1839 | Name: | ||
1840 | </e_new> | ||
1841 | <f_old_trans></f_old_trans> | 1098 | <f_old_trans></f_old_trans> |
1842 | <f_translation> | 1099 | <f_translation>술 취함</f_translation> |
1843 | 이름: | 1100 | </string><string><a_file>strings.xml</a_file> |
1844 | </f_translation> | 1101 | <b_path>//anim_express_embarrased</b_path> |
1845 | </string><string><a_file>panel_place.xml</a_file> | ||
1846 | <b_path>/Place/description_label</b_path> | ||
1847 | <c_attribute></c_attribute> | 1102 | <c_attribute></c_attribute> |
1848 | <d_old></d_old> | 1103 | <d_old></d_old> |
1849 | <e_new> | 1104 | <e_new>Embarrassed</e_new> |
1850 | Description: | ||
1851 | </e_new> | ||
1852 | <f_old_trans></f_old_trans> | 1105 | <f_old_trans></f_old_trans> |
1853 | <f_translation> | 1106 | <f_translation>당황함</f_translation> |
1854 | 설명: | 1107 | </string><string><a_file>strings.xml</a_file> |
1855 | </f_translation> | 1108 | <b_path>//anim_angry_fingerwag</b_path> |
1856 | </string><string><a_file>panel_place.xml</a_file> | ||
1857 | <b_path>/Place/information_label</b_path> | ||
1858 | <c_attribute></c_attribute> | 1109 | <c_attribute></c_attribute> |
1859 | <d_old></d_old> | 1110 | <d_old></d_old> |
1860 | <e_new> | 1111 | <e_new>Finger Wag</e_new> |
1861 | Information: | ||
1862 | </e_new> | ||
1863 | <f_old_trans></f_old_trans> | 1112 | <f_old_trans></f_old_trans> |
1864 | <f_translation> | 1113 | <f_translation>손가락 흔들기</f_translation> |
1865 | 정보: | 1114 | </string><string><a_file>strings.xml</a_file> |
1866 | </f_translation> | 1115 | <b_path>//anim_fist_pump</b_path> |
1867 | </string><string><a_file>panel_place.xml</a_file> | ||
1868 | <b_path>/Place/location_label</b_path> | ||
1869 | <c_attribute></c_attribute> | 1116 | <c_attribute></c_attribute> |
1870 | <d_old></d_old> | 1117 | <d_old></d_old> |
1871 | <e_new> | 1118 | <e_new>Fist Pump</e_new> |
1872 | Location: | ||
1873 | </e_new> | ||
1874 | <f_old_trans></f_old_trans> | 1119 | <f_old_trans></f_old_trans> |
1875 | <f_translation> | 1120 | <f_translation>주먹 휘두르기</f_translation> |
1876 | 위치: | 1121 | </string><string><a_file>strings.xml</a_file> |
1877 | </f_translation> | 1122 | <b_path>//anim_yoga_float</b_path> |
1878 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1879 | <b_path>/Place/name_label</b_path> | ||
1880 | <c_attribute></c_attribute> | 1123 | <c_attribute></c_attribute> |
1881 | <d_old></d_old> | 1124 | <d_old></d_old> |
1882 | <e_new> | 1125 | <e_new>Floating Yoga</e_new> |
1883 | Name: | ||
1884 | </e_new> | ||
1885 | <f_old_trans></f_old_trans> | 1126 | <f_old_trans></f_old_trans> |
1886 | <f_translation> | 1127 | <f_translation>공중부양</f_translation> |
1887 | 이름: | 1128 | </string><string><a_file>strings.xml</a_file> |
1888 | </f_translation> | 1129 | <b_path>//anim_express_frown</b_path> |
1889 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1890 | <b_path>/Place/description_label</b_path> | ||
1891 | <c_attribute></c_attribute> | 1130 | <c_attribute></c_attribute> |
1892 | <d_old></d_old> | 1131 | <d_old></d_old> |
1893 | <e_new> | 1132 | <e_new>Frown</e_new> |
1894 | Description: | ||
1895 | </e_new> | ||
1896 | <f_old_trans></f_old_trans> | 1133 | <f_old_trans></f_old_trans> |
1897 | <f_translation> | 1134 | <f_translation>표정 찡그림</f_translation> |
1898 | 설명: | 1135 | </string><string><a_file>strings.xml</a_file> |
1899 | </f_translation> | 1136 | <b_path>//anim_impatient</b_path> |
1900 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1901 | <b_path>/Place/information_label</b_path> | ||
1902 | <c_attribute></c_attribute> | 1137 | <c_attribute></c_attribute> |
1903 | <d_old></d_old> | 1138 | <d_old></d_old> |
1904 | <e_new> | 1139 | <e_new>Impatient</e_new> |
1905 | Information: | ||
1906 | </e_new> | ||
1907 | <f_old_trans></f_old_trans> | 1140 | <f_old_trans></f_old_trans> |
1908 | <f_translation> | 1141 | <f_translation>조급함</f_translation> |
1909 | 정보: | 1142 | </string><string><a_file>strings.xml</a_file> |
1910 | </f_translation> | 1143 | <b_path>//anim_jumpforjoy</b_path> |
1911 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1912 | <b_path>/Place/location_label</b_path> | ||
1913 | <c_attribute></c_attribute> | 1144 | <c_attribute></c_attribute> |
1914 | <d_old></d_old> | 1145 | <d_old></d_old> |
1915 | <e_new> | 1146 | <e_new>Jump For Joy</e_new> |
1916 | Location: | ||
1917 | </e_new> | ||
1918 | <f_old_trans></f_old_trans> | 1147 | <f_old_trans></f_old_trans> |
1919 | <f_translation> | 1148 | <f_translation>기쁨에 펄쩍 뜀</f_translation> |
1920 | 위치: | 1149 | </string><string><a_file>strings.xml</a_file> |
1921 | </f_translation> | 1150 | <b_path>//anim_kissmybutt</b_path> |
1922 | </string><string><a_file>panel_preferences_chat.xml</a_file> | 1151 | <c_attribute></c_attribute> |
1923 | <b_path>/chat/im</b_path> | ||
1924 | <c_attribute>label</c_attribute> | ||
1925 | <d_old></d_old> | 1152 | <d_old></d_old> |
1926 | <e_new>IM</e_new> | 1153 | <e_new>Kiss My Butt</e_new> |
1927 | <f_old_trans></f_old_trans> | 1154 | <f_old_trans></f_old_trans> |
1928 | <f_translation></f_translation> | 1155 | <f_translation> 엉 키스</f_translation> |
1929 | </string><string><a_file>panel_preferences_general.xml</a_file> | 1156 | </string><string><a_file>strings.xml</a_file> |
1930 | <b_path>/general_panel/fade_out_combobox/Never</b_path> | 1157 | <b_path>//anim_express_kiss</b_path> |
1931 | <c_attribute></c_attribute> | 1158 | <c_attribute></c_attribute> |
1932 | <d_old></d_old> | 1159 | <d_old></d_old> |
1933 | <e_new> | 1160 | <e_new>Kiss</e_new> |
1934 | Never | ||
1935 | </e_new> | ||
1936 | <f_old_trans></f_old_trans> | 1161 | <f_old_trans></f_old_trans> |
1937 | <f_translation> | 1162 | <f_translation>키스</f_translation> |
1938 | 안함 | 1163 | </string><string><a_file>strings.xml</a_file> |
1939 | </f_translation> | 1164 | <b_path>//anim_laugh_short</b_path> |
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> | 1165 | <c_attribute></c_attribute> |
1943 | <d_old></d_old> | 1166 | <d_old></d_old> |
1944 | <e_new> | 1167 | <e_new>Laugh</e_new> |
1945 | Show Temporarily | ||
1946 | </e_new> | ||
1947 | <f_old_trans></f_old_trans> | 1168 | <f_old_trans></f_old_trans> |
1948 | <f_translation> | 1169 | <f_translation>웃음</f_translation> |
1949 | 임시로 표시 | 1170 | </string><string><a_file>strings.xml</a_file> |
1950 | </f_translation> | 1171 | <b_path>//anim_musclebeach</b_path> |
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> | 1172 | <c_attribute></c_attribute> |
1954 | <d_old></d_old> | 1173 | <d_old></d_old> |
1955 | <e_new> | 1174 | <e_new>Muscle Beach</e_new> |
1956 | Always | ||
1957 | </e_new> | ||
1958 | <f_old_trans></f_old_trans> | 1175 | <f_old_trans></f_old_trans> |
1959 | <f_translation> | 1176 | <f_translation>근육 비치</f_translation> |
1960 | 항상 | 1177 | </string><string><a_file>strings.xml</a_file> |
1961 | </f_translation> | 1178 | <b_path>//anim_no_unhappy</b_path> |
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> | 1179 | <c_attribute></c_attribute> |
1965 | <d_old></d_old> | 1180 | <d_old></d_old> |
1966 | <e_new> | 1181 | <e_new>No (Unhappy)</e_new> |
1967 | Group Titles: | ||
1968 | </e_new> | ||
1969 | <f_old_trans></f_old_trans> | 1182 | <f_old_trans></f_old_trans> |
1970 | <f_translation> | 1183 | <f_translation>강한 부정</f_translation> |
1971 | 그룹 타이틀: | 1184 | </string><string><a_file>strings.xml</a_file> |
1972 | </f_translation> | 1185 | <b_path>//anim_no_head</b_path> |
1973 | </string><string><a_file>panel_preferences_general.xml</a_file> | 1186 | <c_attribute></c_attribute> |
1974 | <b_path>/general_panel/show_all_title_checkbox</b_path> | ||
1975 | <c_attribute>label</c_attribute> | ||
1976 | <d_old></d_old> | 1187 | <d_old></d_old> |
1977 | <e_new>Hide All Group Titles</e_new> | 1188 | <e_new>No</e_new> |
1978 | <f_old_trans></f_old_trans> | 1189 | <f_old_trans></f_old_trans> |
1979 | <f_translation>든 그룹 틀 숨기기</f_translation> | 1190 | <f_translation></f_translation> |
1980 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | 1191 | </string><string><a_file>strings.xml</a_file> |
1981 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | 1192 | <b_path>//anim_nyanya</b_path> |
1982 | <c_attribute>label</c_attribute> | 1193 | <c_attribute></c_attribute> |
1983 | <d_old></d_old> | 1194 | <d_old></d_old> |
1984 | <e_new></e_new> | 1195 | <e_new>Nya-nya-nya</e_new> |
1985 | <f_old_trans></f_old_trans> | 1196 | <f_old_trans></f_old_trans> |
1986 | <f_translation></f_translation> | 1197 | <f_translation>냐-냐-냐</f_translation> |
1987 | </string><string><a_file>panel_preferences_input.xml</a_file> | 1198 | </string><string><a_file>strings.xml</a_file> |
1988 | <b_path>/Input panel/Camera Follow Distance:</b_path> | 1199 | <b_path>//anim_punch_onetwo</b_path> |
1989 | <c_attribute></c_attribute> | 1200 | <c_attribute></c_attribute> |
1990 | <d_old></d_old> | 1201 | <d_old></d_old> |
1991 | <e_new> | 1202 | <e_new>One-Two Punch</e_new> |
1992 | Camera Follow Distance: | ||
1993 | </e_new> | ||
1994 | <f_old_trans></f_old_trans> | 1203 | <f_old_trans></f_old_trans> |
1995 | <f_translation> | 1204 | <f_translation>원투 펀치</f_translation> |
1996 | 카메라 이동 거리: | 1205 | </string><string><a_file>strings.xml</a_file> |
1997 | </f_translation> | 1206 | <b_path>//anim_express_open_mouth</b_path> |
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> | 1207 | <c_attribute></c_attribute> |
2001 | <d_old></d_old> | 1208 | <d_old></d_old> |
2002 | <e_new> | 1209 | <e_new>Open Mouth</e_new> |
2003 | Camera Transition Time: | ||
2004 | </e_new> | ||
2005 | <f_old_trans></f_old_trans> | 1210 | <f_old_trans></f_old_trans> |
2006 | <f_translation> | 1211 | <f_translation>입을 크게 벌린 모습</f_translation> |
2007 | 카메라 전환 시간: | 1212 | </string><string><a_file>strings.xml</a_file> |
2008 | </f_translation> | 1213 | <b_path>//anim_peace</b_path> |
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> | 1214 | <c_attribute></c_attribute> |
2012 | <d_old></d_old> | 1215 | <d_old></d_old> |
2013 | <e_new> | 1216 | <e_new>Peace</e_new> |
2014 | Camera Smoothing: | ||
2015 | </e_new> | ||
2016 | <f_old_trans></f_old_trans> | 1217 | <f_old_trans></f_old_trans> |
2017 | <f_translation> | 1218 | <f_translation>평화</f_translation> |
2018 | 카메라 스무딩: | 1219 | </string><string><a_file>strings.xml</a_file> |
2019 | </f_translation> | 1220 | <b_path>//anim_point_you</b_path> |
2020 | </string><string><a_file>panel_preferences_input.xml</a_file> | 1221 | <c_attribute></c_attribute> |
2021 | <b_path>/Input panel/joystic_setup_button</b_path> | ||
2022 | <c_attribute>label</c_attribute> | ||
2023 | <d_old></d_old> | 1222 | <d_old></d_old> |
2024 | <e_new>Joystick Setup</e_new> | 1223 | <e_new>Point at Other</e_new> |
2025 | <f_old_trans></f_old_trans> | 1224 | <f_old_trans></f_old_trans> |
2026 | <f_translation>조이스 </f_translation> | 1225 | <f_translation>른 람 가리킴</f_translation> |
2027 | </string><string><a_file>panel_preferences_popups.xml</a_file> | 1226 | </string><string><a_file>strings.xml</a_file> |
2028 | <b_path>/popups/dont_show_label</b_path> | 1227 | <b_path>//anim_point_me</b_path> |
2029 | <c_attribute></c_attribute> | 1228 | <c_attribute></c_attribute> |
2030 | <d_old></d_old> | 1229 | <d_old></d_old> |
2031 | <e_new> | 1230 | <e_new>Point at Self</e_new> |
2032 | Do not show popups: | ||
2033 | </e_new> | ||
2034 | <f_old_trans></f_old_trans> | 1231 | <f_old_trans></f_old_trans> |
2035 | <f_translation> | 1232 | <f_translation>자신을 가리킴</f_translation> |
2036 | 팝업 차단: | 1233 | </string><string><a_file>strings.xml</a_file> |
2037 | </f_translation> | 1234 | <b_path>//anim_punch_l</b_path> |
2038 | </string><string><a_file>panel_preferences_popups.xml</a_file> | ||
2039 | <b_path>/popups/show_label</b_path> | ||
2040 | <c_attribute></c_attribute> | 1235 | <c_attribute></c_attribute> |
2041 | <d_old></d_old> | 1236 | <d_old></d_old> |
2042 | <e_new> | 1237 | <e_new>Punch Left</e_new> |
2043 | Show popups: | ||
2044 | </e_new> | ||
2045 | <f_old_trans></f_old_trans> | 1238 | <f_old_trans></f_old_trans> |
2046 | <f_translation> | 1239 | <f_translation>좌측 펀치</f_translation> |
2047 | 허용된 팝업: | 1240 | </string><string><a_file>strings.xml</a_file> |
2048 | </f_translation> | 1241 | <b_path>//anim_punch_r</b_path> |
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> | 1242 | <c_attribute></c_attribute> |
2052 | <d_old></d_old> | 1243 | <d_old></d_old> |
2053 | <e_new> | 1244 | <e_new>Punch Right</e_new> |
2054 | Open Voice (default) | ||
2055 | </e_new> | ||
2056 | <f_old_trans></f_old_trans> | 1245 | <f_old_trans></f_old_trans> |
2057 | <f_translation> | 1246 | <f_translation>우측 펀치</f_translation> |
2058 | 음성 사용(기본 설정) | 1247 | </string><string><a_file>strings.xml</a_file> |
2059 | </f_translation> | 1248 | <b_path>//anim_rps_countdown</b_path> |
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> | 1249 | <c_attribute></c_attribute> |
2063 | <d_old></d_old> | 1250 | <d_old></d_old> |
2064 | <e_new> | 1251 | <e_new>RPS count</e_new> |
2065 | Moderated Voice | ||
2066 | </e_new> | ||
2067 | <f_old_trans></f_old_trans> | 1252 | <f_old_trans></f_old_trans> |
2068 | <f_translation> | 1253 | <f_translation>가위-바위-보</f_translation> |
2069 | 음성 제어 | 1254 | </string><string><a_file>strings.xml</a_file> |
2070 | </f_translation> | 1255 | <b_path>//anim_rps_paper</b_path> |
2071 | </string><string><a_file>panel_speaker_controls.xml</a_file> | 1256 | <c_attribute></c_attribute> |
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> | 1257 | <d_old></d_old> |
2075 | <e_new></e_new> | 1258 | <e_new>RPS paper</e_new> |
2076 | <f_old_trans></f_old_trans> | 1259 | <f_old_trans></f_old_trans> |
2077 | <f_translation></f_translation> | 1260 | <f_translation>가위-바위-보에 보자기</f_translation> |
2078 | </string><string><a_file>panel_speaker_controls.xml</a_file> | 1261 | </string><string><a_file>strings.xml</a_file> |
2079 | <b_path>/active_speakers_panel/panels/moderate_chat_panel/speaker_controls/profile_btn</b_path> | 1262 | <b_path>//anim_rps_rock</b_path> |
2080 | <c_attribute>label</c_attribute> | 1263 | <c_attribute></c_attribute> |
2081 | <d_old></d_old> | 1264 | <d_old></d_old> |
2082 | <e_new></e_new> | 1265 | <e_new>RPS rock</e_new> |
2083 | <f_old_trans></f_old_trans> | 1266 | <f_old_trans></f_old_trans> |
2084 | <f_translation></f_translation> | 1267 | <f_translation>가위-바위-보에 바위</f_translation> |
2085 | </string><string><a_file>panel_status_bar.xml</a_file> | 1268 | </string><string><a_file>strings.xml</a_file> |
2086 | <b_path>/status/menubar_search_bevel_bg</b_path> | 1269 | <b_path>//anim_rps_scissors</b_path> |
2087 | <c_attribute>label</c_attribute> | 1270 | <c_attribute></c_attribute> |
2088 | <d_old></d_old> | 1271 | <d_old></d_old> |
2089 | <e_new></e_new> | 1272 | <e_new>RPS scissors</e_new> |
2090 | <f_old_trans></f_old_trans> | 1273 | <f_old_trans></f_old_trans> |
2091 | <f_translation></f_translation> | 1274 | <f_translation>가위-바위-보에 가위</f_translation> |
2092 | </string><string><a_file>panel_toolbar.xml</a_file> | 1275 | </string><string><a_file>strings.xml</a_file> |
2093 | <b_path>/toolbar/toolbar_stack/chat_btn</b_path> | 1276 | <b_path>//anim_express_repulsed</b_path> |
2094 | <c_attribute>label</c_attribute> | 1277 | <c_attribute></c_attribute> |
2095 | <d_old></d_old> | 1278 | <d_old></d_old> |
2096 | <e_new></e_new> | 1279 | <e_new>Repulsed</e_new> |
2097 | <f_old_trans></f_old_trans> | 1280 | <f_old_trans></f_old_trans> |
2098 | <f_translation></f_translation> | 1281 | <f_translation>거절됨</f_translation> |
2099 | </string><string><a_file>panel_toolbar.xml</a_file> | 1282 | </string><string><a_file>strings.xml</a_file> |
2100 | <b_path>/toolbar/toolbar_stack/chat_btn</b_path> | 1283 | <b_path>//anim_kick_roundhouse_r</b_path> |
2101 | <c_attribute>tool_tip</c_attribute> | 1284 | <c_attribute></c_attribute> |
2102 | <d_old></d_old> | 1285 | <d_old></d_old> |
2103 | <e_new>Show Chat Bar. (Enter)</e_new> | 1286 | <e_new>Roundhouse Kick</e_new> |
2104 | <f_old_trans></f_old_trans> | 1287 | <f_old_trans></f_old_trans> |
2105 | <f_translation>채팅 줄 표시 (입력)</f_translation> | 1288 | <f_translation>기</f_translation> |
2106 | </string><string><a_file>panel_toolbar.xml</a_file> | 1289 | </string><string><a_file>strings.xml</a_file> |
2107 | <b_path>/toolbar/toolbar_stack/communicate_btn</b_path> | 1290 | <b_path>//anim_express_sad</b_path> |
2108 | <c_attribute>label</c_attribute> | 1291 | <c_attribute></c_attribute> |
2109 | <d_old></d_old> | 1292 | <d_old></d_old> |
2110 | <e_new>Communicate</e_new> | 1293 | <e_new>Sad</e_new> |
2111 | <f_old_trans></f_old_trans> | 1294 | <f_old_trans></f_old_trans> |
2112 | <f_translation>통</f_translation> | 1295 | <f_translation>픔</f_translation> |
2113 | </string><string><a_file>panel_toolbar.xml</a_file> | 1296 | </string><string><a_file>strings.xml</a_file> |
2114 | <b_path>/toolbar/toolbar_stack/communicate_btn</b_path> | 1297 | <b_path>//anim_salute</b_path> |
2115 | <c_attribute>tool_tip</c_attribute> | 1298 | <c_attribute></c_attribute> |
2116 | <d_old></d_old> | 1299 | <d_old></d_old> |
2117 | <e_new>Communicate with your Friends and Groups.</e_new> | 1300 | <e_new>Salute</e_new> |
2118 | <f_old_trans></f_old_trans> | 1301 | <f_old_trans></f_old_trans> |
2119 | <f_translation>친 그룹과 통신합니다.</f_translation> | 1302 | <f_translation></f_translation> |
2120 | </string><string><a_file>panel_toolbar.xml</a_file> | 1303 | </string><string><a_file>strings.xml</a_file> |
2121 | <b_path>/toolbar/toolbar_stack/fly_btn</b_path> | 1304 | <b_path>//anim_shout</b_path> |
2122 | <c_attribute>label</c_attribute> | 1305 | <c_attribute></c_attribute> |
2123 | <d_old></d_old> | 1306 | <d_old></d_old> |
2124 | <e_new>Fly</e_new> | 1307 | <e_new>Shout</e_new> |
2125 | <f_old_trans></f_old_trans> | 1308 | <f_old_trans></f_old_trans> |
2126 | <f_translation>행</f_translation> | 1309 | <f_translation>외기</f_translation> |
2127 | </string><string><a_file>panel_toolbar.xml</a_file> | 1310 | </string><string><a_file>strings.xml</a_file> |
2128 | <b_path>/toolbar/toolbar_stack/fly_btn</b_path> | 1311 | <b_path>//anim_express_shrug</b_path> |
2129 | <c_attribute>label_selected</c_attribute> | 1312 | <c_attribute></c_attribute> |
2130 | <d_old></d_old> | 1313 | <d_old></d_old> |
2131 | <e_new>Stop Flying</e_new> | 1314 | <e_new>Shrug</e_new> |
2132 | <f_old_trans></f_old_trans> | 1315 | <f_old_trans></f_old_trans> |
2133 | <f_translation>비 </f_translation> | 1316 | <f_translation>깨 하기</f_translation> |
2134 | </string><string><a_file>panel_toolbar.xml</a_file> | 1317 | </string><string><a_file>strings.xml</a_file> |
2135 | <b_path>/toolbar/toolbar_stack/fly_btn</b_path> | 1318 | <b_path>//anim_express_smile</b_path> |
2136 | <c_attribute>tool_tip</c_attribute> | 1319 | <c_attribute></c_attribute> |
2137 | <d_old></d_old> | 1320 | <d_old></d_old> |
2138 | <e_new>Start flying. Use E/C or PgUp/PgDn to fly up and down.</e_new> | 1321 | <e_new>Smile</e_new> |
2139 | <f_old_trans></f_old_trans> | 1322 | <f_old_trans></f_old_trans> |
2140 | <f_translation>행 작. 위, 아래로 비행하려면 E/C 또는 PgUp/PgDn을 사용하십시오.</f_translation> | 1323 | <f_translation></f_translation> |
2141 | </string><string><a_file>panel_toolbar.xml</a_file> | 1324 | </string><string><a_file>strings.xml</a_file> |
2142 | <b_path>/toolbar/toolbar_stack/snapshot_btn</b_path> | 1325 | <b_path>//anim_smoke_idle</b_path> |
2143 | <c_attribute>label</c_attribute> | 1326 | <c_attribute></c_attribute> |
2144 | <d_old></d_old> | 1327 | <d_old></d_old> |
2145 | <e_new>Snapshot</e_new> | 1328 | <e_new>Smoke Idle</e_new> |
2146 | <f_old_trans></f_old_trans> | 1329 | <f_old_trans></f_old_trans> |
2147 | <f_translation></f_translation> | 1330 | <f_translation>담배를 고 있 </f_translation> |
2148 | </string><string><a_file>panel_toolbar.xml</a_file> | 1331 | </string><string><a_file>strings.xml</a_file> |
2149 | <b_path>/toolbar/toolbar_stack/snapshot_btn</b_path> | 1332 | <b_path>//anim_smoke_inhale</b_path> |
2150 | <c_attribute>tool_tip</c_attribute> | 1333 | <c_attribute></c_attribute> |
2151 | <d_old></d_old> | 1334 | <d_old></d_old> |
2152 | <e_new>Save a screen shot to disk or inventory.</e_new> | 1335 | <e_new>Smoke Inhale</e_new> |
2153 | <f_old_trans></f_old_trans> | 1336 | <f_old_trans></f_old_trans> |
2154 | <f_translation>스크 토리 스크샷 장.</f_translation> | 1337 | <f_translation> 빨 모</f_translation> |
2155 | </string><string><a_file>panel_toolbar.xml</a_file> | 1338 | </string><string><a_file>strings.xml</a_file> |
2156 | <b_path>/toolbar/toolbar_stack/directory_btn</b_path> | 1339 | <b_path>//anim_smoke_throw_down</b_path> |
2157 | <c_attribute>label</c_attribute> | 1340 | <c_attribute></c_attribute> |
2158 | <d_old></d_old> | 1341 | <d_old></d_old> |
2159 | <e_new>Search</e_new> | 1342 | <e_new>Smoke Throw Down</e_new> |
2160 | <f_old_trans></f_old_trans> | 1343 | <f_old_trans></f_old_trans> |
2161 | <f_translation>검</f_translation> | 1344 | <f_translation>담배 던기</f_translation> |
2162 | </string><string><a_file>panel_toolbar.xml</a_file> | 1345 | </string><string><a_file>strings.xml</a_file> |
2163 | <b_path>/toolbar/toolbar_stack/directory_btn</b_path> | 1346 | <b_path>//anim_express_surprise</b_path> |
2164 | <c_attribute>tool_tip</c_attribute> | 1347 | <c_attribute></c_attribute> |
2165 | <d_old></d_old> | 1348 | <d_old></d_old> |
2166 | <e_new>Search for places, events, people, and more.</e_new> | 1349 | <e_new>Surprise</e_new> |
2167 | <f_old_trans></f_old_trans> | 1350 | <f_old_trans></f_old_trans> |
2168 | <f_translation>장소, 이트, 사람, 더 자세히 등을 검색할 수 있습니다.</f_translation> | 1351 | <f_translation>람</f_translation> |
2169 | </string><string><a_file>panel_toolbar.xml</a_file> | 1352 | </string><string><a_file>strings.xml</a_file> |
2170 | <b_path>/toolbar/toolbar_stack/build_btn</b_path> | 1353 | <b_path>//anim_sword_strike_r</b_path> |
2171 | <c_attribute>label</c_attribute> | 1354 | <c_attribute></c_attribute> |
2172 | <d_old></d_old> | 1355 | <d_old></d_old> |
2173 | <e_new>Build</e_new> | 1356 | <e_new>Sword Strike</e_new> |
2174 | <f_old_trans></f_old_trans> | 1357 | <f_old_trans></f_old_trans> |
2175 | <f_translation>들기</f_translation> | 1358 | <f_translation>검 기 </f_translation> |
2176 | </string><string><a_file>panel_toolbar.xml</a_file> | 1359 | </string><string><a_file>strings.xml</a_file> |
2177 | <b_path>/toolbar/toolbar_stack/build_btn</b_path> | 1360 | <b_path>//anim_angry_tantrum</b_path> |
2178 | <c_attribute>tool_tip</c_attribute> | 1361 | <c_attribute></c_attribute> |
2179 | <d_old></d_old> | 1362 | <d_old></d_old> |
2180 | <e_new>Create new objects.</e_new> | 1363 | <e_new>Tantrum</e_new> |
2181 | <f_old_trans></f_old_trans> | 1364 | <f_old_trans></f_old_trans> |
2182 | <f_translation> 브트를 만듭니다.</f_translation> | 1365 | <f_translation></f_translation> |
2183 | </string><string><a_file>panel_toolbar.xml</a_file> | 1366 | </string><string><a_file>strings.xml</a_file> |
2184 | <b_path>/toolbar/toolbar_stack/map_btn</b_path> | 1367 | <b_path>//anim_express_tongue_out</b_path> |
2185 | <c_attribute>label</c_attribute> | 1368 | <c_attribute></c_attribute> |
2186 | <d_old></d_old> | 1369 | <d_old></d_old> |
2187 | <e_new>Map</e_new> | 1370 | <e_new>TongueOut</e_new> |
2188 | <f_old_trans></f_old_trans> | 1371 | <f_old_trans></f_old_trans> |
2189 | <f_translation>지</f_translation> | 1372 | <f_translation>롱</f_translation> |
2190 | </string><string><a_file>panel_toolbar.xml</a_file> | 1373 | </string><string><a_file>strings.xml</a_file> |
2191 | <b_path>/toolbar/toolbar_stack/map_btn</b_path> | 1374 | <b_path>//anim_hello</b_path> |
2192 | <c_attribute>tool_tip</c_attribute> | 1375 | <c_attribute></c_attribute> |
2193 | <d_old></d_old> | 1376 | <d_old></d_old> |
2194 | <e_new>Map of the world. (Ctrl-M)</e_new> | 1377 | <e_new>Wave</e_new> |
2195 | <f_old_trans></f_old_trans> | 1378 | <f_old_trans></f_old_trans> |
2196 | <f_translation> 지도 (Ctrl-M)</f_translation> | 1379 | <f_translation> 기</f_translation> |
2197 | </string><string><a_file>panel_toolbar.xml</a_file> | 1380 | </string><string><a_file>strings.xml</a_file> |
2198 | <b_path>/toolbar/toolbar_stack/radar_btn</b_path> | 1381 | <b_path>//anim_whisper</b_path> |
2199 | <c_attribute>label</c_attribute> | 1382 | <c_attribute></c_attribute> |
2200 | <d_old></d_old> | 1383 | <d_old></d_old> |
2201 | <e_new>Mini-Map</e_new> | 1384 | <e_new>Whisper</e_new> |
2202 | <f_old_trans></f_old_trans> | 1385 | <f_old_trans></f_old_trans> |
2203 | <f_translation>미니</f_translation> | 1386 | <f_translation>삭</f_translation> |
2204 | </string><string><a_file>panel_toolbar.xml</a_file> | 1387 | </string><string><a_file>strings.xml</a_file> |
2205 | <b_path>/toolbar/toolbar_stack/radar_btn</b_path> | 1388 | <b_path>//anim_whistle</b_path> |
2206 | <c_attribute>tool_tip</c_attribute> | 1389 | <c_attribute></c_attribute> |
2207 | <d_old></d_old> | 1390 | <d_old></d_old> |
2208 | <e_new>Map of the area around you. (Ctrl-Shift-M)</e_new> | 1391 | <e_new>Whistle</e_new> |
2209 | <f_old_trans></f_old_trans> | 1392 | <f_old_trans></f_old_trans> |
2210 | <f_translation>내 주변 역의 지 (Ctrl-Shitf-M)</f_translation> | 1393 | <f_translation>파</f_translation> |
2211 | </string><string><a_file>panel_toolbar.xml</a_file> | 1394 | </string><string><a_file>strings.xml</a_file> |
2212 | <b_path>/toolbar/toolbar_stack/inventory_btn</b_path> | 1395 | <b_path>//anim_express_wink</b_path> |
2213 | <c_attribute>label</c_attribute> | 1396 | <c_attribute></c_attribute> |
2214 | <d_old></d_old> | 1397 | <d_old></d_old> |
2215 | <e_new>Inventory</e_new> | 1398 | <e_new>Wink</e_new> |
2216 | <f_old_trans></f_old_trans> | 1399 | <f_old_trans></f_old_trans> |
2217 | <f_translation>벤</f_translation> | 1400 | <f_translation></f_translation> |
2218 | </string><string><a_file>panel_toolbar.xml</a_file> | 1401 | </string><string><a_file>strings.xml</a_file> |
2219 | <b_path>/toolbar/toolbar_stack/inventory_btn</b_path> | 1402 | <b_path>//anim_wink_hollywood</b_path> |
2220 | <c_attribute>tool_tip</c_attribute> | 1403 | <c_attribute></c_attribute> |
2221 | <d_old></d_old> | 1404 | <d_old></d_old> |
2222 | <e_new>Your items. (Ctrl-I)</e_new> | 1405 | <e_new>Wink (Hollywood)</e_new> |
2223 | <f_old_trans></f_old_trans> | 1406 | <f_old_trans></f_old_trans> |
2224 | <f_translation>. (Ctrl-I)</f_translation> | 1407 | <f_translation>크(리)</f_translation> |
2225 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 1408 | </string><string><a_file>strings.xml</a_file> |
2226 | <b_path>/voice_remote/voice_channel_bg</b_path> | 1409 | <b_path>//anim_express_worry</b_path> |
2227 | <c_attribute>label</c_attribute> | 1410 | <c_attribute></c_attribute> |
2228 | <d_old></d_old> | 1411 | <d_old></d_old> |
2229 | <e_new></e_new> | 1412 | <e_new>Worry</e_new> |
2230 | <f_old_trans></f_old_trans> | 1413 | <f_old_trans></f_old_trans> |
2231 | <f_translation></f_translation> | 1414 | <f_translation>걱정</f_translation> |
2232 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 1415 | </string><string><a_file>strings.xml</a_file> |
2233 | <b_path>/voice_remote/voice_channel_icon</b_path> | 1416 | <b_path>//anim_yes_happy</b_path> |
2234 | <c_attribute>label</c_attribute> | 1417 | <c_attribute></c_attribute> |
2235 | <d_old></d_old> | 1418 | <d_old></d_old> |
2236 | <e_new></e_new> | 1419 | <e_new>Yes (Happy)</e_new> |
2237 | <f_old_trans></f_old_trans> | 1420 | <f_old_trans></f_old_trans> |
2238 | <f_translation></f_translation> | 1421 | <f_translation>강항 동의</f_translation> |
2239 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 1422 | </string><string><a_file>strings.xml</a_file> |
2240 | <b_path>/voice_remote/channel_label</b_path> | 1423 | <b_path>//anim_yes_head</b_path> |
2241 | <c_attribute>label</c_attribute> | 1424 | <c_attribute></c_attribute> |
2242 | <d_old></d_old> | 1425 | <d_old></d_old> |
2243 | <e_new></e_new> | 1426 | <e_new>Yes</e_new> |
2244 | <f_old_trans></f_old_trans> | 1427 | <f_old_trans></f_old_trans> |
2245 | <f_translation></f_translation> | 1428 | <f_translation>동의</f_translation> |
2246 | </string> | 1429 | </string> |
2247 | </strings> | 1430 | </strings> |
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 7fd004d..9d8b773 100644 --- a/linden/indra/newview/skins/xui/ko/need_to_update.xml +++ b/linden/indra/newview/skins/xui/ko/need_to_update.xml | |||
@@ -2,346 +2,176 @@ | |||
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> | 5 | <b_path>//ClothingLoading/message</b_path> |
6 | <c_attribute></c_attribute> | 6 | <c_attribute></c_attribute> |
7 | <d_old> | 7 | <d_old> |
8 | Granting modify rights to another resident allows them to change | 8 | Your clothing is still downloading. |
9 | ANY objects you may have in-world. Be VERY careful when handing | 9 | You can use the world normally, and other users |
10 | out this permission. | 10 | will see you correctly. |
11 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | ||
12 | </d_old> | 11 | </d_old> |
13 | <e_new> | 12 | <e_new> |
14 | Granting modify rights to another resident allows them to change, | 13 | Your clothing is still downloading. |
15 | delete or take ANY objects you may have in-world. Be VERY careful | 14 | You can use [SECOND_LIFE] normally and other users will see you correctly. |
16 | when handing out this permission. | ||
17 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | ||
18 | </e_new> | 15 | </e_new> |
19 | <f_translation> | 16 | <f_translation> |
20 | 제3의 주민에게 수정 권한을 부여함으로써, 제3의 주민은 사용자가 인월드에서 가지고 있는 오브젝트 모두를 | 17 | 의복을 다운로드하고 있습니다. |
21 | 변경, 삭제 또는 가져올 수 있습니다. 본 허가권의 취급 시 각별히 | 18 | [SECOND_LIFE]를 사용할 수 있으며 다른 사용자에게 귀하의 모습이 정상적으로 표시될 것입니다. |
22 | 주의하십시오. | ||
23 | [FIRST_NAME] [LAST_NAME]에게 수정할 수 있는 권리를 부여하시겠습니까? | ||
24 | </f_translation> | 19 | </f_translation> |
25 | <f_old_trans> | 20 | <f_old_trans> |
26 | 제3의 주민에게 수정 권한을 부여함으로써, 제3의 주민은 본인이 가지고 있는 오브젝트 모두를 | 21 | 의상을 다운로드하는 중입니다. |
27 | 변경할 수 있습니다. 본 허가권의 취급 시 주의 | 22 | 일반적으로 세컨드라이프를 사용할 수 있으며 다른 사용자에게 |
28 | 하십시오. | 23 | 귀하의 모습이 제대로 표시될 것입니다. |
29 | [FIRST_NAME] [LAST_NAME]님에게 수정 권한을 부여 하시겠습니까? | ||
30 | </f_old_trans> | 24 | </f_old_trans> |
31 | </string><string><a_file>alerts.xml</a_file> | 25 | </string><string><a_file>floater_directory.xml</a_file> |
32 | <b_path>//CannotBuyLandNoRegion/message</b_path> | 26 | <b_path>/directory/Directory Tabs/places_panel/searching_text</b_path> |
33 | <c_attribute></c_attribute> | 27 | <c_attribute></c_attribute> |
34 | <d_old> | 28 | <d_old> |
35 | Unable to buy land: | 29 | Searching... |
36 | Cannot find the region this land is in. | 30 | </d_old> |
37 | </d_old> | 31 | <e_new>Searching...</e_new> |
38 | <e_new> | 32 | <f_translation>검색</f_translation> |
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> | 33 | <f_old_trans> |
47 | 토지를 구매하지 못했습니다: | 34 | 검색 |
48 | 이 토지가 소속된 지역을 찾을 수 없습니다. | 35 | </f_old_trans> |
49 | </f_old_trans> | 36 | </string><string><a_file>floater_directory.xml</a_file> |
50 | </string><string><a_file>alerts.xml</a_file> | 37 | <b_path>/directory/Directory Tabs/places_panel/not_found_text</b_path> |
51 | <b_path>//ParcelCanPlayMedia/message</b_path> | ||
52 | <c_attribute></c_attribute> | 38 | <c_attribute></c_attribute> |
53 | <d_old> | 39 | <d_old> |
54 | This location can play streaming video. | 40 | None Found. |
55 | Streaming video requires a 768 kbps or | 41 | </d_old> |
56 | faster Internet connection. | 42 | <e_new>None Found.</e_new> |
57 | 43 | <f_translation>검색 결과가 없습니다.</f_translation> | |
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> | 44 | <f_old_trans> |
79 | 이 지역에서는 스트리밍 비디오를 재생할 수 있습니다. | 45 | 발견되지 않음 |
80 | 스트리밍 비디오를 재생하려면 768 kbps 이상의 | 46 | </f_old_trans> |
81 | 인터넷 연결이 필요합니다. | 47 | </string><string><a_file>floater_directory.xml</a_file> |
82 | 48 | <b_path>/directory/Directory Tabs/people_panel/find</b_path> | |
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> | 49 | <c_attribute></c_attribute> |
90 | <d_old> | 50 | <d_old> |
91 | Are you sure you want to clear your | 51 | Find: |
92 | browser cache? | 52 | </d_old> |
93 | </d_old> | ||
94 | <e_new> | 53 | <e_new> |
95 | Are you sure you want to clear your browser cache? | 54 | Find: |
96 | </e_new> | 55 | </e_new> |
97 | <f_translation> | 56 | <f_translation> |
98 | 브라저의 캐시를 전부 삭제하시습니까? | 57 | : |
99 | </f_translation> | 58 | </f_translation> |
100 | <f_old_trans> | 59 | <f_old_trans> |
101 | 브라우저의 캐쉬를 전부 삭제 하습니까? | 60 | : |
102 | </f_old_trans> | 61 | </f_old_trans> |
103 | </string><string><a_file>alerts.xml</a_file> | 62 | </string><string><a_file>floater_directory.xml</a_file> |
104 | <b_path>//HelpWaterNormalMap/message</b_path> | 63 | <b_path>/directory/Directory Tabs/groups_panel/searching_text</b_path> |
105 | <c_attribute></c_attribute> | 64 | <c_attribute></c_attribute> |
106 | <d_old> | 65 | <d_old> |
107 | Controls what normal map is layered across the water | 66 | Searching... |
108 | to determine reflections/refractions. | 67 | </d_old> |
109 | </d_old> | 68 | <e_new>Searching...</e_new> |
110 | <e_new> | 69 | <f_translation>검색</f_translation> |
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> | 70 | <f_old_trans> |
117 | 수면에 겹쳐지는 일반 맵을 조절하여 | 71 | 검색 |
118 | 반사/굴절률을 결정합니다. | 72 | </f_old_trans> |
119 | </f_old_trans> | 73 | </string><string><a_file>floater_directory.xml</a_file> |
120 | </string><string><a_file>alerts.xml</a_file> | 74 | <b_path>/directory/Directory Tabs/groups_panel/not_found_text</b_path> |
121 | <b_path>//HelpWaterWave1/message</b_path> | ||
122 | <c_attribute></c_attribute> | 75 | <c_attribute></c_attribute> |
123 | <d_old> | 76 | <d_old> |
124 | Controls where and how fast the large scaled version of the normal | 77 | None Found. |
125 | map moves in the X and Y direction. | 78 | </d_old> |
79 | <e_new>None Found.</e_new> | ||
80 | <f_translation>검색 결과가 없습니다.</f_translation> | ||
81 | <f_old_trans> | ||
82 | 발견되지 않음 | ||
83 | </f_old_trans> | ||
84 | </string><string><a_file>floater_script_debug.xml</a_file> | ||
85 | <b_path>/script debug floater</b_path> | ||
86 | <c_attribute>title</c_attribute> | ||
87 | <d_old>Script Errors/Warning</d_old> | ||
88 | <e_new>Script Warning/Error</e_new> | ||
89 | <f_translation>스크립트 경고/오류</f_translation> | ||
90 | <f_old_trans>스크립트 오류/경고</f_old_trans> | ||
91 | </string><string><a_file>floater_world_map.xml</a_file> | ||
92 | <b_path>/worldmap/friend combo</b_path> | ||
93 | <c_attribute>label</c_attribute> | ||
94 | <d_old>My Friends</d_old> | ||
95 | <e_new>Online Friends</e_new> | ||
96 | <f_translation>온라인 친구 보기</f_translation> | ||
97 | <f_old_trans>내 친구들</f_old_trans> | ||
98 | </string><string><a_file>floater_world_map.xml</a_file> | ||
99 | <b_path>/worldmap/friend combo/none_selected</b_path> | ||
100 | <c_attribute></c_attribute> | ||
101 | <d_old> | ||
102 | My Friends | ||
126 | </d_old> | 103 | </d_old> |
127 | <e_new> | 104 | <e_new> |
128 | Controls where and how fast the large scaled version of the normal map moves in the X and Y direction. | 105 | Online Friends |
129 | </e_new> | 106 | </e_new> |
130 | <f_translation> | 107 | <f_translation> |
131 | 일반 맵의 확장된 버전이 X 및 Y 방향으로 이동할 때의 위치와 속도를 조절합니다. | 108 | 온라인 친구 보기 |
132 | </f_translation> | 109 | </f_translation> |
133 | <f_old_trans> | 110 | <f_old_trans> |
134 | 일반 맵의 확장된 버전이 X 및 Y 방향으로 이동할 때의 위치와 | 111 | 내 친구들 |
135 | 속도를 조절합니다. | ||
136 | </f_old_trans> | 112 | </f_old_trans> |
137 | </string><string><a_file>alerts.xml</a_file> | 113 | </string><string><a_file>floater_world_map.xml</a_file> |
138 | <b_path>//HelpWaterWave2/message</b_path> | 114 | <b_path>/worldmap/landmark combo</b_path> |
115 | <c_attribute>label</c_attribute> | ||
116 | <d_old>My Landmarks</d_old> | ||
117 | <e_new>Landmarks</e_new> | ||
118 | <f_translation>랜드마크 보기</f_translation> | ||
119 | <f_old_trans>내 랜드마크</f_old_trans> | ||
120 | </string><string><a_file>floater_world_map.xml</a_file> | ||
121 | <b_path>/worldmap/landmark combo/none_selected</b_path> | ||
139 | <c_attribute></c_attribute> | 122 | <c_attribute></c_attribute> |
140 | <d_old> | 123 | <d_old> |
141 | Controls where and how fast the the small scaled version of the | 124 | My Landmarks |
142 | normal map moves in the X and Y direction. | ||
143 | </d_old> | 125 | </d_old> |
144 | <e_new> | 126 | <e_new> |
145 | Controls where and how fast the the small scaled version of the normal map moves in the X and Y direction. | 127 | Landmarks |
146 | </e_new> | 128 | </e_new> |
147 | <f_translation> | 129 | <f_translation> |
148 | 일반 맵의 축소된 버전이 X 및 Y 방향으로 이동할 때의 위치와 속도를 조절합니다. | 130 | 랜드마크 보기 |
149 | </f_translation> | 131 | </f_translation> |
150 | <f_old_trans> | 132 | <f_old_trans> |
151 | 일반 맵의 축소된 버전이 X 및 Y 방향으로 이동할 때의 위치와 | 133 | 내 랜드마크 |
152 | 속도를 조절합니다. | ||
153 | </f_old_trans> | 134 | </f_old_trans> |
154 | </string><string><a_file>floater_buy_land.xml</a_file> | 135 | </string><string><a_file>panel_avatar_classified.xml</a_file> |
155 | <b_path>/buy land/land_use_reason</b_path> | 136 | <b_path>/Classified/classified_mature_check</b_path> |
156 | <c_attribute></c_attribute> | 137 | <c_attribute>label</c_attribute> |
157 | <d_old> | 138 | <d_old>Mature</d_old> |
158 | You hold 1,309 square meters of land. | 139 | <e_new></e_new> |
159 | This parcel is 512 square meters of land. | 140 | <f_translation></f_translation> |
160 | </d_old> | 141 | <f_old_trans>성인용</f_old_trans> |
161 | <e_new> | 142 | </string><string><a_file>panel_group_notices.xml</a_file> |
162 | You hold 1,309 square meters of land. | 143 | <b_path>/notices_tab/lbl2</b_path> |
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> | 144 | <c_attribute></c_attribute> |
252 | <d_old> | 145 | <d_old> |
253 | Click a gesture or press a key to play animations and sounds. | 146 | Notices are kept for 30 days. Click the notice below you wish to view. |
147 | Click the 'Refresh' button to check if new notices have been received. | ||
254 | </d_old> | 148 | </d_old> |
255 | <e_new> | 149 | <e_new> |
256 | Double-click a gesture to play animations and sounds. | 150 | Notices are kept for 14 days. Click the notice below you wish to view. |
151 | Click the 'Refresh' button to check if new notices have been received. | ||
152 | Notice lists are limited to 200 notices per group on a daily basis. | ||
257 | </e_new> | 153 | </e_new> |
258 | <f_translation> | 154 | <f_translation> |
259 | 제스처를 더블클릭하여 애니메이션과 사운드를 재생합니다. | 155 | 공지는 14일 동안 보관됩니다. 보려는 공지를 다음에서 클릭하십시오. |
156 | 새로운 공지를 수령한 경우 '새로고침' 버튼을 클릭하십시오. | ||
157 | 공지 목록은 매일 그룹당 200개로 제한됩니다. | ||
260 | </f_translation> | 158 | </f_translation> |
261 | <f_old_trans> | 159 | <f_old_trans> |
262 | 이름을 더블클릭 또는 키를 눌러 제스처를 재생합니다. | 160 | 공지는 14일 동안 보관됩니다. 보려는 공지를 다음에서 클릭하십시오. |
263 | </f_old_trans> | 161 | 새로운 공지를 수령한 경우 '새로고침' 버튼을 클릭하십시오. |
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> | 162 | </f_old_trans> |
281 | </string><string><a_file>panel_friends.xml</a_file> | 163 | </string><string><a_file>panel_login.xml</a_file> |
282 | <b_path>/friends/friend_list/icon_edit_mine</b_path> | 164 | <b_path>/panel_login/forgot_password_text</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> | 165 | <c_attribute></c_attribute> |
305 | <d_old> | 166 | <d_old> |
306 | (loading...) | 167 | Forgot your password? |
307 | </d_old> | 168 | </d_old> |
308 | <e_new>(loading...)</e_new> | 169 | <e_new>Forgot your name or password? |
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> | 170 | </e_new> |
329 | <f_translation> | 171 | <f_translation>세컨드라이프 이름 또는 비밀번호를 분실하셨습니까? |
330 | 참고: 장치 설정을 실행하면 일시적으로 음성 채팅 연결이 끊길 수 있습니다. | ||
331 | </f_translation> | 172 | </f_translation> |
332 | <f_old_trans> | 173 | <f_old_trans> |
333 | 참고: 장치 설정 또는 음성 채팅 설정을 실행하면 일시적으로 음성 채팅 연결이 끊길 수 있습니다. | 174 | 암호를 잊으셨습니까? |
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> | 175 | </f_old_trans> |
346 | </string> | 176 | </string> |
347 | </strings> | 177 | </strings> |
diff --git a/linden/indra/newview/skins/xui/ko/notify.xml b/linden/indra/newview/skins/xui/ko/notify.xml index 1085240..3f92fb1 100644 --- a/linden/indra/newview/skins/xui/ko/notify.xml +++ b/linden/indra/newview/skins/xui/ko/notify.xml | |||
@@ -918,6 +918,21 @@ sculpted prim은 그 형태를 지정하는 특별한 텍스처를 요구합니 | |||
918 | 음소거 | 918 | 음소거 |
919 | </option> | 919 | </option> |
920 | </notify> | 920 | </notify> |
921 | <notify name="AutoUnmuteByIM"> | ||
922 | <message name="message"> | ||
923 | [FIRST] [LAST]님에게 메시지가 전송되었으며 자동으로 음소거가 해제되었습니다. | ||
924 | </message> | ||
925 | </notify> | ||
926 | <notify name="AutoUnmuteByMoney"> | ||
927 | <message name="message"> | ||
928 | [FIRST] [LAST]님에게 금액이 전송되었으며 자동으로 음소거가 해제되었습니다. | ||
929 | </message> | ||
930 | </notify> | ||
931 | <notify name="AutoUnmuteByInventory"> | ||
932 | <message name="message"> | ||
933 | [FIRST] [LAST]님에게 인벤토리가 전송되었으며 자동으로 음소거가 해제되었습니다. | ||
934 | </message> | ||
935 | </notify> | ||
921 | <notify name="VoiceInviteGroup"> | 936 | <notify name="VoiceInviteGroup"> |
922 | <message name="message"> | 937 | <message name="message"> |
923 | [NAME] 님이 [GROUP] 그룹과의 음성 채팅에 참여하고 있습니다. | 938 | [NAME] 님이 [GROUP] 그룹과의 음성 채팅에 참여하고 있습니다. |
diff --git a/linden/indra/newview/skins/xui/ko/panel_avatar_classified.xml b/linden/indra/newview/skins/xui/ko/panel_avatar_classified.xml index 37c972c..a751b48 100644 --- a/linden/indra/newview/skins/xui/ko/panel_avatar_classified.xml +++ b/linden/indra/newview/skins/xui/ko/panel_avatar_classified.xml | |||
@@ -8,7 +8,17 @@ | |||
8 | <button label="텔리포트" name="classified_teleport_btn" /> | 8 | <button label="텔리포트" name="classified_teleport_btn" /> |
9 | <button label="지도" name="classified_map_btn" /> | 9 | <button label="지도" name="classified_map_btn" /> |
10 | <combo_box label="" name="classified_category_combo" /> | 10 | <combo_box label="" name="classified_category_combo" /> |
11 | <check_box label="성인용" name="classified_mature_check" /> | 11 | <check_box label="성인용" name="classified_mature_check"> |
12 | <combo_item name="select_mature"> | ||
13 | - 성인용 컨텐츠 선택 - | ||
14 | </combo_item> | ||
15 | <combo_item name="mature"> | ||
16 | 성인용 컨텐츠 | ||
17 | </combo_item> | ||
18 | <combo_item name="not_mature"> | ||
19 | 성인용 컨텐츠 아님 | ||
20 | </combo_item> | ||
21 | </check_box> | ||
12 | <text name="classified_info_text" | 22 | <text name="classified_info_text" |
13 | tool_tip="광고에 대한 지불액이 높을수록 목록의 상위에 표시됩니다."> | 23 | tool_tip="광고에 대한 지불액이 높을수록 목록의 상위에 표시됩니다."> |
14 | 게재 광고: 게시예정 | 24 | 게재 광고: 게시예정 |
diff --git a/linden/indra/newview/skins/xui/ko/panel_classified.xml b/linden/indra/newview/skins/xui/ko/panel_classified.xml index 4cb52fb..9d1f80c 100644 --- a/linden/indra/newview/skins/xui/ko/panel_classified.xml +++ b/linden/indra/newview/skins/xui/ko/panel_classified.xml | |||
@@ -8,7 +8,17 @@ | |||
8 | <button label="텔리포트" name="classified_teleport_btn" /> | 8 | <button label="텔리포트" name="classified_teleport_btn" /> |
9 | <button label="지도에 표시" name="classified_map_btn" /> | 9 | <button label="지도에 표시" name="classified_map_btn" /> |
10 | <button label="프로필" name="classified_profile_btn" /> | 10 | <button label="프로필" name="classified_profile_btn" /> |
11 | <check_box label="성인용" name="classified_mature_check" /> | 11 | <check_box label="성인용" name="classified_mature_check"> |
12 | <combo_item name="select_mature"> | ||
13 | - 성인용 컨텐츠 선택 - | ||
14 | </combo_item> | ||
15 | <combo_item name="mature"> | ||
16 | 성인용 컨텐츠 | ||
17 | </combo_item> | ||
18 | <combo_item name="not_mature"> | ||
19 | 성인용 컨텐츠 아님 | ||
20 | </combo_item> | ||
21 | </check_box> | ||
12 | <combo_box label="" name="classified_category_combo" /> | 22 | <combo_box label="" name="classified_category_combo" /> |
13 | <button label="업데이트" name="classified_update_btn" /> | 23 | <button label="업데이트" name="classified_update_btn" /> |
14 | <string name="ad_placed_paid"> | 24 | <string name="ad_placed_paid"> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_group_general.xml b/linden/indra/newview/skins/xui/ko/panel_group_general.xml index b78f85d..a2c1024 100644 --- a/linden/indra/newview/skins/xui/ko/panel_group_general.xml +++ b/linden/indra/newview/skins/xui/ko/panel_group_general.xml | |||
@@ -77,6 +77,18 @@ | |||
77 | tool_tip="신청 수수료를 선택한 경우 그룹에 참여하려면 새로운 회원은 이 수수료를 지불해야 합니다." /> | 77 | tool_tip="신청 수수료를 선택한 경우 그룹에 참여하려면 새로운 회원은 이 수수료를 지불해야 합니다." /> |
78 | <check_box label="성인 그룹" name="mature" | 78 | <check_box label="성인 그룹" name="mature" |
79 | tool_tip="그룹 정보를 성인 전용으로 간주할지를 여부를 설정합니다." /> | 79 | tool_tip="그룹 정보를 성인 전용으로 간주할지를 여부를 설정합니다." /> |
80 | <combo_box name="group_mature_check" | ||
81 | tool_tip="그룹 정보를 성인용으로 간주할지 여부를 설정합니다."> | ||
82 | <combo_item name="select_mature"> | ||
83 | - 성인용 컨텐츠 선택 - | ||
84 | </combo_item> | ||
85 | <combo_item name="mature"> | ||
86 | 성인용 컨텐츠 | ||
87 | </combo_item> | ||
88 | <combo_item name="not_mature"> | ||
89 | 성인용 컨텐츠 아님 | ||
90 | </combo_item> | ||
91 | </combo_box> | ||
80 | <panel name="title_container"> | 92 | <panel name="title_container"> |
81 | <text name="active_title_label"> | 93 | <text name="active_title_label"> |
82 | 보여질 타이틀 | 94 | 보여질 타이틀 |
diff --git a/linden/indra/newview/skins/xui/ko/panel_group_notices.xml b/linden/indra/newview/skins/xui/ko/panel_group_notices.xml index c49fe9b..e71bdb0 100644 --- a/linden/indra/newview/skins/xui/ko/panel_group_notices.xml +++ b/linden/indra/newview/skins/xui/ko/panel_group_notices.xml | |||
@@ -18,6 +18,7 @@ | |||
18 | <text name="lbl2"> | 18 | <text name="lbl2"> |
19 | 공지는 14일 동안 보관됩니다. 보려는 공지를 다음에서 클릭하십시오. | 19 | 공지는 14일 동안 보관됩니다. 보려는 공지를 다음에서 클릭하십시오. |
20 | 새로운 공지를 수령한 경우 '새로고침' 버튼을 클릭하십시오. | 20 | 새로운 공지를 수령한 경우 '새로고침' 버튼을 클릭하십시오. |
21 | 공지 목록은 매일 그룹당 200개로 제한됩니다. | ||
21 | </text> | 22 | </text> |
22 | <scroll_list name="notice_list"> | 23 | <scroll_list name="notice_list"> |
23 | <column label="" name="icon" /> | 24 | <column label="" name="icon" /> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_login.xml b/linden/indra/newview/skins/xui/ko/panel_login.xml index 1c66ef2..d0afa24 100644 --- a/linden/indra/newview/skins/xui/ko/panel_login.xml +++ b/linden/indra/newview/skins/xui/ko/panel_login.xml | |||
@@ -38,7 +38,7 @@ | |||
38 | [Viewer Channel Name] | 38 | [Viewer Channel Name] |
39 | </text> | 39 | </text> |
40 | <text name="forgot_password_text"> | 40 | <text name="forgot_password_text"> |
41 | 호를 습니까? | 41 | 컨드라이 이름 또는 비밀번호를 분하셨습니까? |
42 | </text> | 42 | </text> |
43 | <text name="forgot_password_url"> | 43 | <text name="forgot_password_url"> |
44 | http://secondlife.com/account/request.php | 44 | http://secondlife.com/account/request.php |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_graphics1.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_graphics1.xml index 4fa81ef..e986982 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_graphics1.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_graphics1.xml | |||
@@ -17,6 +17,26 @@ | |||
17 | <text_editor name="FullScreenInfo" width="480"> | 17 | <text_editor name="FullScreenInfo" width="480"> |
18 | 선택을 해제하면 로그인 시 전체 화면으로 표시됩니다. | 18 | 선택을 해제하면 로그인 시 전체 화면으로 표시됩니다. |
19 | </text_editor> | 19 | </text_editor> |
20 | <text name="WindowSizeLabel"> | ||
21 | 창 크기: | ||
22 | </text> | ||
23 | <combo_box name="windowsize combo"> | ||
24 | <combo_item name="640x480"> | ||
25 | 640x480 | ||
26 | </combo_item> | ||
27 | <combo_item name="800x600"> | ||
28 | 800x600 | ||
29 | </combo_item> | ||
30 | <combo_item name="720x480"> | ||
31 | 720x480(NTSC) | ||
32 | </combo_item> | ||
33 | <combo_item name="768x576"> | ||
34 | 768x576(PAL) | ||
35 | </combo_item> | ||
36 | <combo_item name="1024x768"> | ||
37 | 1024x768 | ||
38 | </combo_item> | ||
39 | </combo_box> | ||
20 | <text name="DisplayResLabel"> | 40 | <text name="DisplayResLabel"> |
21 | 디스플레이 해상도: | 41 | 디스플레이 해상도: |
22 | </text> | 42 | </text> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_web.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_web.xml index 6018ecf..3966877 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_web.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_web.xml | |||
@@ -1,10 +1,12 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="웹" name="web"> | 2 | <panel label="웹" name="web"> |
3 | <radio_group name="use_external_browser"> | 3 | <radio_group name="use_external_browser"> |
4 | <radio_item name="external" tool_tip="도움말, 웹링크 등은 외부 웹브라우저를 사용하십시오. 전체 화면 모드에서는 권장하지 않습니다."> | 4 | <radio_item name="external" |
5 | tool_tip="도움말, 웹링크 등은 외부 웹브라우저를 사용하십시오. 전체 화면 모드에서는 권장하지 않습니다."> | ||
5 | 외부 웹 브라우저 사용(Firefox, Safari, Internet Explorer) | 6 | 외부 웹 브라우저 사용(Firefox, Safari, Internet Explorer) |
6 | </radio_item> | 7 | </radio_item> |
7 | <radio_item name="internal"> | 8 | <radio_item name="internal" |
9 | tool_tip="도움말, 웹 링크 등은 세컨드라이프 웹 브라우저로 열립니다."> | ||
8 | 내부 웹 브라우저 사용 | 10 | 내부 웹 브라우저 사용 |
9 | </radio_item> | 11 | </radio_item> |
10 | </radio_group> | 12 | </radio_group> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_region_general.xml b/linden/indra/newview/skins/xui/ko/panel_region_general.xml index 66ba650..5366b7e 100644 --- a/linden/indra/newview/skins/xui/ko/panel_region_general.xml +++ b/linden/indra/newview/skins/xui/ko/panel_region_general.xml | |||
@@ -6,6 +6,12 @@ | |||
6 | <text name="region_text"> | 6 | <text name="region_text"> |
7 | 알 수 없음 | 7 | 알 수 없음 |
8 | </text> | 8 | </text> |
9 | <text name="version_channel_text_lbl"> | ||
10 | 버전: | ||
11 | </text> | ||
12 | <text name="version_channel_text"> | ||
13 | 알 수 없음 | ||
14 | </text> | ||
9 | <check_box label="지형 변경 금지" name="block_terraform_check" /> | 15 | <check_box label="지형 변경 금지" name="block_terraform_check" /> |
10 | <button label="?" name="terraform_help" /> | 16 | <button label="?" name="terraform_help" /> |
11 | <check_box label="비행 금지" name="block_fly_check" /> | 17 | <check_box label="비행 금지" name="block_fly_check" /> |
diff --git a/linden/indra/newview/skins/xui/ko/strings.xml b/linden/indra/newview/skins/xui/ko/strings.xml new file mode 100644 index 0000000..a7ccb58 --- /dev/null +++ b/linden/indra/newview/skins/xui/ko/strings.xml | |||
@@ -0,0 +1,390 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <strings name=""> | ||
3 | <string name="LoginInProgress"> | ||
4 | 로그인 중. [APP_NAME]님은 정지된 상태로 나타날 수 있습니다. 잠시만 기다리십시오. | ||
5 | </string> | ||
6 | <string name="LoginAuthenticating"> | ||
7 | 인증 | ||
8 | </string> | ||
9 | <string name="LoginMaintenance"> | ||
10 | 계정 확인 중 | ||
11 | </string> | ||
12 | <string name="LoginAttempt"> | ||
13 | 이전 로그인 시도가 실패했습니다. [NUMBER]번째 로그인 시도 중 | ||
14 | </string> | ||
15 | <string name="LoginPrecaching"> | ||
16 | 로딩 중 | ||
17 | </string> | ||
18 | <string name="LoginInitializingBrowser"> | ||
19 | 웹 브라우저 초기화 중 | ||
20 | </string> | ||
21 | <string name="LoginVerifyingCache"> | ||
22 | 캐시 파일 확인 중(60-90초 소요) | ||
23 | </string> | ||
24 | <string name="LoginProcessingResponse"> | ||
25 | 응답 처리 중 | ||
26 | </string> | ||
27 | <string name="LoginInitializingWorld"> | ||
28 | 초기화 중 | ||
29 | </string> | ||
30 | <string name="LoginDecodingImages"> | ||
31 | 이미디 디코딩 중 | ||
32 | </string> | ||
33 | <string name="LoginInitializingQuicktime"> | ||
34 | QuickTime 초기화 중... | ||
35 | </string> | ||
36 | <string name="LoginQuicktimeNotFound"> | ||
37 | QuickTime을 찾을 수 없으므로 초기화할 수 없습니다. | ||
38 | </string> | ||
39 | <string name="LoginQuicktimeOK"> | ||
40 | QuickTime이 성공적으로 초기화되었습니다. | ||
41 | </string> | ||
42 | <string name="LoginWaitingForRegionHandshake"> | ||
43 | 지역 대기 중 | ||
44 | </string> | ||
45 | <string name="LoginConnectingToRegion"> | ||
46 | 지역에 연결하는 중 | ||
47 | </string> | ||
48 | <string name="LoginDownloadingClothing"> | ||
49 | 의복 다운로드 중 | ||
50 | </string> | ||
51 | <string name="TooltipPerson"> | ||
52 | 아바타 | ||
53 | </string> | ||
54 | <string name="TooltipNoName"> | ||
55 | (이름 없음) | ||
56 | </string> | ||
57 | <string name="TooltipOwner"> | ||
58 | 소유자: | ||
59 | </string> | ||
60 | <string name="TooltipPublic"> | ||
61 | 공개 | ||
62 | </string> | ||
63 | <string name="TooltipIsGroup"> | ||
64 | (그룹) | ||
65 | </string> | ||
66 | <string name="TooltipFlagScript"> | ||
67 | 스크립트 | ||
68 | </string> | ||
69 | <string name="TooltipFlagPhysics"> | ||
70 | 물리 엔진 | ||
71 | </string> | ||
72 | <string name="TooltipFlagTouch"> | ||
73 | 만지기 | ||
74 | </string> | ||
75 | <string name="TooltipFlagL$"> | ||
76 | L$ | ||
77 | </string> | ||
78 | <string name="TooltipFlagDropInventory"> | ||
79 | 인벤토리 드롭 | ||
80 | </string> | ||
81 | <string name="TooltipFlagPhantom"> | ||
82 | 팬텀 | ||
83 | </string> | ||
84 | <string name="TooltipFlagTemporary"> | ||
85 | 임시 | ||
86 | </string> | ||
87 | <string name="TooltipFlagRightClickMenu"> | ||
88 | (오른쪽 클릭 메뉴) | ||
89 | </string> | ||
90 | <string name="TooltipFreeToCopy"> | ||
91 | 무료 복사 | ||
92 | </string> | ||
93 | <string name="TooltipForSaleL$"> | ||
94 | 판매: L$ [AMOUNT] | ||
95 | </string> | ||
96 | <string name="TooltipForSaleMsg"> | ||
97 | 판매: [MESSAGE] | ||
98 | </string> | ||
99 | <string name="TooltipFlagGroupBuild"> | ||
100 | 그룹 만들기 | ||
101 | </string> | ||
102 | <string name="TooltipFlagNoBuild"> | ||
103 | 건축 금지 | ||
104 | </string> | ||
105 | <string name="TooltipFlagNoEdit"> | ||
106 | 그룹 만들기 | ||
107 | </string> | ||
108 | <string name="TooltipFlagNotSafe"> | ||
109 | 안전하지 않음 | ||
110 | </string> | ||
111 | <string name="TooltipFlagNoFly"> | ||
112 | 비행 금지 | ||
113 | </string> | ||
114 | <string name="TooltipFlagGroupScripts"> | ||
115 | 그룹 스크립트 | ||
116 | </string> | ||
117 | <string name="TooltipFlagNoScripts"> | ||
118 | 스크립트 금지 | ||
119 | </string> | ||
120 | <string name="TooltipLand"> | ||
121 | 토지: | ||
122 | </string> | ||
123 | <string name="RetrievingData"> | ||
124 | 가져오는 중 | ||
125 | </string> | ||
126 | <string name="LoadingData"> | ||
127 | 로딩 중 | ||
128 | </string> | ||
129 | <string name="AvatarNameNobody"> | ||
130 | (없음) | ||
131 | </string> | ||
132 | <string name="AvatarNameWaiting"> | ||
133 | (대기 중) | ||
134 | </string> | ||
135 | <string name="AvatarNameHippos"> | ||
136 | (하마) | ||
137 | </string> | ||
138 | <string name="GroupNameNone"> | ||
139 | (없음) | ||
140 | </string> | ||
141 | <string name="AssetErrorNone"> | ||
142 | 오류 없음 | ||
143 | </string> | ||
144 | <string name="AssetErrorRequestFailed"> | ||
145 | 자산 요청: 실패 | ||
146 | </string> | ||
147 | <string name="AssetErrorNonexistentFile"> | ||
148 | 자산 요청: 파일이 존재하지 않습니다. | ||
149 | </string> | ||
150 | <string name="AssetErrorNotInDatabase"> | ||
151 | 자산 요청: 데이터베이스에 자산이 없습니다. | ||
152 | </string> | ||
153 | <string name="AssetErrorEOF"> | ||
154 | 파일 끝 | ||
155 | </string> | ||
156 | <string name="AssetErrorCannotOpenFile"> | ||
157 | 파일을 열 수 없습니다. | ||
158 | </string> | ||
159 | <string name="AssetErrorFileNotFound"> | ||
160 | 파일을 찾을 수 없습니다. | ||
161 | </string> | ||
162 | <string name="AssetErrorTCPTimeout"> | ||
163 | 파일 전송 시간초과 | ||
164 | </string> | ||
165 | <string name="AssetErrorCircuitGone"> | ||
166 | 연결이 끊겼습니다. | ||
167 | </string> | ||
168 | <string name="AssetErrorUnknownStatus"> | ||
169 | 알 수 없는 상태 | ||
170 | </string> | ||
171 | <string name="AvatarEditingApparance"> | ||
172 | (내 모습 편집) | ||
173 | </string> | ||
174 | <string name="AvatarAway"> | ||
175 | 자리비움 | ||
176 | </string> | ||
177 | <string name="AvatarBusy"> | ||
178 | 다른 용무 중 | ||
179 | </string> | ||
180 | <string name="AvatarMuted"> | ||
181 | 음소거 | ||
182 | </string> | ||
183 | <string name="anim_express_afraid"> | ||
184 | 두려움 | ||
185 | </string> | ||
186 | <string name="anim_express_anger"> | ||
187 | 화남 | ||
188 | </string> | ||
189 | <string name="anim_away"> | ||
190 | 자리비움 | ||
191 | </string> | ||
192 | <string name="anim_backflip"> | ||
193 | 뒤공중제비 | ||
194 | </string> | ||
195 | <string name="anim_express_laugh"> | ||
196 | 포복 절도 | ||
197 | </string> | ||
198 | <string name="anim_express_toothsmile"> | ||
199 | 함박 웃음 | ||
200 | </string> | ||
201 | <string name="anim_blowkiss"> | ||
202 | 키스를 날리는 모습 | ||
203 | </string> | ||
204 | <string name="anim_express_bored"> | ||
205 | 지루함 | ||
206 | </string> | ||
207 | <string name="anim_bow"> | ||
208 | 인사 | ||
209 | </string> | ||
210 | <string name="anim_clap"> | ||
211 | 박수 | ||
212 | </string> | ||
213 | <string name="anim_courtbow"> | ||
214 | 알현 | ||
215 | </string> | ||
216 | <string name="anim_express_cry"> | ||
217 | 울기 | ||
218 | </string> | ||
219 | <string name="anim_dance1"> | ||
220 | 댄스 1 | ||
221 | </string> | ||
222 | <string name="anim_dance2"> | ||
223 | 댄스 2 | ||
224 | </string> | ||
225 | <string name="anim_dance3"> | ||
226 | 댄스 3 | ||
227 | </string> | ||
228 | <string name="anim_dance4"> | ||
229 | 댄스 4 | ||
230 | </string> | ||
231 | <string name="anim_dance5"> | ||
232 | 댄스 5 | ||
233 | </string> | ||
234 | <string name="anim_dance6"> | ||
235 | 댄스 6 | ||
236 | </string> | ||
237 | <string name="anim_dance7"> | ||
238 | 댄스 7 | ||
239 | </string> | ||
240 | <string name="anim_dance8"> | ||
241 | 댄스 8 | ||
242 | </string> | ||
243 | <string name="anim_express_disdain"> | ||
244 | 경멸 | ||
245 | </string> | ||
246 | <string name="anim_drink"> | ||
247 | 술 취함 | ||
248 | </string> | ||
249 | <string name="anim_express_embarrased"> | ||
250 | 당황함 | ||
251 | </string> | ||
252 | <string name="anim_angry_fingerwag"> | ||
253 | 손가락 흔들기 | ||
254 | </string> | ||
255 | <string name="anim_fist_pump"> | ||
256 | 주먹 휘두르기 | ||
257 | </string> | ||
258 | <string name="anim_yoga_float"> | ||
259 | 공중부양 | ||
260 | </string> | ||
261 | <string name="anim_express_frown"> | ||
262 | 표정 찡그림 | ||
263 | </string> | ||
264 | <string name="anim_impatient"> | ||
265 | 조급함 | ||
266 | </string> | ||
267 | <string name="anim_jumpforjoy"> | ||
268 | 기쁨에 펄쩍 뜀 | ||
269 | </string> | ||
270 | <string name="anim_kissmybutt"> | ||
271 | 내 엉덩이에 키스 | ||
272 | </string> | ||
273 | <string name="anim_express_kiss"> | ||
274 | 키스 | ||
275 | </string> | ||
276 | <string name="anim_laugh_short"> | ||
277 | 웃음 | ||
278 | </string> | ||
279 | <string name="anim_musclebeach"> | ||
280 | 근육 비치 | ||
281 | </string> | ||
282 | <string name="anim_no_unhappy"> | ||
283 | 강한 부정 | ||
284 | </string> | ||
285 | <string name="anim_no_head"> | ||
286 | 부정 | ||
287 | </string> | ||
288 | <string name="anim_nyanya"> | ||
289 | 냐-냐-냐 | ||
290 | </string> | ||
291 | <string name="anim_punch_onetwo"> | ||
292 | 원투 펀치 | ||
293 | </string> | ||
294 | <string name="anim_express_open_mouth"> | ||
295 | 입을 크게 벌린 모습 | ||
296 | </string> | ||
297 | <string name="anim_peace"> | ||
298 | 평화 | ||
299 | </string> | ||
300 | <string name="anim_point_you"> | ||
301 | 다른 사람을 가리킴 | ||
302 | </string> | ||
303 | <string name="anim_point_me"> | ||
304 | 자신을 가리킴 | ||
305 | </string> | ||
306 | <string name="anim_punch_l"> | ||
307 | 좌측 펀치 | ||
308 | </string> | ||
309 | <string name="anim_punch_r"> | ||
310 | 우측 펀치 | ||
311 | </string> | ||
312 | <string name="anim_rps_countdown"> | ||
313 | 가위-바위-보 | ||
314 | </string> | ||
315 | <string name="anim_rps_paper"> | ||
316 | 가위-바위-보에 보자기 | ||
317 | </string> | ||
318 | <string name="anim_rps_rock"> | ||
319 | 가위-바위-보에 바위 | ||
320 | </string> | ||
321 | <string name="anim_rps_scissors"> | ||
322 | 가위-바위-보에 가위 | ||
323 | </string> | ||
324 | <string name="anim_express_repulsed"> | ||
325 | 거절됨 | ||
326 | </string> | ||
327 | <string name="anim_kick_roundhouse_r"> | ||
328 | 발차기 | ||
329 | </string> | ||
330 | <string name="anim_express_sad"> | ||
331 | 슬픔 | ||
332 | </string> | ||
333 | <string name="anim_salute"> | ||
334 | 경례 | ||
335 | </string> | ||
336 | <string name="anim_shout"> | ||
337 | 외치기 | ||
338 | </string> | ||
339 | <string name="anim_express_shrug"> | ||
340 | 어깨 으쓱하기 | ||
341 | </string> | ||
342 | <string name="anim_express_smile"> | ||
343 | 미소 | ||
344 | </string> | ||
345 | <string name="anim_smoke_idle"> | ||
346 | 담배를 쥐고 있는 모습 | ||
347 | </string> | ||
348 | <string name="anim_smoke_inhale"> | ||
349 | 담배를 빨아들이는 모습 | ||
350 | </string> | ||
351 | <string name="anim_smoke_throw_down"> | ||
352 | 담배 던지기 | ||
353 | </string> | ||
354 | <string name="anim_express_surprise"> | ||
355 | 놀람 | ||
356 | </string> | ||
357 | <string name="anim_sword_strike_r"> | ||
358 | 검 베기 | ||
359 | </string> | ||
360 | <string name="anim_angry_tantrum"> | ||
361 | 짜증 | ||
362 | </string> | ||
363 | <string name="anim_express_tongue_out"> | ||
364 | 메롱 | ||
365 | </string> | ||
366 | <string name="anim_hello"> | ||
367 | 손 흔들기 | ||
368 | </string> | ||
369 | <string name="anim_whisper"> | ||
370 | 속삭임 | ||
371 | </string> | ||
372 | <string name="anim_whistle"> | ||
373 | 휘파람 | ||
374 | </string> | ||
375 | <string name="anim_express_wink"> | ||
376 | 윙크 | ||
377 | </string> | ||
378 | <string name="anim_wink_hollywood"> | ||
379 | 윙크(할리우드) | ||
380 | </string> | ||
381 | <string name="anim_express_worry"> | ||
382 | 걱정 | ||
383 | </string> | ||
384 | <string name="anim_yes_happy"> | ||
385 | 강항 동의 | ||
386 | </string> | ||
387 | <string name="anim_yes_head"> | ||
388 | 동의 | ||
389 | </string> | ||
390 | </strings> | ||
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py index 9751936..1286c68 100755 --- a/linden/indra/newview/viewer_manifest.py +++ b/linden/indra/newview/viewer_manifest.py | |||
@@ -508,6 +508,7 @@ class Linux_i686Manifest(LinuxManifest): | |||
508 | self.path("libdb-4.2.so") | 508 | self.path("libdb-4.2.so") |
509 | self.path("libcrypto.so.0.9.7") | 509 | self.path("libcrypto.so.0.9.7") |
510 | self.path("libssl.so.0.9.7") | 510 | self.path("libssl.so.0.9.7") |
511 | self.path("libexpat.so.1") | ||
511 | # self.path("libstdc++.so.6") | 512 | # self.path("libstdc++.so.6") |
512 | self.path("libuuid.so", "libuuid.so.1") | 513 | self.path("libuuid.so", "libuuid.so.1") |
513 | self.path("libSDL-1.2.so.0") | 514 | self.path("libSDL-1.2.so.0") |