diff options
Diffstat (limited to '')
163 files changed, 6304 insertions, 11929 deletions
diff --git a/linden/indra/llaudio/listener.cpp b/linden/indra/llaudio/listener.cpp index 849b143..ff3cfff 100644 --- a/linden/indra/llaudio/listener.cpp +++ b/linden/indra/llaudio/listener.cpp | |||
@@ -59,11 +59,6 @@ void LLListener::init(void) | |||
59 | } | 59 | } |
60 | 60 | ||
61 | //----------------------------------------------------------------------- | 61 | //----------------------------------------------------------------------- |
62 | void LLListener::free(void) | ||
63 | { | ||
64 | } | ||
65 | |||
66 | //----------------------------------------------------------------------- | ||
67 | void LLListener::translate(LLVector3 offset) | 62 | void LLListener::translate(LLVector3 offset) |
68 | { | 63 | { |
69 | mPosition += offset; | 64 | mPosition += offset; |
diff --git a/linden/indra/llaudio/listener.h b/linden/indra/llaudio/listener.h index 07664f7..595373d 100644 --- a/linden/indra/llaudio/listener.h +++ b/linden/indra/llaudio/listener.h | |||
@@ -51,7 +51,6 @@ class LLListener | |||
51 | LLListener(); | 51 | LLListener(); |
52 | virtual ~LLListener(); | 52 | virtual ~LLListener(); |
53 | virtual void init(); | 53 | virtual void init(); |
54 | virtual void free(); | ||
55 | 54 | ||
56 | virtual void set(LLVector3 pos, LLVector3 vel, LLVector3 up, LLVector3 at); | 55 | virtual void set(LLVector3 pos, LLVector3 vel, LLVector3 up, LLVector3 at); |
57 | 56 | ||
diff --git a/linden/indra/llcommon/linden_common.h b/linden/indra/llcommon/linden_common.h index 7d3c82d..827ec8f 100644 --- a/linden/indra/llcommon/linden_common.h +++ b/linden/indra/llcommon/linden_common.h | |||
@@ -32,6 +32,12 @@ | |||
32 | #ifndef LL_LINDEN_COMMON_H | 32 | #ifndef LL_LINDEN_COMMON_H |
33 | #define LL_LINDEN_COMMON_H | 33 | #define LL_LINDEN_COMMON_H |
34 | 34 | ||
35 | #if defined(LL_WINDOWS) && defined(_DEBUG) | ||
36 | # define _CRTDBG_MAP_ALLOC | ||
37 | # include <stdlib.h> | ||
38 | # include <crtdbg.h> | ||
39 | #endif | ||
40 | |||
35 | #include "llpreprocessor.h" | 41 | #include "llpreprocessor.h" |
36 | 42 | ||
37 | #include <cstring> | 43 | #include <cstring> |
diff --git a/linden/indra/llcommon/lldqueueptr.h b/linden/indra/llcommon/lldqueueptr.h index 248357e..07addb5 100644 --- a/linden/indra/llcommon/lldqueueptr.h +++ b/linden/indra/llcommon/lldqueueptr.h | |||
@@ -47,7 +47,7 @@ public: | |||
47 | void init(); | 47 | void init(); |
48 | void destroy(); | 48 | void destroy(); |
49 | void reset(); | 49 | void reset(); |
50 | void realloc(U32 newsize); | 50 | void reallocate(U32 newsize); |
51 | 51 | ||
52 | // ACCESSORS | 52 | // ACCESSORS |
53 | const Type& get(const S32 index) const; // no bounds checking | 53 | const Type& get(const S32 index) const; // no bounds checking |
@@ -115,7 +115,7 @@ template <class Type> | |||
115 | inline LLDynamicQueuePtr<Type>::LLDynamicQueuePtr(const S32 size) | 115 | inline LLDynamicQueuePtr<Type>::LLDynamicQueuePtr(const S32 size) |
116 | { | 116 | { |
117 | init(); | 117 | init(); |
118 | realloc(size); | 118 | reallocate(size); |
119 | } | 119 | } |
120 | 120 | ||
121 | template <class Type> | 121 | template <class Type> |
@@ -134,7 +134,7 @@ inline void LLDynamicQueuePtr<Type>::init() | |||
134 | } | 134 | } |
135 | 135 | ||
136 | template <class Type> | 136 | template <class Type> |
137 | inline void LLDynamicQueuePtr<Type>::realloc(U32 newsize) | 137 | inline void LLDynamicQueuePtr<Type>::reallocate(U32 newsize) |
138 | { | 138 | { |
139 | if (newsize) | 139 | if (newsize) |
140 | { | 140 | { |
@@ -308,7 +308,7 @@ inline S32 LLDynamicQueuePtr<Type>::push(const Type &obj) | |||
308 | { | 308 | { |
309 | if (mMaxObj - count() <= 1) | 309 | if (mMaxObj - count() <= 1) |
310 | { | 310 | { |
311 | realloc(mMaxObj * 2); | 311 | reallocate(mMaxObj * 2); |
312 | } | 312 | } |
313 | 313 | ||
314 | mMemory[mLastObj++] = obj; | 314 | mMemory[mLastObj++] = obj; |
diff --git a/linden/indra/llcommon/llversionviewer.h b/linden/indra/llcommon/llversionviewer.h index cd7b304..f357b76 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 = 21; | 36 | const S32 LL_VERSION_MINOR = 21; |
37 | const S32 LL_VERSION_PATCH = 1; | 37 | const S32 LL_VERSION_PATCH = 2; |
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/llmessage/llpacketbuffer.cpp b/linden/indra/llmessage/llpacketbuffer.cpp index 129965e..649cdb6 100644 --- a/linden/indra/llmessage/llpacketbuffer.cpp +++ b/linden/indra/llmessage/llpacketbuffer.cpp | |||
@@ -65,7 +65,6 @@ LLPacketBuffer::LLPacketBuffer (S32 hSocket) | |||
65 | 65 | ||
66 | LLPacketBuffer::~LLPacketBuffer () | 66 | LLPacketBuffer::~LLPacketBuffer () |
67 | { | 67 | { |
68 | free(); | ||
69 | } | 68 | } |
70 | 69 | ||
71 | /////////////////////////////////////////////////////////// | 70 | /////////////////////////////////////////////////////////// |
@@ -76,25 +75,3 @@ void LLPacketBuffer::init (S32 hSocket) | |||
76 | mHost = ::get_sender(); | 75 | mHost = ::get_sender(); |
77 | } | 76 | } |
78 | 77 | ||
79 | /////////////////////////////////////////////////////////// | ||
80 | |||
81 | void LLPacketBuffer::free () | ||
82 | { | ||
83 | } | ||
84 | |||
85 | |||
86 | |||
87 | |||
88 | |||
89 | |||
90 | |||
91 | |||
92 | |||
93 | |||
94 | |||
95 | |||
96 | |||
97 | |||
98 | |||
99 | |||
100 | |||
diff --git a/linden/indra/llmessage/llpacketbuffer.h b/linden/indra/llmessage/llpacketbuffer.h index f1c343b..fc6f606 100644 --- a/linden/indra/llmessage/llpacketbuffer.h +++ b/linden/indra/llmessage/llpacketbuffer.h | |||
@@ -47,7 +47,6 @@ public: | |||
47 | const char *getData() const { return mData; } | 47 | const char *getData() const { return mData; } |
48 | LLHost getHost() const { return mHost; } | 48 | LLHost getHost() const { return mHost; } |
49 | void init(S32 hSocket); | 49 | void init(S32 hSocket); |
50 | void free(); | ||
51 | 50 | ||
52 | protected: | 51 | protected: |
53 | char mData[NET_BUFFER_SIZE]; // packet data /* Flawfinder : ignore */ | 52 | char mData[NET_BUFFER_SIZE]; // packet data /* Flawfinder : ignore */ |
diff --git a/linden/indra/llmessage/llpacketring.cpp b/linden/indra/llmessage/llpacketring.cpp index 12d4e11..2d517af 100644 --- a/linden/indra/llmessage/llpacketring.cpp +++ b/linden/indra/llmessage/llpacketring.cpp | |||
@@ -59,11 +59,11 @@ LLPacketRing::LLPacketRing () : | |||
59 | /////////////////////////////////////////////////////////// | 59 | /////////////////////////////////////////////////////////// |
60 | LLPacketRing::~LLPacketRing () | 60 | LLPacketRing::~LLPacketRing () |
61 | { | 61 | { |
62 | free(); | 62 | cleanup(); |
63 | } | 63 | } |
64 | 64 | ||
65 | /////////////////////////////////////////////////////////// | 65 | /////////////////////////////////////////////////////////// |
66 | void LLPacketRing::free () | 66 | void LLPacketRing::cleanup () |
67 | { | 67 | { |
68 | LLPacketBuffer *packetp; | 68 | LLPacketBuffer *packetp; |
69 | 69 | ||
diff --git a/linden/indra/llmessage/llpacketring.h b/linden/indra/llmessage/llpacketring.h index dac52e6..8d3bf8d 100644 --- a/linden/indra/llmessage/llpacketring.h +++ b/linden/indra/llmessage/llpacketring.h | |||
@@ -47,7 +47,7 @@ public: | |||
47 | LLPacketRing(); | 47 | LLPacketRing(); |
48 | ~LLPacketRing(); | 48 | ~LLPacketRing(); |
49 | 49 | ||
50 | void free(); | 50 | void cleanup(); |
51 | 51 | ||
52 | void dropPackets(U32); | 52 | void dropPackets(U32); |
53 | void setDropPercentage (F32 percent_to_drop); | 53 | void setDropPercentage (F32 percent_to_drop); |
diff --git a/linden/indra/llmessage/llxfer.cpp b/linden/indra/llmessage/llxfer.cpp index ab7b1ee..03bc42c 100644 --- a/linden/indra/llmessage/llxfer.cpp +++ b/linden/indra/llmessage/llxfer.cpp | |||
@@ -55,7 +55,7 @@ LLXfer::LLXfer (S32 chunk_size) | |||
55 | 55 | ||
56 | LLXfer::~LLXfer () | 56 | LLXfer::~LLXfer () |
57 | { | 57 | { |
58 | free(); | 58 | cleanup(); |
59 | } | 59 | } |
60 | 60 | ||
61 | /////////////////////////////////////////////////////////// | 61 | /////////////////////////////////////////////////////////// |
@@ -90,7 +90,7 @@ void LLXfer::init (S32 chunk_size) | |||
90 | 90 | ||
91 | /////////////////////////////////////////////////////////// | 91 | /////////////////////////////////////////////////////////// |
92 | 92 | ||
93 | void LLXfer::free () | 93 | void LLXfer::cleanup () |
94 | { | 94 | { |
95 | if (mBuffer) | 95 | if (mBuffer) |
96 | { | 96 | { |
diff --git a/linden/indra/llmessage/llxfer.h b/linden/indra/llmessage/llxfer.h index 259f1ac..bd82300 100644 --- a/linden/indra/llmessage/llxfer.h +++ b/linden/indra/llmessage/llxfer.h | |||
@@ -88,7 +88,7 @@ class LLXfer | |||
88 | virtual ~LLXfer(); | 88 | virtual ~LLXfer(); |
89 | 89 | ||
90 | void init(S32 chunk_size); | 90 | void init(S32 chunk_size); |
91 | virtual void free(); | 91 | virtual void cleanup(); |
92 | 92 | ||
93 | virtual S32 startSend (U64 xfer_id, const LLHost &remote_host); | 93 | virtual S32 startSend (U64 xfer_id, const LLHost &remote_host); |
94 | virtual void sendPacket(S32 packet_num); | 94 | virtual void sendPacket(S32 packet_num); |
diff --git a/linden/indra/llmessage/llxfer_file.cpp b/linden/indra/llmessage/llxfer_file.cpp index da12d54..c56ea98 100644 --- a/linden/indra/llmessage/llxfer_file.cpp +++ b/linden/indra/llmessage/llxfer_file.cpp | |||
@@ -67,7 +67,7 @@ LLXfer_File::LLXfer_File (const std::string& local_filename, BOOL delete_local_o | |||
67 | 67 | ||
68 | LLXfer_File::~LLXfer_File () | 68 | LLXfer_File::~LLXfer_File () |
69 | { | 69 | { |
70 | free(); | 70 | cleanup(); |
71 | } | 71 | } |
72 | 72 | ||
73 | /////////////////////////////////////////////////////////// | 73 | /////////////////////////////////////////////////////////// |
@@ -95,7 +95,7 @@ void LLXfer_File::init (const std::string& local_filename, BOOL delete_local_on_ | |||
95 | 95 | ||
96 | /////////////////////////////////////////////////////////// | 96 | /////////////////////////////////////////////////////////// |
97 | 97 | ||
98 | void LLXfer_File::free () | 98 | void LLXfer_File::cleanup () |
99 | { | 99 | { |
100 | if (mFp) | 100 | if (mFp) |
101 | { | 101 | { |
@@ -115,7 +115,7 @@ void LLXfer_File::free () | |||
115 | lldebugs << "Keeping local file: " << mLocalFilename << llendl; | 115 | lldebugs << "Keeping local file: " << mLocalFilename << llendl; |
116 | } | 116 | } |
117 | 117 | ||
118 | LLXfer::free(); | 118 | LLXfer::cleanup(); |
119 | } | 119 | } |
120 | 120 | ||
121 | /////////////////////////////////////////////////////////// | 121 | /////////////////////////////////////////////////////////// |
diff --git a/linden/indra/llmessage/llxfer_file.h b/linden/indra/llmessage/llxfer_file.h index 78f77a8..09b3228 100644 --- a/linden/indra/llmessage/llxfer_file.h +++ b/linden/indra/llmessage/llxfer_file.h | |||
@@ -53,7 +53,7 @@ class LLXfer_File : public LLXfer | |||
53 | virtual ~LLXfer_File(); | 53 | virtual ~LLXfer_File(); |
54 | 54 | ||
55 | virtual void init(const std::string& local_filename, BOOL delete_local_on_completion, S32 chunk_size); | 55 | virtual void init(const std::string& local_filename, BOOL delete_local_on_completion, S32 chunk_size); |
56 | virtual void free(); | 56 | virtual void cleanup(); |
57 | 57 | ||
58 | virtual S32 initializeRequest(U64 xfer_id, | 58 | virtual S32 initializeRequest(U64 xfer_id, |
59 | const std::string& local_filename, | 59 | const std::string& local_filename, |
diff --git a/linden/indra/llmessage/llxfer_mem.cpp b/linden/indra/llmessage/llxfer_mem.cpp index 3404520..0b8c5b1 100644 --- a/linden/indra/llmessage/llxfer_mem.cpp +++ b/linden/indra/llmessage/llxfer_mem.cpp | |||
@@ -48,7 +48,7 @@ LLXfer_Mem::LLXfer_Mem () | |||
48 | 48 | ||
49 | LLXfer_Mem::~LLXfer_Mem () | 49 | LLXfer_Mem::~LLXfer_Mem () |
50 | { | 50 | { |
51 | free(); | 51 | cleanup(); |
52 | } | 52 | } |
53 | 53 | ||
54 | /////////////////////////////////////////////////////////// | 54 | /////////////////////////////////////////////////////////// |
@@ -62,9 +62,9 @@ void LLXfer_Mem::init () | |||
62 | 62 | ||
63 | /////////////////////////////////////////////////////////// | 63 | /////////////////////////////////////////////////////////// |
64 | 64 | ||
65 | void LLXfer_Mem::free () | 65 | void LLXfer_Mem::cleanup () |
66 | { | 66 | { |
67 | LLXfer::free(); | 67 | LLXfer::cleanup(); |
68 | } | 68 | } |
69 | 69 | ||
70 | /////////////////////////////////////////////////////////// | 70 | /////////////////////////////////////////////////////////// |
diff --git a/linden/indra/llmessage/llxfer_mem.h b/linden/indra/llmessage/llxfer_mem.h index 0e67a06..cb2dd88 100644 --- a/linden/indra/llmessage/llxfer_mem.h +++ b/linden/indra/llmessage/llxfer_mem.h | |||
@@ -55,7 +55,7 @@ class LLXfer_Mem : public LLXfer | |||
55 | virtual ~LLXfer_Mem(); | 55 | virtual ~LLXfer_Mem(); |
56 | 56 | ||
57 | virtual void init(); | 57 | virtual void init(); |
58 | virtual void free(); | 58 | virtual void cleanup(); |
59 | 59 | ||
60 | virtual S32 startSend (U64 xfer_id, const LLHost &remote_host); | 60 | virtual S32 startSend (U64 xfer_id, const LLHost &remote_host); |
61 | virtual U64 registerXfer(U64 xfer_id, const void *datap, const S32 length); | 61 | virtual U64 registerXfer(U64 xfer_id, const void *datap, const S32 length); |
diff --git a/linden/indra/llmessage/llxfer_vfile.cpp b/linden/indra/llmessage/llxfer_vfile.cpp index aede763..a92c434 100644 --- a/linden/indra/llmessage/llxfer_vfile.cpp +++ b/linden/indra/llmessage/llxfer_vfile.cpp | |||
@@ -60,7 +60,7 @@ LLXfer_VFile::LLXfer_VFile (LLVFS *vfs, const LLUUID &local_id, LLAssetType::ETy | |||
60 | 60 | ||
61 | LLXfer_VFile::~LLXfer_VFile () | 61 | LLXfer_VFile::~LLXfer_VFile () |
62 | { | 62 | { |
63 | free(); | 63 | cleanup(); |
64 | } | 64 | } |
65 | 65 | ||
66 | /////////////////////////////////////////////////////////// | 66 | /////////////////////////////////////////////////////////// |
@@ -82,7 +82,7 @@ void LLXfer_VFile::init (LLVFS *vfs, const LLUUID &local_id, LLAssetType::EType | |||
82 | 82 | ||
83 | /////////////////////////////////////////////////////////// | 83 | /////////////////////////////////////////////////////////// |
84 | 84 | ||
85 | void LLXfer_VFile::free () | 85 | void LLXfer_VFile::cleanup () |
86 | { | 86 | { |
87 | LLVFile file(mVFS, mTempID, mType, LLVFile::WRITE); | 87 | LLVFile file(mVFS, mTempID, mType, LLVFile::WRITE); |
88 | file.remove(); | 88 | file.remove(); |
@@ -90,7 +90,7 @@ void LLXfer_VFile::free () | |||
90 | delete mVFile; | 90 | delete mVFile; |
91 | mVFile = NULL; | 91 | mVFile = NULL; |
92 | 92 | ||
93 | LLXfer::free(); | 93 | LLXfer::cleanup(); |
94 | } | 94 | } |
95 | 95 | ||
96 | /////////////////////////////////////////////////////////// | 96 | /////////////////////////////////////////////////////////// |
diff --git a/linden/indra/llmessage/llxfer_vfile.h b/linden/indra/llmessage/llxfer_vfile.h index 12d38ba..e7e1981 100644 --- a/linden/indra/llmessage/llxfer_vfile.h +++ b/linden/indra/llmessage/llxfer_vfile.h | |||
@@ -58,7 +58,7 @@ class LLXfer_VFile : public LLXfer | |||
58 | virtual ~LLXfer_VFile(); | 58 | virtual ~LLXfer_VFile(); |
59 | 59 | ||
60 | virtual void init(LLVFS *vfs, const LLUUID &local_id, LLAssetType::EType type); | 60 | virtual void init(LLVFS *vfs, const LLUUID &local_id, LLAssetType::EType type); |
61 | virtual void free(); | 61 | virtual void cleanup(); |
62 | 62 | ||
63 | virtual S32 initializeRequest(U64 xfer_id, | 63 | virtual S32 initializeRequest(U64 xfer_id, |
64 | LLVFS *vfs, | 64 | LLVFS *vfs, |
diff --git a/linden/indra/llmessage/llxfermanager.cpp b/linden/indra/llmessage/llxfermanager.cpp index 90188b6..f40612c 100644 --- a/linden/indra/llmessage/llxfermanager.cpp +++ b/linden/indra/llmessage/llxfermanager.cpp | |||
@@ -64,7 +64,7 @@ LLXferManager::LLXferManager (LLVFS *vfs) | |||
64 | 64 | ||
65 | LLXferManager::~LLXferManager () | 65 | LLXferManager::~LLXferManager () |
66 | { | 66 | { |
67 | free(); | 67 | cleanup(); |
68 | } | 68 | } |
69 | 69 | ||
70 | /////////////////////////////////////////////////////////// | 70 | /////////////////////////////////////////////////////////// |
@@ -86,7 +86,7 @@ void LLXferManager::init (LLVFS *vfs) | |||
86 | 86 | ||
87 | /////////////////////////////////////////////////////////// | 87 | /////////////////////////////////////////////////////////// |
88 | 88 | ||
89 | void LLXferManager::free () | 89 | void LLXferManager::cleanup () |
90 | { | 90 | { |
91 | LLXfer *xferp; | 91 | LLXfer *xferp; |
92 | LLXfer *delp; | 92 | LLXfer *delp; |
diff --git a/linden/indra/llmessage/llxfermanager.h b/linden/indra/llmessage/llxfermanager.h index 12b3ec0..77f3f60 100644 --- a/linden/indra/llmessage/llxfermanager.h +++ b/linden/indra/llmessage/llxfermanager.h | |||
@@ -114,7 +114,7 @@ class LLXferManager | |||
114 | virtual ~LLXferManager(); | 114 | virtual ~LLXferManager(); |
115 | 115 | ||
116 | virtual void init(LLVFS *vfs); | 116 | virtual void init(LLVFS *vfs); |
117 | virtual void free(); | 117 | virtual void cleanup(); |
118 | 118 | ||
119 | void setUseAckThrottling(const BOOL use); | 119 | void setUseAckThrottling(const BOOL use); |
120 | void setAckThrottleBPS(const F32 bps); | 120 | void setAckThrottleBPS(const F32 bps); |
diff --git a/linden/indra/llrender/llrender.cpp b/linden/indra/llrender/llrender.cpp index 13edf8a..7be06af 100644 --- a/linden/indra/llrender/llrender.cpp +++ b/linden/indra/llrender/llrender.cpp | |||
@@ -439,10 +439,16 @@ LLRender::LLRender() | |||
439 | 439 | ||
440 | LLRender::~LLRender() | 440 | LLRender::~LLRender() |
441 | { | 441 | { |
442 | shutdown(); | ||
443 | } | ||
444 | |||
445 | void LLRender::shutdown() | ||
446 | { | ||
442 | for (U32 i = 0; i < mTexUnits.size(); i++) | 447 | for (U32 i = 0; i < mTexUnits.size(); i++) |
443 | { | 448 | { |
444 | delete mTexUnits[i]; | 449 | delete mTexUnits[i]; |
445 | } | 450 | } |
451 | mTexUnits.clear(); | ||
446 | } | 452 | } |
447 | 453 | ||
448 | void LLRender::translatef(const GLfloat& x, const GLfloat& y, const GLfloat& z) | 454 | void LLRender::translatef(const GLfloat& x, const GLfloat& y, const GLfloat& z) |
diff --git a/linden/indra/llrender/llrender.h b/linden/indra/llrender/llrender.h index edf46ff..15360a3 100644 --- a/linden/indra/llrender/llrender.h +++ b/linden/indra/llrender/llrender.h | |||
@@ -176,7 +176,8 @@ public: | |||
176 | 176 | ||
177 | LLRender(); | 177 | LLRender(); |
178 | ~LLRender(); | 178 | ~LLRender(); |
179 | 179 | void shutdown(); | |
180 | |||
180 | void translatef(const GLfloat& x, const GLfloat& y, const GLfloat& z); | 181 | void translatef(const GLfloat& x, const GLfloat& y, const GLfloat& z); |
181 | void scalef(const GLfloat& x, const GLfloat& y, const GLfloat& z); | 182 | void scalef(const GLfloat& x, const GLfloat& y, const GLfloat& z); |
182 | void pushMatrix(); | 183 | void pushMatrix(); |
diff --git a/linden/indra/llui/llui.cpp b/linden/indra/llui/llui.cpp index 1fc9244..734aecf 100644 --- a/linden/indra/llui/llui.cpp +++ b/linden/indra/llui/llui.cpp | |||
@@ -134,7 +134,7 @@ void gl_state_for_2d(S32 width, S32 height) | |||
134 | 134 | ||
135 | glMatrixMode(GL_PROJECTION); | 135 | glMatrixMode(GL_PROJECTION); |
136 | glLoadIdentity(); | 136 | glLoadIdentity(); |
137 | glOrtho(0.0f, window_width, 0.0f, window_height, -1.0f, 1.0f); | 137 | glOrtho(0.0f, llmax(window_width, 1.f), 0.0f, llmax(window_height,1.f), -1.0f, 1.0f); |
138 | glMatrixMode(GL_MODELVIEW); | 138 | glMatrixMode(GL_MODELVIEW); |
139 | glLoadIdentity(); | 139 | glLoadIdentity(); |
140 | stop_glerror(); | 140 | stop_glerror(); |
diff --git a/linden/indra/llvfs/lldir.cpp b/linden/indra/llvfs/lldir.cpp index 6d6b7aa..0e014d9 100644 --- a/linden/indra/llvfs/lldir.cpp +++ b/linden/indra/llvfs/lldir.cpp | |||
@@ -377,7 +377,8 @@ std::string LLDir::getExpandedFilename(ELLPath location, const std::string& subd | |||
377 | 377 | ||
378 | case LL_PATH_EXECUTABLE: | 378 | case LL_PATH_EXECUTABLE: |
379 | prefix = getExecutableDir(); | 379 | prefix = getExecutableDir(); |
380 | 380 | break; | |
381 | |||
381 | default: | 382 | default: |
382 | llassert(0); | 383 | llassert(0); |
383 | } | 384 | } |
diff --git a/linden/indra/lscript/lscript_compile/indra.l b/linden/indra/lscript/lscript_compile/indra.l index 4cfe199..3e62195 100644 --- a/linden/indra/lscript/lscript_compile/indra.l +++ b/linden/indra/lscript/lscript_compile/indra.l | |||
@@ -611,6 +611,11 @@ extern "C" { int yyerror(const char *fmt, ...); } | |||
611 | "TEXTURE_PLYWOOD" { yylval.sval = new char[UUID_STR_LENGTH]; strcpy(yylval.sval, "89556747-24cb-43ed-920b-47caed15465f"); return(STRING_CONSTANT); } | 611 | "TEXTURE_PLYWOOD" { yylval.sval = new char[UUID_STR_LENGTH]; strcpy(yylval.sval, "89556747-24cb-43ed-920b-47caed15465f"); return(STRING_CONSTANT); } |
612 | "TEXTURE_TRANSPARENT" { yylval.sval = new char[UUID_STR_LENGTH]; strcpy(yylval.sval, "8dcd4a48-2d37-4909-9f78-f7a9eb4ef903"); return(STRING_CONSTANT); } | 612 | "TEXTURE_TRANSPARENT" { yylval.sval = new char[UUID_STR_LENGTH]; strcpy(yylval.sval, "8dcd4a48-2d37-4909-9f78-f7a9eb4ef903"); return(STRING_CONSTANT); } |
613 | 613 | ||
614 | "TOUCH_INVALID_FACE" { count(); yylval.ival = -1; return(INTEGER_CONSTANT); } | ||
615 | "TOUCH_INVALID_VECTOR" { count(); return(TOUCH_INVALID_VECTOR); } | ||
616 | "TOUCH_INVALID_TEXCOORD" { count(); return(TOUCH_INVALID_TEXCOORD); } | ||
617 | |||
618 | |||
614 | {L}({L}|{N})* { count(); yylval.sval = new char[strlen(yytext) + 1]; strcpy(yylval.sval, yytext); return(IDENTIFIER); } | 619 | {L}({L}|{N})* { count(); yylval.sval = new char[strlen(yytext) + 1]; strcpy(yylval.sval, yytext); return(IDENTIFIER); } |
615 | 620 | ||
616 | {N}+{E} { count(); yylval.fval = (F32)atof(yytext); return(FP_CONSTANT); } | 621 | {N}+{E} { count(); yylval.fval = (F32)atof(yytext); return(FP_CONSTANT); } |
diff --git a/linden/indra/lscript/lscript_compile/indra.y b/linden/indra/lscript/lscript_compile/indra.y index d10cbfe..fdc240c 100644 --- a/linden/indra/lscript/lscript_compile/indra.y +++ b/linden/indra/lscript/lscript_compile/indra.y | |||
@@ -136,6 +136,9 @@ | |||
136 | %token ZERO_VECTOR | 136 | %token ZERO_VECTOR |
137 | %token ZERO_ROTATION | 137 | %token ZERO_ROTATION |
138 | 138 | ||
139 | %token TOUCH_INVALID_VECTOR | ||
140 | %token TOUCH_INVALID_TEXCOORD | ||
141 | |||
139 | %nonassoc LOWER_THAN_ELSE | 142 | %nonassoc LOWER_THAN_ELSE |
140 | %nonassoc ELSE | 143 | %nonassoc ELSE |
141 | 144 | ||
@@ -439,6 +442,40 @@ vector_constant | |||
439 | $$ = new LLScriptSAVector(gLine, gColumn, sa0, sa1, sa2); | 442 | $$ = new LLScriptSAVector(gLine, gColumn, sa0, sa1, sa2); |
440 | gAllocationManager->addAllocation($$); | 443 | gAllocationManager->addAllocation($$); |
441 | } | 444 | } |
445 | | TOUCH_INVALID_VECTOR | ||
446 | { | ||
447 | LLScriptConstantFloat *cf0 = new LLScriptConstantFloat(gLine, gColumn, 0.f); | ||
448 | gAllocationManager->addAllocation(cf0); | ||
449 | LLScriptSAConstant *sa0 = new LLScriptSAConstant(gLine, gColumn, cf0); | ||
450 | gAllocationManager->addAllocation(sa0); | ||
451 | LLScriptConstantFloat *cf1 = new LLScriptConstantFloat(gLine, gColumn, 0.f); | ||
452 | gAllocationManager->addAllocation(cf1); | ||
453 | LLScriptSAConstant *sa1 = new LLScriptSAConstant(gLine, gColumn, cf1); | ||
454 | gAllocationManager->addAllocation(sa1); | ||
455 | LLScriptConstantFloat *cf2 = new LLScriptConstantFloat(gLine, gColumn, 0.f); | ||
456 | gAllocationManager->addAllocation(cf2); | ||
457 | LLScriptSAConstant *sa2 = new LLScriptSAConstant(gLine, gColumn, cf2); | ||
458 | gAllocationManager->addAllocation(sa2); | ||
459 | $$ = new LLScriptSAVector(gLine, gColumn, sa0, sa1, sa2); | ||
460 | gAllocationManager->addAllocation($$); | ||
461 | } | ||
462 | | TOUCH_INVALID_TEXCOORD | ||
463 | { | ||
464 | LLScriptConstantFloat *cf0 = new LLScriptConstantFloat(gLine, gColumn, -1.f); | ||
465 | gAllocationManager->addAllocation(cf0); | ||
466 | LLScriptSAConstant *sa0 = new LLScriptSAConstant(gLine, gColumn, cf0); | ||
467 | gAllocationManager->addAllocation(sa0); | ||
468 | LLScriptConstantFloat *cf1 = new LLScriptConstantFloat(gLine, gColumn, -1.f); | ||
469 | gAllocationManager->addAllocation(cf1); | ||
470 | LLScriptSAConstant *sa1 = new LLScriptSAConstant(gLine, gColumn, cf1); | ||
471 | gAllocationManager->addAllocation(sa1); | ||
472 | LLScriptConstantFloat *cf2 = new LLScriptConstantFloat(gLine, gColumn, 0.f); | ||
473 | gAllocationManager->addAllocation(cf2); | ||
474 | LLScriptSAConstant *sa2 = new LLScriptSAConstant(gLine, gColumn, cf2); | ||
475 | gAllocationManager->addAllocation(sa2); | ||
476 | $$ = new LLScriptSAVector(gLine, gColumn, sa0, sa1, sa2); | ||
477 | gAllocationManager->addAllocation($$); | ||
478 | } | ||
442 | ; | 479 | ; |
443 | 480 | ||
444 | quaternion_constant | 481 | quaternion_constant |
@@ -1645,6 +1682,40 @@ vector_initializer | |||
1645 | $$ = new LLScriptVectorInitializer(gLine, gColumn, sa0, sa1, sa2); | 1682 | $$ = new LLScriptVectorInitializer(gLine, gColumn, sa0, sa1, sa2); |
1646 | gAllocationManager->addAllocation($$); | 1683 | gAllocationManager->addAllocation($$); |
1647 | } | 1684 | } |
1685 | | TOUCH_INVALID_VECTOR | ||
1686 | { | ||
1687 | LLScriptConstantFloat *cf0 = new LLScriptConstantFloat(gLine, gColumn, 0.f); | ||
1688 | gAllocationManager->addAllocation(cf0); | ||
1689 | LLScriptConstantExpression *sa0 = new LLScriptConstantExpression(gLine, gColumn, cf0); | ||
1690 | gAllocationManager->addAllocation(sa0); | ||
1691 | LLScriptConstantFloat *cf1 = new LLScriptConstantFloat(gLine, gColumn, 0.f); | ||
1692 | gAllocationManager->addAllocation(cf1); | ||
1693 | LLScriptConstantExpression *sa1 = new LLScriptConstantExpression(gLine, gColumn, cf1); | ||
1694 | gAllocationManager->addAllocation(sa1); | ||
1695 | LLScriptConstantFloat *cf2 = new LLScriptConstantFloat(gLine, gColumn, 0.f); | ||
1696 | gAllocationManager->addAllocation(cf2); | ||
1697 | LLScriptConstantExpression *sa2 = new LLScriptConstantExpression(gLine, gColumn, cf2); | ||
1698 | gAllocationManager->addAllocation(sa2); | ||
1699 | $$ = new LLScriptVectorInitializer(gLine, gColumn, sa0, sa1, sa2); | ||
1700 | gAllocationManager->addAllocation($$); | ||
1701 | } | ||
1702 | | TOUCH_INVALID_TEXCOORD | ||
1703 | { | ||
1704 | LLScriptConstantFloat *cf0 = new LLScriptConstantFloat(gLine, gColumn, -1.f); | ||
1705 | gAllocationManager->addAllocation(cf0); | ||
1706 | LLScriptConstantExpression *sa0 = new LLScriptConstantExpression(gLine, gColumn, cf0); | ||
1707 | gAllocationManager->addAllocation(sa0); | ||
1708 | LLScriptConstantFloat *cf1 = new LLScriptConstantFloat(gLine, gColumn, -1.f); | ||
1709 | gAllocationManager->addAllocation(cf1); | ||
1710 | LLScriptConstantExpression *sa1 = new LLScriptConstantExpression(gLine, gColumn, cf1); | ||
1711 | gAllocationManager->addAllocation(sa1); | ||
1712 | LLScriptConstantFloat *cf2 = new LLScriptConstantFloat(gLine, gColumn, 0.f); | ||
1713 | gAllocationManager->addAllocation(cf2); | ||
1714 | LLScriptConstantExpression *sa2 = new LLScriptConstantExpression(gLine, gColumn, cf2); | ||
1715 | gAllocationManager->addAllocation(sa2); | ||
1716 | $$ = new LLScriptVectorInitializer(gLine, gColumn, sa0, sa1, sa2); | ||
1717 | gAllocationManager->addAllocation($$); | ||
1718 | } | ||
1648 | ; | 1719 | ; |
1649 | 1720 | ||
1650 | quaternion_initializer | 1721 | quaternion_initializer |
diff --git a/linden/indra/newview/app_settings/keywords.ini b/linden/indra/newview/app_settings/keywords.ini index 23c88dc..3679c38 100644 --- a/linden/indra/newview/app_settings/keywords.ini +++ b/linden/indra/newview/app_settings/keywords.ini | |||
@@ -506,6 +506,10 @@ CLICK_ACTION_OPEN Used with llSetClickAction to set open as the default ac | |||
506 | CLICK_ACTION_PLAY Used with llSetClickAction to set play as the default action when object is clicked | 506 | CLICK_ACTION_PLAY Used with llSetClickAction to set play as the default action when object is clicked |
507 | CLICK_ACTION_OPEN_MEDIA Used with llSetClickAction to set open-media as the default action when object is clicked | 507 | CLICK_ACTION_OPEN_MEDIA Used with llSetClickAction to set open-media as the default action when object is clicked |
508 | 508 | ||
509 | TOUCH_INVALID_TEXCOORD Value returned by llDetectedTouchUV() and llDetectedTouchST() when the touch position is not valid. | ||
510 | TOUCH_INVALID_VECTOR Value returned by llDetectedTouchPos(), llDetectedTouchNormal(), and llDetectedTouchBinormal() when the touch position is not valid. | ||
511 | TOUCH_INVALID_FACE Value returned by llDetectedTouchFace() when the touch position is not valid. | ||
512 | |||
509 | # string constants | 513 | # string constants |
510 | [word .1, .3, .5] | 514 | [word .1, .3, .5] |
511 | NULL_KEY Indicates an empty key | 515 | NULL_KEY Indicates an empty key |
diff --git a/linden/indra/newview/app_settings/settings.xml b/linden/indra/newview/app_settings/settings.xml index f2653cd..5543847 100644 --- a/linden/indra/newview/app_settings/settings.xml +++ b/linden/indra/newview/app_settings/settings.xml | |||
@@ -2360,17 +2360,6 @@ | |||
2360 | <real>1.0</real> | 2360 | <real>1.0</real> |
2361 | </array> | 2361 | </array> |
2362 | </map> | 2362 | </map> |
2363 | <key>EnablePushToTalk</key> | ||
2364 | <map> | ||
2365 | <key>Comment</key> | ||
2366 | <string>Must hold down a key or moouse button when talking into your microphone</string> | ||
2367 | <key>Persist</key> | ||
2368 | <integer>1</integer> | ||
2369 | <key>Type</key> | ||
2370 | <string>Boolean</string> | ||
2371 | <key>Value</key> | ||
2372 | <integer>1</integer> | ||
2373 | </map> | ||
2374 | <key>EnableRippleWater</key> | 2363 | <key>EnableRippleWater</key> |
2375 | <map> | 2364 | <map> |
2376 | <key>Comment</key> | 2365 | <key>Comment</key> |
@@ -5165,7 +5154,7 @@ | |||
5165 | <key>PTTCurrentlyEnabled</key> | 5154 | <key>PTTCurrentlyEnabled</key> |
5166 | <map> | 5155 | <map> |
5167 | <key>Comment</key> | 5156 | <key>Comment</key> |
5168 | <string /> | 5157 | <string>Use Push to Talk mode</string> |
5169 | <key>Persist</key> | 5158 | <key>Persist</key> |
5170 | <integer>0</integer> | 5159 | <integer>0</integer> |
5171 | <key>Type</key> | 5160 | <key>Type</key> |
@@ -10050,7 +10039,7 @@ | |||
10050 | <key>Type</key> | 10039 | <key>Type</key> |
10051 | <string>Boolean</string> | 10040 | <string>Boolean</string> |
10052 | <key>Value</key> | 10041 | <key>Value</key> |
10053 | <integer>1</integer> | 10042 | <integer>0</integer> |
10054 | </map> | 10043 | </map> |
10055 | <key>WaterEditPresets</key> | 10044 | <key>WaterEditPresets</key> |
10056 | <map> | 10045 | <map> |
diff --git a/linden/indra/newview/gpu_table.txt b/linden/indra/newview/gpu_table.txt index 7e7be97..77b75e1 100644 --- a/linden/indra/newview/gpu_table.txt +++ b/linden/indra/newview/gpu_table.txt | |||
@@ -67,6 +67,12 @@ ATI Mobility Radeon 8xxx .*ATI.*Mobility.*Radeon 8.* 0 1 | |||
67 | ATI Mobility Radeon 9800 .*ATI.*Mobility.*98.* 1 1 | 67 | ATI Mobility Radeon 9800 .*ATI.*Mobility.*98.* 1 1 |
68 | ATI Mobility Radeon 9700 .*ATI.*Mobility.*97.* 1 1 | 68 | ATI Mobility Radeon 9700 .*ATI.*Mobility.*97.* 1 1 |
69 | ATI Mobility Radeon 9600 .*ATI.*Mobility.*96.* 0 1 | 69 | ATI Mobility Radeon 9600 .*ATI.*Mobility.*96.* 0 1 |
70 | ATI Mobility Radeon HD 2300 .*ATI.*Mobility.*HD.*23.* 1 1 | ||
71 | ATI Mobility Radeon HD 2400 .*ATI.*Mobility.*HD.*24.* 1 1 | ||
72 | ATI Mobility Radeon HD 2600 .*ATI.*Mobility.*HD.*26.* 3 1 | ||
73 | ATI Mobility Radeon HD 3400 .*ATI.*Mobility.*HD.*34.* 1 1 | ||
74 | ATI Mobility Radeon HD 3600 .*ATI.*Mobility.*HD.*36.* 3 1 | ||
75 | ATI Mobility Radeon HD 3800 .*ATI.*Mobility.*HD.*38.* 3 1 | ||
70 | ATI Mobility Radeon X1xxx .*ATI.*Mobility.*X1.* 0 1 | 76 | ATI Mobility Radeon X1xxx .*ATI.*Mobility.*X1.* 0 1 |
71 | ATI Mobility Radeon X2xxx .*ATI.*Mobility.*X2.* 0 1 | 77 | ATI Mobility Radeon X2xxx .*ATI.*Mobility.*X2.* 0 1 |
72 | ATI Mobility Radeon X3xx .*ATI.*Mobility.*X3.* 1 1 | 78 | ATI Mobility Radeon X3xx .*ATI.*Mobility.*X3.* 1 1 |
diff --git a/linden/indra/newview/installers/darwin/releasecandidate-dmg/_DS_Store b/linden/indra/newview/installers/darwin/releasecandidate-dmg/_DS_Store index a8b7573..c73ba24 100644 --- a/linden/indra/newview/installers/darwin/releasecandidate-dmg/_DS_Store +++ b/linden/indra/newview/installers/darwin/releasecandidate-dmg/_DS_Store | |||
Binary files differ | |||
diff --git a/linden/indra/newview/llappviewer.cpp b/linden/indra/newview/llappviewer.cpp index 6a53300..9851e47 100644 --- a/linden/indra/newview/llappviewer.cpp +++ b/linden/indra/newview/llappviewer.cpp | |||
@@ -58,6 +58,7 @@ | |||
58 | #include "llfloatersnapshot.h" | 58 | #include "llfloatersnapshot.h" |
59 | #include "llviewerwindow.h" | 59 | #include "llviewerwindow.h" |
60 | #include "llviewerdisplay.h" | 60 | #include "llviewerdisplay.h" |
61 | #include "llviewermedia.h" | ||
61 | #include "llviewermessage.h" | 62 | #include "llviewermessage.h" |
62 | #include "llviewerobjectlist.h" | 63 | #include "llviewerobjectlist.h" |
63 | #include "llworldmap.h" | 64 | #include "llworldmap.h" |
@@ -82,8 +83,6 @@ | |||
82 | # include <sys/file.h> // For initMarkerFile support | 83 | # include <sys/file.h> // For initMarkerFile support |
83 | #endif | 84 | #endif |
84 | 85 | ||
85 | |||
86 | |||
87 | #include "llnotify.h" | 86 | #include "llnotify.h" |
88 | #include "llviewerkeyboard.h" | 87 | #include "llviewerkeyboard.h" |
89 | #include "lllfsthread.h" | 88 | #include "lllfsthread.h" |
@@ -466,9 +465,6 @@ static void settings_modify() | |||
466 | gSavedSettings.setU32("VectorizeProcessor", 0 ); | 465 | gSavedSettings.setU32("VectorizeProcessor", 0 ); |
467 | gSavedSettings.setBOOL("VectorizeSkin", FALSE); | 466 | gSavedSettings.setBOOL("VectorizeSkin", FALSE); |
468 | #endif | 467 | #endif |
469 | |||
470 | // propagate push to talk preference to current status | ||
471 | gSavedSettings.setBOOL("PTTCurrentlyEnabled", TRUE); //gSavedSettings.getBOOL("EnablePushToTalk")); | ||
472 | } | 468 | } |
473 | 469 | ||
474 | void LLAppViewer::initGridChoice() | 470 | void LLAppViewer::initGridChoice() |
@@ -581,7 +577,7 @@ bool LLAppViewer::init() | |||
581 | // into the log files during normal startup until AFTER | 577 | // into the log files during normal startup until AFTER |
582 | // we run the "program crashed last time" error handler below. | 578 | // we run the "program crashed last time" error handler below. |
583 | // | 579 | // |
584 | 580 | ||
585 | // Need to do this initialization before we do anything else, since anything | 581 | // Need to do this initialization before we do anything else, since anything |
586 | // that touches files should really go through the lldir API | 582 | // that touches files should really go through the lldir API |
587 | gDirUtilp->initAppDirs("SecondLife"); | 583 | gDirUtilp->initAppDirs("SecondLife"); |
@@ -1364,6 +1360,7 @@ bool LLAppViewer::cleanup() | |||
1364 | sImageDecodeThread = NULL; | 1360 | sImageDecodeThread = NULL; |
1365 | 1361 | ||
1366 | gImageList.shutdown(); // shutdown again in case a callback added something | 1362 | gImageList.shutdown(); // shutdown again in case a callback added something |
1363 | LLUIImageList::getInstance()->cleanUp(); | ||
1367 | 1364 | ||
1368 | // This should eventually be done in LLAppViewer | 1365 | // This should eventually be done in LLAppViewer |
1369 | LLImageJ2C::closeDSO(); | 1366 | LLImageJ2C::closeDSO(); |
@@ -1406,9 +1403,11 @@ bool LLAppViewer::cleanup() | |||
1406 | 1403 | ||
1407 | LLWeb::loadURLExternal( gLaunchFileOnQuit ); | 1404 | LLWeb::loadURLExternal( gLaunchFileOnQuit ); |
1408 | } | 1405 | } |
1409 | 1406 | ||
1407 | LLViewerMedia::cleanupClass(); | ||
1410 | 1408 | ||
1411 | llinfos << "Goodbye" << llendflush; | 1409 | llinfos << "Goodbye" << llendflush; |
1410 | |||
1412 | // return 0; | 1411 | // return 0; |
1413 | return true; | 1412 | return true; |
1414 | } | 1413 | } |
diff --git a/linden/indra/newview/llappviewerwin32.cpp b/linden/indra/newview/llappviewerwin32.cpp index aab6289..07f3ece 100644 --- a/linden/indra/newview/llappviewerwin32.cpp +++ b/linden/indra/newview/llappviewerwin32.cpp | |||
@@ -31,6 +31,10 @@ | |||
31 | 31 | ||
32 | #include "llviewerprecompiledheaders.h" | 32 | #include "llviewerprecompiledheaders.h" |
33 | 33 | ||
34 | #if defined(_DEBUG) | ||
35 | # define WINDOWS_CRT_MEM_CHECKS 1 | ||
36 | #endif | ||
37 | |||
34 | #include "llappviewerwin32.h" | 38 | #include "llappviewerwin32.h" |
35 | 39 | ||
36 | #include "llmemtype.h" | 40 | #include "llmemtype.h" |
@@ -127,6 +131,10 @@ int APIENTRY WINMAIN(HINSTANCE hInstance, | |||
127 | { | 131 | { |
128 | LLMemType mt1(LLMemType::MTYPE_STARTUP); | 132 | LLMemType mt1(LLMemType::MTYPE_STARTUP); |
129 | 133 | ||
134 | #if WINDOWS_CRT_MEM_CHECKS && !INCLUDE_VLD | ||
135 | _CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF ); // dump memory leaks on exit | ||
136 | #endif | ||
137 | |||
130 | // *FIX: global | 138 | // *FIX: global |
131 | gIconResource = MAKEINTRESOURCE(IDI_LL_ICON); | 139 | gIconResource = MAKEINTRESOURCE(IDI_LL_ICON); |
132 | 140 | ||
@@ -156,7 +164,32 @@ int APIENTRY WINMAIN(HINSTANCE hInstance, | |||
156 | // the assumption is that the error handler is responsible for doing | 164 | // the assumption is that the error handler is responsible for doing |
157 | // app cleanup if there was a problem. | 165 | // app cleanup if there was a problem. |
158 | // | 166 | // |
159 | viewer_app_ptr->cleanup(); | 167 | #if WINDOWS_CRT_MEM_CHECKS |
168 | llinfos << "CRT Checking memory:" << llendflush; | ||
169 | if (!_CrtCheckMemory()) | ||
170 | { | ||
171 | llwarns << "_CrtCheckMemory() failed at prior to cleanup!" << llendflush; | ||
172 | } | ||
173 | else | ||
174 | { | ||
175 | llinfos << " No corruption detected." << llendflush; | ||
176 | } | ||
177 | #endif | ||
178 | |||
179 | viewer_app_ptr->cleanup(); | ||
180 | |||
181 | #if WINDOWS_CRT_MEM_CHECKS | ||
182 | llinfos << "CRT Checking memory:" << llendflush; | ||
183 | if (!_CrtCheckMemory()) | ||
184 | { | ||
185 | llwarns << "_CrtCheckMemory() failed after cleanup!" << llendflush; | ||
186 | } | ||
187 | else | ||
188 | { | ||
189 | llinfos << " No corruption detected." << llendflush; | ||
190 | } | ||
191 | #endif | ||
192 | |||
160 | } | 193 | } |
161 | delete viewer_app_ptr; | 194 | delete viewer_app_ptr; |
162 | viewer_app_ptr = NULL; | 195 | viewer_app_ptr = NULL; |
diff --git a/linden/indra/newview/llconsole.cpp b/linden/indra/newview/llconsole.cpp index c2aaa01..b0f1988 100644 --- a/linden/indra/newview/llconsole.cpp +++ b/linden/indra/newview/llconsole.cpp | |||
@@ -383,6 +383,10 @@ void LLConsole::Paragraph::updateLines(F32 screen_width, LLFontGL* font, bool fo | |||
383 | } | 383 | } |
384 | mLines.push_back(line); //Append line to paragraph line list. | 384 | mLines.push_back(line); //Append line to paragraph line list. |
385 | } | 385 | } |
386 | else | ||
387 | { | ||
388 | break; // Nothing more to print | ||
389 | } | ||
386 | paragraph_offset += (drawable + skip_chars); | 390 | paragraph_offset += (drawable + skip_chars); |
387 | } | 391 | } |
388 | } | 392 | } |
diff --git a/linden/indra/newview/llfloaterfriends.cpp b/linden/indra/newview/llfloaterfriends.cpp index 7f6bf01..8fdaa52 100644 --- a/linden/indra/newview/llfloaterfriends.cpp +++ b/linden/indra/newview/llfloaterfriends.cpp | |||
@@ -41,6 +41,7 @@ | |||
41 | #include "lldir.h" | 41 | #include "lldir.h" |
42 | 42 | ||
43 | #include "llagent.h" | 43 | #include "llagent.h" |
44 | #include "llappviewer.h" // for gLastVersionChannel | ||
44 | #include "llfloateravatarpicker.h" | 45 | #include "llfloateravatarpicker.h" |
45 | #include "llviewerwindow.h" | 46 | #include "llviewerwindow.h" |
46 | #include "llbutton.h" | 47 | #include "llbutton.h" |
@@ -591,7 +592,7 @@ struct LLAddFriendData | |||
591 | }; | 592 | }; |
592 | 593 | ||
593 | // static | 594 | // static |
594 | void LLPanelFriends::callbackAddFriend(S32 option, const std::string& text, void* data) | 595 | void LLPanelFriends::callbackAddFriendWithMessage(S32 option, const std::string& text, void* data) |
595 | { | 596 | { |
596 | LLAddFriendData* add = (LLAddFriendData*)data; | 597 | LLAddFriendData* add = (LLAddFriendData*)data; |
597 | if (option == 0) | 598 | if (option == 0) |
@@ -602,6 +603,22 @@ void LLPanelFriends::callbackAddFriend(S32 option, const std::string& text, void | |||
602 | } | 603 | } |
603 | 604 | ||
604 | // static | 605 | // static |
606 | void LLPanelFriends::callbackAddFriend(S32 option, void* data) | ||
607 | { | ||
608 | LLAddFriendData* add = (LLAddFriendData*)data; | ||
609 | if (option == 0) | ||
610 | { | ||
611 | // Servers older than 1.25 require the text of the message to be the | ||
612 | // calling card folder ID for the offering user. JC | ||
613 | LLUUID calling_card_folder_id = | ||
614 | gInventory.findCategoryUUIDForType(LLAssetType::AT_CALLINGCARD); | ||
615 | std::string message = calling_card_folder_id.asString(); | ||
616 | requestFriendship(add->mID, add->mName, message); | ||
617 | } | ||
618 | delete add; | ||
619 | } | ||
620 | |||
621 | // static | ||
605 | void LLPanelFriends::onPickAvatar(const std::vector<std::string>& names, | 622 | void LLPanelFriends::onPickAvatar(const std::vector<std::string>& names, |
606 | const std::vector<LLUUID>& ids, | 623 | const std::vector<LLUUID>& ids, |
607 | void* ) | 624 | void* ) |
@@ -625,10 +642,20 @@ void LLPanelFriends::requestFriendshipDialog(const LLUUID& id, | |||
625 | data->mID = id; | 642 | data->mID = id; |
626 | data->mName = name; | 643 | data->mName = name; |
627 | 644 | ||
628 | // TODO: accept a line of text with this dialog | ||
629 | LLStringUtil::format_map_t args; | 645 | LLStringUtil::format_map_t args; |
630 | args["[NAME]"] = name; | 646 | args["[NAME]"] = name; |
631 | gViewerWindow->alertXmlEditText("AddFriend", args, NULL, NULL, callbackAddFriend, data); | 647 | |
648 | // Look for server versions like: Second Life Server 1.24.4.95600 | ||
649 | if (gLastVersionChannel.find(" 1.24.") != std::string::npos) | ||
650 | { | ||
651 | // Old and busted server version, doesn't support friend | ||
652 | // requests with messages. | ||
653 | gViewerWindow->alertXml("AddFriend", args, callbackAddFriend, data); | ||
654 | } | ||
655 | else | ||
656 | { | ||
657 | gViewerWindow->alertXmlEditText("AddFriendWithMessage", args, NULL, NULL, callbackAddFriendWithMessage, data); | ||
658 | } | ||
632 | } | 659 | } |
633 | 660 | ||
634 | // static | 661 | // static |
diff --git a/linden/indra/newview/llfloaterfriends.h b/linden/indra/newview/llfloaterfriends.h index 7444d93..afb206e 100644 --- a/linden/indra/newview/llfloaterfriends.h +++ b/linden/indra/newview/llfloaterfriends.h | |||
@@ -119,7 +119,8 @@ private: | |||
119 | 119 | ||
120 | // callback methods | 120 | // callback methods |
121 | static void onSelectName(LLUICtrl* ctrl, void* user_data); | 121 | static void onSelectName(LLUICtrl* ctrl, void* user_data); |
122 | static void callbackAddFriend(S32 option, const std::string& text, void* user_data); | 122 | static void callbackAddFriendWithMessage(S32 option, const std::string& text, void* user_data); |
123 | static void callbackAddFriend(S32 option, void* user_data); | ||
123 | static void onPickAvatar(const std::vector<std::string>& names, const std::vector<LLUUID>& ids, void* user_data); | 124 | static void onPickAvatar(const std::vector<std::string>& names, const std::vector<LLUUID>& ids, void* user_data); |
124 | static void onMaximumSelect(void* user_data); | 125 | static void onMaximumSelect(void* user_data); |
125 | 126 | ||
diff --git a/linden/indra/newview/llfloaterimagepreview.cpp b/linden/indra/newview/llfloaterimagepreview.cpp index 92e8ad1..912a4fc 100644 --- a/linden/indra/newview/llfloaterimagepreview.cpp +++ b/linden/indra/newview/llfloaterimagepreview.cpp | |||
@@ -114,8 +114,7 @@ BOOL LLFloaterImagePreview::postBuild() | |||
114 | mSculptedPreview = new LLImagePreviewSculpted(256, 256); | 114 | mSculptedPreview = new LLImagePreviewSculpted(256, 256); |
115 | mSculptedPreview->setPreviewTarget(mRawImagep, 2.0f); | 115 | mSculptedPreview->setPreviewTarget(mRawImagep, 2.0f); |
116 | 116 | ||
117 | if ((mRawImagep->getWidth() <= LL_IMAGE_REZ_LOSSLESS_CUTOFF) && | 117 | if (mRawImagep->getWidth() * mRawImagep->getHeight () <= LL_IMAGE_REZ_LOSSLESS_CUTOFF * LL_IMAGE_REZ_LOSSLESS_CUTOFF) |
118 | (mRawImagep->getHeight() <= LL_IMAGE_REZ_LOSSLESS_CUTOFF)) | ||
119 | childEnable("lossless_check"); | 118 | childEnable("lossless_check"); |
120 | } | 119 | } |
121 | else | 120 | else |
diff --git a/linden/indra/newview/llfloatertopobjects.cpp b/linden/indra/newview/llfloatertopobjects.cpp index 02be0f9..ada5c68 100644 --- a/linden/indra/newview/llfloatertopobjects.cpp +++ b/linden/indra/newview/llfloatertopobjects.cpp | |||
@@ -157,8 +157,7 @@ void LLFloaterTopObjects::handleReply(LLMessageSystem *msg, void** data) | |||
157 | msg->getU32Fast(_PREHASH_RequestData, _PREHASH_TotalObjectCount, total_count); | 157 | msg->getU32Fast(_PREHASH_RequestData, _PREHASH_TotalObjectCount, total_count); |
158 | msg->getU32Fast(_PREHASH_RequestData, _PREHASH_ReportType, mCurrentMode); | 158 | msg->getU32Fast(_PREHASH_RequestData, _PREHASH_ReportType, mCurrentMode); |
159 | 159 | ||
160 | LLCtrlListInterface *list = childGetListInterface("objects_list"); | 160 | LLScrollListCtrl *list = getChild<LLScrollListCtrl>("objects_list"); |
161 | if (!list) return; | ||
162 | 161 | ||
163 | S32 block_count = msg->getNumberOfBlocks("ReportData"); | 162 | S32 block_count = msg->getNumberOfBlocks("ReportData"); |
164 | for (S32 block = 0; block < block_count; ++block) | 163 | for (S32 block = 0; block < block_count; ++block) |
@@ -206,16 +205,16 @@ void LLFloaterTopObjects::handleReply(LLMessageSystem *msg, void** data) | |||
206 | element["columns"][3]["column"] = "location"; | 205 | element["columns"][3]["column"] = "location"; |
207 | element["columns"][3]["value"] = llformat("<%0.1f,%0.1f,%0.1f>", location_x, location_y, location_z); | 206 | element["columns"][3]["value"] = llformat("<%0.1f,%0.1f,%0.1f>", location_x, location_y, location_z); |
208 | element["columns"][3]["font"] = "SANSSERIF"; | 207 | element["columns"][3]["font"] = "SANSSERIF"; |
209 | element["columns"][3]["column"] = "time"; | 208 | element["columns"][4]["column"] = "time"; |
210 | element["columns"][3]["value"] = formatted_time((time_t)time_stamp); | 209 | element["columns"][4]["value"] = formatted_time((time_t)time_stamp); |
211 | element["columns"][3]["font"] = "SANSSERIF"; | 210 | element["columns"][4]["font"] = "SANSSERIF"; |
212 | 211 | ||
213 | if (mCurrentMode == STAT_REPORT_TOP_SCRIPTS | 212 | if (mCurrentMode == STAT_REPORT_TOP_SCRIPTS |
214 | && have_extended_data) | 213 | && have_extended_data) |
215 | { | 214 | { |
216 | element["columns"][4]["column"] = "Mono Time"; | 215 | element["columns"][5]["column"] = "Mono Time"; |
217 | element["columns"][4]["value"] = llformat("%0.3f", mono_score); | 216 | element["columns"][5]["value"] = llformat("%0.3f", mono_score); |
218 | element["columns"][4]["font"] = "SANSSERIF"; | 217 | element["columns"][5]["font"] = "SANSSERIF"; |
219 | } | 218 | } |
220 | 219 | ||
221 | list->addElement(element); | 220 | list->addElement(element); |
@@ -228,13 +227,7 @@ void LLFloaterTopObjects::handleReply(LLMessageSystem *msg, void** data) | |||
228 | 227 | ||
229 | if (total_count == 0 && list->getItemCount() == 0) | 228 | if (total_count == 0 && list->getItemCount() == 0) |
230 | { | 229 | { |
231 | LLSD element; | 230 | list->addCommentText(getString("none_descriptor")); |
232 | element["id"] = LLUUID::null; | ||
233 | element["columns"][0]["column"] = "name"; | ||
234 | element["columns"][0]["value"] = getString("none_descriptor"); | ||
235 | element["columns"][0]["font"] = "SANSSERIF"; | ||
236 | |||
237 | list->addElement(element); | ||
238 | } | 231 | } |
239 | else | 232 | else |
240 | { | 233 | { |
diff --git a/linden/indra/newview/llinventorymodel.cpp b/linden/indra/newview/llinventorymodel.cpp index 0e6056f..b1e3017 100644 --- a/linden/indra/newview/llinventorymodel.cpp +++ b/linden/indra/newview/llinventorymodel.cpp | |||
@@ -293,6 +293,28 @@ void LLInventoryModel::getDirectDescendentsOf(const LLUUID& cat_id, | |||
293 | items = get_ptr_in_map(mParentChildItemTree, cat_id); | 293 | items = get_ptr_in_map(mParentChildItemTree, cat_id); |
294 | } | 294 | } |
295 | 295 | ||
296 | // SJB: Added version to lock the arrays to catch potential logic bugs | ||
297 | void LLInventoryModel::lockDirectDescendentArrays(const LLUUID& cat_id, | ||
298 | cat_array_t*& categories, | ||
299 | item_array_t*& items) | ||
300 | { | ||
301 | getDirectDescendentsOf(cat_id, categories, items); | ||
302 | if (categories) | ||
303 | { | ||
304 | mCategoryLock[cat_id] = true; | ||
305 | } | ||
306 | if (items) | ||
307 | { | ||
308 | mItemLock[cat_id] = true; | ||
309 | } | ||
310 | } | ||
311 | |||
312 | void LLInventoryModel::unlockDirectDescendentArrays(const LLUUID& cat_id) | ||
313 | { | ||
314 | mCategoryLock[cat_id] = false; | ||
315 | mItemLock[cat_id] = false; | ||
316 | } | ||
317 | |||
296 | // findCategoryUUIDForType() returns the uuid of the category that | 318 | // findCategoryUUIDForType() returns the uuid of the category that |
297 | // specifies 'type' as what it defaults to containing. The category is | 319 | // specifies 'type' as what it defaults to containing. The category is |
298 | // not necessarily only for that type. *NOTE: This will create a new | 320 | // not necessarily only for that type. *NOTE: This will create a new |
@@ -620,6 +642,26 @@ U32 LLInventoryModel::updateItem(const LLViewerInventoryItem* item) | |||
620 | return mask; | 642 | return mask; |
621 | } | 643 | } |
622 | 644 | ||
645 | LLInventoryModel::cat_array_t* LLInventoryModel::getUnlockedCatArray(const LLUUID& id) | ||
646 | { | ||
647 | cat_array_t* cat_array = get_ptr_in_map(mParentChildCategoryTree, id); | ||
648 | if (cat_array) | ||
649 | { | ||
650 | llassert_always(mCategoryLock[id] == false); | ||
651 | } | ||
652 | return cat_array; | ||
653 | } | ||
654 | |||
655 | LLInventoryModel::item_array_t* LLInventoryModel::getUnlockedItemArray(const LLUUID& id) | ||
656 | { | ||
657 | item_array_t* item_array = get_ptr_in_map(mParentChildItemTree, id); | ||
658 | if (item_array) | ||
659 | { | ||
660 | llassert_always(mItemLock[id] == false); | ||
661 | } | ||
662 | return item_array; | ||
663 | } | ||
664 | |||
623 | // Calling this method with an inventory category will either change | 665 | // Calling this method with an inventory category will either change |
624 | // an existing item with the matching id, or it will add the category. | 666 | // an existing item with the matching id, or it will add the category. |
625 | void LLInventoryModel::updateCategory(const LLViewerInventoryCategory* cat) | 667 | void LLInventoryModel::updateCategory(const LLViewerInventoryCategory* cat) |
@@ -646,12 +688,12 @@ void LLInventoryModel::updateCategory(const LLViewerInventoryCategory* cat) | |||
646 | { | 688 | { |
647 | // need to update the parent-child tree | 689 | // need to update the parent-child tree |
648 | cat_array_t* cat_array; | 690 | cat_array_t* cat_array; |
649 | cat_array = get_ptr_in_map(mParentChildCategoryTree, old_parent_id); | 691 | cat_array = getUnlockedCatArray(old_parent_id); |
650 | if(cat_array) | 692 | if(cat_array) |
651 | { | 693 | { |
652 | cat_array->removeObj(old_cat); | 694 | cat_array->removeObj(old_cat); |
653 | } | 695 | } |
654 | cat_array = get_ptr_in_map(mParentChildCategoryTree, new_parent_id); | 696 | cat_array = getUnlockedCatArray(new_parent_id); |
655 | if(cat_array) | 697 | if(cat_array) |
656 | { | 698 | { |
657 | cat_array->put(old_cat); | 699 | cat_array->put(old_cat); |
@@ -674,13 +716,15 @@ void LLInventoryModel::updateCategory(const LLViewerInventoryCategory* cat) | |||
674 | 716 | ||
675 | // make sure this category is correctly referenced by it's parent. | 717 | // make sure this category is correctly referenced by it's parent. |
676 | cat_array_t* cat_array; | 718 | cat_array_t* cat_array; |
677 | cat_array = get_ptr_in_map(mParentChildCategoryTree, cat->getParentUUID()); | 719 | cat_array = getUnlockedCatArray(cat->getParentUUID()); |
678 | if(cat_array) | 720 | if(cat_array) |
679 | { | 721 | { |
680 | cat_array->put(new_cat); | 722 | cat_array->put(new_cat); |
681 | } | 723 | } |
682 | 724 | ||
683 | // make space in the tree for this category's children. | 725 | // make space in the tree for this category's children. |
726 | llassert_always(mCategoryLock[new_cat->getUUID()] == false); | ||
727 | llassert_always(mItemLock[new_cat->getUUID()] == false); | ||
684 | cat_array_t* catsp = new cat_array_t; | 728 | cat_array_t* catsp = new cat_array_t; |
685 | item_array_t* itemsp = new item_array_t; | 729 | item_array_t* itemsp = new item_array_t; |
686 | mParentChildCategoryTree[new_cat->getUUID()] = catsp; | 730 | mParentChildCategoryTree[new_cat->getUUID()] = catsp; |
@@ -708,9 +752,9 @@ void LLInventoryModel::moveObject(const LLUUID& object_id, const LLUUID& cat_id) | |||
708 | if(cat && (cat->getParentUUID() != cat_id)) | 752 | if(cat && (cat->getParentUUID() != cat_id)) |
709 | { | 753 | { |
710 | cat_array_t* cat_array; | 754 | cat_array_t* cat_array; |
711 | cat_array = get_ptr_in_map(mParentChildCategoryTree, cat->getParentUUID()); | 755 | cat_array = getUnlockedCatArray(cat->getParentUUID()); |
712 | if(cat_array) cat_array->removeObj(cat); | 756 | if(cat_array) cat_array->removeObj(cat); |
713 | cat_array = get_ptr_in_map(mParentChildCategoryTree, cat_id); | 757 | cat_array = getUnlockedCatArray(cat_id); |
714 | cat->setParent(cat_id); | 758 | cat->setParent(cat_id); |
715 | if(cat_array) cat_array->put(cat); | 759 | if(cat_array) cat_array->put(cat); |
716 | addChangedMask(LLInventoryObserver::STRUCTURE, object_id); | 760 | addChangedMask(LLInventoryObserver::STRUCTURE, object_id); |
@@ -720,9 +764,9 @@ void LLInventoryModel::moveObject(const LLUUID& object_id, const LLUUID& cat_id) | |||
720 | if(item && (item->getParentUUID() != cat_id)) | 764 | if(item && (item->getParentUUID() != cat_id)) |
721 | { | 765 | { |
722 | item_array_t* item_array; | 766 | item_array_t* item_array; |
723 | item_array = get_ptr_in_map(mParentChildItemTree, item->getParentUUID()); | 767 | item_array = getUnlockedItemArray(item->getParentUUID()); |
724 | if(item_array) item_array->removeObj(item); | 768 | if(item_array) item_array->removeObj(item); |
725 | item_array = get_ptr_in_map(mParentChildItemTree, cat_id); | 769 | item_array = getUnlockedItemArray(cat_id); |
726 | item->setParent(cat_id); | 770 | item->setParent(cat_id); |
727 | if(item_array) item_array->put(item); | 771 | if(item_array) item_array->put(item); |
728 | addChangedMask(LLInventoryObserver::STRUCTURE, object_id); | 772 | addChangedMask(LLInventoryObserver::STRUCTURE, object_id); |
@@ -743,25 +787,25 @@ void LLInventoryModel::deleteObject(const LLUUID& id) | |||
743 | mCategoryMap.erase(id); | 787 | mCategoryMap.erase(id); |
744 | mItemMap.erase(id); | 788 | mItemMap.erase(id); |
745 | //mInventory.erase(id); | 789 | //mInventory.erase(id); |
746 | item_array_t* item_list = get_ptr_in_map(mParentChildItemTree, parent_id); | 790 | item_array_t* item_list = getUnlockedItemArray(parent_id); |
747 | if(item_list) | 791 | if(item_list) |
748 | { | 792 | { |
749 | LLViewerInventoryItem* item = (LLViewerInventoryItem*)((LLInventoryObject*)obj); | 793 | LLViewerInventoryItem* item = (LLViewerInventoryItem*)((LLInventoryObject*)obj); |
750 | item_list->removeObj(item); | 794 | item_list->removeObj(item); |
751 | } | 795 | } |
752 | cat_array_t* cat_list = get_ptr_in_map(mParentChildCategoryTree, parent_id); | 796 | cat_array_t* cat_list = getUnlockedCatArray(parent_id); |
753 | if(cat_list) | 797 | if(cat_list) |
754 | { | 798 | { |
755 | LLViewerInventoryCategory* cat = (LLViewerInventoryCategory*)((LLInventoryObject*)obj); | 799 | LLViewerInventoryCategory* cat = (LLViewerInventoryCategory*)((LLInventoryObject*)obj); |
756 | cat_list->removeObj(cat); | 800 | cat_list->removeObj(cat); |
757 | } | 801 | } |
758 | item_list = get_ptr_in_map(mParentChildItemTree, id); | 802 | item_list = getUnlockedItemArray(id); |
759 | if(item_list) | 803 | if(item_list) |
760 | { | 804 | { |
761 | delete item_list; | 805 | delete item_list; |
762 | mParentChildItemTree.erase(id); | 806 | mParentChildItemTree.erase(id); |
763 | } | 807 | } |
764 | cat_list = get_ptr_in_map(mParentChildCategoryTree, id); | 808 | cat_list = getUnlockedCatArray(id); |
765 | if(cat_list) | 809 | if(cat_list) |
766 | { | 810 | { |
767 | delete cat_list; | 811 | delete cat_list; |
@@ -2060,11 +2104,13 @@ void LLInventoryModel::buildParentChildMap() | |||
2060 | cats.put(cat); | 2104 | cats.put(cat); |
2061 | if (mParentChildCategoryTree.count(cat->getUUID()) == 0) | 2105 | if (mParentChildCategoryTree.count(cat->getUUID()) == 0) |
2062 | { | 2106 | { |
2107 | llassert_always(mCategoryLock[cat->getUUID()] == false); | ||
2063 | catsp = new cat_array_t; | 2108 | catsp = new cat_array_t; |
2064 | mParentChildCategoryTree[cat->getUUID()] = catsp; | 2109 | mParentChildCategoryTree[cat->getUUID()] = catsp; |
2065 | } | 2110 | } |
2066 | if (mParentChildItemTree.count(cat->getUUID()) == 0) | 2111 | if (mParentChildItemTree.count(cat->getUUID()) == 0) |
2067 | { | 2112 | { |
2113 | llassert_always(mItemLock[cat->getUUID()] == false); | ||
2068 | itemsp = new item_array_t; | 2114 | itemsp = new item_array_t; |
2069 | mParentChildItemTree[cat->getUUID()] = itemsp; | 2115 | mParentChildItemTree[cat->getUUID()] = itemsp; |
2070 | } | 2116 | } |
@@ -2089,7 +2135,7 @@ void LLInventoryModel::buildParentChildMap() | |||
2089 | for(i = 0; i < count; ++i) | 2135 | for(i = 0; i < count; ++i) |
2090 | { | 2136 | { |
2091 | LLViewerInventoryCategory* cat = cats.get(i); | 2137 | LLViewerInventoryCategory* cat = cats.get(i); |
2092 | catsp = get_ptr_in_map(mParentChildCategoryTree, cat->getParentUUID()); | 2138 | catsp = getUnlockedCatArray(cat->getParentUUID()); |
2093 | if(catsp) | 2139 | if(catsp) |
2094 | { | 2140 | { |
2095 | catsp->put(cat); | 2141 | catsp->put(cat); |
@@ -2122,7 +2168,7 @@ void LLInventoryModel::buildParentChildMap() | |||
2122 | cat->setParent(gAgent.getInventoryRootID()); | 2168 | cat->setParent(gAgent.getInventoryRootID()); |
2123 | } | 2169 | } |
2124 | cat->updateServer(TRUE); | 2170 | cat->updateServer(TRUE); |
2125 | catsp = get_ptr_in_map(mParentChildCategoryTree, cat->getParentUUID()); | 2171 | catsp = getUnlockedCatArray(cat->getParentUUID()); |
2126 | if(catsp) | 2172 | if(catsp) |
2127 | { | 2173 | { |
2128 | catsp->put(cat); | 2174 | catsp->put(cat); |
@@ -2158,7 +2204,7 @@ void LLInventoryModel::buildParentChildMap() | |||
2158 | { | 2204 | { |
2159 | LLPointer<LLViewerInventoryItem> item; | 2205 | LLPointer<LLViewerInventoryItem> item; |
2160 | item = items.get(i); | 2206 | item = items.get(i); |
2161 | itemsp = get_ptr_in_map(mParentChildItemTree, item->getParentUUID()); | 2207 | itemsp = getUnlockedItemArray(item->getParentUUID()); |
2162 | if(itemsp) | 2208 | if(itemsp) |
2163 | { | 2209 | { |
2164 | itemsp->put(item); | 2210 | itemsp->put(item); |
@@ -2175,7 +2221,7 @@ void LLInventoryModel::buildParentChildMap() | |||
2175 | // we update server here, the client might crash. | 2221 | // we update server here, the client might crash. |
2176 | //item->updateServer(); | 2222 | //item->updateServer(); |
2177 | lost_item_ids.push_back(item->getUUID()); | 2223 | lost_item_ids.push_back(item->getUUID()); |
2178 | itemsp = get_ptr_in_map(mParentChildItemTree, item->getParentUUID()); | 2224 | itemsp = getUnlockedItemArray(item->getParentUUID()); |
2179 | if(itemsp) | 2225 | if(itemsp) |
2180 | { | 2226 | { |
2181 | itemsp->put(item); | 2227 | itemsp->put(item); |
diff --git a/linden/indra/newview/llinventorymodel.h b/linden/indra/newview/llinventorymodel.h index d8c3163..8017410 100644 --- a/linden/indra/newview/llinventorymodel.h +++ b/linden/indra/newview/llinventorymodel.h | |||
@@ -162,7 +162,13 @@ public: | |||
162 | void getDirectDescendentsOf(const LLUUID& cat_id, | 162 | void getDirectDescendentsOf(const LLUUID& cat_id, |
163 | cat_array_t*& categories, | 163 | cat_array_t*& categories, |
164 | item_array_t*& items) const; | 164 | item_array_t*& items) const; |
165 | 165 | ||
166 | // SJB: Added version to lock the arrays to catch potential logic bugs | ||
167 | void lockDirectDescendentArrays(const LLUUID& cat_id, | ||
168 | cat_array_t*& categories, | ||
169 | item_array_t*& items); | ||
170 | void unlockDirectDescendentArrays(const LLUUID& cat_id); | ||
171 | |||
166 | // Starting with the object specified, add it's descendents to the | 172 | // Starting with the object specified, add it's descendents to the |
167 | // array provided, but do not add the inventory object specified | 173 | // array provided, but do not add the inventory object specified |
168 | // by id. There is no guaranteed order. Neither array will be | 174 | // by id. There is no guaranteed order. Neither array will be |
@@ -418,6 +424,10 @@ protected: | |||
418 | bool messageUpdateCore(LLMessageSystem* msg, bool do_accounting); | 424 | bool messageUpdateCore(LLMessageSystem* msg, bool do_accounting); |
419 | 425 | ||
420 | protected: | 426 | protected: |
427 | cat_array_t* getUnlockedCatArray(const LLUUID& id); | ||
428 | item_array_t* getUnlockedItemArray(const LLUUID& id); | ||
429 | |||
430 | protected: | ||
421 | // Varaibles used to track what has changed since the last notify. | 431 | // Varaibles used to track what has changed since the last notify. |
422 | U32 mModifyMask; | 432 | U32 mModifyMask; |
423 | typedef std::set<LLUUID> changed_items_t; | 433 | typedef std::set<LLUUID> changed_items_t; |
@@ -434,6 +444,9 @@ protected: | |||
434 | cat_map_t mCategoryMap; | 444 | cat_map_t mCategoryMap; |
435 | item_map_t mItemMap; | 445 | item_map_t mItemMap; |
436 | 446 | ||
447 | std::map<LLUUID, bool> mCategoryLock; | ||
448 | std::map<LLUUID, bool> mItemLock; | ||
449 | |||
437 | // cache recent lookups | 450 | // cache recent lookups |
438 | mutable LLPointer<LLViewerInventoryItem> mLastItem; | 451 | mutable LLPointer<LLViewerInventoryItem> mLastItem; |
439 | 452 | ||
diff --git a/linden/indra/newview/llinventoryview.cpp b/linden/indra/newview/llinventoryview.cpp index 2150b70..f9dd70d 100644 --- a/linden/indra/newview/llinventoryview.cpp +++ b/linden/indra/newview/llinventoryview.cpp | |||
@@ -1506,8 +1506,6 @@ void LLInventoryPanel::buildNewViews(const LLUUID& id) | |||
1506 | { | 1506 | { |
1507 | LLFolderViewItem* itemp = NULL; | 1507 | LLFolderViewItem* itemp = NULL; |
1508 | LLInventoryObject* objectp = gInventory.getObject(id); | 1508 | LLInventoryObject* objectp = gInventory.getObject(id); |
1509 | S32 i; | ||
1510 | S32 count; | ||
1511 | 1509 | ||
1512 | if (objectp) | 1510 | if (objectp) |
1513 | { | 1511 | { |
@@ -1577,11 +1575,11 @@ void LLInventoryPanel::buildNewViews(const LLUUID& id) | |||
1577 | LLViewerInventoryCategory::cat_array_t* categories; | 1575 | LLViewerInventoryCategory::cat_array_t* categories; |
1578 | LLViewerInventoryItem::item_array_t* items; | 1576 | LLViewerInventoryItem::item_array_t* items; |
1579 | 1577 | ||
1580 | mInventory->getDirectDescendentsOf(id, categories, items); | 1578 | mInventory->lockDirectDescendentArrays(id, categories, items); |
1581 | if(categories) | 1579 | if(categories) |
1582 | { | 1580 | { |
1583 | count = categories->count(); | 1581 | S32 count = categories->count(); |
1584 | for(i = 0; i < count; ++i) | 1582 | for(S32 i = 0; i < count; ++i) |
1585 | { | 1583 | { |
1586 | LLInventoryCategory* cat = categories->get(i); | 1584 | LLInventoryCategory* cat = categories->get(i); |
1587 | buildNewViews(cat->getUUID()); | 1585 | buildNewViews(cat->getUUID()); |
@@ -1589,13 +1587,14 @@ void LLInventoryPanel::buildNewViews(const LLUUID& id) | |||
1589 | } | 1587 | } |
1590 | if(items) | 1588 | if(items) |
1591 | { | 1589 | { |
1592 | count = items->count(); | 1590 | S32 count = items->count(); |
1593 | for(i = 0; i < count; ++i) | 1591 | for(S32 i = 0; i < count; ++i) |
1594 | { | 1592 | { |
1595 | LLInventoryItem* item = items->get(i); | 1593 | LLInventoryItem* item = items->get(i); |
1596 | buildNewViews(item->getUUID()); | 1594 | buildNewViews(item->getUUID()); |
1597 | } | 1595 | } |
1598 | } | 1596 | } |
1597 | mInventory->unlockDirectDescendentArrays(id); | ||
1599 | } | 1598 | } |
1600 | } | 1599 | } |
1601 | 1600 | ||
diff --git a/linden/indra/newview/llprefsvoice.cpp b/linden/indra/newview/llprefsvoice.cpp index 5aa2cf4..6661f08 100644 --- a/linden/indra/newview/llprefsvoice.cpp +++ b/linden/indra/newview/llprefsvoice.cpp | |||
@@ -96,7 +96,6 @@ void LLPrefsVoiceLogic::init() | |||
96 | mEnableVoice = gSavedSettings.getBOOL("EnableVoiceChat"); | 96 | mEnableVoice = gSavedSettings.getBOOL("EnableVoiceChat"); |
97 | 97 | ||
98 | mVoiceCallsFriendsOnly = gSavedSettings.getBOOL("VoiceCallsFriendsOnly"); | 98 | mVoiceCallsFriendsOnly = gSavedSettings.getBOOL("VoiceCallsFriendsOnly"); |
99 | // mEnablePushToTalk = gSavedSettings.getBOOL("EnablePushToTalk"); | ||
100 | mModifier = gSavedSettings.getString("PushToTalkButton"); | 99 | mModifier = gSavedSettings.getString("PushToTalkButton"); |
101 | mPushToTalkToggle = gSavedSettings.getBOOL("PushToTalkToggle"); | 100 | mPushToTalkToggle = gSavedSettings.getBOOL("PushToTalkToggle"); |
102 | mEarLocation = gSavedSettings.getS32("VoiceEarLocation"); | 101 | mEarLocation = gSavedSettings.getS32("VoiceEarLocation"); |
@@ -139,7 +138,6 @@ void LLPrefsVoiceLogic::cancel() | |||
139 | { | 138 | { |
140 | gSavedSettings.setBOOL("EnableVoiceChat", mEnableVoice); | 139 | gSavedSettings.setBOOL("EnableVoiceChat", mEnableVoice); |
141 | gSavedSettings.setBOOL("VoiceCallsFriendsOnly", mVoiceCallsFriendsOnly); | 140 | gSavedSettings.setBOOL("VoiceCallsFriendsOnly", mVoiceCallsFriendsOnly); |
142 | // gSavedSettings.setBOOL("EnablePushToTalk", mEnablePushToTalk ); | ||
143 | gSavedSettings.setString("PushToTalkButton", mModifier); | 141 | gSavedSettings.setString("PushToTalkButton", mModifier); |
144 | gSavedSettings.setBOOL("PushToTalkToggle", mPushToTalkToggle ); | 142 | gSavedSettings.setBOOL("PushToTalkToggle", mPushToTalkToggle ); |
145 | gSavedSettings.setS32("VoiceEarLocation", mEarLocation); | 143 | gSavedSettings.setS32("VoiceEarLocation", mEarLocation); |
diff --git a/linden/indra/newview/llprefsvoice.h b/linden/indra/newview/llprefsvoice.h index 1fb5c66..836108d 100644 --- a/linden/indra/newview/llprefsvoice.h +++ b/linden/indra/newview/llprefsvoice.h | |||
@@ -58,7 +58,6 @@ protected: | |||
58 | 58 | ||
59 | BOOL mEnableVoice; | 59 | BOOL mEnableVoice; |
60 | BOOL mVoiceCallsFriendsOnly; | 60 | BOOL mVoiceCallsFriendsOnly; |
61 | BOOL mEnablePushToTalk; | ||
62 | std::string mModifier; | 61 | std::string mModifier; |
63 | BOOL mPushToTalkToggle; | 62 | BOOL mPushToTalkToggle; |
64 | S32 mEarLocation; | 63 | S32 mEarLocation; |
diff --git a/linden/indra/newview/llsky.h b/linden/indra/newview/llsky.h index 60c449a..3b17c18 100644 --- a/linden/indra/newview/llsky.h +++ b/linden/indra/newview/llsky.h | |||
@@ -57,7 +57,6 @@ public: | |||
57 | ~LLSky(); | 57 | ~LLSky(); |
58 | 58 | ||
59 | void init(const LLVector3 &sun_direction); | 59 | void init(const LLVector3 &sun_direction); |
60 | void free(); | ||
61 | 60 | ||
62 | void cleanup(); | 61 | void cleanup(); |
63 | 62 | ||
diff --git a/linden/indra/newview/llurl.cpp b/linden/indra/newview/llurl.cpp index 3226eb8..c4b84c3 100644 --- a/linden/indra/newview/llurl.cpp +++ b/linden/indra/newview/llurl.cpp | |||
@@ -57,7 +57,7 @@ LLURL::LLURL(const char * url) | |||
57 | 57 | ||
58 | LLURL::~LLURL() | 58 | LLURL::~LLURL() |
59 | { | 59 | { |
60 | free(); | 60 | cleanup(); |
61 | } | 61 | } |
62 | 62 | ||
63 | void LLURL::init(const char * url) | 63 | void LLURL::init(const char * url) |
@@ -140,7 +140,7 @@ void LLURL::init(const char * url) | |||
140 | // llinfos << " Tag : <" << mTag << ">" << llendl; | 140 | // llinfos << " Tag : <" << mTag << ">" << llendl; |
141 | } | 141 | } |
142 | 142 | ||
143 | void LLURL::free() | 143 | void LLURL::cleanup() |
144 | { | 144 | { |
145 | } | 145 | } |
146 | 146 | ||
diff --git a/linden/indra/newview/llurl.h b/linden/indra/newview/llurl.h index 62ec437..7aae048 100644 --- a/linden/indra/newview/llurl.h +++ b/linden/indra/newview/llurl.h | |||
@@ -71,7 +71,7 @@ public: | |||
71 | virtual ~LLURL(); | 71 | virtual ~LLURL(); |
72 | 72 | ||
73 | virtual void init (const char * url); | 73 | virtual void init (const char * url); |
74 | virtual void free (); | 74 | virtual void cleanup (); |
75 | 75 | ||
76 | bool operator==(const LLURL &rhs) const; | 76 | bool operator==(const LLURL &rhs) const; |
77 | bool operator!=(const LLURL &rhs) const; | 77 | bool operator!=(const LLURL &rhs) const; |
diff --git a/linden/indra/newview/llviewercontrol.cpp b/linden/indra/newview/llviewercontrol.cpp index 9651fa3..7a30b22 100644 --- a/linden/indra/newview/llviewercontrol.cpp +++ b/linden/indra/newview/llviewercontrol.cpp | |||
@@ -424,22 +424,7 @@ bool handleVoiceClientPrefsChanged(const LLSD& newvalue) | |||
424 | { | 424 | { |
425 | if(gVoiceClient) | 425 | if(gVoiceClient) |
426 | { | 426 | { |
427 | // Note: Ignore the specific event value, look up the ones we want | 427 | gVoiceClient->updateSettings(); |
428 | |||
429 | gVoiceClient->setVoiceEnabled(gSavedSettings.getBOOL("EnableVoiceChat")); | ||
430 | gVoiceClient->setUsePTT(gSavedSettings.getBOOL("PTTCurrentlyEnabled")); | ||
431 | std::string keyString = gSavedSettings.getString("PushToTalkButton"); | ||
432 | gVoiceClient->setPTTKey(keyString); | ||
433 | gVoiceClient->setPTTIsToggle(gSavedSettings.getBOOL("PushToTalkToggle")); | ||
434 | gVoiceClient->setEarLocation(gSavedSettings.getS32("VoiceEarLocation")); | ||
435 | std::string serverName = gSavedSettings.getString("VivoxDebugServerName"); | ||
436 | gVoiceClient->setVivoxDebugServerName(serverName); | ||
437 | |||
438 | std::string inputDevice = gSavedSettings.getString("VoiceInputAudioDevice"); | ||
439 | gVoiceClient->setCaptureDevice(inputDevice); | ||
440 | std::string outputDevice = gSavedSettings.getString("VoiceOutputAudioDevice"); | ||
441 | gVoiceClient->setRenderDevice(outputDevice); | ||
442 | gVoiceClient->setLipSyncEnabled(gSavedSettings.getBOOL("LipSyncEnabled")); | ||
443 | } | 428 | } |
444 | return true; | 429 | return true; |
445 | } | 430 | } |
diff --git a/linden/indra/newview/llviewerimagelist.cpp b/linden/indra/newview/llviewerimagelist.cpp index 28f51e1..a79a76a 100644 --- a/linden/indra/newview/llviewerimagelist.cpp +++ b/linden/indra/newview/llviewerimagelist.cpp | |||
@@ -909,8 +909,7 @@ LLPointer<LLImageJ2C> LLViewerImageList::convertToUploadFile(LLPointer<LLImageRa | |||
909 | compressedImage->setRate(0.f); | 909 | compressedImage->setRate(0.f); |
910 | 910 | ||
911 | if (gSavedSettings.getBOOL("LosslessJ2CUpload") && | 911 | if (gSavedSettings.getBOOL("LosslessJ2CUpload") && |
912 | (raw_image->getWidth() <= LL_IMAGE_REZ_LOSSLESS_CUTOFF) && | 912 | (raw_image->getWidth() * raw_image->getHeight() <= LL_IMAGE_REZ_LOSSLESS_CUTOFF * LL_IMAGE_REZ_LOSSLESS_CUTOFF)) |
913 | (raw_image->getHeight() <= LL_IMAGE_REZ_LOSSLESS_CUTOFF)) | ||
914 | compressedImage->setReversible(TRUE); | 913 | compressedImage->setReversible(TRUE); |
915 | 914 | ||
916 | compressedImage->encode(raw_image, 0.0f); | 915 | compressedImage->encode(raw_image, 0.0f); |
diff --git a/linden/indra/newview/llviewermedia.cpp b/linden/indra/newview/llviewermedia.cpp index 76c11f1..e99c838 100644 --- a/linden/indra/newview/llviewermedia.cpp +++ b/linden/indra/newview/llviewermedia.cpp | |||
@@ -473,6 +473,9 @@ void LLViewerMedia::initBrowser() | |||
473 | buildMediaManagerData( init_data ); | 473 | buildMediaManagerData( init_data ); |
474 | LLMediaManager::initBrowser( init_data ); | 474 | LLMediaManager::initBrowser( init_data ); |
475 | delete init_data; | 475 | delete init_data; |
476 | |||
477 | // We use a custom user agent with viewer version and skin name. | ||
478 | LLViewerMediaImpl::updateBrowserUserAgent(); | ||
476 | } | 479 | } |
477 | 480 | ||
478 | ////////////////////////////////////////////////////////////////////////////////////////// | 481 | ////////////////////////////////////////////////////////////////////////////////////////// |
@@ -538,9 +541,6 @@ void LLViewerMedia::buildMediaManagerData( LLMediaManagerData* init_data ) | |||
538 | init_data->setBrowserProfileName( profile_name ); | 541 | init_data->setBrowserProfileName( profile_name ); |
539 | init_data->setBrowserParentWindow( gViewerWindow->getMediaWindow() ); | 542 | init_data->setBrowserParentWindow( gViewerWindow->getMediaWindow() ); |
540 | 543 | ||
541 | // We use a custom user agent with viewer version and skin name. | ||
542 | LLViewerMediaImpl::updateBrowserUserAgent(); | ||
543 | |||
544 | // Users can change skins while client is running, so make sure | 544 | // Users can change skins while client is running, so make sure |
545 | // we pick up on changes. | 545 | // we pick up on changes. |
546 | gSavedSettings.getControl("SkinCurrent")->getSignal()->connect( | 546 | gSavedSettings.getControl("SkinCurrent")->getSignal()->connect( |
diff --git a/linden/indra/newview/llviewermenu.cpp b/linden/indra/newview/llviewermenu.cpp index d78847e..b1cd9b6 100644 --- a/linden/indra/newview/llviewermenu.cpp +++ b/linden/indra/newview/llviewermenu.cpp | |||
@@ -146,7 +146,6 @@ | |||
146 | #include "llinventoryview.h" | 146 | #include "llinventoryview.h" |
147 | #include "llkeyboard.h" | 147 | #include "llkeyboard.h" |
148 | #include "llpanellogin.h" | 148 | #include "llpanellogin.h" |
149 | #include "llfloaterlandmark.h" | ||
150 | #include "llmenucommands.h" | 149 | #include "llmenucommands.h" |
151 | #include "llmenugl.h" | 150 | #include "llmenugl.h" |
152 | #include "llmorphview.h" | 151 | #include "llmorphview.h" |
@@ -208,9 +207,6 @@ | |||
208 | 207 | ||
209 | #include "lltexlayer.h" | 208 | #include "lltexlayer.h" |
210 | 209 | ||
211 | void init_landmark_menu(LLMenuGL* menu); | ||
212 | void clear_landmark_menu(LLMenuGL* menu); | ||
213 | |||
214 | void init_client_menu(LLMenuGL* menu); | 210 | void init_client_menu(LLMenuGL* menu); |
215 | void init_server_menu(LLMenuGL* menu); | 211 | void init_server_menu(LLMenuGL* menu); |
216 | 212 | ||
@@ -256,7 +252,6 @@ LLPieMenu *gPieAttachment = NULL; | |||
256 | LLPieMenu *gPieLand = NULL; | 252 | LLPieMenu *gPieLand = NULL; |
257 | 253 | ||
258 | // local constants | 254 | // local constants |
259 | const std::string LANDMARK_MENU_NAME("Landmarks"); | ||
260 | const std::string CLIENT_MENU_NAME("Advanced"); | 255 | const std::string CLIENT_MENU_NAME("Advanced"); |
261 | const std::string SERVER_MENU_NAME("Admin"); | 256 | const std::string SERVER_MENU_NAME("Admin"); |
262 | 257 | ||
@@ -274,7 +269,6 @@ LLPieMenu* gDetachPieMenu = NULL; | |||
274 | LLPieMenu* gDetachScreenPieMenu = NULL; | 269 | LLPieMenu* gDetachScreenPieMenu = NULL; |
275 | LLPieMenu* gDetachBodyPartPieMenus[8]; | 270 | LLPieMenu* gDetachBodyPartPieMenus[8]; |
276 | 271 | ||
277 | LLMenuGL* gLandmarkMenu = NULL; | ||
278 | LLMenuItemCallGL* gAFKMenu = NULL; | 272 | LLMenuItemCallGL* gAFKMenu = NULL; |
279 | LLMenuItemCallGL* gBusyMenu = NULL; | 273 | LLMenuItemCallGL* gBusyMenu = NULL; |
280 | 274 | ||
@@ -336,8 +330,6 @@ void handle_audio_status_3(void*); | |||
336 | void handle_audio_status_4(void*); | 330 | void handle_audio_status_4(void*); |
337 | #endif | 331 | #endif |
338 | void manage_landmarks(void*); | 332 | void manage_landmarks(void*); |
339 | void create_new_landmark(void*); | ||
340 | void landmark_menu_action(void*); | ||
341 | void reload_ui(void*); | 333 | void reload_ui(void*); |
342 | void handle_agent_stop_moving(void*); | 334 | void handle_agent_stop_moving(void*); |
343 | void print_packets_lost(void*); | 335 | void print_packets_lost(void*); |
@@ -497,55 +489,6 @@ BOOL enable_region_owner(void*); | |||
497 | void menu_toggle_attached_lights(void* user_data); | 489 | void menu_toggle_attached_lights(void* user_data); |
498 | void menu_toggle_attached_particles(void* user_data); | 490 | void menu_toggle_attached_particles(void* user_data); |
499 | 491 | ||
500 | class LLLandmarkObserver : public LLInventoryObserver | ||
501 | { | ||
502 | public: | ||
503 | LLLandmarkObserver(); | ||
504 | virtual ~LLLandmarkObserver(); | ||
505 | |||
506 | virtual void changed(U32 mask) | ||
507 | { | ||
508 | // JC - Disabled for now - slows down client or causes crashes | ||
509 | // in inventory code. | ||
510 | // | ||
511 | // Also, this may not be faster than just rebuilding the menu each time. | ||
512 | // I believe gInventory.getObject() is not fast. | ||
513 | // | ||
514 | //const std::set<LLUUID>& changed_ids = gInventory.getChangedIDs(); | ||
515 | //std::set<LLUUID>::const_iterator id_it; | ||
516 | //BOOL need_to_rebuild_menu = FALSE; | ||
517 | //for(id_it = changed_ids.begin(); id_it != changed_ids.end(); ++id_it) | ||
518 | //{ | ||
519 | // LLInventoryObject* objectp = gInventory.getObject(*id_it); | ||
520 | // if (objectp && (objectp->getType() == LLAssetType::AT_LANDMARK || objectp->getType() == LLAssetType::AT_CATEGORY)) | ||
521 | // { | ||
522 | // need_to_rebuild_menu = TRUE; | ||
523 | // } | ||
524 | //} | ||
525 | //if (need_to_rebuild_menu) | ||
526 | //{ | ||
527 | // init_landmark_menu(gLandmarkMenu); | ||
528 | //} | ||
529 | } | ||
530 | }; | ||
531 | |||
532 | // For debugging only, I think the inventory observer doesn't get | ||
533 | // called if the inventory is loaded from cache. | ||
534 | void build_landmark_menu(void*) | ||
535 | { | ||
536 | init_landmark_menu(gLandmarkMenu); | ||
537 | } | ||
538 | |||
539 | LLLandmarkObserver::LLLandmarkObserver() | ||
540 | { | ||
541 | gInventory.addObserver(this); | ||
542 | } | ||
543 | |||
544 | LLLandmarkObserver::~LLLandmarkObserver() | ||
545 | { | ||
546 | gInventory.removeObserver(this); | ||
547 | } | ||
548 | |||
549 | class LLMenuParcelObserver : public LLParcelObserver | 492 | class LLMenuParcelObserver : public LLParcelObserver |
550 | { | 493 | { |
551 | public: | 494 | public: |
@@ -555,7 +498,6 @@ public: | |||
555 | }; | 498 | }; |
556 | 499 | ||
557 | static LLMenuParcelObserver* gMenuParcelObserver = NULL; | 500 | static LLMenuParcelObserver* gMenuParcelObserver = NULL; |
558 | static LLLandmarkObserver* gLandmarkObserver = NULL; | ||
559 | 501 | ||
560 | LLMenuParcelObserver::LLMenuParcelObserver() | 502 | LLMenuParcelObserver::LLMenuParcelObserver() |
561 | { | 503 | { |
@@ -729,17 +671,6 @@ void init_menus() | |||
729 | // TomY TODO convert these two | 671 | // TomY TODO convert these two |
730 | LLMenuGL*menu; | 672 | LLMenuGL*menu; |
731 | 673 | ||
732 | // JC - Maybe we don't want a global landmark menu | ||
733 | /* | ||
734 | menu = new LLMenuGL(LANDMARK_MENU_NAME); | ||
735 | // Defer init_landmark_menu() until inventory observer reports that we actually | ||
736 | // have inventory. Otherwise findCategoryByUUID() will create an empty | ||
737 | // Landmarks folder in inventory. JC | ||
738 | gMenuBarView->appendMenu( menu ); | ||
739 | menu->updateParent(LLMenuGL::sMenuContainer); | ||
740 | gLandmarkMenu = menu; | ||
741 | */ | ||
742 | |||
743 | menu = new LLMenuGL(CLIENT_MENU_NAME); | 674 | menu = new LLMenuGL(CLIENT_MENU_NAME); |
744 | init_client_menu(menu); | 675 | init_client_menu(menu); |
745 | gMenuBarView->appendMenu( menu ); | 676 | gMenuBarView->appendMenu( menu ); |
@@ -755,9 +686,6 @@ void init_menus() | |||
755 | // Let land based option enable when parcel changes | 686 | // Let land based option enable when parcel changes |
756 | gMenuParcelObserver = new LLMenuParcelObserver(); | 687 | gMenuParcelObserver = new LLMenuParcelObserver(); |
757 | 688 | ||
758 | // Let landmarks menu update when landmarks are added/removed | ||
759 | gLandmarkObserver = new LLLandmarkObserver(); | ||
760 | |||
761 | // | 689 | // |
762 | // Debug menu visiblity | 690 | // Debug menu visiblity |
763 | // | 691 | // |
@@ -775,64 +703,6 @@ void init_menus() | |||
775 | 703 | ||
776 | 704 | ||
777 | 705 | ||
778 | void init_landmark_menu(LLMenuGL* menu) | ||
779 | { | ||
780 | if (!menu) return; | ||
781 | |||
782 | // clear existing menu, as we might be rebuilding as result of inventory update | ||
783 | clear_landmark_menu(menu); | ||
784 | |||
785 | // *TODO: Translate | ||
786 | menu->append(new LLMenuItemCallGL("Organize Landmarks", | ||
787 | &manage_landmarks, NULL)); | ||
788 | menu->append(new LLMenuItemCallGL("New Landmark...", | ||
789 | &create_new_landmark, NULL)); | ||
790 | menu->appendSeparator(); | ||
791 | |||
792 | // now collect all landmarks in inventory and build menu... | ||
793 | LLInventoryModel::cat_array_t* cats; | ||
794 | LLInventoryModel::item_array_t* items; | ||
795 | gInventory.getDirectDescendentsOf(gInventory.findCategoryUUIDForType(LLAssetType::AT_LANDMARK), cats, items); | ||
796 | if(items) | ||
797 | { | ||
798 | S32 count = items->count(); | ||
799 | for(S32 i = 0; i < count; ++i) | ||
800 | { | ||
801 | LLInventoryItem* item = items->get(i); | ||
802 | std::string landmark_name = item->getName(); | ||
803 | LLUUID* landmark_id_ptr = new LLUUID( item->getUUID() ); | ||
804 | LLMenuItemCallGL* menu_item = | ||
805 | new LLMenuItemCallGL(landmark_name, landmark_menu_action, | ||
806 | NULL, NULL, landmark_id_ptr); | ||
807 | menu->append(menu_item); | ||
808 | } | ||
809 | } | ||
810 | } | ||
811 | |||
812 | void clear_landmark_menu(LLMenuGL* menu) | ||
813 | { | ||
814 | if (!menu) return; | ||
815 | |||
816 | // We store the UUIDs of the landmark inventory items in the userdata | ||
817 | // field of the menus. Therefore when we clean up the menu we need to | ||
818 | // delete that data. | ||
819 | const LLView::child_list_t* child_list = menu->getChildList(); | ||
820 | LLView::child_list_const_iter_t it = child_list->begin(); | ||
821 | for ( ; it != child_list->end(); ++it) | ||
822 | { | ||
823 | LLView* view = *it; | ||
824 | LLMenuItemCallGL* menu_item = dynamic_cast<LLMenuItemCallGL*>(view); | ||
825 | |||
826 | if (menu_item && menu_item->getMenuCallback() == landmark_menu_action) | ||
827 | { | ||
828 | void* user_data = menu_item->getUserData(); | ||
829 | delete (LLUUID*)user_data; | ||
830 | } | ||
831 | } | ||
832 | |||
833 | menu->empty(); | ||
834 | } | ||
835 | |||
836 | void init_client_menu(LLMenuGL* menu) | 706 | void init_client_menu(LLMenuGL* menu) |
837 | { | 707 | { |
838 | LLMenuGL* sub_menu = NULL; | 708 | LLMenuGL* sub_menu = NULL; |
@@ -1364,6 +1234,9 @@ void init_debug_rendering_menu(LLMenuGL* menu) | |||
1364 | sub_menu->append(new LLMenuItemCheckGL("Raycasting", &LLPipeline::toggleRenderDebug, NULL, | 1234 | sub_menu->append(new LLMenuItemCheckGL("Raycasting", &LLPipeline::toggleRenderDebug, NULL, |
1365 | &LLPipeline::toggleRenderDebugControl, | 1235 | &LLPipeline::toggleRenderDebugControl, |
1366 | (void*)LLPipeline::RENDER_DEBUG_RAYCAST)); | 1236 | (void*)LLPipeline::RENDER_DEBUG_RAYCAST)); |
1237 | sub_menu->append(new LLMenuItemCheckGL("Sculpt", &LLPipeline::toggleRenderDebug, NULL, | ||
1238 | &LLPipeline::toggleRenderDebugControl, | ||
1239 | (void*)LLPipeline::RENDER_DEBUG_SCULPTED)); | ||
1367 | 1240 | ||
1368 | sub_menu->append(new LLMenuItemToggleGL("Show Select Buffer", &gDebugSelect)); | 1241 | sub_menu->append(new LLMenuItemToggleGL("Show Select Buffer", &gDebugSelect)); |
1369 | 1242 | ||
@@ -1602,14 +1475,9 @@ static std::vector<LLPointer<view_listener_t> > sMenus; | |||
1602 | //----------------------------------------------------------------------------- | 1475 | //----------------------------------------------------------------------------- |
1603 | void cleanup_menus() | 1476 | void cleanup_menus() |
1604 | { | 1477 | { |
1605 | clear_landmark_menu(gLandmarkMenu); | ||
1606 | |||
1607 | delete gMenuParcelObserver; | 1478 | delete gMenuParcelObserver; |
1608 | gMenuParcelObserver = NULL; | 1479 | gMenuParcelObserver = NULL; |
1609 | 1480 | ||
1610 | delete gLandmarkObserver; | ||
1611 | gLandmarkObserver = NULL; | ||
1612 | |||
1613 | delete gPieSelf; | 1481 | delete gPieSelf; |
1614 | gPieSelf = NULL; | 1482 | gPieSelf = NULL; |
1615 | 1483 | ||
@@ -3098,60 +2966,6 @@ void handle_audio_status_4(void*) | |||
3098 | } | 2966 | } |
3099 | #endif | 2967 | #endif |
3100 | 2968 | ||
3101 | void manage_landmarks(void*) | ||
3102 | { | ||
3103 | LLFloaterLandmark::showInstance(1); | ||
3104 | } | ||
3105 | |||
3106 | void create_new_landmark(void*) | ||
3107 | { | ||
3108 | // Note this is temporary cut and paste of legacy functionality. | ||
3109 | // TODO: Make this spawn a floater allowing user customize before creating the inventory object | ||
3110 | |||
3111 | LLViewerRegion* agent_region = gAgent.getRegion(); | ||
3112 | if(!agent_region) | ||
3113 | { | ||
3114 | llwarns << "No agent region" << llendl; | ||
3115 | return; | ||
3116 | } | ||
3117 | LLParcel* agent_parcel = LLViewerParcelMgr::getInstance()->getAgentParcel(); | ||
3118 | if (!agent_parcel) | ||
3119 | { | ||
3120 | llwarns << "No agent parcel" << llendl; | ||
3121 | return; | ||
3122 | } | ||
3123 | if (!agent_parcel->getAllowLandmark() | ||
3124 | && !LLViewerParcelMgr::isParcelOwnedByAgent(agent_parcel, GP_LAND_ALLOW_LANDMARK)) | ||
3125 | { | ||
3126 | gViewerWindow->alertXml("CannotCreateLandmarkNotOwner"); | ||
3127 | return; | ||
3128 | } | ||
3129 | |||
3130 | LLUUID folder_id; | ||
3131 | folder_id = gInventory.findCategoryUUIDForType(LLAssetType::AT_LANDMARK); | ||
3132 | std::string pos_string; | ||
3133 | gAgent.buildLocationString(pos_string); | ||
3134 | |||
3135 | create_inventory_item(gAgent.getID(), gAgent.getSessionID(), | ||
3136 | folder_id, LLTransactionID::tnull, | ||
3137 | pos_string, pos_string, // name, desc | ||
3138 | LLAssetType::AT_LANDMARK, | ||
3139 | LLInventoryType::IT_LANDMARK, | ||
3140 | NOT_WEARABLE, PERM_ALL, | ||
3141 | NULL); | ||
3142 | } | ||
3143 | |||
3144 | void landmark_menu_action(void* userdata) | ||
3145 | { | ||
3146 | LLUUID item_id = *(LLUUID*)userdata; | ||
3147 | |||
3148 | LLViewerInventoryItem* itemp = gInventory.getItem(item_id); | ||
3149 | if (itemp) | ||
3150 | { | ||
3151 | open_landmark(itemp, itemp->getName(), FALSE); | ||
3152 | } | ||
3153 | } | ||
3154 | |||
3155 | void reload_ui(void *) | 2969 | void reload_ui(void *) |
3156 | { | 2970 | { |
3157 | LLUICtrlFactory::getInstance()->rebuild(); | 2971 | LLUICtrlFactory::getInstance()->rebuild(); |
diff --git a/linden/indra/newview/llviewerwindow.cpp b/linden/indra/newview/llviewerwindow.cpp index bd40796..d90b33a 100644 --- a/linden/indra/newview/llviewerwindow.cpp +++ b/linden/indra/newview/llviewerwindow.cpp | |||
@@ -1954,6 +1954,8 @@ void LLViewerWindow::shutdownGL() | |||
1954 | stopGL(FALSE); | 1954 | stopGL(FALSE); |
1955 | stop_glerror(); | 1955 | stop_glerror(); |
1956 | } | 1956 | } |
1957 | |||
1958 | gGL.shutdown(); | ||
1957 | } | 1959 | } |
1958 | 1960 | ||
1959 | // shutdownViews() and shutdownGL() need to be called first | 1961 | // shutdownViews() and shutdownGL() need to be called first |
diff --git a/linden/indra/newview/llvoavatar.cpp b/linden/indra/newview/llvoavatar.cpp index a9ecf9d..8adb910 100644 --- a/linden/indra/newview/llvoavatar.cpp +++ b/linden/indra/newview/llvoavatar.cpp | |||
@@ -8886,6 +8886,11 @@ U32 LLVOAvatar::getVisibilityRank() | |||
8886 | 8886 | ||
8887 | void LLVOAvatar::setVisibilityRank(U32 rank) | 8887 | void LLVOAvatar::setVisibilityRank(U32 rank) |
8888 | { | 8888 | { |
8889 | if (mDrawable.isNull() || mDrawable->isDead()) | ||
8890 | { //do nothing | ||
8891 | return; | ||
8892 | } | ||
8893 | |||
8889 | BOOL stale = gFrameTimeSeconds - mLastFadeTime > 10.f; | 8894 | BOOL stale = gFrameTimeSeconds - mLastFadeTime > 10.f; |
8890 | 8895 | ||
8891 | //only raise visibility rank or trigger a fade out every 10 seconds | 8896 | //only raise visibility rank or trigger a fade out every 10 seconds |
diff --git a/linden/indra/newview/llvoiceclient.cpp b/linden/indra/newview/llvoiceclient.cpp index bedf1d9..64a17ae 100644 --- a/linden/indra/newview/llvoiceclient.cpp +++ b/linden/indra/newview/llvoiceclient.cpp | |||
@@ -839,19 +839,12 @@ LLVoiceClient::LLVoiceClient() | |||
839 | mCaptureDeviceDirty = false; | 839 | mCaptureDeviceDirty = false; |
840 | mRenderDeviceDirty = false; | 840 | mRenderDeviceDirty = false; |
841 | 841 | ||
842 | // Load initial state from prefs. | 842 | // Use default values for everything then call updateSettings() after preferences are loaded |
843 | mVoiceEnabled = gSavedSettings.getBOOL("EnableVoiceChat"); | 843 | mVoiceEnabled = false; |
844 | mUsePTT = TRUE; //gSavedSettings.getBOOL("EnablePushToTalk"); | 844 | mUsePTT = true; |
845 | std::string keyString = gSavedSettings.getString("PushToTalkButton"); | 845 | mPTTIsToggle = false; |
846 | setPTTKey(keyString); | 846 | mEarLocation = 0; |
847 | mPTTIsToggle = gSavedSettings.getBOOL("PushToTalkToggle"); | 847 | mLipSyncEnabled = false; |
848 | mEarLocation = gSavedSettings.getS32("VoiceEarLocation"); | ||
849 | setVoiceVolume(gSavedSettings.getBOOL("MuteVoice") ? 0.f : gSavedSettings.getF32("AudioLevelVoice")); | ||
850 | std::string captureDevice = gSavedSettings.getString("VoiceInputAudioDevice"); | ||
851 | setCaptureDevice(captureDevice); | ||
852 | std::string renderDevice = gSavedSettings.getString("VoiceOutputAudioDevice"); | ||
853 | setRenderDevice(renderDevice); | ||
854 | mLipSyncEnabled = gSavedSettings.getBOOL("LipSyncEnabled"); | ||
855 | 848 | ||
856 | mTuningMode = false; | 849 | mTuningMode = false; |
857 | mTuningEnergy = 0.0f; | 850 | mTuningEnergy = 0.0f; |
@@ -895,12 +888,11 @@ LLVoiceClient::~LLVoiceClient() | |||
895 | 888 | ||
896 | //---------------------------------------------- | 889 | //---------------------------------------------- |
897 | 890 | ||
898 | |||
899 | |||
900 | void LLVoiceClient::init(LLPumpIO *pump) | 891 | void LLVoiceClient::init(LLPumpIO *pump) |
901 | { | 892 | { |
902 | // constructor will set up gVoiceClient | 893 | // constructor will set up gVoiceClient |
903 | LLVoiceClient::getInstance()->mPump = pump; | 894 | LLVoiceClient::getInstance()->mPump = pump; |
895 | LLVoiceClient::getInstance()->updateSettings(); | ||
904 | } | 896 | } |
905 | 897 | ||
906 | void LLVoiceClient::terminate() | 898 | void LLVoiceClient::terminate() |
@@ -923,6 +915,25 @@ void LLVoiceClient::terminate() | |||
923 | } | 915 | } |
924 | } | 916 | } |
925 | 917 | ||
918 | //--------------------------------------------------- | ||
919 | |||
920 | void LLVoiceClient::updateSettings() | ||
921 | { | ||
922 | setVoiceEnabled(gSavedSettings.getBOOL("EnableVoiceChat")); | ||
923 | setUsePTT(gSavedSettings.getBOOL("PTTCurrentlyEnabled")); | ||
924 | std::string keyString = gSavedSettings.getString("PushToTalkButton"); | ||
925 | setPTTKey(keyString); | ||
926 | setPTTIsToggle(gSavedSettings.getBOOL("PushToTalkToggle")); | ||
927 | setEarLocation(gSavedSettings.getS32("VoiceEarLocation")); | ||
928 | std::string serverName = gSavedSettings.getString("VivoxDebugServerName"); | ||
929 | setVivoxDebugServerName(serverName); | ||
930 | |||
931 | std::string inputDevice = gSavedSettings.getString("VoiceInputAudioDevice"); | ||
932 | setCaptureDevice(inputDevice); | ||
933 | std::string outputDevice = gSavedSettings.getString("VoiceOutputAudioDevice"); | ||
934 | setRenderDevice(outputDevice); | ||
935 | setLipSyncEnabled(gSavedSettings.getBOOL("LipSyncEnabled")); | ||
936 | } | ||
926 | 937 | ||
927 | ///////////////////////////// | 938 | ///////////////////////////// |
928 | // utility functions | 939 | // utility functions |
diff --git a/linden/indra/newview/llvoiceclient.h b/linden/indra/newview/llvoiceclient.h index 9dfcd52..2220d59 100644 --- a/linden/indra/newview/llvoiceclient.h +++ b/linden/indra/newview/llvoiceclient.h | |||
@@ -99,7 +99,9 @@ class LLVoiceClient: public LLSingleton<LLVoiceClient> | |||
99 | serviceTypeC // one-to-one and small group chat | 99 | serviceTypeC // one-to-one and small group chat |
100 | }; | 100 | }; |
101 | static F32 OVERDRIVEN_POWER_LEVEL; | 101 | static F32 OVERDRIVEN_POWER_LEVEL; |
102 | 102 | ||
103 | void updateSettings(); // call after loading settings and whenever they change | ||
104 | |||
103 | ///////////////////////////// | 105 | ///////////////////////////// |
104 | // session control messages | 106 | // session control messages |
105 | void connect(); | 107 | void connect(); |
diff --git a/linden/indra/newview/llvovolume.cpp b/linden/indra/newview/llvovolume.cpp index 3716a76..b70dd23 100644 --- a/linden/indra/newview/llvovolume.cpp +++ b/linden/indra/newview/llvovolume.cpp | |||
@@ -68,7 +68,8 @@ | |||
68 | const S32 MIN_QUIET_FRAMES_COALESCE = 30; | 68 | const S32 MIN_QUIET_FRAMES_COALESCE = 30; |
69 | const F32 FORCE_SIMPLE_RENDER_AREA = 512.f; | 69 | const F32 FORCE_SIMPLE_RENDER_AREA = 512.f; |
70 | const F32 FORCE_CULL_AREA = 8.f; | 70 | const F32 FORCE_CULL_AREA = 8.f; |
71 | const S32 SCULPT_REZ = 64; | 71 | // sadly - we can't lower sculptie rez below b/c residents have a LOT of content that depends on the 128 |
72 | const S32 SCULPT_REZ = 128; | ||
72 | 73 | ||
73 | BOOL gAnimateTextures = TRUE; | 74 | BOOL gAnimateTextures = TRUE; |
74 | extern BOOL gHideSelectedObjects; | 75 | extern BOOL gHideSelectedObjects; |
@@ -530,7 +531,13 @@ void LLVOVolume::updateTextures() | |||
530 | gPipeline.markRebuild(mDrawable, LLDrawable::REBUILD_VOLUME, FALSE); | 531 | gPipeline.markRebuild(mDrawable, LLDrawable::REBUILD_VOLUME, FALSE); |
531 | mSculptChanged = TRUE; | 532 | mSculptChanged = TRUE; |
532 | } | 533 | } |
533 | 534 | ||
535 | if (gPipeline.hasRenderDebugMask(LLPipeline::RENDER_DEBUG_SCULPTED)) | ||
536 | { | ||
537 | setDebugText(llformat("T%d C%d V%d\n%dx%d", | ||
538 | texture_discard, current_discard, getVolume()->getSculptLevel(), | ||
539 | mSculptTexture->getHeight(), mSculptTexture->getWidth())); | ||
540 | } | ||
534 | } | 541 | } |
535 | 542 | ||
536 | 543 | ||
diff --git a/linden/indra/newview/llxmlrpctransaction.cpp b/linden/indra/newview/llxmlrpctransaction.cpp index 9b49eb9..f58a506 100644 --- a/linden/indra/newview/llxmlrpctransaction.cpp +++ b/linden/indra/newview/llxmlrpctransaction.cpp | |||
@@ -134,7 +134,7 @@ void LLXMLRPCValue::appendDouble(const char* id, double v) | |||
134 | XMLRPC_AddValueToVector(mV, XMLRPC_CreateValueDouble(id, v)); | 134 | XMLRPC_AddValueToVector(mV, XMLRPC_CreateValueDouble(id, v)); |
135 | } | 135 | } |
136 | 136 | ||
137 | void LLXMLRPCValue::free() | 137 | void LLXMLRPCValue::cleanup() |
138 | { | 138 | { |
139 | XMLRPC_CleanupValue(mV); | 139 | XMLRPC_CleanupValue(mV); |
140 | mV = NULL; | 140 | mV = NULL; |
diff --git a/linden/indra/newview/llxmlrpctransaction.h b/linden/indra/newview/llxmlrpctransaction.h index 878ff7c..843ca24 100644 --- a/linden/indra/newview/llxmlrpctransaction.h +++ b/linden/indra/newview/llxmlrpctransaction.h | |||
@@ -74,7 +74,7 @@ public: | |||
74 | void appendDouble(const char*, double); | 74 | void appendDouble(const char*, double); |
75 | void appendValue(const char*, LLXMLRPCValue&); | 75 | void appendValue(const char*, LLXMLRPCValue&); |
76 | 76 | ||
77 | void free(); | 77 | void cleanup(); |
78 | // only call this on the top level created value | 78 | // only call this on the top level created value |
79 | 79 | ||
80 | XMLRPC_VALUE getValue() const; | 80 | XMLRPC_VALUE getValue() const; |
diff --git a/linden/indra/newview/pipeline.cpp b/linden/indra/newview/pipeline.cpp index 0827986..f232fdf 100644 --- a/linden/indra/newview/pipeline.cpp +++ b/linden/indra/newview/pipeline.cpp | |||
@@ -4520,6 +4520,7 @@ void LLPipeline::renderBloom(BOOL for_snapshot) | |||
4520 | return; | 4520 | return; |
4521 | } | 4521 | } |
4522 | 4522 | ||
4523 | LLVertexBuffer::unbind(); | ||
4523 | LLGLState::checkStates(); | 4524 | LLGLState::checkStates(); |
4524 | LLGLState::checkTextureChannels(); | 4525 | LLGLState::checkTextureChannels(); |
4525 | 4526 | ||
diff --git a/linden/indra/newview/pipeline.h b/linden/indra/newview/pipeline.h index e21d143..5f94e37 100644 --- a/linden/indra/newview/pipeline.h +++ b/linden/indra/newview/pipeline.h | |||
@@ -340,7 +340,8 @@ public: | |||
340 | RENDER_DEBUG_LIGHTS = 0x100000, | 340 | RENDER_DEBUG_LIGHTS = 0x100000, |
341 | RENDER_DEBUG_BATCH_SIZE = 0x200000, | 341 | RENDER_DEBUG_BATCH_SIZE = 0x200000, |
342 | RENDER_DEBUG_RAYCAST = 0x400000, | 342 | RENDER_DEBUG_RAYCAST = 0x400000, |
343 | RENDER_DEBUG_SHAME = 0x800000 | 343 | RENDER_DEBUG_SHAME = 0x800000, |
344 | RENDER_DEBUG_SCULPTED = 0x1000000 | ||
344 | }; | 345 | }; |
345 | 346 | ||
346 | public: | 347 | public: |
diff --git a/linden/indra/newview/skins/default/xui/de/alerts.xml b/linden/indra/newview/skins/default/xui/de/alerts.xml index 3292470..fce0456 100644 --- a/linden/indra/newview/skins/default/xui/de/alerts.xml +++ b/linden/indra/newview/skins/default/xui/de/alerts.xml | |||
@@ -378,12 +378,13 @@ Die Second Life Website für weitere Informationen über Partnerschaften öffnen | |||
378 | </alert> | 378 | </alert> |
379 | <alert name="ClickWebProfileHelpAvatar"> | 379 | <alert name="ClickWebProfileHelpAvatar"> |
380 | <message name="message"> | 380 | <message name="message"> |
381 | Wenn dieser Einwohner einen Webprofil-URL angegeben hat, können Sie: | 381 | Wenn dieser Einwohner eine Webprofil-URL angegeben hat, können Sie: |
382 | * Auf 'Laden' klicken und die Seite im integrierten Browser anzeigen. | 382 | * Auf 'Laden' klicken und die Seite im integrierten Browser anzuzeigen. |
383 | * Auf 'Öffnen' klicken und die Seite im externen Browser anzeigen. | 383 | * Auf Laden->"In external Browser öffnen" klicken um die Seite extern anzeigen zu lassen. |
384 | * Auf Laden->"Home-URL" klicken um zum Webprofil des Benutzers zurückzukehren. | ||
384 | 385 | ||
385 | In Ihrem Profil können Sie jeden URL als Webprofil festlegen. | 386 | In Ihrem eigenen Profil können Sie jede beliebige URL als Ihr Webprofil eingeben und mit OK übernehmen. |
386 | Bei Anzeige ihres Profils kann jeder Einwohner diesen URL öffnen. | 387 | Wenn andere Einwohner Ihr Profil betrachten, können sie diese URL besuchen. |
387 | </message> | 388 | </message> |
388 | </alert> | 389 | </alert> |
389 | <alert name="ClickWebProfileNoWebHelpAvatar"> | 390 | <alert name="ClickWebProfileNoWebHelpAvatar"> |
@@ -665,7 +666,7 @@ um ihren Landepunkt festzulegen. | |||
665 | </alert> | 666 | </alert> |
666 | <alert name="PromptMissingSubjMsg"> | 667 | <alert name="PromptMissingSubjMsg"> |
667 | <message name="message"> | 668 | <message name="message"> |
668 | Postkarte mit Standardbetreff bzw. -nachricht senden? | 669 | Foto mit Standardbetreff bzw. -nachricht als E-Mail versenden? |
669 | </message> | 670 | </message> |
670 | <option name="OK"> | 671 | <option name="OK"> |
671 | OK | 672 | OK |
@@ -686,7 +687,7 @@ um ihren Landepunkt festzulegen. | |||
686 | </alert> | 687 | </alert> |
687 | <alert name="ErrorUploadingPostcard"> | 688 | <alert name="ErrorUploadingPostcard"> |
688 | <message name="message"> | 689 | <message name="message"> |
689 | Eine Postkarte konnte aus folgendem Grund nicht hochgeladen werden: [REASON] | 690 | Ein Foto konnte aus folgendem Grund nicht gesendet werden: [REASON] |
690 | </message> | 691 | </message> |
691 | </alert> | 692 | </alert> |
692 | <alert name="ErrorUploadingReportScreenshot"> | 693 | <alert name="ErrorUploadingReportScreenshot"> |
@@ -725,19 +726,21 @@ Der Outfit-Ordner enthält keine Kleidung, Körperteile oder Anhänge. | |||
725 | </alert> | 726 | </alert> |
726 | <alert name="MustHaveAccountToLogIn"> | 727 | <alert name="MustHaveAccountToLogIn"> |
727 | <message name="message"> | 728 | <message name="message"> |
728 | Sie benötigen ein Konto, um sich in [SECOND_LIFE] anmelden zu können. | 729 | Hoppla! Da fehlt noch etwas. |
729 | Möchten Sie auf www.secondlife.com ein Konto anlegen? | 730 | Geben Sie bitte den Vor- und den Nachnamen Ihres Avatars ein. |
731 | |||
732 | Sie benötigen ein Benutzerkonto, um [SECOND_LIFE] betreten zu können.Möchten Sie jetzt ein Benutzerkonto anlegen? | ||
730 | </message> | 733 | </message> |
731 | <option name="OK"> | 734 | <option name="OK"> |
732 | OK | 735 | Neues Benutzerkonto anlegen |
733 | </option> | 736 | </option> |
734 | <option name="Cancel"> | 737 | <option name="Cancel"> |
735 | Abbrechen | 738 | Erneut versuchen |
736 | </option> | 739 | </option> |
737 | </alert> | 740 | </alert> |
738 | <alert name="ChangeSkin"> | 741 | <alert name="ChangeSkin"> |
739 | <message name="message"> | 742 | <message name="message"> |
740 | Die neue Benutzeroberfläche wird nach einem Neustart von [SECOND_LIFE] angewendet. | 743 | Die neue Haut wird nach dem erneuten Start von [SECOND_LIFE] angezeigt. |
741 | </message> | 744 | </message> |
742 | </alert> | 745 | </alert> |
743 | <alert name="UnsupportedGLRequirements"> | 746 | <alert name="UnsupportedGLRequirements"> |
@@ -1350,6 +1353,17 @@ Bitte wählen Sie einen männlichen oder weiblichen Avatar. | |||
1350 | Weiblich | 1353 | Weiblich |
1351 | </option> | 1354 | </option> |
1352 | </alert> | 1355 | </alert> |
1356 | <alert name="EstateObjectReturn"> | ||
1357 | <message name="message"> | ||
1358 | Möchten Sie wirklich alle Objekte zurückgeben, die [USER_NAME] gehören? | ||
1359 | </message> | ||
1360 | <option name="Return"> | ||
1361 | OK | ||
1362 | </option> | ||
1363 | <option name="Cancel"> | ||
1364 | Abbrechen | ||
1365 | </option> | ||
1366 | </alert> | ||
1353 | <alert name="MaxAgentOnRegionBatch"> | 1367 | <alert name="MaxAgentOnRegionBatch"> |
1354 | <message name="message"> | 1368 | <message name="message"> |
1355 | Fehler beim Versuch, [NUM_ADDED] Agenten hinzuzufügen: | 1369 | Fehler beim Versuch, [NUM_ADDED] Agenten hinzuzufügen: |
@@ -1561,8 +1575,8 @@ Möchten Sie diese Objekte weggeben? | |||
1561 | </alert> | 1575 | </alert> |
1562 | <alert name="CannotGiveCategory"> | 1576 | <alert name="CannotGiveCategory"> |
1563 | <message name="message"> | 1577 | <message name="message"> |
1564 | Sie sind nicht berechtigt, die ausgewählten | 1578 | Sie sind nicht berechtigt, den ausgewählten |
1565 | Ordner zu kopieren. | 1579 | Ordner zu kopieren. |
1566 | </message> | 1580 | </message> |
1567 | </alert> | 1581 | </alert> |
1568 | <alert name="FreezeAvatar"> | 1582 | <alert name="FreezeAvatar"> |
@@ -1955,7 +1969,7 @@ Keine Parzelle ausgewählt. | |||
1955 | <alert name="CannotBuyLandNoRegion"> | 1969 | <alert name="CannotBuyLandNoRegion"> |
1956 | <message name="message"> | 1970 | <message name="message"> |
1957 | Land kann nicht gekauft werden: | 1971 | Land kann nicht gekauft werden: |
1958 | Kann die Region nicht finden, in der sich dieses Land befindet. | 1972 | Kann die Region nicht finden, in der sich dieses Land befindet. |
1959 | </message> | 1973 | </message> |
1960 | </alert> | 1974 | </alert> |
1961 | <alert name="CannotDeedLandNothingSelected"> | 1975 | <alert name="CannotDeedLandNothingSelected"> |
@@ -2339,14 +2353,11 @@ www.secondlife.com/support. | |||
2339 | <alert name="YouHaveBeenLoggedOut"> | 2353 | <alert name="YouHaveBeenLoggedOut"> |
2340 | <message name="message"> | 2354 | <message name="message"> |
2341 | Sie wurden von [SECOND_LIFE] abgemeldet: | 2355 | Sie wurden von [SECOND_LIFE] abgemeldet: |
2342 | [MESSAGE] | 2356 | [MESSAGE] |
2343 | 2357 | Klicken Sie auf 'IM & Chat anzeigen', um vorhandene Nachrichten und Chat weiterhin anzuzeigen. Klicken Sie andernfalls auf 'Beenden', um [SECOND_LIFE] sofort zu beenden. | |
2344 | Klicken Sie auf 'Weiter', um IM und Chat anzuzeigen. | ||
2345 | Andere Optionen sind nicht mehr möglich. | ||
2346 | Klicken Sie auf 'Beenden', um [SECOND_LIFE] zu schließen. | ||
2347 | </message> | 2358 | </message> |
2348 | <option name="Continue"> | 2359 | <option name="Continue"> |
2349 | Weiter | 2360 | IM & Chat anzeigen |
2350 | </option> | 2361 | </option> |
2351 | <option name="Quit"> | 2362 | <option name="Quit"> |
2352 | Beenden | 2363 | Beenden |
@@ -2360,11 +2371,10 @@ Sie sind nicht berechtigt, Land für die aktive Gruppe zu kaufen. | |||
2360 | </alert> | 2371 | </alert> |
2361 | <alert name="AddFriend" title="Freund hinzufügen"> | 2372 | <alert name="AddFriend" title="Freund hinzufügen"> |
2362 | <message name="message"> | 2373 | <message name="message"> |
2363 | Freunde können einander die Erlaubnis erteilen, | 2374 | Freunde können sich gegenseitig die Berechtigung |
2364 | sich gegenseitig auf der Karte verfolgen und | 2375 | erteilen, sich auf der Karte zu verfolgen und den jeweiligen Online-Status einzusehen. |
2365 | ihren Online-Status einsehen zu können. | ||
2366 | 2376 | ||
2367 | [NAME] Freundschaft anbieten? | 2377 | [NAME] die Freundschaft anbieten? |
2368 | </message> | 2378 | </message> |
2369 | <option name="Offer"> | 2379 | <option name="Offer"> |
2370 | OK | 2380 | OK |
@@ -2372,6 +2382,7 @@ ihren Online-Status einsehen zu können. | |||
2372 | <option name="Cancel"> | 2382 | <option name="Cancel"> |
2373 | Abbrechen | 2383 | Abbrechen |
2374 | </option> | 2384 | </option> |
2385 | Wollen wir Freunde sein? | ||
2375 | </alert> | 2386 | </alert> |
2376 | <alert name="RemoveFromFriends"> | 2387 | <alert name="RemoveFromFriends"> |
2377 | <message name="message"> | 2388 | <message name="message"> |
@@ -4444,17 +4455,17 @@ Fehler schneller zu beseitigen. | |||
4444 | <alert name="HelpReportAbuseContainsCopyright"> | 4455 | <alert name="HelpReportAbuseContainsCopyright"> |
4445 | <message name="message"> | 4456 | <message name="message"> |
4446 | Sehr geehrte(r) Einwohner(in), | 4457 | Sehr geehrte(r) Einwohner(in), |
4447 | |||
4448 | Meldungen über Urheberrechtsverletzungen können nur auf | ||
4449 | http://secondlife.com/corporate/dmca.php eingereicht werden. | ||
4450 | 4458 | ||
4451 | Meldungen über Urheberrechtsverletzungen, die über | 4459 | achten Sie bei der Meldung einer Urheberrechtsverletzung darauf, dass Sie dabei korrekt vorgehen: |
4452 | 'Missbrauch melden' eingereicht wurden, werden automatisch | 4460 | |
4453 | gelöscht. Wenn Sie keine Urheberrechtsverletzung melden möchten, | 4461 | 1. Missbrauch melden. Wenn Sie der Meinung sind, ein Einwohner nutzt das Berechtigungssystem von Second Life auf unerlaubte Weise zu seinem Vorteil aus, indem er zum Beispiel einen CopyBot oder verwandte Kopiertools verwendet und damit eine Urheberrechtsverletzung begeht, können Sie diesen Missbrauch melden.Das Missbrauchsteam untersucht etwaige Verstöße gegen die Second Life Community Standards oder die Nutzungsbedingungen und verhängt entsprechende Strafen.Das Missbrauchsteam ist jedoch nicht dafür zuständig, Inhalte aus der Second Life-Welt zu entfernen und reagiert auch nicht auf entsprechende Anfragen. |
4454 | können Sie dieses Fenster schließen und mit dem Einreichen Ihrer Meldung fortfahren. | 4462 | |
4455 | 4463 | 2. Die DMCA oder Inhaltsentfernungs-Vorgehensweise. Sie können das Entfernen von Inhalten aus Second Life beantragen. Dazu müssen Sie eine Urheberrechtsverletzung gemäß den in unserer DMCA-Richtlinie unter http://secondlife.com/corporate/dmca.php dargelegten Anweisungen einreichen. | |
4464 | |||
4465 | Wenn Sie jetzt mit der Missbrauchmeldung fortfahren möchten, schließen Sie bitte dieses Fenster und senden Sie Ihren Bericht ein. | ||
4466 | |||
4456 | Vielen Dank, | 4467 | Vielen Dank, |
4457 | 4468 | ||
4458 | Linden Lab | 4469 | Linden Lab |
4459 | </message> | 4470 | </message> |
4460 | </alert> | 4471 | </alert> |
@@ -4532,8 +4543,7 @@ wirklich löschen? | |||
4532 | </alert> | 4543 | </alert> |
4533 | <alert name="ConfirmClearCookies"> | 4544 | <alert name="ConfirmClearCookies"> |
4534 | <message name="message"> | 4545 | <message name="message"> |
4535 | Möchten Sie Ihre Cookies | 4546 | Sind Sie sicher, dass Sie Ihre Cookies löschen möchten? |
4536 | wirklich löschen? | ||
4537 | </message> | 4547 | </message> |
4538 | <option name="Yes"> | 4548 | <option name="Yes"> |
4539 | Ja | 4549 | Ja |
@@ -5012,7 +5022,7 @@ Wolkendichte. | |||
5012 | <alert name="Cannot_Purchase_an_Attachment"> | 5022 | <alert name="Cannot_Purchase_an_Attachment"> |
5013 | <message name="message"> | 5023 | <message name="message"> |
5014 | Objekte können nicht gekauft werden, | 5024 | Objekte können nicht gekauft werden, |
5015 | wenn sie Teil eines Anhangs sind. | 5025 | solange sie Teil eines Anhangs sind. |
5016 | </message> | 5026 | </message> |
5017 | </alert> | 5027 | </alert> |
5018 | <alert name="DebitPermissionDetails" title="Info zur Abfrage der Abbucherlaubnis"> | 5028 | <alert name="DebitPermissionDetails" title="Info zur Abfrage der Abbucherlaubnis"> |
diff --git a/linden/indra/newview/skins/default/xui/de/floater_about.xml b/linden/indra/newview/skins/default/xui/de/floater_about.xml index 6490d8b..9107b3a 100644 --- a/linden/indra/newview/skins/default/xui/de/floater_about.xml +++ b/linden/indra/newview/skins/default/xui/de/floater_about.xml | |||
@@ -3,30 +3,30 @@ | |||
3 | <text_editor name="credits_editor"> | 3 | <text_editor name="credits_editor"> |
4 | Second Life wird Ihnen präsentiert von Philip, Tessa, Andrew, Cory, Ben, Bunny, Char, Charlie, Colin, Dan, Daniel, Doug, Eric, Hamlet, Haney, Hunter, Ian, Jeff, Jim, John, Lee, Mark, Peter, Phoenix, Richard, Robin, Xenon, Steve, Tanya, Eddie, Frank, Bruce, Aaron, Alice, Bob, Debra, Eileen, Helen, Janet, Louie, Leviathania, Stefan, Ray, Kevin, Tom, Mikeb, MikeT, Burgess, Elena, Tracy, BillTodd, Ryan, Zach, Sarah, Nova, Otakon, Tim, Stephanie, Michael, Evan, Nicolas, Catherine, Rachelle, Dave, Holly, Bub, Kelly, Magellan, Ramzi, Don, Sabin, Jill, Rheya, DanceStar, Jeska, Hungry, Torley, Kona, Callum, Charity, Ventrella, Jack, Uncle, Vektor, Iris, Chris, Nicole, Mick, Reuben, Blue, Babbage, Yedwab, Deana, Lauren, Brent, Pathfinder, Chadrick, Altruima, Jesse, Monroe, David, Tess, Lizzie, Patsy, Pony, Isaac, Lawrence, Cyn, Bo, Gia, Annette, Marius, Tbone, Jonathan, Karen, Ginsu, Yuko, Makiko, Thomas, Harry, Seth, Alexei, Brian, Guy, Runitai, Ethan, Data, Cornelius, Kenny, Swiss, Zero, Natria, Wendy, Stephen, Teeple, Thumper, Lucy, Dee, Mia, Liana, Warren, Branka, Aura, beez, Milo, Hermia, Red, Thrax, Joe, Sally, Magenta, Paul, Jose, Rejean, Henrik, Lexie, Amber, Logan, Xan, Nora, Morpheus, Donovan, Leyla, MichaelFrancis, Beast, Cube, Bucky, Joshua, Stryfe, Harmony, Teresa, Claudia, Walker, Glenn, Fritz, Fordak, June, Cleopetra, Jean, Ivy, Betsy, Roosevelt, Spike, Ken, Which, Tofu, Chiyo, Rob, Zee, dustin, George, Del, Matthew, Cat, Jacqui, Lightfoot, Adrian, Viola, Alfred, Noel, Irfan, Sunil, Yool, Rika, Jane, Xtreme, Frontier, a2, Neo, Siobhan, Yoz, Justin, Elle, Qarl, Benjamin, Isabel, Gulliver, Everett, Christopher, Izzy, Stephany, Garry, Sejong, Sean, Tobin, Iridium, Meta, Anthony, Jeremy, JP, Jake, Maurice, Madhavi, Leopard, Kyle, Joon, Kari, Bert, Belinda, Jon, Kristi, Bridie, Pramod, KJ, Socrates, Maria, Ivan, Aric, Yamasaki, Adreanne, Jay, MitchK, Ceren, Coco, Durl, Jenny, Periapse, Kartic, Storrs, Lotte, Sandy, Colossus, Zen, BigPapi, Brad, Pastrami, Kurz, Mani, Neuro, Jaime, MJ, Rowan, Sgt, Elvis, Gecko, Samuel, Sardonyx, Leo, Bryan, Niko, Soft, Poppy, Rachel, Aki, Angelo, Banzai, Alexa, Sue, CeeLo, Bender, CG, Gillian, Pelle, Nick, Echo, Zara, Christine, Shamiran, Emma, Blake, Keiko, Plexus, Joppa, Sidewinder, Erica, Ashlei, Twilight, Kristen, Brett, Q, Enus, Simon, Bevis, Kraft, Kip, Chandler, Ron, LauraP, Ram, KyleJM, Scouse, Prospero, Melissa, Marty, Nat, Hamilton, Kend, Lordan, Jimmy, Kosmo, Seraph, Green, Ekim, Wiggo, JT, Rome, Doris, Miz, Benoc, Whump, Trinity, Patch, Kate, TJ, Bao, Joohwan, Christy, Sofia, Matias, Cogsworth, Johan, Oreh, Cheah, Angela, Brandy, Mango, Lan, Aleks, Gloria, Heidy, Mitchell, Space, Colton, Bambers, Einstein, Maggie, Malbers, Rose, Winnie, Stella, Milton, Rothman, Niall, Marin, Allison, James, Katie, Dawn, Katt, Kalpana, Judy, Andrea, Ambroff, Infinity, Gail, Rico, Raymond, Yi, William, Christa, M, Teagan, Scout, Molly, Dante, Corr, Dynamike, Usi, Kaylee, Lil, Danica, Sascha, Kelv, Jacob, Nya, Rodney, Brandon, Elsie, Blondin, Grant, Katrin, Nyx, Gabriel, Locklainn, Claire, Devin, Minerva, Monty, Austin, Bradford, Si, Keira, H, Caitlin, Dita, Makai, Jenn und vielen anderen. | 4 | Second Life wird Ihnen präsentiert von Philip, Tessa, Andrew, Cory, Ben, Bunny, Char, Charlie, Colin, Dan, Daniel, Doug, Eric, Hamlet, Haney, Hunter, Ian, Jeff, Jim, John, Lee, Mark, Peter, Phoenix, Richard, Robin, Xenon, Steve, Tanya, Eddie, Frank, Bruce, Aaron, Alice, Bob, Debra, Eileen, Helen, Janet, Louie, Leviathania, Stefan, Ray, Kevin, Tom, Mikeb, MikeT, Burgess, Elena, Tracy, BillTodd, Ryan, Zach, Sarah, Nova, Otakon, Tim, Stephanie, Michael, Evan, Nicolas, Catherine, Rachelle, Dave, Holly, Bub, Kelly, Magellan, Ramzi, Don, Sabin, Jill, Rheya, DanceStar, Jeska, Hungry, Torley, Kona, Callum, Charity, Ventrella, Jack, Uncle, Vektor, Iris, Chris, Nicole, Mick, Reuben, Blue, Babbage, Yedwab, Deana, Lauren, Brent, Pathfinder, Chadrick, Altruima, Jesse, Monroe, David, Tess, Lizzie, Patsy, Pony, Isaac, Lawrence, Cyn, Bo, Gia, Annette, Marius, Tbone, Jonathan, Karen, Ginsu, Yuko, Makiko, Thomas, Harry, Seth, Alexei, Brian, Guy, Runitai, Ethan, Data, Cornelius, Kenny, Swiss, Zero, Natria, Wendy, Stephen, Teeple, Thumper, Lucy, Dee, Mia, Liana, Warren, Branka, Aura, beez, Milo, Hermia, Red, Thrax, Joe, Sally, Magenta, Paul, Jose, Rejean, Henrik, Lexie, Amber, Logan, Xan, Nora, Morpheus, Donovan, Leyla, MichaelFrancis, Beast, Cube, Bucky, Joshua, Stryfe, Harmony, Teresa, Claudia, Walker, Glenn, Fritz, Fordak, June, Cleopetra, Jean, Ivy, Betsy, Roosevelt, Spike, Ken, Which, Tofu, Chiyo, Rob, Zee, dustin, George, Del, Matthew, Cat, Jacqui, Lightfoot, Adrian, Viola, Alfred, Noel, Irfan, Sunil, Yool, Rika, Jane, Xtreme, Frontier, a2, Neo, Siobhan, Yoz, Justin, Elle, Qarl, Benjamin, Isabel, Gulliver, Everett, Christopher, Izzy, Stephany, Garry, Sejong, Sean, Tobin, Iridium, Meta, Anthony, Jeremy, JP, Jake, Maurice, Madhavi, Leopard, Kyle, Joon, Kari, Bert, Belinda, Jon, Kristi, Bridie, Pramod, KJ, Socrates, Maria, Ivan, Aric, Yamasaki, Adreanne, Jay, MitchK, Ceren, Coco, Durl, Jenny, Periapse, Kartic, Storrs, Lotte, Sandy, Colossus, Zen, BigPapi, Brad, Pastrami, Kurz, Mani, Neuro, Jaime, MJ, Rowan, Sgt, Elvis, Gecko, Samuel, Sardonyx, Leo, Bryan, Niko, Soft, Poppy, Rachel, Aki, Angelo, Banzai, Alexa, Sue, CeeLo, Bender, CG, Gillian, Pelle, Nick, Echo, Zara, Christine, Shamiran, Emma, Blake, Keiko, Plexus, Joppa, Sidewinder, Erica, Ashlei, Twilight, Kristen, Brett, Q, Enus, Simon, Bevis, Kraft, Kip, Chandler, Ron, LauraP, Ram, KyleJM, Scouse, Prospero, Melissa, Marty, Nat, Hamilton, Kend, Lordan, Jimmy, Kosmo, Seraph, Green, Ekim, Wiggo, JT, Rome, Doris, Miz, Benoc, Whump, Trinity, Patch, Kate, TJ, Bao, Joohwan, Christy, Sofia, Matias, Cogsworth, Johan, Oreh, Cheah, Angela, Brandy, Mango, Lan, Aleks, Gloria, Heidy, Mitchell, Space, Colton, Bambers, Einstein, Maggie, Malbers, Rose, Winnie, Stella, Milton, Rothman, Niall, Marin, Allison, James, Katie, Dawn, Katt, Kalpana, Judy, Andrea, Ambroff, Infinity, Gail, Rico, Raymond, Yi, William, Christa, M, Teagan, Scout, Molly, Dante, Corr, Dynamike, Usi, Kaylee, Lil, Danica, Sascha, Kelv, Jacob, Nya, Rodney, Brandon, Elsie, Blondin, Grant, Katrin, Nyx, Gabriel, Locklainn, Claire, Devin, Minerva, Monty, Austin, Bradford, Si, Keira, H, Caitlin, Dita, Makai, Jenn und vielen anderen. |
5 | 5 | ||
6 | Vielen Dank den folgenden Einwohnern, die uns geholfen haben, dies zur bisher besten Version zu machen: aaron23 decuir, Abra Miles, absolute balderdash, adelle fitzgerald, Aeron Kohime, Aki Shichiroji, Alger Meads, Alissa Sabre, AlwaysIcey Mapholisto, Arawn Spitteler, Aren Mandala, Arianna Wrigglesworth, Bagushii Kohime, Balpien Hammerer, Blinking2342 Blinker, byakuya runo, Capucchy Streeter, Chandra Jun, Coyote Pace, Crusher Soderstrom, Cummere Mayo, cyberrosa Rossini, Dael Ra, danana dodonpa, Darek Deluca, Davec Horsforth, django yifu, draco crane, Dre Dagostino, Ephyu Reino, etan quan, Fenrix Murakami, Fledhyris Proudhon, Fred Wardhani, Frederich Courier, garth fairchang, Gellan Glenelg, Geraldine Giha, GOLAN Eilde, gonzo joubert, Hachiro Yokosuka, Hampton Hax, harleywood guru, Hevenz Vansant, imnotgoing sideways, Jaden Giles, Jeanette Janus, Karl Dorance, keaton Akina, Khashai Steinbeck, KiPSOFT Tuqiri, kirstenlee Cinquetti, Kitty Barnett, Laurent Vesta, Lazure Ryba, Lima Vesperia, Linzi Bingyi, Lisa Lowe, LuDon Ninetails, Mark Rosenbaum, McCabe Maxsted, Michi Lumin, Midi Aeon, ml0rtd kit, Mo Eriksen, Morice Flanagan, Mysterion Aeon, Nad Gough, norgan torok, Pygar Bu, Qie Niangao, rachel corleone, Rado Arado, roberto salubrius, Royer Pessoa, samia bechir, Sasha Nurmi, Sean Heying, Selkit Diller, Shadow Pidgeon, simon kline, Smokie Ember, Soap Clawtooth, Strife Onizuka, Tal Chernov, Talan Hyun, tangletwigs fairymeadow, Tanya Spinotti, Tayra Dagostino, Teebone Aeon, Theremes Langdon, Thraxis Epsilon, tucor Capalini, Vasko Hawker, VenusMari Zapedzki, Vex Streeter, Viktoria Dovgal, Vincent Nacon, Viridian Exonar, Vivienne Schell, WarKirby Magojiro, Wilton Lundquist, Yukinoroh Kamachi, Zyzzy Zarf | 6 | Vielen Dank den folgenden Einwohnern, die uns geholfen haben, dies zur bisher besten Version zu machen:aaron23 decuir, Abra Miles, absolute balderdash, adelle fitzgerald, Aeron Kohime, Aki Shichiroji, Alger Meads, Alissa Sabre, AlwaysIcey Mapholisto, Arawn Spitteler, Aren Mandala, Arianna Wrigglesworth, Bagushii Kohime, Balpien Hammerer, Blinking2342 Blinker, byakuya runo, Capucchy Streeter, Chandra Jun, Coyote Pace, Crusher Soderstrom, Cummere Mayo, cyberrosa Rossini, Dael Ra, danana dodonpa, Darek Deluca, Davec Horsforth, django yifu, draco crane, Dre Dagostino, Ephyu Reino, etan quan, Fenrix Murakami, Fledhyris Proudhon, Fred Wardhani, Frederich Courier, garth fairchang, Gellan Glenelg, Geraldine Giha, GOLAN Eilde, gonzo joubert, Hachiro Yokosuka, Hampton Hax, harleywood guru, Hevenz Vansant, imnotgoing sideways, Jaden Giles, Jeanette Janus, Karl Dorance, keaton Akina, Khashai Steinbeck, KiPSOFT Tuqiri, kirstenlee Cinquetti, Kitty Barnett, Laurent Vesta, Lazure Ryba, Lima Vesperia, Linzi Bingyi, Lisa Lowe, LuDon Ninetails, Mark Rosenbaum, McCabe Maxsted, Michi Lumin, Midi Aeon, ml0rtd kit, Mo Eriksen, Morice Flanagan, Mysterion Aeon, Nad Gough, norgan torok, Pygar Bu, Qie Niangao, rachel corleone, Rado Arado, roberto salubrius, Royer Pessoa, samia bechir, Sasha Nurmi, Sean Heying, Selkit Diller, Shadow Pidgeon, simon kline, Smokie Ember, Soap Clawtooth, Strife Onizuka, Tal Chernov, Talan Hyun, tangletwigs fairymeadow, Tanya Spinotti, Tayra Dagostino, Teebone Aeon, Theremes Langdon, Thraxis Epsilon, tucor Capalini, Vasko Hawker, VenusMari Zapedzki, Vex Streeter, Viktoria Dovgal, Vincent Nacon, Viridian Exonar, Vivienne Schell, WarKirby Magojiro, Wilton Lundquist, Yukinoroh Kamachi, Zyzzy Zarf |
7 | 7 | ||
8 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | 8 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion |
9 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 9 | APR Copyright (C) 2000-2004 The Apache Software Foundation |
10 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | 10 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) |
11 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | 11 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. |
12 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | 12 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). |
13 | GL Copyright (C) 1999-2004 Brian Paul. | 13 | GL Copyright (C) 1999-2004 Brian Paul. |
14 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | 14 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. |
15 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | 15 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) |
16 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | 16 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. |
17 | ogg/vorbis Copyright (C) 2001, Xiphophorus | 17 | ogg/vorbis Copyright (C) 2001, Xiphophorus |
18 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | 18 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. |
19 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | 19 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga |
20 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 20 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
21 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | 21 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. |
22 | zlib Copyright (C) 1995-2002 Jean-loup Gailly und Mark Adler. | 22 | zlib Copyright (C) 1995-2002 Jean-loup Gailly und Mark Adler. |
23 | 23 | ||
24 | Alle Rechte vorbehalten. Details siehe licenses.txt. | 24 | Alle Rechte vorbehalten.Details siehe licenses.txt. |
25 | 25 | ||
26 | Voice-Chat-Audiocoding: Polycom(R) Siren14(TM) (ITU-T Empf. G.722.1 Anhang C) | 26 | Voice-Chat-Audiocoding:Polycom(R) Siren14(TM) (ITU-T Empf.G.722.1 Anhang C) |
27 | 27 | ||
28 | 28 | ||
29 | What happens to a dream deferred? --Langston Hughes | 29 | Was geschieht, wenn Träume aufgeschoben werden?- Langston Hughes |
30 | </text_editor> | 30 | </text_editor> |
31 | <text name="you_are_at"> | 31 | <text name="you_are_at"> |
32 | Sie befinden sich in [POSITION] | 32 | Sie befinden sich in [POSITION] |
diff --git a/linden/indra/newview/skins/default/xui/de/floater_about_land.xml b/linden/indra/newview/skins/default/xui/de/floater_about_land.xml index 52cd7a2..b75eeba 100644 --- a/linden/indra/newview/skins/default/xui/de/floater_about_land.xml +++ b/linden/indra/newview/skins/default/xui/de/floater_about_land.xml | |||
@@ -113,6 +113,10 @@ | |||
113 | <text name="sale_pending_text"> | 113 | <text name="sale_pending_text"> |
114 | (Wird verkauft) | 114 | (Wird verkauft) |
115 | </text> | 115 | </text> |
116 | <string name="no_selection_text"> | ||
117 | Keine Parzelle ausgewählt. | ||
118 | Öffnen Sie "Welt" > "Land-Info" oder wählen Sie eine andere Parzelle aus, um Informationen darüber anzuzeigen. | ||
119 | </string> | ||
116 | </panel> | 120 | </panel> |
117 | <panel label="Vertrag" name="land_covenant_panel"> | 121 | <panel label="Vertrag" name="land_covenant_panel"> |
118 | <text type="string" length="1" name="covenant_timestamp_text"> | 122 | <text type="string" length="1" name="covenant_timestamp_text"> |
@@ -192,27 +196,33 @@ | |||
192 | <text left="204" name="owner_objects_text" width="48"> | 196 | <text left="204" name="owner_objects_text" width="48"> |
193 | [COUNT] | 197 | [COUNT] |
194 | </text> | 198 | </text> |
195 | <button label="Anzeigen" label_selected="Anzeigen" name="ShowOwner" right="-135" width="60" /> | 199 | <button label="Anzeigen" label_selected="Anzeigen" name="ShowOwner" right="-135" |
200 | width="60" /> | ||
196 | <button label="Zurückgeben..." label_selected="Zurückgeben..." name="ReturnOwner..." | 201 | <button label="Zurückgeben..." label_selected="Zurückgeben..." name="ReturnOwner..." |
197 | right="-10" tool_tip="Objekte an ihre Eigentümer zurückgeben." width="119" /> | 202 | right="-10" tool_tip="Objekte an ihre Eigentümer zurückgeben." |
203 | width="119" /> | ||
198 | <text left="14" name="Set to group:" width="200"> | 204 | <text left="14" name="Set to group:" width="200"> |
199 | Der Gruppe übereignen: | 205 | Der Gruppe übereignen: |
200 | </text> | 206 | </text> |
201 | <text left="204" name="group_objects_text" width="48"> | 207 | <text left="204" name="group_objects_text" width="48"> |
202 | [COUNT] | 208 | [COUNT] |
203 | </text> | 209 | </text> |
204 | <button label="Anzeigen" label_selected="Anzeigen" name="ShowGroup" right="-135" width="60" /> | 210 | <button label="Anzeigen" label_selected="Anzeigen" name="ShowGroup" right="-135" |
211 | width="60" /> | ||
205 | <button label="Zurückgeben..." label_selected="Zurückgeben..." name="ReturnGroup..." | 212 | <button label="Zurückgeben..." label_selected="Zurückgeben..." name="ReturnGroup..." |
206 | right="-10" tool_tip="Objekte an ihre Eigentümer zurückgeben." width="119" /> | 213 | right="-10" tool_tip="Objekte an ihre Eigentümer zurückgeben." |
214 | width="119" /> | ||
207 | <text left="14" name="Owned by others:" width="128"> | 215 | <text left="14" name="Owned by others:" width="128"> |
208 | Im Eigentum anderer: | 216 | Im Eigentum anderer: |
209 | </text> | 217 | </text> |
210 | <text left="204" name="other_objects_text" width="48"> | 218 | <text left="204" name="other_objects_text" width="48"> |
211 | [COUNT] | 219 | [COUNT] |
212 | </text> | 220 | </text> |
213 | <button label="Anzeigen" label_selected="Anzeigen" name="ShowOther" right="-135" width="60" /> | 221 | <button label="Anzeigen" label_selected="Anzeigen" name="ShowOther" right="-135" |
222 | width="60" /> | ||
214 | <button label="Zurückgeben..." label_selected="Zurückgeben..." name="ReturnOther..." | 223 | <button label="Zurückgeben..." label_selected="Zurückgeben..." name="ReturnOther..." |
215 | right="-10" tool_tip="Objekte an ihre Eigentümer zurückgeben." width="119" /> | 224 | right="-10" tool_tip="Objekte an ihre Eigentümer zurückgeben." |
225 | width="119" /> | ||
216 | <text left="14" name="Selected / sat upon:" width="140"> | 226 | <text left="14" name="Selected / sat upon:" width="140"> |
217 | Ausgewählt/gesessen auf: | 227 | Ausgewählt/gesessen auf: |
218 | </text> | 228 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/de/floater_im.xml b/linden/indra/newview/skins/default/xui/de/floater_im.xml index 4507ee0..e62ff2a 100644 --- a/linden/indra/newview/skins/default/xui/de/floater_im.xml +++ b/linden/indra/newview/skins/default/xui/de/floater_im.xml | |||
@@ -7,7 +7,7 @@ | |||
7 | [FIRST] [LAST] ist offline. | 7 | [FIRST] [LAST] ist offline. |
8 | </text> | 8 | </text> |
9 | <string name="muted_message"> | 9 | <string name="muted_message"> |
10 | Einwohner ist stummgeschaltet. | 10 | Sie haben diesen Einwohner stummgeschaltet.Wenn Sie ihm eine Nachricht senden, wird die Stummschaltung automatisch aufgehoben. |
11 | </string> | 11 | </string> |
12 | <text name="generic_request_error"> | 12 | <text name="generic_request_error"> |
13 | Fehler bei Anfrage, bitte versuchen Sie es später. | 13 | Fehler bei Anfrage, bitte versuchen Sie es später. |
diff --git a/linden/indra/newview/skins/default/xui/de/floater_instant_message.xml b/linden/indra/newview/skins/default/xui/de/floater_instant_message.xml index 094588c..1fbdd3e 100644 --- a/linden/indra/newview/skins/default/xui/de/floater_instant_message.xml +++ b/linden/indra/newview/skins/default/xui/de/floater_instant_message.xml | |||
@@ -12,6 +12,9 @@ | |||
12 | <string name="hang_up"> | 12 | <string name="hang_up"> |
13 | Anruf beendet | 13 | Anruf beendet |
14 | </string> | 14 | </string> |
15 | <string name="inventory_item_offered"> | ||
16 | Inventarobjekt angeboten | ||
17 | </string> | ||
15 | <string name="voice_icon"> | 18 | <string name="voice_icon"> |
16 | icn_voice-pvtfocus.tga | 19 | icn_voice-pvtfocus.tga |
17 | </string> | 20 | </string> |
diff --git a/linden/indra/newview/skins/default/xui/de/floater_live_lsleditor.xml b/linden/indra/newview/skins/default/xui/de/floater_live_lsleditor.xml index 7b656f5..8d499bc 100644 --- a/linden/indra/newview/skins/default/xui/de/floater_live_lsleditor.xml +++ b/linden/indra/newview/skins/default/xui/de/floater_live_lsleditor.xml | |||
@@ -2,6 +2,7 @@ | |||
2 | <floater name="script ed float" title="Skript: Neues Skript"> | 2 | <floater name="script ed float" title="Skript: Neues Skript"> |
3 | <button label="Zurücksetzen" label_selected="Zurücksetzen" name="Reset" /> | 3 | <button label="Zurücksetzen" label_selected="Zurücksetzen" name="Reset" /> |
4 | <check_box label="Läuft" name="running" /> | 4 | <check_box label="Läuft" name="running" /> |
5 | <check_box label="Mono" name="mono" /> | ||
5 | <text name="not_allowed"> | 6 | <text name="not_allowed"> |
6 | Sie können dieses Skript nicht anzeigen. | 7 | Sie können dieses Skript nicht anzeigen. |
7 | </text> | 8 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/de/floater_mem_leaking.xml b/linden/indra/newview/skins/default/xui/de/floater_mem_leaking.xml new file mode 100644 index 0000000..4fe3058 --- /dev/null +++ b/linden/indra/newview/skins/default/xui/de/floater_mem_leaking.xml | |||
@@ -0,0 +1,18 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="MemLeak" title="Speicherverlust-Simulation"> | ||
3 | <spinner label="Verlustgeschwindigkeit (Bytes pro Frame):" name="leak_speed" /> | ||
4 | <spinner label="Max. Speicherverlust (MB):" name="max_leak" /> | ||
5 | <text name="total_leaked_label"> | ||
6 | Aktueller Speicherverlust:[SIZE] KB | ||
7 | </text> | ||
8 | <text name="note_label_1"> | ||
9 | [NOTE1] | ||
10 | </text> | ||
11 | <text name="note_label_2"> | ||
12 | [NOTE2] | ||
13 | </text> | ||
14 | <button label="Start" name="start_btn" /> | ||
15 | <button label="Stopp" name="stop_btn" /> | ||
16 | <button label="Freigeben" name="release_btn" /> | ||
17 | <button label="Schließen" name="close_btn" /> | ||
18 | </floater> | ||
diff --git a/linden/indra/newview/skins/default/xui/de/floater_postcard.xml b/linden/indra/newview/skins/default/xui/de/floater_postcard.xml index 0168d54..639a8ff 100644 --- a/linden/indra/newview/skins/default/xui/de/floater_postcard.xml +++ b/linden/indra/newview/skins/default/xui/de/floater_postcard.xml | |||
@@ -1,21 +1,21 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="Postcard" title="Postkarte senden"> | 2 | <floater name="Postcard" title="Foto per E-Mail senden"> |
3 | <text name="to_label"> | 3 | <text name="to_label"> |
4 | E-Mail des Empfängers: | 4 | E-Mail des Empfängers: |
5 | </text> | 5 | </text> |
6 | <line_editor left="145" name="to_form" width="125"/> | 6 | <line_editor left="145" name="to_form" width="125" /> |
7 | <text name="from_label"> | 7 | <text name="from_label"> |
8 | Ihre E-Mail: | 8 | Ihre E-Mail: |
9 | </text> | 9 | </text> |
10 | <line_editor left="145" name="from_form" width="125"/> | 10 | <line_editor left="145" name="from_form" width="125" /> |
11 | <text name="name_label"> | 11 | <text name="name_label"> |
12 | Ihr Name: | 12 | Ihr Name: |
13 | </text> | 13 | </text> |
14 | <line_editor left="145" name="name_form" width="125"/> | 14 | <line_editor left="145" name="name_form" width="125" /> |
15 | <text name="subject_label"> | 15 | <text name="subject_label"> |
16 | Betreff: | 16 | Betreff: |
17 | </text> | 17 | </text> |
18 | <line_editor label="Betreff hier eingeben." name="subject_form" left="145" width="125"/> | 18 | <line_editor label="Betreff hier eingeben." left="145" name="subject_form" width="125" /> |
19 | <text name="msg_label"> | 19 | <text name="msg_label"> |
20 | Nachricht: | 20 | Nachricht: |
21 | </text> | 21 | </text> |
@@ -27,9 +27,8 @@ | |||
27 | <check_box label="Ab-18-Inhalt" name="mature_check" | 27 | <check_box label="Ab-18-Inhalt" name="mature_check" |
28 | tool_tip="Diese Postkarte enthält nicht jugendfreie Inhalte." /> | 28 | tool_tip="Diese Postkarte enthält nicht jugendfreie Inhalte." /> |
29 | <button label="?" name="publish_help_btn" /> | 29 | <button label="?" name="publish_help_btn" /> |
30 | <text name="fine_print" > | 30 | <text name="fine_print"> |
31 | Wenn sich der Empfänger Ihrer Postkarte bei SL anmeldet, erhalten Sie einen | 31 | Wenn sich der Empfänger bei SL anmeldet, erhalten Sie einen Empfehlungsbonus. |
32 | Empfehlungsbonus. | ||
33 | </text> | 32 | </text> |
34 | <button label="Abbrechen" name="cancel_btn" /> | 33 | <button label="Abbrechen" name="cancel_btn" /> |
35 | <button label="Senden" name="send_btn" /> | 34 | <button label="Senden" name="send_btn" /> |
@@ -39,4 +38,7 @@ Empfehlungsbonus. | |||
39 | <text name="default_message"> | 38 | <text name="default_message"> |
40 | Sehen Sie hier! | 39 | Sehen Sie hier! |
41 | </text> | 40 | </text> |
41 | <string name="upload_message"> | ||
42 | Wird gesendet... | ||
43 | </string> | ||
42 | </floater> | 44 | </floater> |
diff --git a/linden/indra/newview/skins/default/xui/de/floater_report_abuse.xml b/linden/indra/newview/skins/default/xui/de/floater_report_abuse.xml index 2c92e70..a262c17 100644 --- a/linden/indra/newview/skins/default/xui/de/floater_report_abuse.xml +++ b/linden/indra/newview/skins/default/xui/de/floater_report_abuse.xml | |||
@@ -43,6 +43,99 @@ dann auf das Objekt: | |||
43 | <combo_item name="Selectcategory"> | 43 | <combo_item name="Selectcategory"> |
44 | Kategorie auswählen | 44 | Kategorie auswählen |
45 | </combo_item> | 45 | </combo_item> |
46 | <combo_item name="Select_category"> | ||
47 | Kategorie auswählen | ||
48 | </combo_item> | ||
49 | <combo_item name="Age__Age_play"> | ||
50 | Alter> Age-Play | ||
51 | </combo_item> | ||
52 | <combo_item name="Age__Adult_resident_on_Teen_Second_Life"> | ||
53 | Alter> Erwachsener Einwohner in Teen Second Life | ||
54 | </combo_item> | ||
55 | <combo_item name="Age__Underage_resident_on_Adult_Second_Life"> | ||
56 | Alter > Minderjähriger Einwohner in Adult Second Life | ||
57 | </combo_item> | ||
58 | <combo_item name="Assault__Combat_sandbox___unsafe_area"> | ||
59 | Angriff> Kampf-Sandbox / unsichere Region | ||
60 | </combo_item> | ||
61 | <combo_item name="Assault__Safe_area"> | ||
62 | Angriff> Sichere Region | ||
63 | </combo_item> | ||
64 | <combo_item name="Assault__Weapons_testing_sandbox"> | ||
65 | Angriff > Sandbox für Waffentest | ||
66 | </combo_item> | ||
67 | <combo_item name="Copyright_or_intellectual_property_violation"> | ||
68 | Urheberrechtsverletzung | ||
69 | </combo_item> | ||
70 | <combo_item name="Commerce__Failure_to_deliver_product_or_service"> | ||
71 | Handel > Produkt nicht geliefer oder Dienstleistung nicht erbracht | ||
72 | </combo_item> | ||
73 | <combo_item name="Disclosure__First_Life_information"> | ||
74 | Offenlegung > Private Benutzerdaten | ||
75 | </combo_item> | ||
76 | <combo_item name="Disclosure__Remotely_monitoring chat"> | ||
77 | Offenlegung > Abhören eines Chats aus der Ferne | ||
78 | </combo_item> | ||
79 | <combo_item name="Disclosure__Second_Life_information_chat_IMs"> | ||
80 | Offenlegung > Second Life-Informationen/Chat/IMs | ||
81 | </combo_item> | ||
82 | <combo_item name="Disturbing_the_peace__Unfair_use_of_region_resources"> | ||
83 | Ruhestörung > Unfaire Nutzung von Regionsressourcen | ||
84 | </combo_item> | ||
85 | <combo_item name="Disturbing_the_peace__Excessive_scripted_objects"> | ||
86 | Ruhestörung > Exzessive Nutzung geskripteter Objekte | ||
87 | </combo_item> | ||
88 | <combo_item name="Disturbing_the_peace__Object_littering"> | ||
89 | Ruhestörung > Wildes Erzeugen von Objekten | ||
90 | </combo_item> | ||
91 | <combo_item name="Disturbing_the_peace__Repetitive_spam"> | ||
92 | Ruhestörung > Ständige Spam-Wiederholung | ||
93 | </combo_item> | ||
94 | <combo_item name="Disturbing_the_peace__Unwanted_advert_spam"> | ||
95 | Ruhestörung > Unerwünschte Spam-Werbung | ||
96 | </combo_item> | ||
97 | <combo_item name="Fraud__L$"> | ||
98 | Betrug > L$ | ||
99 | </combo_item> | ||
100 | <combo_item name="Fraud__Land"> | ||
101 | Betrug> Land | ||
102 | </combo_item> | ||
103 | <combo_item name="Fraud__Pyramid_scheme_or_chain_letter"> | ||
104 | Betrug > Schneeballsystem oder Kettenbrief | ||
105 | </combo_item> | ||
106 | <combo_item name="Fraud__US$"> | ||
107 | Betrug > US$ | ||
108 | </combo_item> | ||
109 | <combo_item name="Harassment__Advert_farms___visual_spam"> | ||
110 | Belästigung > Werbefarmen / visueller Spam | ||
111 | </combo_item> | ||
112 | <combo_item name="Harassment__Defaming_individuals_or_groups"> | ||
113 | Belästigung > Diffamieren von Einzelpersonen/Gruppen | ||
114 | </combo_item> | ||
115 | <combo_item name="Harassment__Impeding_movement"> | ||
116 | Belästigung > Bewegungseinschränkung | ||
117 | </combo_item> | ||
118 | <combo_item name="Harassment__Sexual_harassment"> | ||
119 | Belästigung > Sexuelle Belästigung | ||
120 | </combo_item> | ||
121 | <combo_item name="Harassment__Solicting_inciting_others_to_violate_ToS"> | ||
122 | Belästigung > Anstiften Dritter zur Missachtung der Nutzungsbedingungen | ||
123 | </combo_item> | ||
124 | <combo_item name="Harassment__Verbal_abuse"> | ||
125 | Belästigung > Beschimpfung | ||
126 | </combo_item> | ||
127 | <combo_item name="Indecency__Broadly_offensive_content_or_conduct"> | ||
128 | Unanständigkeit > Anstößige Inhalte oder Handlungen in der Öffentlichkeit | ||
129 | </combo_item> | ||
130 | <combo_item name="Indecency__Broadly_visible_mature_content"> | ||
131 | Unanständigkeit > Nicht jugendfreier Inhalt in der Öffentlichkeit | ||
132 | </combo_item> | ||
133 | <combo_item name="Indecency__Inappropriate_avatar_name"> | ||
134 | Unanständigkeit > Anstößiger Avatarname | ||
135 | </combo_item> | ||
136 | <combo_item name="Indecency__Mature_content_in_PG_region"> | ||
137 | Unanständigkeit > Nicht jugendfreier Inhalt in "Jugendfrei"-Region | ||
138 | </combo_item> | ||
46 | <combo_item name="Intolerance"> | 139 | <combo_item name="Intolerance"> |
47 | Intoleranz | 140 | Intoleranz |
48 | </combo_item> | 141 | </combo_item> |
@@ -64,6 +157,24 @@ dann auf das Objekt: | |||
64 | <combo_item name="Parcel"> | 157 | <combo_item name="Parcel"> |
65 | Parzelle | 158 | Parzelle |
66 | </combo_item> | 159 | </combo_item> |
160 | <combo_item name="Land__Abuse_of_sandbox_resources"> | ||
161 | Land > Missbrauch der Sandbox-Ressourcen | ||
162 | </combo_item> | ||
163 | <combo_item name="Land__Encroachment__Objects_textures"> | ||
164 | Land > Unbefugte Nutzung > Objekte/Texturen | ||
165 | </combo_item> | ||
166 | <combo_item name="Land__Encroachment__Particles"> | ||
167 | Land > Unbefugte Nutzung > Partikel | ||
168 | </combo_item> | ||
169 | <combo_item name="Land__Encroachment__Trees_plants"> | ||
170 | Land > Unbefugte Nutzung > Bäume/Pflanzen | ||
171 | </combo_item> | ||
172 | <combo_item name="Trademark_violation"> | ||
173 | Markenrechtsverletzung | ||
174 | </combo_item> | ||
175 | <combo_item name="Wagering_gambling"> | ||
176 | Wetten/Glücksspiel | ||
177 | </combo_item> | ||
67 | <combo_item name="Other"> | 178 | <combo_item name="Other"> |
68 | Sonstige | 179 | Sonstige |
69 | </combo_item> | 180 | </combo_item> |
@@ -73,6 +184,8 @@ dann auf das Objekt: | |||
73 | </text> | 184 | </text> |
74 | <button label="Einwohner auswählen" label_selected="" name="select_abuser" | 185 | <button label="Einwohner auswählen" label_selected="" name="select_abuser" |
75 | tool_tip="Den Namen des Beschuldigten aus einer Liste wählen" /> | 186 | tool_tip="Den Namen des Beschuldigten aus einer Liste wählen" /> |
187 | <check_box label="Name des Täters ist nicht bekannt" name="omit_abuser_name" | ||
188 | tool_tip="Wählen Sie diese Option, wenn Ihnen der Name des Täters unbekannt ist" /> | ||
76 | <text name="abuser_name_title2"> | 189 | <text name="abuser_name_title2"> |
77 | Ort des Missbrauchs: | 190 | Ort des Missbrauchs: |
78 | </text> | 191 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/de/floater_skin_preview_template.xml b/linden/indra/newview/skins/default/xui/de/floater_skin_preview_template.xml new file mode 100644 index 0000000..56b374f --- /dev/null +++ b/linden/indra/newview/skins/default/xui/de/floater_skin_preview_template.xml | |||
@@ -0,0 +1,30 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <multi_floater name="floater_chatterbox"> | ||
3 | <icon label="Fliegen" label_selected="Landen" name="" | ||
4 | tool_tip="Flug beginnen.Steigen/sinken mit E/C oder Bild hoch/Bild ab." /> | ||
5 | <panel name="panel_unfocused_floater"> | ||
6 | <text name="titlebar_focused"> | ||
7 | Nicht fokussiert | ||
8 | </text> | ||
9 | <combo_box label="Kombifeld" name="combo_box_1" /> | ||
10 | <text_editor name="Chat History Editor"> | ||
11 | Text | ||
12 | </text_editor> | ||
13 | </panel> | ||
14 | <panel name="panel_focused_floater"> | ||
15 | <text name="titlebar_focused"> | ||
16 | Fokussiert | ||
17 | </text> | ||
18 | <tab_container name="chatterbox_tabs"> | ||
19 | <panel label="Fokussiert" name="test_1"> | ||
20 | <slider label="Regler" name="SliderTestName" /> | ||
21 | <check_box label="Wahr" name="check_box_test_1" /> | ||
22 | <check_box label="Unwahr" name="check_box_test_2" /> | ||
23 | <text_editor name="Chat History Editor"> | ||
24 | Chat-Text | ||
25 | </text_editor> | ||
26 | </panel> | ||
27 | <panel label="Nicht fokussiert" name="test_2" /> | ||
28 | </tab_container> | ||
29 | </panel> | ||
30 | </multi_floater> | ||
diff --git a/linden/indra/newview/skins/default/xui/de/floater_snapshot.xml b/linden/indra/newview/skins/default/xui/de/floater_snapshot.xml index 70d09ec..38eb713 100644 --- a/linden/indra/newview/skins/default/xui/de/floater_snapshot.xml +++ b/linden/indra/newview/skins/default/xui/de/floater_snapshot.xml | |||
@@ -1,23 +1,26 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="Snapshot" title="Foto-Vorschau"> | 2 | <floater name="Snapshot" title="Foto-Vorschau"> |
3 | <text name="type_label"> | 3 | <text name="type_label"> |
4 | Was möchten Sie tun? | 4 | Zweck des Fotos |
5 | </text> | 5 | </text> |
6 | <radio_group label="Fototyp" name="snapshot_type_radio"> | 6 | <radio_group label="Fototyp" name="snapshot_type_radio"> |
7 | <radio_item name="postcard"> | 7 | <radio_item name="postcard"> |
8 | Postkarte senden | 8 | Per E-Mail senden |
9 | </radio_item> | 9 | </radio_item> |
10 | <radio_item name="texture"> | 10 | <radio_item name="texture"> |
11 | Foto hochladen | 11 | Im Inventar speichern (L$10) |
12 | </radio_item> | 12 | </radio_item> |
13 | <radio_item name="local"> | 13 | <radio_item name="local"> |
14 | Foto auf Festplatte speichern | 14 | Auf Festplatte speichern |
15 | </radio_item> | 15 | </radio_item> |
16 | </radio_group> | 16 | </radio_group> |
17 | <button label="Mehr >>" name="more_btn" tool_tip="Erweiterte Optionen" /> | 17 | <button label="Mehr >>" name="more_btn" tool_tip="Erweiterte Optionen" /> |
18 | <button label="<< Weniger" name="less_btn" tool_tip="Erweiterte Optionen" /> | 18 | <button label="<< Weniger" name="less_btn" tool_tip="Erweiterte Optionen" /> |
19 | <text name="type_label2"> | 19 | <text name="type_label2"> |
20 | Welche Bildgröße benötigen Sie? | 20 | Größe |
21 | </text> | ||
22 | <text name="format_label"> | ||
23 | Format | ||
21 | </text> | 24 | </text> |
22 | <combo_box label="Auflösung" name="postcard_size_combo"> | 25 | <combo_box label="Auflösung" name="postcard_size_combo"> |
23 | <combo_item name="640x480"> | 26 | <combo_item name="640x480"> |
@@ -79,6 +82,17 @@ | |||
79 | Benutzerdefiniert | 82 | Benutzerdefiniert |
80 | </combo_item> | 83 | </combo_item> |
81 | </combo_box> | 84 | </combo_box> |
85 | <combo_box label="Format" name="local_format_combo"> | ||
86 | <combo_item name="PNG"> | ||
87 | PNG | ||
88 | </combo_item> | ||
89 | <combo_item name="JPEG"> | ||
90 | JPEG | ||
91 | </combo_item> | ||
92 | <combo_item name="BMP"> | ||
93 | BMP | ||
94 | </combo_item> | ||
95 | </combo_box> | ||
82 | <spinner label="Breite" name="snapshot_width" /> | 96 | <spinner label="Breite" name="snapshot_width" /> |
83 | <spinner label="Höhe" name="snapshot_height" /> | 97 | <spinner label="Höhe" name="snapshot_height" /> |
84 | <slider label="Bildqualität" name="image_quality_slider" /> | 98 | <slider label="Bildqualität" name="image_quality_slider" /> |
@@ -105,10 +119,10 @@ | |||
105 | <check_box label="Seitenverhältnis beibehalten" name="keep_aspect_check" /> | 119 | <check_box label="Seitenverhältnis beibehalten" name="keep_aspect_check" /> |
106 | <check_box label="Frame einfrieren (Vollbildvorschau)" name="freeze_frame_check" /> | 120 | <check_box label="Frame einfrieren (Vollbildvorschau)" name="freeze_frame_check" /> |
107 | <button label="Foto aktualisieren" name="new_snapshot_btn" /> | 121 | <button label="Foto aktualisieren" name="new_snapshot_btn" /> |
108 | <check_box label="Automatisches Foto" name="auto_snapshot_check" /> | 122 | <check_box label="Automatisch aktualisieren" name="auto_snapshot_check" /> |
109 | <button label="Hochladen (10 L$)" name="upload_btn" /> | 123 | <button label="Speichern (L$10)" name="upload_btn" /> |
110 | <button label="Senden" name="send_btn" /> | 124 | <button label="Senden" name="send_btn" /> |
111 | <button label="Speichern" name="save_btn" /> | 125 | <button label="Speichern" name="save_btn" tool_tip="Bild als Datei speichern" /> |
112 | <button label="Abbrechen" name="discard_btn" /> | 126 | <button label="Abbrechen" name="discard_btn" /> |
113 | <text name="unknown"> | 127 | <text name="unknown"> |
114 | unbekannt | 128 | unbekannt |
diff --git a/linden/indra/newview/skins/default/xui/de/floater_tools.xml b/linden/indra/newview/skins/default/xui/de/floater_tools.xml index 8edb0d4..03401ce 100644 --- a/linden/indra/newview/skins/default/xui/de/floater_tools.xml +++ b/linden/indra/newview/skins/default/xui/de/floater_tools.xml | |||
@@ -79,6 +79,9 @@ | |||
79 | Groß | 79 | Groß |
80 | </combo_item> | 80 | </combo_item> |
81 | </combo_box> | 81 | </combo_box> |
82 | <text name="Strength:"> | ||
83 | Stärke: | ||
84 | </text> | ||
82 | <button label="Auf Auswahl anwenden" label_selected="Auf Auswahl anwenden" | 85 | <button label="Auf Auswahl anwenden" label_selected="Auf Auswahl anwenden" |
83 | name="button apply to selection" tool_tip="Ausgewähltes Land ändern" /> | 86 | name="button apply to selection" tool_tip="Ausgewähltes Land ändern" /> |
84 | <check_box label="Eigentümer anzeigen" name="checkbox show owners" /> | 87 | <check_box label="Eigentümer anzeigen" name="checkbox show owners" /> |
@@ -142,6 +145,9 @@ | |||
142 | <text name="Price: L$"> | 145 | <text name="Price: L$"> |
143 | Preis: L$ | 146 | Preis: L$ |
144 | </text> | 147 | </text> |
148 | <text name="Cost"> | ||
149 | Preis:L$ | ||
150 | </text> | ||
145 | <radio_group name="sale type"> | 151 | <radio_group name="sale type"> |
146 | <radio_item name="Original"> | 152 | <radio_item name="Original"> |
147 | Original | 153 | Original |
@@ -218,6 +224,21 @@ | |||
218 | <text name="text modify warning"> | 224 | <text name="text modify warning"> |
219 | Gesamtes Objekt muss gewählt werden, um Berechtigungen festzulegen. | 225 | Gesamtes Objekt muss gewählt werden, um Berechtigungen festzulegen. |
220 | </text> | 226 | </text> |
227 | <string name="Cost Default"> | ||
228 | Preis:L$ | ||
229 | </string> | ||
230 | <string name="Cost Total"> | ||
231 | Summe:L$ | ||
232 | </string> | ||
233 | <string name="Cost Per Unit"> | ||
234 | Stückpreis:L$ | ||
235 | </string> | ||
236 | <string name="Cost Mixed"> | ||
237 | Mischpreis | ||
238 | </string> | ||
239 | <string name="Sale Mixed"> | ||
240 | Mischverkauf | ||
241 | </string> | ||
221 | </panel> | 242 | </panel> |
222 | <panel label="Objekt" name="Object"> | 243 | <panel label="Objekt" name="Object"> |
223 | <text name="select_single"> | 244 | <text name="select_single"> |
@@ -376,6 +397,10 @@ | |||
376 | </text> | 397 | </text> |
377 | <texture_picker label="Textur für gestaltetes Primitiv" name="sculpt texture control" | 398 | <texture_picker label="Textur für gestaltetes Primitiv" name="sculpt texture control" |
378 | tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> | 399 | tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> |
400 | <check_box label="Spiegeln" name="sculpt mirror control" | ||
401 | tool_tip="Geformtes Primitiv entlang der X-Achse spiegeln." /> | ||
402 | <check_box label="Wenden" name="sculpt invert control" | ||
403 | tool_tip="Dreht die Normalen des geformten Primitivs von innen nach außen." /> | ||
379 | <text name="label sculpt type"> | 404 | <text name="label sculpt type"> |
380 | Naht | 405 | Naht |
381 | </text> | 406 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/de/floater_top_objects.xml b/linden/indra/newview/skins/default/xui/de/floater_top_objects.xml index e13ccfe..d7abf5c 100644 --- a/linden/indra/newview/skins/default/xui/de/floater_top_objects.xml +++ b/linden/indra/newview/skins/default/xui/de/floater_top_objects.xml | |||
@@ -8,19 +8,20 @@ | |||
8 | <column label="Name" name="name" /> | 8 | <column label="Name" name="name" /> |
9 | <column label="Owner" name="owner" /> | 9 | <column label="Owner" name="owner" /> |
10 | <column label="Location" name="location" /> | 10 | <column label="Location" name="location" /> |
11 | <column label="Uhrzeit" name="time" /> | ||
11 | </scroll_list> | 12 | </scroll_list> |
12 | <line_editor bg_readonly_color="clear" bottom_delta="3" enabled="false" | 13 | <line_editor bg_readonly_color="clear" bottom_delta="3" enabled="false" |
13 | follows="left|bottom|right" font="SansSerifSmall" height="20" left="80" | 14 | follows="left|bottom|right" font="SansSerifSmall" height="20" left="80" |
14 | name="id_editor" text_readonly_color="white" width="244" /> | 15 | name="id_editor" text_readonly_color="white" width="244" /> |
15 | <text name="id_text"> | 16 | <text name="id_text"> |
16 | Objekt-ID: | 17 | Objekt-ID: |
17 | </text> | 18 | </text> |
18 | <button bottom_delta="0" follows="bottom|right" height="20" label="Beacon anzeigen" | 19 | <button bottom_delta="0" follows="bottom|right" height="20" label="Beacon anzeigen" |
19 | name="show_beacon_btn" right="-10" width="110" /> | 20 | name="show_beacon_btn" right="-10" width="110" /> |
20 | <line_editor bg_readonly_color="clear" bottom_delta="3" enabled="false" | 21 | <line_editor bg_readonly_color="clear" bottom_delta="3" enabled="false" |
21 | follows="left|bottom|right" font="SansSerifSmall" height="20" left="80" | 22 | follows="left|bottom|right" font="SansSerifSmall" height="20" left="80" |
22 | name="object_name_editor" text_readonly_color="white" width="244" /> | 23 | name="object_name_editor" text_readonly_color="white" width="244" /> |
23 | <text name="obj_name_text"> | 24 | <text name="obj_name_text"> |
24 | Objektname: | 25 | Objektname: |
25 | </text> | 26 | </text> |
26 | <button bottom_delta="0" follows="bottom|right" height="20" label="Filter" | 27 | <button bottom_delta="0" follows="bottom|right" height="20" label="Filter" |
@@ -28,19 +29,19 @@ | |||
28 | <line_editor bg_readonly_color="clear" bottom_delta="3" enabled="true" | 29 | <line_editor bg_readonly_color="clear" bottom_delta="3" enabled="true" |
29 | follows="left|bottom|right" font="SansSerifSmall" height="20" left="106" | 30 | follows="left|bottom|right" font="SansSerifSmall" height="20" left="106" |
30 | name="owner_name_editor" text_readonly_color="white" width="218" /> | 31 | name="owner_name_editor" text_readonly_color="white" width="218" /> |
31 | <text name="owner_name_text"> | 32 | <text name="owner_name_text"> |
32 | Eigentümername: | 33 | Eigentümername: |
33 | </text> | 34 | </text> |
34 | <button bottom_delta="0" follows="bottom|right" height="20" label="Filter" | 35 | <button bottom_delta="0" follows="bottom|right" height="20" label="Filter" |
35 | name="filter_owner_btn" right="-10" width="110" /> | 36 | name="filter_owner_btn" right="-10" width="110" /> |
36 | <button bottom="35" follows="bottom|left" height="20" label="Auswahl zurückgeben" left="10" | 37 | <button bottom="35" follows="bottom|left" height="20" label="Auswahl zurückgeben" |
37 | name="return_selected_btn" width="134" /> | 38 | left="10" name="return_selected_btn" width="134" /> |
38 | <button bottom="35" follows="bottom|left" height="20" label="Alle zurückgeben" left="150" | 39 | <button bottom="35" follows="bottom|left" height="20" label="Alle zurückgeben" |
39 | name="return_all_btn" width="134" /> | 40 | left="150" name="return_all_btn" width="134" /> |
40 | <button bottom="10" follows="bottom|left" height="20" label="Auswahl deaktivieren" | 41 | <button bottom="10" follows="bottom|left" height="20" label="Auswahl deaktivieren" |
41 | left="10" name="disable_selected_btn" width="134" /> | 42 | left="10" name="disable_selected_btn" width="134" /> |
42 | <button bottom="10" follows="bottom|left" height="20" label="Alle deaktivieren" left="150" | 43 | <button bottom="10" follows="bottom|left" height="20" label="Alle deaktivieren" |
43 | name="disable_all_btn" width="134" /> | 44 | left="150" name="disable_all_btn" width="134" /> |
44 | <button bottom_delta="0" follows="bottom|right" height="20" label="Aktualisieren" | 45 | <button bottom_delta="0" follows="bottom|right" height="20" label="Aktualisieren" |
45 | name="refresh_btn" right="-10" width="110" /> | 46 | name="refresh_btn" right="-10" width="110" /> |
46 | <text name="top_scripts_title"> | 47 | <text name="top_scripts_title"> |
diff --git a/linden/indra/newview/skins/default/xui/de/floater_tos.xml b/linden/indra/newview/skins/default/xui/de/floater_tos.xml index de58220..bb79755 100644 --- a/linden/indra/newview/skins/default/xui/de/floater_tos.xml +++ b/linden/indra/newview/skins/default/xui/de/floater_tos.xml | |||
@@ -13,6 +13,7 @@ | |||
13 | <text name="tos_title"> | 13 | <text name="tos_title"> |
14 | Nutzungsvereinbarung | 14 | Nutzungsvereinbarung |
15 | </text> | 15 | </text> |
16 | <check_box label="Ich stimme den Nutzungsbedingungen zu" name="agree_chk" /> | ||
16 | <text name="tos_heading"> | 17 | <text name="tos_heading"> |
17 | Lesen Sie die folgenden Nutzungsbedingungen sorgfältig durch. Sie müssen dieser Vereinbarung zustimmen, | 18 | Lesen Sie die folgenden Nutzungsbedingungen sorgfältig durch. Sie müssen dieser Vereinbarung zustimmen, |
18 | um Second Life benutzen zu können. | 19 | um Second Life benutzen zu können. |
diff --git a/linden/indra/newview/skins/default/xui/de/menu_pie_avatar.xml b/linden/indra/newview/skins/default/xui/de/menu_pie_avatar.xml index 9fc0fa6..acc848a 100644 --- a/linden/indra/newview/skins/default/xui/de/menu_pie_avatar.xml +++ b/linden/indra/newview/skins/default/xui/de/menu_pie_avatar.xml | |||
@@ -3,7 +3,7 @@ | |||
3 | <menu_item_call label="Profil..." name="Profile..." /> | 3 | <menu_item_call label="Profil..." name="Profile..." /> |
4 | <menu_item_call label="Stummschalten" name="Avatar Mute" /> | 4 | <menu_item_call label="Stummschalten" name="Avatar Mute" /> |
5 | <menu_item_call label="Gehe zu" name="Go To" /> | 5 | <menu_item_call label="Gehe zu" name="Go To" /> |
6 | <menu_item_call label="Freund hinzufügen" name="Add Friend" /> | 6 | <menu_item_call label="Freund hinzufügen..." name="Add Friend" /> |
7 | <menu_item_call label="Zahlen..." name="Pay..." /> | 7 | <menu_item_call label="Zahlen..." name="Pay..." /> |
8 | <pie_menu label="Mehr >" name="More >"> | 8 | <pie_menu label="Mehr >" name="More >"> |
9 | <menu_item_call label="Einfrieren..." name="Freeze..." /> | 9 | <menu_item_call label="Einfrieren..." name="Freeze..." /> |
diff --git a/linden/indra/newview/skins/default/xui/de/menu_viewer.xml b/linden/indra/newview/skins/default/xui/de/menu_viewer.xml index c7d20e7..0934a28 100644 --- a/linden/indra/newview/skins/default/xui/de/menu_viewer.xml +++ b/linden/indra/newview/skins/default/xui/de/menu_viewer.xml | |||
@@ -142,6 +142,7 @@ | |||
142 | <menu_item_call label="Als abwesend anzeigen" name="Set Away" /> | 142 | <menu_item_call label="Als abwesend anzeigen" name="Set Away" /> |
143 | <menu_item_call label="Als beschäftigt anzeigen" name="Set Busy" /> | 143 | <menu_item_call label="Als beschäftigt anzeigen" name="Set Busy" /> |
144 | <menu_item_call label="Alle Animationen stoppen" name="Stop All Animations" /> | 144 | <menu_item_call label="Alle Animationen stoppen" name="Stop All Animations" /> |
145 | <menu_item_call label="Tasten freigeben" name="Release Keys" /> | ||
145 | <menu_item_separator label="-----------" name="separator4" /> | 146 | <menu_item_separator label="-----------" name="separator4" /> |
146 | <menu_item_call label="Kontostatistik..." name="Account History..." /> | 147 | <menu_item_call label="Kontostatistik..." name="Account History..." /> |
147 | <menu_item_call label="Mein Konto verwalten..." name="Manage My Account..." /> | 148 | <menu_item_call label="Mein Konto verwalten..." name="Manage My Account..." /> |
@@ -208,12 +209,15 @@ | |||
208 | <menu_item_separator label="-----------" name="separator6" /> | 209 | <menu_item_separator label="-----------" name="separator6" /> |
209 | <menu_item_call label="Skriptwarnung/Fehlerfenster anzeigen" | 210 | <menu_item_call label="Skriptwarnung/Fehlerfenster anzeigen" |
210 | name="Show Script Warning/Error Window" /> | 211 | name="Show Script Warning/Error Window" /> |
211 | <menu_item_call label="Skripts in Auswahl neu kompilieren" | 212 | <menu_item_call label="Skripte in Auswahl neu kompilieren" |
212 | name="Recompile Scripts in Selection" /> | 213 | name="Recompile Scripts in Selection"> |
213 | <menu_item_call label="Skripts zurücksetzen ausgewählte" name="Reset Scripts in Selection" /> | 214 | <menu_item_call label="Mono" name="Mono" /> |
214 | <menu_item_call label="Skripts so einstellen, dass sie in Auswahl ausgeführt werden" | 215 | <menu_item_call label="LSL" name="LSL" /> |
216 | </menu_item_call> | ||
217 | <menu_item_call label="Skripte in Auswahl zurücksetzen" name="Reset Scripts in Selection" /> | ||
218 | <menu_item_call label="Skripte in Auswahl so einstellen, dass sie ausgeführt werden" | ||
215 | name="Set Scripts to Running in Selection" /> | 219 | name="Set Scripts to Running in Selection" /> |
216 | <menu_item_call label="Skripts so einstellen, dass sie in Auswahl nicht ausgeführt werden" | 220 | <menu_item_call label="Skripte in Auswahl so einstellen, dass sie nicht ausgeführt werden" |
217 | name="Set Scripts to Not Running in Selection" /> | 221 | name="Set Scripts to Not Running in Selection" /> |
218 | </menu> | 222 | </menu> |
219 | <menu label="Hilfe" name="Help"> | 223 | <menu label="Hilfe" name="Help"> |
diff --git a/linden/indra/newview/skins/default/xui/de/mime_types.xml b/linden/indra/newview/skins/default/xui/de/mime_types.xml index 03fd660..57b074e 100644 --- a/linden/indra/newview/skins/default/xui/de/mime_types.xml +++ b/linden/indra/newview/skins/default/xui/de/mime_types.xml | |||
@@ -59,12 +59,12 @@ | |||
59 | </scheme> | 59 | </scheme> |
60 | <mimetype name="blank"> | 60 | <mimetype name="blank"> |
61 | <label name="blank_label"> | 61 | <label name="blank_label"> |
62 | - Keine - | 62 | - Keine - |
63 | </label> | 63 | </label> |
64 | </mimetype> | 64 | </mimetype> |
65 | <mimetype name="none/none"> | 65 | <mimetype name="none/none"> |
66 | <label name="none/none_label"> | 66 | <label name="none/none_label"> |
67 | - Keine - | 67 | - Keine - |
68 | </label> | 68 | </label> |
69 | </mimetype> | 69 | </mimetype> |
70 | <mimetype name="audio/*"> | 70 | <mimetype name="audio/*"> |
@@ -112,6 +112,11 @@ | |||
112 | Rich Text (RTF) | 112 | Rich Text (RTF) |
113 | </label> | 113 | </label> |
114 | </mimetype> | 114 | </mimetype> |
115 | <mimetype name="application/smil"> | ||
116 | <label name="application/smil_label"> | ||
117 | Synchronized Multimedia Integration Language (SMIL) | ||
118 | </label> | ||
119 | </mimetype> | ||
115 | <mimetype name="application/xhtml+xml"> | 120 | <mimetype name="application/xhtml+xml"> |
116 | <label name="application/xhtml+xml_label"> | 121 | <label name="application/xhtml+xml_label"> |
117 | Webseite (XHTML) | 122 | Webseite (XHTML) |
@@ -222,4 +227,4 @@ | |||
222 | Video (AVI) | 227 | Video (AVI) |
223 | </label> | 228 | </label> |
224 | </mimetype> | 229 | </mimetype> |
225 | </mimetypes> \ No newline at end of file | 230 | </mimetypes> |
diff --git a/linden/indra/newview/skins/default/xui/de/need_to_long.xml b/linden/indra/newview/skins/default/xui/de/need_to_long.xml index 608a2e6..581dd2b 100644 --- a/linden/indra/newview/skins/default/xui/de/need_to_long.xml +++ b/linden/indra/newview/skins/default/xui/de/need_to_long.xml | |||
@@ -1,37 +1,71 @@ | |||
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>//HelpReportAbuseContainsCopyright/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 | Dear Resident, |
9 | |||
10 | Reports about copyright infringement can only be submitted | ||
11 | as described at http://secondlife.com/corporate/dmca.php. | ||
12 | |||
13 | Reports concerning copyright infringement will automatically | ||
14 | be discarded if they are submitted through the 'Abuse Report' | ||
15 | feature. If your report does not relate to copyright infringement, | ||
16 | you may close this window and finish submitting your report. | ||
17 | |||
18 | Thank you, | ||
19 | |||
20 | Linden Lab | ||
21 | </d_old> | ||
22 | <e_new> | ||
23 | Dear Resident, | ||
9 | 24 | ||
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 | 25 | If you are reporting intellectual property infringement, please make sure you are reporting it correctly: |
11 | 26 | ||
12 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 27 | (1) The Abuse Process. You may submit an abuse report if you believe a Resident is exploiting the Second Life permissions system, for example, by using CopyBot or similar copying tools, to infringe intellectual property rights. The Abuse Team investigates and issues appropriate disciplinary action for behavior that violates the Second Life Community Standards or Terms of Service. However, the Abuse Team does not handle and will not respond to requests to remove content from the Second Life world. |
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 | 28 | ||
27 | All rights reserved. See licenses.txt for details. | 29 | (2) The DMCA or Content Removal Process. To request removal of content from Second Life, you must submit a valid notification of infringement as provided in our DMCA Policy at http://secondlife.com/corporate/dmca.php. |
28 | 30 | ||
29 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 31 | If you still wish to continue with the abuse process, please close this window and finish submitting your report. |
30 | 32 | ||
33 | Thank you, | ||
31 | 34 | ||
32 | Happiness is a warm puppy. -- Charles M. Schulz | 35 | Linden Lab</e_new> |
33 | </d_old> | 36 | <f_translation> |
34 | <e_new> | 37 | Sehr geehrte(r) Einwohner(in), |
38 | |||
39 | achten Sie bei der Meldung einer Urheberrechtsverletzung darauf, dass Sie dabei korrekt vorgehen: | ||
40 | |||
41 | 1. Missbrauch melden. Wenn Sie der Meinung sind, ein Einwohner nutzt das Berechtigungssystem von Second Life auf unerlaubte Weise zu seinem Vorteil aus, indem er zum Beispiel einen CopyBot oder verwandte Kopiertools verwendet und damit eine Urheberrechtsverletzung begeht, können Sie diesen Missbrauch melden.Das Missbrauchsteam untersucht etwaige Verstöße gegen die Second Life Community Standards oder die Nutzungsbedingungen und verhängt entsprechende Strafen.Das Missbrauchsteam ist jedoch nicht dafür zuständig, Inhalte aus der Second Life-Welt zu entfernen und reagiert auch nicht auf entsprechende Anfragen. | ||
42 | |||
43 | 2. Die DMCA oder Inhaltsentfernungs-Vorgehensweise. Sie können das Entfernen von Inhalten aus Second Life beantragen. Dazu müssen Sie eine Urheberrechtsverletzung gemäß den in unserer DMCA-Richtlinie unter http://secondlife.com/corporate/dmca.php dargelegten Anweisungen einreichen. | ||
44 | |||
45 | Wenn Sie jetzt mit der Missbrauchmeldung fortfahren möchten, schließen Sie bitte dieses Fenster und senden Sie Ihren Bericht ein. | ||
46 | |||
47 | Vielen Dank, | ||
48 | |||
49 | Linden Lab</f_translation> | ||
50 | <f_old_trans> | ||
51 | Sehr geehrte(r) Einwohner(in), | ||
52 | |||
53 | Meldungen über Urheberrechtsverletzungen können nur auf | ||
54 | http://secondlife.com/corporate/dmca.php eingereicht werden. | ||
55 | |||
56 | Meldungen über Urheberrechtsverletzungen, die über | ||
57 | 'Missbrauch melden' eingereicht wurden, werden automatisch | ||
58 | gelöscht. Wenn Sie keine Urheberrechtsverletzung melden möchten, | ||
59 | können Sie dieses Fenster schließen und mit dem Einreichen Ihrer Meldung fortfahren. | ||
60 | |||
61 | Vielen Dank, | ||
62 | |||
63 | Linden Lab | ||
64 | </f_old_trans> | ||
65 | </string><string><a_file>floater_about.xml</a_file> | ||
66 | <b_path>/floater_about/credits_editor</b_path> | ||
67 | <c_attribute></c_attribute> | ||
68 | <d_old> | ||
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. | 69 | Second Life is brought to you by Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa, Enus, Kraft, Naveen, Simon, Q, Ronp, Laurap, Ram, KyleJM, Marty, Kend, Daveh, Prospero, Melissa, Nat, Hamilton, Green, Seraph, Ekim, Miz, Jimmy, Kosmo, Rome, Doris, JT, Benoc, Whump, Mango, Trinity, Patch, TJ, Christy, Bao, Joohwan, Kate, Oreh, Angela, Johan, Cheah, Lan, Matias, Brandy, Cogsworth, Aleks, Mitchell, Space, Einstein, Bambers, Colton, Malbers, Maggie, Umesh, Santosh, Rose, Stash, Rothman, Winnie, Stella, Niall and many others. |
36 | 70 | ||
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 | 71 | Thank you to the following residents for helping to ensure that this is the best version yet: aaron23 decuir, Abelv Vollmar, Abyssin Otoro, ActingIll Igaly, Adamas Carter, Addy Broome, Adelia Menges, Alexandra Rucker, Alexandrea Fride, Alissa Sabre, Alyx Jonson, Ann Otoole, Anton Fargis, Aradia Dielli, Araina jewell, Arcane Clawtooth, arcangelo vantelli, Are Sperber, Argent Stonecutter, arkady yost, Ashcroft Burnham, Ashen Arida, Auron Forcella, Azadine Umarov, Azildin Furst, Balp Allen, Balpien Hammerer, Barney Boomslang, Barrett Slade, becky pippen, Beeflin Grut, Beer Dailey, Behemoth Greenwood, bigmanu greene, bitova loon, Bonca Chikuwa, Bonnie Bechir, Brandon Catteneo, buttonpusher jones, Carina Raymaker, Ceera Murakami, Celierra Darling, ChatNoir Moonsoo, Cheetah Hammerer, chet neurocam, Cinthya Loveless, Cold Spitteler, Coral Quinnell, Crash Pointe, CrazyTB Oh, Creem Pye, Crom Chaffe, ctrl althouse, dade carver, Dael Ra, dakota schwade, Dale Innis, Damian McLeod, Danger Lytton, danielluh ashton, DanOfWA Flanagan, Davec Horsforth, Davidius Morigi, davie zinner, Day Oh, DBDigital Epsilon, Deany Fall, deBruce Munro, Decaf Coffey, Dedric Mauriac, Deeso Saeed, Dekka Raymaker, dexter eberhart, Dildo Spitz, Dizzy Banjo, djcabello klaar, Dnali Anabuki, Domchi Underwood, Doran Zemlja, Drew Dwi, Duckless Vandyke, Duncan Stenvaag, Dylan Rickenbacker, dzogchen Moody, Dzonatas Sol, Eddy Stryker, Edward Griffith, Edward Pearse, ein duesenburg, Elle Pollack, Elle74 Zaftig, Emileigh Starbrook, Emma Nowhere, ener bing, Erdrick Balbozar, eric domela, Evangeline Biedermann, Excalibur Longstaff, Fake Fitzgerald, Feldspar Millgrove, Feynt Mistral, Fluf Fredriksson, Forbid Utorid, Fortyniner Beck, Francesco Despres, Francisco Koolhoven, Franta Burt, Fury Rosewood, garde Burrel, Garmin Kawaguichi, Gavin Ichigo, Gellan Glenelg, Genie Demina, Gennifer Meredith, Gigs Taggart, Goldie Katsu, Gwyneth Llewelyn, Haravikk Mistral, Harleen Gretzky, Haruki Watanabe, Heather Manatiso, Henri Beauchamp, Honey Fairweather, Hypatia Callisto, Ice Brodie, icktoofay Kamachi, IntLibber Brautigan, Janise Dreamscape, Jay Shinobu, Jenni Ryba, Jeremy Ondricek, JetZep Zabelin, Jims Smythe, Jini Hammerer, Jopy Weber, JustOneMore Loon, Kaluura Boa, Kara Markova, Kevin Susenko, Khyra Ares, Kii Lilliehook, Kitty Barnett, Kris Kuttelwascher, Lanita Wingtips, Laura18 Streeter, Lee Ludd, Lettrius Jewell, Liberty Tesla, LilyAnna Carter, Lindal Kidd, Lisa Lowe, Lisa McConnell, Lola Machin, luca peck, Lupus Clawtooth, M1sha Dallin, Macsima Dagostino, Mana Janus, Mani Canning, Manjusri Binder, marceledward edman, march Korda, marchino villota, Marcus Llewellyn, MartinRJ Fayray, Matthew Dowd, Max Kleiber, mazzy fastback, McCabe Maxsted, Mckailen Kohnke, Meghan Dench, Melvin Starbrook, Mercia Mcmahon, Miakoda Carnell, Michelle2 Zenovka, Michi Lumin, mick parnall, Milla Michinaga, Millie Thompson, miranda Ashby, Mircea Lobo, MIssSara Beck, mouse mimistrobell, Myria Boa, Nanci Barthelmess, Nargus Asturias, Natalya Debevec, Nedrae Messmer, Nexeus Fatale, Niky Zenovka, Nimrod Szondi, Ninane Yoshikawa, Noch Tripsa, nokithecat writer, Nyko Merlin, Onyx Halberd, oryx tempel, Osprey Therian, Pac Hyun, Panagea McMillan, Patrick Ferrentino, PattehPh0x Katsu, ponk bing, Poppy Linden, Prajna Vella, Precious Rhiano, Prokofy Neva, Randall Lovenkraft, Rascal Ratelle, Raydon Writer, Rhaorth Antonelli, Rock Hayek, Ron Crimson, Ron Khondji, Ronald Richez, Rui Clary, Ruud Lathrop, Sakkano Imako, Sam Reinard, Sascha Vandyke, Scrippy Scofield, Sean18 McCarey, Sedona Mills, Sekonda Huet, Seraph Nephilim, Sergei Milos, Shadowquine Maltz, shai khalifa, sheilah flatley, Sheri Underwood, Shuggy Husky, Sierra Janus, Sigma Avro, Simil Miles, simon kline, Simon Nolan, Sindy Tsure, Sparks Keynes, Squirrel Wood, Stahi Columbia, StarSong Bright, Summer Seale, Sunn Thunders, Susan Koltai, Syler Zhora, Synack Fitzgerald, Tayra Dagostino, Tee Cramer, Teravus Ousley, Thomas Shikami, Tia Araw, Tillie Ariantho, Topher Brooks, Torley Linden, Twosteppin Jewell, tx Oh, urantia jewell, vaguegirl Petty, VeC Merlin, venus petrov, vv33d Beck, vynka dean, zann canto, zeebster colasanti, Zi Ree, Zion Tristan, Zorin Frobozz, Zyzzy Zarf |
@@ -57,12 +91,11 @@ Happiness is a warm puppy. -- Charles M. Schulz | |||
57 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 91 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) |
58 | 92 | ||
59 | 93 | ||
60 | Happiness is a warm puppy. -- Charles M. Schulz</e_new> | 94 | Happiness is a warm puppy. -- Charles M. Schulz</d_old> |
61 | <f_old_trans></f_old_trans> | 95 | <e_new> |
62 | <f_translation> | 96 | Second Life is brought to you by Philip, Tessa, Andrew, Cory, Ben, Bunny, Char, Charlie, Colin, Dan, Daniel, Doug, Eric, Hamlet, Haney, Hunter, Ian, Jeff, Jim, John, Lee, Mark, Peter, Phoenix, Richard, Robin, Xenon, Steve, Tanya, Eddie, Frank, Bruce, Aaron, Alice, Bob, Debra, Eileen, Helen, Janet, Louie, Leviathania, Stefan, Ray, Kevin, Tom, Mikeb, MikeT, Burgess, Elena, Tracy, BillTodd, Ryan, Zach, Sarah, Nova, Otakon, Tim, Stephanie, Michael, Evan, Nicolas, Catherine, Rachelle, Dave, Holly, Bub, Kelly, Magellan, Ramzi, Don, Sabin, Jill, Rheya, DanceStar, Jeska, Hungry, Torley, Kona, Callum, Charity, Ventrella, Jack, Uncle, Vektor, Iris, Chris, Nicole, Mick, Reuben, Blue, Babbage, Yedwab, Deana, Lauren, Brent, Pathfinder, Chadrick, Altruima, Jesse, Monroe, David, Tess, Lizzie, Patsy, Pony, Isaac, Lawrence, Cyn, Bo, Gia, Annette, Marius, Tbone, Jonathan, Karen, Ginsu, Yuko, Makiko, Thomas, Harry, Seth, Alexei, Brian, Guy, Runitai, Ethan, Data, Cornelius, Kenny, Swiss, Zero, Natria, Wendy, Stephen, Teeple, Thumper, Lucy, Dee, Mia, Liana, Warren, Branka, Aura, beez, Milo, Hermia, Red, Thrax, Joe, Sally, Magenta, Paul, Jose, Rejean, Henrik, Lexie, Amber, Logan, Xan, Nora, Morpheus, Donovan, Leyla, MichaelFrancis, Beast, Cube, Bucky, Joshua, Stryfe, Harmony, Teresa, Claudia, Walker, Glenn, Fritz, Fordak, June, Cleopetra, Jean, Ivy, Betsy, Roosevelt, Spike, Ken, Which, Tofu, Chiyo, Rob, Zee, dustin, George, Del, Matthew, Cat, Jacqui, Lightfoot, Adrian, Viola, Alfred, Noel, Irfan, Sunil, Yool, Rika, Jane, Xtreme, Frontier, a2, Neo, Siobhan, Yoz, Justin, Elle, Qarl, Benjamin, Isabel, Gulliver, Everett, Christopher, Izzy, Stephany, Garry, Sejong, Sean, Tobin, Iridium, Meta, Anthony, Jeremy, JP, Jake, Maurice, Madhavi, Leopard, Kyle, Joon, Kari, Bert, Belinda, Jon, Kristi, Bridie, Pramod, KJ, Socrates, Maria, Ivan, Aric, Yamasaki, Adreanne, Jay, MitchK, Ceren, Coco, Durl, Jenny, Periapse, Kartic, Storrs, Lotte, Sandy, Colossus, Zen, BigPapi, Brad, Pastrami, Kurz, Mani, Neuro, Jaime, MJ, Rowan, Sgt, Elvis, Gecko, Samuel, Sardonyx, Leo, Bryan, Niko, Soft, Poppy, Rachel, Aki, Angelo, Banzai, Alexa, Sue, CeeLo, Bender, CG, Gillian, Pelle, Nick, Echo, Zara, Christine, Shamiran, Emma, Blake, Keiko, Plexus, Joppa, Sidewinder, Erica, Ashlei, Twilight, Kristen, Brett, Q, Enus, Simon, Bevis, Kraft, Kip, Chandler, Ron, LauraP, Ram, KyleJM, Scouse, Prospero, Melissa, Marty, Nat, Hamilton, Kend, Lordan, Jimmy, Kosmo, Seraph, Green, Ekim, Wiggo, JT, Rome, Doris, Miz, Benoc, Whump, Trinity, Patch, Kate, TJ, Bao, Joohwan, Christy, Sofia, Matias, Cogsworth, Johan, Oreh, Cheah, Angela, Brandy, Mango, Lan, Aleks, Gloria, Heidy, Mitchell, Space, Colton, Bambers, Einstein, Maggie, Malbers, Rose, Winnie, Stella, Milton, Rothman, Niall, Marin, Allison, James, Katie, Dawn, Katt, Kalpana, Judy, Andrea, Ambroff, Infinity, Gail, Rico, Raymond, Yi, William, Christa, M, Teagan, Scout, Molly, Dante, Corr, Dynamike, Usi, Kaylee, Lil, Danica, Sascha, Kelv, Jacob, Nya, Rodney, Brandon, Elsie, Blondin, Grant, Katrin, Nyx, Gabriel, Locklainn, Claire, Devin, Minerva, Monty, Austin, Bradford, Si, Keira, H, Caitlin, Dita, Makai, Jenn and many others. |
63 | Second Life wird Ihnen präsentiert von Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa, Enus, Kraft, Naveen, Simon, Q, Ronp, Laurap, Ram, KyleJM, Marty, Kend, Daveh, Prospero, Melissa, Nat, Hamilton, Green, Seraph, Ekim, Miz, Jimmy, Kosmo, Rome, Doris, JT, Benoc, Whump, Mango, Trinity, Patch, TJ, Christy, Bao, Joohwan, Kate, Oreh, Angela, Johan, Cheah, Lan, Matias, Brandy, Cogsworth, Aleks, Mitchell, Space, Einstein, Bambers, Colton, Malbers, Maggie, Umesh, Santosh, Rose, Stash, Rothman, Winnie, Stella, Niall und vielen anderen. | ||
64 | 97 | ||
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 | 98 | Thank you to the following residents for helping to ensure that this is the best version yet: aaron23 decuir, Abra Miles, absolute balderdash, adelle fitzgerald, Aeron Kohime, Aki Shichiroji, Alger Meads, Alissa Sabre, AlwaysIcey Mapholisto, Arawn Spitteler, Aren Mandala, Arianna Wrigglesworth, Bagushii Kohime, Balpien Hammerer, Blinking2342 Blinker, byakuya runo, Capucchy Streeter, Chandra Jun, Coyote Pace, Crusher Soderstrom, Cummere Mayo, cyberrosa Rossini, Dael Ra, danana dodonpa, Darek Deluca, Davec Horsforth, django yifu, draco crane, Dre Dagostino, Ephyu Reino, etan quan, Fenrix Murakami, Fledhyris Proudhon, Fred Wardhani, Frederich Courier, garth fairchang, Gellan Glenelg, Geraldine Giha, GOLAN Eilde, gonzo joubert, Hachiro Yokosuka, Hampton Hax, harleywood guru, Hevenz Vansant, imnotgoing sideways, Jaden Giles, Jeanette Janus, Karl Dorance, keaton Akina, Khashai Steinbeck, KiPSOFT Tuqiri, kirstenlee Cinquetti, Kitty Barnett, Laurent Vesta, Lazure Ryba, Lima Vesperia, Linzi Bingyi, Lisa Lowe, LuDon Ninetails, Mark Rosenbaum, McCabe Maxsted, Michi Lumin, Midi Aeon, ml0rtd kit, Mo Eriksen, Morice Flanagan, Mysterion Aeon, Nad Gough, norgan torok, Pygar Bu, Qie Niangao, rachel corleone, Rado Arado, roberto salubrius, Royer Pessoa, samia bechir, Sasha Nurmi, Sean Heying, Selkit Diller, Shadow Pidgeon, simon kline, Smokie Ember, Soap Clawtooth, Strife Onizuka, Tal Chernov, Talan Hyun, tangletwigs fairymeadow, Tanya Spinotti, Tayra Dagostino, Teebone Aeon, Theremes Langdon, Thraxis Epsilon, tucor Capalini, Vasko Hawker, VenusMari Zapedzki, Vex Streeter, Viktoria Dovgal, Vincent Nacon, Viridian Exonar, Vivienne Schell, WarKirby Magojiro, Wilton Lundquist, Yukinoroh Kamachi, Zyzzy Zarf |
66 | 99 | ||
67 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | 100 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion |
68 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 101 | APR Copyright (C) 2000-2004 The Apache Software Foundation |
@@ -78,19 +111,20 @@ Happiness is a warm puppy. -- Charles M. Schulz | |||
78 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | 111 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga |
79 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 112 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
80 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | 113 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. |
81 | zlib Copyright (C) 1995-2002 Jean-loup Gailly und Mark Adler. | 114 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. |
82 | 115 | ||
83 | Alle Rechte vorbehalten. Details siehe licenses.txt. | 116 | All rights reserved. See licenses.txt for details. |
84 | 117 | ||
85 | Voice-Chat-Audiocoding: Polycom(R) Siren14(TM) (ITU-T Empf. G.722.1 Anhang C) | 118 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) |
86 | 119 | ||
87 | 120 | ||
88 | Happiness is a warm puppy. -- Charles M. Schulz</f_translation> | 121 | What happens to a dream deferred? --Langston Hughes</e_new> |
89 | <f_old_trans> | 122 | <f_translation> |
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. | 123 | Second Life wird Ihnen präsentiert von Philip, Tessa, Andrew, Cory, Ben, Bunny, Char, Charlie, Colin, Dan, Daniel, Doug, Eric, Hamlet, Haney, Hunter, Ian, Jeff, Jim, John, Lee, Mark, Peter, Phoenix, Richard, Robin, Xenon, Steve, Tanya, Eddie, Frank, Bruce, Aaron, Alice, Bob, Debra, Eileen, Helen, Janet, Louie, Leviathania, Stefan, Ray, Kevin, Tom, Mikeb, MikeT, Burgess, Elena, Tracy, BillTodd, Ryan, Zach, Sarah, Nova, Otakon, Tim, Stephanie, Michael, Evan, Nicolas, Catherine, Rachelle, Dave, Holly, Bub, Kelly, Magellan, Ramzi, Don, Sabin, Jill, Rheya, DanceStar, Jeska, Hungry, Torley, Kona, Callum, Charity, Ventrella, Jack, Uncle, Vektor, Iris, Chris, Nicole, Mick, Reuben, Blue, Babbage, Yedwab, Deana, Lauren, Brent, Pathfinder, Chadrick, Altruima, Jesse, Monroe, David, Tess, Lizzie, Patsy, Pony, Isaac, Lawrence, Cyn, Bo, Gia, Annette, Marius, Tbone, Jonathan, Karen, Ginsu, Yuko, Makiko, Thomas, Harry, Seth, Alexei, Brian, Guy, Runitai, Ethan, Data, Cornelius, Kenny, Swiss, Zero, Natria, Wendy, Stephen, Teeple, Thumper, Lucy, Dee, Mia, Liana, Warren, Branka, Aura, beez, Milo, Hermia, Red, Thrax, Joe, Sally, Magenta, Paul, Jose, Rejean, Henrik, Lexie, Amber, Logan, Xan, Nora, Morpheus, Donovan, Leyla, MichaelFrancis, Beast, Cube, Bucky, Joshua, Stryfe, Harmony, Teresa, Claudia, Walker, Glenn, Fritz, Fordak, June, Cleopetra, Jean, Ivy, Betsy, Roosevelt, Spike, Ken, Which, Tofu, Chiyo, Rob, Zee, dustin, George, Del, Matthew, Cat, Jacqui, Lightfoot, Adrian, Viola, Alfred, Noel, Irfan, Sunil, Yool, Rika, Jane, Xtreme, Frontier, a2, Neo, Siobhan, Yoz, Justin, Elle, Qarl, Benjamin, Isabel, Gulliver, Everett, Christopher, Izzy, Stephany, Garry, Sejong, Sean, Tobin, Iridium, Meta, Anthony, Jeremy, JP, Jake, Maurice, Madhavi, Leopard, Kyle, Joon, Kari, Bert, Belinda, Jon, Kristi, Bridie, Pramod, KJ, Socrates, Maria, Ivan, Aric, Yamasaki, Adreanne, Jay, MitchK, Ceren, Coco, Durl, Jenny, Periapse, Kartic, Storrs, Lotte, Sandy, Colossus, Zen, BigPapi, Brad, Pastrami, Kurz, Mani, Neuro, Jaime, MJ, Rowan, Sgt, Elvis, Gecko, Samuel, Sardonyx, Leo, Bryan, Niko, Soft, Poppy, Rachel, Aki, Angelo, Banzai, Alexa, Sue, CeeLo, Bender, CG, Gillian, Pelle, Nick, Echo, Zara, Christine, Shamiran, Emma, Blake, Keiko, Plexus, Joppa, Sidewinder, Erica, Ashlei, Twilight, Kristen, Brett, Q, Enus, Simon, Bevis, Kraft, Kip, Chandler, Ron, LauraP, Ram, KyleJM, Scouse, Prospero, Melissa, Marty, Nat, Hamilton, Kend, Lordan, Jimmy, Kosmo, Seraph, Green, Ekim, Wiggo, JT, Rome, Doris, Miz, Benoc, Whump, Trinity, Patch, Kate, TJ, Bao, Joohwan, Christy, Sofia, Matias, Cogsworth, Johan, Oreh, Cheah, Angela, Brandy, Mango, Lan, Aleks, Gloria, Heidy, Mitchell, Space, Colton, Bambers, Einstein, Maggie, Malbers, Rose, Winnie, Stella, Milton, Rothman, Niall, Marin, Allison, James, Katie, Dawn, Katt, Kalpana, Judy, Andrea, Ambroff, Infinity, Gail, Rico, Raymond, Yi, William, Christa, M, Teagan, Scout, Molly, Dante, Corr, Dynamike, Usi, Kaylee, Lil, Danica, Sascha, Kelv, Jacob, Nya, Rodney, Brandon, Elsie, Blondin, Grant, Katrin, Nyx, Gabriel, Locklainn, Claire, Devin, Minerva, Monty, Austin, Bradford, Si, Keira, H, Caitlin, Dita, Makai, Jenn und vielen anderen. |
91 | 124 | ||
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 | 125 | Vielen Dank den folgenden Einwohnern, die uns geholfen haben, dies zur bisher besten Version zu machen:aaron23 decuir, Abra Miles, absolute balderdash, adelle fitzgerald, Aeron Kohime, Aki Shichiroji, Alger Meads, Alissa Sabre, AlwaysIcey Mapholisto, Arawn Spitteler, Aren Mandala, Arianna Wrigglesworth, Bagushii Kohime, Balpien Hammerer, Blinking2342 Blinker, byakuya runo, Capucchy Streeter, Chandra Jun, Coyote Pace, Crusher Soderstrom, Cummere Mayo, cyberrosa Rossini, Dael Ra, danana dodonpa, Darek Deluca, Davec Horsforth, django yifu, draco crane, Dre Dagostino, Ephyu Reino, etan quan, Fenrix Murakami, Fledhyris Proudhon, Fred Wardhani, Frederich Courier, garth fairchang, Gellan Glenelg, Geraldine Giha, GOLAN Eilde, gonzo joubert, Hachiro Yokosuka, Hampton Hax, harleywood guru, Hevenz Vansant, imnotgoing sideways, Jaden Giles, Jeanette Janus, Karl Dorance, keaton Akina, Khashai Steinbeck, KiPSOFT Tuqiri, kirstenlee Cinquetti, Kitty Barnett, Laurent Vesta, Lazure Ryba, Lima Vesperia, Linzi Bingyi, Lisa Lowe, LuDon Ninetails, Mark Rosenbaum, McCabe Maxsted, Michi Lumin, Midi Aeon, ml0rtd kit, Mo Eriksen, Morice Flanagan, Mysterion Aeon, Nad Gough, norgan torok, Pygar Bu, Qie Niangao, rachel corleone, Rado Arado, roberto salubrius, Royer Pessoa, samia bechir, Sasha Nurmi, Sean Heying, Selkit Diller, Shadow Pidgeon, simon kline, Smokie Ember, Soap Clawtooth, Strife Onizuka, Tal Chernov, Talan Hyun, tangletwigs fairymeadow, Tanya Spinotti, Tayra Dagostino, Teebone Aeon, Theremes Langdon, Thraxis Epsilon, tucor Capalini, Vasko Hawker, VenusMari Zapedzki, Vex Streeter, Viktoria Dovgal, Vincent Nacon, Viridian Exonar, Vivienne Schell, WarKirby Magojiro, Wilton Lundquist, Yukinoroh Kamachi, Zyzzy Zarf |
93 | 126 | ||
127 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | ||
94 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 128 | APR Copyright (C) 2000-2004 The Apache Software Foundation |
95 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | 129 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) |
96 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | 130 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. |
@@ -106,102 +140,39 @@ SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | |||
106 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | 140 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. |
107 | zlib Copyright (C) 1995-2002 Jean-loup Gailly und Mark Adler. | 141 | zlib Copyright (C) 1995-2002 Jean-loup Gailly und Mark Adler. |
108 | 142 | ||
109 | Alle Rechte vorbehalten. Details siehe licenses.txt. | 143 | Alle Rechte vorbehalten.Details siehe licenses.txt. |
110 | |||
111 | Voice-Chat-Audiocoding: Polycom(R) Siren14(TM) (ITU-T Empf. G.722.1 Anhang C) | ||
112 | |||
113 | |||
114 | Happiness is a warm puppy. -- Charles M. Schulz | ||
115 | </f_old_trans> | ||
116 | </string><string><a_file>alerts.xml</a_file> | ||
117 | <b_path>//GraphicsPreferencesHelp/message</b_path> | ||
118 | <c_attribute></c_attribute> | ||
119 | <d_old> | ||
120 | 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: | ||
121 | |||
122 | Shaders: Enable or disable various types of pixel shaders. | ||
123 | |||
124 | Reflection Detail: Sets the types of objects that water can reflect. | ||
125 | |||
126 | Avatar Rendering: Sets options that affect how the client renders avatars. | ||
127 | 144 | ||
128 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. | 145 | Voice-Chat-Audiocoding:Polycom(R) Siren14(TM) (ITU-T Empf.G.722.1 Anhang C) |
129 | 146 | ||
130 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. | ||
131 | 147 | ||
132 | Post Process Quality: Sets the resolution with which Glow is rendered. | 148 | Was geschieht, wenn Träume aufgeschoben werden?- Langston Hughes</f_translation> |
133 | |||
134 | Mesh Detail: Sets the amout of detail used in rendering certain objects. | ||
135 | |||
136 | Lighting Detail: Selects what types of lights you would like to render. | ||
137 | |||
138 | Terrain Detail: Sets the amount of terrain detail you would like to see. | ||
139 | |||
140 | 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. | ||
141 | </d_old> | ||
142 | <e_new> | ||
143 | 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: | ||
144 | |||
145 | Shaders: Enable or disable various types of pixel shaders. | ||
146 | |||
147 | Reflection Detail: Sets the types of objects that water can reflect. | ||
148 | |||
149 | Avatar Rendering: Sets options that affect how the client renders avatars. | ||
150 | |||
151 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. | ||
152 | |||
153 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. | ||
154 | |||
155 | Post Process Quality: Sets the resolution with which Glow is rendered. | ||
156 | |||
157 | 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. | ||
158 | |||
159 | Lighting Detail: Selects what types of lights you would like to render. | ||
160 | |||
161 | Terrain Detail: Sets the amount of detail you would like to see for the terrain texture. | ||
162 | </e_new> | ||
163 | <f_old_trans></f_old_trans> | ||
164 | <f_translation> | ||
165 | 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: | ||
166 | |||
167 | Shader: Aktivieren oder deaktivieren Sie die verschiedenen Pixel-Shader. | ||
168 | |||
169 | Spiegelung: Legen Sie hier fest, welche Objekte sich in Wasser spiegeln. | ||
170 | |||
171 | Avatar-Darstellung: Einige Optionen, die über die Darstellung Ihres Avatars bestimmen. | ||
172 | |||
173 | Sichtweite: Legt fest, bis zu welcher Entfernung von Ihrem Avatar die Objekte in der Szene berechnet und dargestellt werden. | ||
174 | |||
175 | Max. Partikelzahl: Legt fest, wie viele Partikel gleichzeitig berechnet und angezeigt werden. | ||
176 | |||
177 | Post-Processing-Qualität: Legt fest, mit welcher Auflösung der Glüheffekt berechnet wird. | ||
178 | |||
179 | 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. | ||
180 | |||
181 | Beleuchtungsdetails: Legt fest, welche Lichtquellen berechnet werden. | ||
182 | |||
183 | Terraindetails: Legt den Detailgrad bei der Berechnung der Terraintextur fest. | ||
184 | </f_translation> | ||
185 | <f_old_trans> | 149 | <f_old_trans> |
186 | 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: | 150 | Second Life wird Ihnen präsentiert von Philip, Tessa, Andrew, Cory, Ben, Bunny, Char, Charlie, Colin, Dan, Daniel, Doug, Eric, Hamlet, Haney, Hunter, Ian, Jeff, Jim, John, Lee, Mark, Peter, Phoenix, Richard, Robin, Xenon, Steve, Tanya, Eddie, Frank, Bruce, Aaron, Alice, Bob, Debra, Eileen, Helen, Janet, Louie, Leviathania, Stefan, Ray, Kevin, Tom, Mikeb, MikeT, Burgess, Elena, Tracy, BillTodd, Ryan, Zach, Sarah, Nova, Otakon, Tim, Stephanie, Michael, Evan, Nicolas, Catherine, Rachelle, Dave, Holly, Bub, Kelly, Magellan, Ramzi, Don, Sabin, Jill, Rheya, DanceStar, Jeska, Hungry, Torley, Kona, Callum, Charity, Ventrella, Jack, Uncle, Vektor, Iris, Chris, Nicole, Mick, Reuben, Blue, Babbage, Yedwab, Deana, Lauren, Brent, Pathfinder, Chadrick, Altruima, Jesse, Monroe, David, Tess, Lizzie, Patsy, Pony, Isaac, Lawrence, Cyn, Bo, Gia, Annette, Marius, Tbone, Jonathan, Karen, Ginsu, Yuko, Makiko, Thomas, Harry, Seth, Alexei, Brian, Guy, Runitai, Ethan, Data, Cornelius, Kenny, Swiss, Zero, Natria, Wendy, Stephen, Teeple, Thumper, Lucy, Dee, Mia, Liana, Warren, Branka, Aura, beez, Milo, Hermia, Red, Thrax, Joe, Sally, Magenta, Paul, Jose, Rejean, Henrik, Lexie, Amber, Logan, Xan, Nora, Morpheus, Donovan, Leyla, MichaelFrancis, Beast, Cube, Bucky, Joshua, Stryfe, Harmony, Teresa, Claudia, Walker, Glenn, Fritz, Fordak, June, Cleopetra, Jean, Ivy, Betsy, Roosevelt, Spike, Ken, Which, Tofu, Chiyo, Rob, Zee, dustin, George, Del, Matthew, Cat, Jacqui, Lightfoot, Adrian, Viola, Alfred, Noel, Irfan, Sunil, Yool, Rika, Jane, Xtreme, Frontier, a2, Neo, Siobhan, Yoz, Justin, Elle, Qarl, Benjamin, Isabel, Gulliver, Everett, Christopher, Izzy, Stephany, Garry, Sejong, Sean, Tobin, Iridium, Meta, Anthony, Jeremy, JP, Jake, Maurice, Madhavi, Leopard, Kyle, Joon, Kari, Bert, Belinda, Jon, Kristi, Bridie, Pramod, KJ, Socrates, Maria, Ivan, Aric, Yamasaki, Adreanne, Jay, MitchK, Ceren, Coco, Durl, Jenny, Periapse, Kartic, Storrs, Lotte, Sandy, Colossus, Zen, BigPapi, Brad, Pastrami, Kurz, Mani, Neuro, Jaime, MJ, Rowan, Sgt, Elvis, Gecko, Samuel, Sardonyx, Leo, Bryan, Niko, Soft, Poppy, Rachel, Aki, Angelo, Banzai, Alexa, Sue, CeeLo, Bender, CG, Gillian, Pelle, Nick, Echo, Zara, Christine, Shamiran, Emma, Blake, Keiko, Plexus, Joppa, Sidewinder, Erica, Ashlei, Twilight, Kristen, Brett, Q, Enus, Simon, Bevis, Kraft, Kip, Chandler, Ron, LauraP, Ram, KyleJM, Scouse, Prospero, Melissa, Marty, Nat, Hamilton, Kend, Lordan, Jimmy, Kosmo, Seraph, Green, Ekim, Wiggo, JT, Rome, Doris, Miz, Benoc, Whump, Trinity, Patch, Kate, TJ, Bao, Joohwan, Christy, Sofia, Matias, Cogsworth, Johan, Oreh, Cheah, Angela, Brandy, Mango, Lan, Aleks, Gloria, Heidy, Mitchell, Space, Colton, Bambers, Einstein, Maggie, Malbers, Rose, Winnie, Stella, Milton, Rothman, Niall, Marin, Allison, James, Katie, Dawn, Katt, Kalpana, Judy, Andrea, Ambroff, Infinity, Gail, Rico, Raymond, Yi, William, Christa, M, Teagan, Scout, Molly, Dante, Corr, Dynamike, Usi, Kaylee, Lil, Danica, Sascha, Kelv, Jacob, Nya, Rodney, Brandon, Elsie, Blondin, Grant, Katrin, Nyx, Gabriel, Locklainn, Claire, Devin, Minerva, Monty, Austin, Bradford, Si, Keira, H, Caitlin, Dita, Makai, Jenn und vielen anderen. |
187 | |||
188 | Shader: Aktivieren oder deaktivieren Sie die verschiedenen Pixel-Shader. | ||
189 | |||
190 | Spiegelung: Legen Sie hier fest, welche Objekte sich in Wasser spiegeln. | ||
191 | 151 | ||
192 | Avatar-Darstellung: Einige Optionen, die über die Darstellung Ihres Avatars bestimmen. | 152 | Vielen Dank den folgenden Einwohnern, die uns geholfen haben, dies zur bisher besten Version zu machen: aaron23 decuir, Abra Miles, absolute balderdash, adelle fitzgerald, Aeron Kohime, Aki Shichiroji, Alger Meads, Alissa Sabre, AlwaysIcey Mapholisto, Arawn Spitteler, Aren Mandala, Arianna Wrigglesworth, Bagushii Kohime, Balpien Hammerer, Blinking2342 Blinker, byakuya runo, Capucchy Streeter, Chandra Jun, Coyote Pace, Crusher Soderstrom, Cummere Mayo, cyberrosa Rossini, Dael Ra, danana dodonpa, Darek Deluca, Davec Horsforth, django yifu, draco crane, Dre Dagostino, Ephyu Reino, etan quan, Fenrix Murakami, Fledhyris Proudhon, Fred Wardhani, Frederich Courier, garth fairchang, Gellan Glenelg, Geraldine Giha, GOLAN Eilde, gonzo joubert, Hachiro Yokosuka, Hampton Hax, harleywood guru, Hevenz Vansant, imnotgoing sideways, Jaden Giles, Jeanette Janus, Karl Dorance, keaton Akina, Khashai Steinbeck, KiPSOFT Tuqiri, kirstenlee Cinquetti, Kitty Barnett, Laurent Vesta, Lazure Ryba, Lima Vesperia, Linzi Bingyi, Lisa Lowe, LuDon Ninetails, Mark Rosenbaum, McCabe Maxsted, Michi Lumin, Midi Aeon, ml0rtd kit, Mo Eriksen, Morice Flanagan, Mysterion Aeon, Nad Gough, norgan torok, Pygar Bu, Qie Niangao, rachel corleone, Rado Arado, roberto salubrius, Royer Pessoa, samia bechir, Sasha Nurmi, Sean Heying, Selkit Diller, Shadow Pidgeon, simon kline, Smokie Ember, Soap Clawtooth, Strife Onizuka, Tal Chernov, Talan Hyun, tangletwigs fairymeadow, Tanya Spinotti, Tayra Dagostino, Teebone Aeon, Theremes Langdon, Thraxis Epsilon, tucor Capalini, Vasko Hawker, VenusMari Zapedzki, Vex Streeter, Viktoria Dovgal, Vincent Nacon, Viridian Exonar, Vivienne Schell, WarKirby Magojiro, Wilton Lundquist, Yukinoroh Kamachi, Zyzzy Zarf |
193 | 153 | ||
194 | Sichtweite: Legt fest, bis zu welcher Entfernung von Ihrem Avatar die Objekte in der Szene berechnet und dargestellt werden. | 154 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion |
195 | 155 | APR Copyright (C) 2000-2004 The Apache Software Foundation | |
196 | Max. Partikelzahl: Legt fest, wie viele Partikel gleichzeitig berechnet und angezeigt werden. | 156 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) |
157 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
158 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
159 | GL Copyright (C) 1999-2004 Brian Paul. | ||
160 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
161 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
162 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
163 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
164 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
165 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
166 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
167 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
168 | zlib Copyright (C) 1995-2002 Jean-loup Gailly und Mark Adler. | ||
197 | 169 | ||
198 | Post-Processing-Qualität: Legt fest, mit welcher Auflösung der Glüheffekt berechnet wird. | 170 | Alle Rechte vorbehalten. Details siehe licenses.txt. |
199 | 171 | ||
200 | Gitterdetails: Legt den Detailgrad bei der Berechnung bestimmter Objekte fest. | 172 | Voice-Chat-Audiocoding: Polycom(R) Siren14(TM) (ITU-T Empf. G.722.1 Anhang C) |
201 | 173 | ||
202 | Beleuchtungsdetails: Legt fest, welche Lichtquellen berechnet werden. | ||
203 | 174 | ||
204 | Terraindetails: Legt den Detailgrad bei der Berechnung des Terrains fest. | 175 | What happens to a dream deferred? --Langston Hughes |
205 | </f_old_trans> | 176 | </f_old_trans> |
206 | </string> | 177 | </string> |
207 | </strings> | 178 | </strings> |
diff --git a/linden/indra/newview/skins/default/xui/de/need_to_translate.xml b/linden/indra/newview/skins/default/xui/de/need_to_translate.xml index dcde1bb..b6a15da 100644 --- a/linden/indra/newview/skins/default/xui/de/need_to_translate.xml +++ b/linden/indra/newview/skins/default/xui/de/need_to_translate.xml | |||
@@ -2,199 +2,31 @@ | |||
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>//AddFriend/editline</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 | Would you be my friend? |
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 | Wollen wir Freunde sein? |
14 | </f_translation> | ||
15 | </string><string><a_file>alerts.xml</a_file> | ||
16 | <b_path>//TutorialNotFound/OK</b_path> | ||
17 | <c_attribute></c_attribute> | ||
18 | <d_old></d_old> | ||
19 | <e_new> | ||
20 | OK | ||
21 | </e_new> | ||
22 | <f_old_trans></f_old_trans> | ||
23 | <f_translation> | ||
24 | OK | ||
25 | </f_translation> | ||
26 | </string><string><a_file>alerts.xml</a_file> | ||
27 | <b_path>//FreezeAvatarFullname/message</b_path> | ||
28 | <c_attribute></c_attribute> | ||
29 | <d_old></d_old> | ||
30 | <e_new> | ||
31 | Freeze [AVATAR_NAME]? | ||
32 | He or she will temporarily be unable to move, | ||
33 | chat, or interact with the world. | ||
34 | </e_new> | ||
35 | <f_old_trans></f_old_trans> | ||
36 | <f_translation> | ||
37 | [AVATAR_NAME] einfrieren? | ||
38 | Der Avatar wird außer Gefecht gesetzt und kann | ||
39 | sich nicht mehr bewegen, chatten oder mit der Welt interagieren. | ||
40 | </f_translation> | 14 | </f_translation> |
41 | </string><string><a_file>alerts.xml</a_file> | 15 | </string><string><a_file>alerts.xml</a_file> |
42 | <b_path>//FreezeAvatarFullname/Freeze</b_path> | 16 | <b_path>//EstateObjectReturn/message</b_path> |
43 | <c_attribute></c_attribute> | 17 | <c_attribute></c_attribute> |
44 | <d_old></d_old> | 18 | <d_old></d_old> |
45 | <e_new> | 19 | <e_new> |
46 | Freeze | 20 | Are you sure you want to return objects owned by |
21 | [USER_NAME] ? | ||
47 | </e_new> | 22 | </e_new> |
48 | <f_old_trans></f_old_trans> | 23 | <f_old_trans></f_old_trans> |
49 | <f_translation> | 24 | <f_translation> |
50 | Einfrieren | 25 | Möchten Sie wirklich alle Objekte zurückgeben, die [USER_NAME] gehören? |
51 | </f_translation> | ||
52 | </string><string><a_file>alerts.xml</a_file> | ||
53 | <b_path>//FreezeAvatarFullname/Unfreeze</b_path> | ||
54 | <c_attribute></c_attribute> | ||
55 | <d_old></d_old> | ||
56 | <e_new> | ||
57 | Unfreeze | ||
58 | </e_new> | ||
59 | <f_old_trans></f_old_trans> | ||
60 | <f_translation> | ||
61 | Auftauen | ||
62 | </f_translation> | ||
63 | </string><string><a_file>alerts.xml</a_file> | ||
64 | <b_path>//FreezeAvatarFullname/Cancel</b_path> | ||
65 | <c_attribute></c_attribute> | ||
66 | <d_old></d_old> | ||
67 | <e_new> | ||
68 | Cancel | ||
69 | </e_new> | ||
70 | <f_old_trans></f_old_trans> | ||
71 | <f_translation> | ||
72 | Abbrechen | ||
73 | </f_translation> | ||
74 | </string><string><a_file>alerts.xml</a_file> | ||
75 | <b_path>//EjectAvatarFullname/message</b_path> | ||
76 | <c_attribute></c_attribute> | ||
77 | <d_old></d_old> | ||
78 | <e_new> | ||
79 | Eject [AVATAR_NAME] from your land? | ||
80 | </e_new> | ||
81 | <f_old_trans></f_old_trans> | ||
82 | <f_translation> | ||
83 | [AVATAR_NAME] von Ihrem Land werfen? | ||
84 | </f_translation> | ||
85 | </string><string><a_file>alerts.xml</a_file> | ||
86 | <b_path>//EjectAvatarFullname/Eject</b_path> | ||
87 | <c_attribute></c_attribute> | ||
88 | <d_old></d_old> | ||
89 | <e_new> | ||
90 | Eject | ||
91 | </e_new> | ||
92 | <f_old_trans></f_old_trans> | ||
93 | <f_translation> | ||
94 | Ausschließen | ||
95 | </f_translation> | ||
96 | </string><string><a_file>alerts.xml</a_file> | ||
97 | <b_path>//EjectAvatarFullname/EjectandBan</b_path> | ||
98 | <c_attribute></c_attribute> | ||
99 | <d_old></d_old> | ||
100 | <e_new> | ||
101 | Eject and Ban | ||
102 | </e_new> | ||
103 | <f_old_trans></f_old_trans> | ||
104 | <f_translation> | ||
105 | Ausschließen und Verbannen | ||
106 | </f_translation> | ||
107 | </string><string><a_file>alerts.xml</a_file> | ||
108 | <b_path>//EjectAvatarFullname/Cancel</b_path> | ||
109 | <c_attribute></c_attribute> | ||
110 | <d_old></d_old> | ||
111 | <e_new> | ||
112 | Cancel | ||
113 | </e_new> | ||
114 | <f_old_trans></f_old_trans> | ||
115 | <f_translation> | ||
116 | Abbrechen | ||
117 | </f_translation> | ||
118 | </string><string><a_file>alerts.xml</a_file> | ||
119 | <b_path>//SeachFilteredOnShortWords/message</b_path> | ||
120 | <c_attribute></c_attribute> | ||
121 | <d_old></d_old> | ||
122 | <e_new> | ||
123 | Your search query was modified and the | ||
124 | words that were too short were removed. | ||
125 | |||
126 | Searched for: [FINALQUERY] | ||
127 | </e_new> | ||
128 | <f_old_trans></f_old_trans> | ||
129 | <f_translation> | ||
130 | Ihre Suchanfrage wurde geändert. | ||
131 | Zu kurze Begriffe wurden entfernt. | ||
132 | 26 | ||
133 | Ihre Suchanfrage: [FINALQUERY] | ||
134 | </f_translation> | ||
135 | </string><string><a_file>alerts.xml</a_file> | ||
136 | <b_path>//SeachFilteredOnShortWordsEmpty/message</b_path> | ||
137 | <c_attribute></c_attribute> | ||
138 | <d_old></d_old> | ||
139 | <e_new> | ||
140 | Your search terms were too short | ||
141 | so no search was performed. | ||
142 | </e_new> | ||
143 | <f_old_trans></f_old_trans> | ||
144 | <f_translation> | ||
145 | Ihre Suchbegriffe sind zu kurz. | ||
146 | Es wurde keine Suche durchgeführt. | ||
147 | </f_translation> | ||
148 | </string><string><a_file>alerts.xml</a_file> | ||
149 | <b_path>//CannotCloseFloaterBuyLand/message</b_path> | ||
150 | <c_attribute></c_attribute> | ||
151 | <d_old></d_old> | ||
152 | <e_new> | ||
153 | You cannot close the Buy Land window until Second Life | ||
154 | estimates the price of this transaction. | ||
155 | </e_new> | ||
156 | <f_old_trans></f_old_trans> | ||
157 | <f_translation> | ||
158 | Das Fenster 'Land kaufen' kann erst geschlossen werden, | ||
159 | nachdem Second Life den Transaktionspreis geschätzt hat. | ||
160 | </f_translation> | ||
161 | </string><string><a_file>alerts.xml</a_file> | ||
162 | <b_path>//MaxAgentOnRegionBatch/message</b_path> | ||
163 | <c_attribute></c_attribute> | ||
164 | <d_old></d_old> | ||
165 | <e_new> | ||
166 | Failure while attempting to add [NUM_ADDED] agents: | ||
167 | Exceeds the [MAX_AGENTS] [LIST_TYPE] limit by [NUM_EXCESS]. | ||
168 | </e_new> | ||
169 | <f_old_trans></f_old_trans> | ||
170 | <f_translation> | ||
171 | Fehler beim Versuch, [NUM_ADDED] Agenten hinzuzufügen: | ||
172 | Überschreitet den Grenzwert [MAX_AGENTS] [LIST_TYPE] um [NUM_EXCESS]. | ||
173 | </f_translation> | ||
174 | </string><string><a_file>alerts.xml</a_file> | ||
175 | <b_path>//WebLaunchExternalTarget/message</b_path> | ||
176 | <c_attribute></c_attribute> | ||
177 | <d_old></d_old> | ||
178 | <e_new> | ||
179 | Open your system Web browser to view this content? | ||
180 | </e_new> | ||
181 | <f_old_trans></f_old_trans> | ||
182 | <f_translation> | ||
183 | Den System-Webbrowser öffnen, um diesen Inhalt anzuzeigen? | ||
184 | </f_translation> | ||
185 | </string><string><a_file>alerts.xml</a_file> | ||
186 | <b_path>//WebLaunchExternalTarget/ignore</b_path> | ||
187 | <c_attribute></c_attribute> | ||
188 | <d_old></d_old> | ||
189 | <e_new> | ||
190 | When opening your system browser to view a Web page | ||
191 | </e_new> | ||
192 | <f_old_trans></f_old_trans> | ||
193 | <f_translation> | ||
194 | Wenn der System-Webbrowser zur Anzeige einer Webseite geöffnet wird | ||
195 | </f_translation> | 27 | </f_translation> |
196 | </string><string><a_file>alerts.xml</a_file> | 28 | </string><string><a_file>alerts.xml</a_file> |
197 | <b_path>//WebLaunchExternalTarget/Open</b_path> | 29 | <b_path>//EstateObjectReturn/Return</b_path> |
198 | <c_attribute></c_attribute> | 30 | <c_attribute></c_attribute> |
199 | <d_old></d_old> | 31 | <d_old></d_old> |
200 | <e_new> | 32 | <e_new> |
@@ -202,3414 +34,1200 @@ Exceeds the [MAX_AGENTS] [LIST_TYPE] limit by [NUM_EXCESS]. | |||
202 | </e_new> | 34 | </e_new> |
203 | <f_old_trans></f_old_trans> | 35 | <f_old_trans></f_old_trans> |
204 | <f_translation> | 36 | <f_translation> |
205 | OK | 37 | OK |
206 | </f_translation> | ||
207 | </string><string><a_file>alerts.xml</a_file> | ||
208 | <b_path>//WebLaunchExternalTarget/Cancel</b_path> | ||
209 | <c_attribute></c_attribute> | ||
210 | <d_old></d_old> | ||
211 | <e_new> | ||
212 | Cancel | ||
213 | </e_new> | ||
214 | <f_old_trans></f_old_trans> | ||
215 | <f_translation> | ||
216 | Abbrechen | ||
217 | </f_translation> | ||
218 | </string><string><a_file>alerts.xml</a_file> | ||
219 | <b_path>//ProblemAddingEstateGeneric/message</b_path> | ||
220 | <c_attribute></c_attribute> | ||
221 | <d_old></d_old> | ||
222 | <e_new> | ||
223 | Problems adding to this estate list. One or more estates may have a full list. | ||
224 | </e_new> | ||
225 | <f_old_trans></f_old_trans> | ||
226 | <f_translation> | ||
227 | Problem beim Hinzufügen zu dieser Grundstücksliste. Bei mindestens einem Grundstück ist die Liste voll. | ||
228 | </f_translation> | ||
229 | </string><string><a_file>alerts.xml</a_file> | ||
230 | <b_path>//ReplaceAttachment/ignore</b_path> | ||
231 | <c_attribute></c_attribute> | ||
232 | <d_old></d_old> | ||
233 | <e_new> | ||
234 | When replacing existing attachments | ||
235 | </e_new> | ||
236 | <f_old_trans></f_old_trans> | ||
237 | <f_translation> | ||
238 | Beim Wechseln von Anhängen | ||
239 | </f_translation> | 38 | </f_translation> |
240 | </string><string><a_file>alerts.xml</a_file> | 39 | </string><string><a_file>alerts.xml</a_file> |
241 | <b_path>//BusyModePay/ignore</b_path> | 40 | <b_path>//EstateObjectReturn/Cancel</b_path> |
242 | <c_attribute></c_attribute> | 41 | <c_attribute></c_attribute> |
243 | <d_old></d_old> | 42 | <d_old></d_old> |
244 | <e_new> | 43 | <e_new> |
245 | When paying a person or object in busy mode | 44 | Cancel |
246 | </e_new> | 45 | </e_new> |
247 | <f_old_trans></f_old_trans> | 46 | <f_old_trans></f_old_trans> |
248 | <f_translation> | 47 | <f_translation> |
249 | Beim Bezahlen einer Person oder eines Objekts im Beschäftigt-Modus | 48 | Abbrechen |
250 | </f_translation> | 49 | </f_translation> |
251 | </string><string><a_file>floater_about_land.xml</a_file> | 50 | </string><string><a_file>floater_about_land.xml</a_file> |
252 | <b_path>/floaterland/landtab/land_objects_panel/owner list/type</b_path> | 51 | <b_path>/floaterland/landtab/land_general_panel/no_selection_text</b_path> |
253 | <c_attribute>label</c_attribute> | ||
254 | <d_old></d_old> | ||
255 | <e_new>Type</e_new> | ||
256 | <f_old_trans></f_old_trans> | ||
257 | <f_translation>Typ</f_translation> | ||
258 | </string><string><a_file>floater_about_land.xml</a_file> | ||
259 | <b_path>/floaterland/landtab/land_objects_panel/owner list/name</b_path> | ||
260 | <c_attribute>label</c_attribute> | ||
261 | <d_old></d_old> | ||
262 | <e_new>Name</e_new> | ||
263 | <f_old_trans></f_old_trans> | ||
264 | <f_translation>Name</f_translation> | ||
265 | </string><string><a_file>floater_about_land.xml</a_file> | ||
266 | <b_path>/floaterland/landtab/land_objects_panel/owner list/count</b_path> | ||
267 | <c_attribute>label</c_attribute> | ||
268 | <d_old></d_old> | ||
269 | <e_new>Count</e_new> | ||
270 | <f_old_trans></f_old_trans> | ||
271 | <f_translation>Zählen</f_translation> | ||
272 | </string><string><a_file>floater_active_speakers.xml</a_file> | ||
273 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> | ||
274 | <c_attribute>label</c_attribute> | ||
275 | <d_old></d_old> | ||
276 | <e_new></e_new> | ||
277 | <f_old_trans></f_old_trans> | ||
278 | <f_translation></f_translation> | ||
279 | </string><string><a_file>floater_avatar_textures.xml</a_file> | ||
280 | <b_path>/avatar_texture_debug/baked_label</b_path> | ||
281 | <c_attribute></c_attribute> | ||
282 | <d_old></d_old> | ||
283 | <e_new> | ||
284 | Baked Textures | ||
285 | </e_new> | ||
286 | <f_old_trans></f_old_trans> | ||
287 | <f_translation> | ||
288 | Gebackene Texturen | ||
289 | </f_translation> | ||
290 | </string><string><a_file>floater_avatar_textures.xml</a_file> | ||
291 | <b_path>/avatar_texture_debug/composite_label</b_path> | ||
292 | <c_attribute></c_attribute> | ||
293 | <d_old></d_old> | ||
294 | <e_new> | ||
295 | Composite Textures | ||
296 | </e_new> | ||
297 | <f_old_trans></f_old_trans> | ||
298 | <f_translation> | ||
299 | Zusammengesetzte Texturen | ||
300 | </f_translation> | ||
301 | </string><string><a_file>floater_buy_currency.xml</a_file> | ||
302 | <b_path>/buy currency/getting_data</b_path> | ||
303 | <c_attribute></c_attribute> | 52 | <c_attribute></c_attribute> |
304 | <d_old></d_old> | 53 | <d_old></d_old> |
305 | <e_new> | 54 | <e_new> |
306 | Getting data... | 55 | No parcel selected. |
307 | </e_new> | 56 | Go to World menu > About Land or select another parcel to show its details. |
57 | </e_new> | ||
308 | <f_old_trans></f_old_trans> | 58 | <f_old_trans></f_old_trans> |
309 | <f_translation> | 59 | <f_translation> |
310 | Daten werden geladen... | 60 | Keine Parzelle ausgewählt. |
311 | </f_translation> | 61 | Öffnen Sie "Welt" > "Land-Info" oder wählen Sie eine andere Parzelle aus, um Informationen darüber anzuzeigen. |
312 | </string><string><a_file>floater_camera.xml</a_file> | 62 | </f_translation> |
313 | <b_path>/move floater</b_path> | 63 | </string><string><a_file>floater_instant_message.xml</a_file> |
314 | <c_attribute>title</c_attribute> | 64 | <b_path>/im_floater/inventory_item_offered</b_path> |
315 | <d_old></d_old> | ||
316 | <e_new></e_new> | ||
317 | <f_old_trans></f_old_trans> | ||
318 | <f_translation></f_translation> | ||
319 | </string><string><a_file>floater_camera.xml</a_file> | ||
320 | <b_path>/move floater/rotate_tooltip</b_path> | ||
321 | <c_attribute></c_attribute> | ||
322 | <d_old></d_old> | ||
323 | <e_new>Rotate Camera Around Focus</e_new> | ||
324 | <f_old_trans></f_old_trans> | ||
325 | <f_translation>Kamera um Fokus drehen</f_translation> | ||
326 | </string><string><a_file>floater_camera.xml</a_file> | ||
327 | <b_path>/move floater/zoom_tooltip</b_path> | ||
328 | <c_attribute></c_attribute> | ||
329 | <d_old></d_old> | ||
330 | <e_new>Zoom Camera Towards Focus</e_new> | ||
331 | <f_old_trans></f_old_trans> | ||
332 | <f_translation>Kamera auf Fokus zoomen</f_translation> | ||
333 | </string><string><a_file>floater_camera.xml</a_file> | ||
334 | <b_path>/move floater/move_tooltip</b_path> | ||
335 | <c_attribute></c_attribute> | ||
336 | <d_old></d_old> | ||
337 | <e_new>Move Camera Up and Down, Left and Right</e_new> | ||
338 | <f_old_trans></f_old_trans> | ||
339 | <f_translation>Kamera nach oben, unten, links und rechts bewegen</f_translation> | ||
340 | </string><string><a_file>floater_chatterbox.xml</a_file> | ||
341 | <b_path>/floater_chatterbox</b_path> | ||
342 | <c_attribute>title</c_attribute> | ||
343 | <d_old></d_old> | ||
344 | <e_new>Communicate</e_new> | ||
345 | <f_old_trans></f_old_trans> | ||
346 | <f_translation>Unterhalten</f_translation> | ||
347 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
348 | <b_path>/chat floater/IM_logging_string</b_path> | ||
349 | <c_attribute></c_attribute> | 65 | <c_attribute></c_attribute> |
350 | <d_old></d_old> | 66 | <d_old></d_old> |
351 | <e_new> | 67 | <e_new> |
352 | -- Instant message logging enabled -- | 68 | Inventory item offered |
353 | </e_new> | 69 | </e_new> |
354 | <f_old_trans></f_old_trans> | 70 | <f_old_trans></f_old_trans> |
355 | <f_translation> | 71 | <f_translation> |
356 | -- Instant-Message-Protokoll aktiviert -- | 72 | Inventarobjekt angeboten |
357 | </f_translation> | 73 | </f_translation> |
358 | </string><string><a_file>floater_chat_history.xml</a_file> | 74 | </string><string><a_file>floater_live_lsleditor.xml</a_file> |
359 | <b_path>/chat floater/IM_end_log_string</b_path> | 75 | <b_path>/script ed float/mono</b_path> |
360 | <c_attribute></c_attribute> | ||
361 | <d_old></d_old> | ||
362 | <e_new> | ||
363 | -- End of Log -- | ||
364 | </e_new> | ||
365 | <f_old_trans></f_old_trans> | ||
366 | <f_translation> | ||
367 | -- Ende des Protokolls -- | ||
368 | </f_translation> | ||
369 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
370 | <b_path>/chat floater/panels/im_contents_panel/Gesture</b_path> | ||
371 | <c_attribute>label</c_attribute> | ||
372 | <d_old></d_old> | ||
373 | <e_new>Gestures</e_new> | ||
374 | <f_old_trans></f_old_trans> | ||
375 | <f_translation>Gesten</f_translation> | ||
376 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
377 | <b_path>/chat floater/panels/im_contents_panel/Gesture/Gestures</b_path> | ||
378 | <c_attribute></c_attribute> | ||
379 | <d_old></d_old> | ||
380 | <e_new> | ||
381 | Gestures | ||
382 | </e_new> | ||
383 | <f_old_trans></f_old_trans> | ||
384 | <f_translation> | ||
385 | Gesten | ||
386 | </f_translation> | ||
387 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
388 | <b_path>/chat floater/panels/im_contents_panel/show mutes</b_path> | ||
389 | <c_attribute>label</c_attribute> | ||
390 | <d_old></d_old> | ||
391 | <e_new>Show Muted Text</e_new> | ||
392 | <f_old_trans></f_old_trans> | ||
393 | <f_translation>Stummgeschalteten Text anzeigen</f_translation> | ||
394 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
395 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | ||
396 | <c_attribute>label</c_attribute> | 76 | <c_attribute>label</c_attribute> |
397 | <d_old></d_old> | 77 | <d_old></d_old> |
398 | <e_new>< <</e_new> | 78 | <e_new>Mono</e_new> |
399 | <f_old_trans></f_old_trans> | 79 | <f_old_trans></f_old_trans> |
400 | <f_translation>< <</f_translation> | 80 | <f_translation>Mono</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> | 81 | <f_old_trans></f_old_trans> |
428 | <f_translation>Sprechen</f_translation> | 82 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
429 | </string><string><a_file>floater_chat_history.xml</a_file> | 83 | <b_path>/MemLeak</b_path> |
430 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Say</b_path> | ||
431 | <c_attribute>tool_tip</c_attribute> | ||
432 | <d_old></d_old> | ||
433 | <e_new>(Enter)</e_new> | ||
434 | <f_old_trans></f_old_trans> | ||
435 | <f_translation>(Eingabe)</f_translation> | ||
436 | </string><string><a_file>floater_critical.xml</a_file> | ||
437 | <b_path>/modal container/tos_title</b_path> | ||
438 | <c_attribute></c_attribute> | ||
439 | <d_old></d_old> | ||
440 | <e_new> | ||
441 | Critical Message | ||
442 | </e_new> | ||
443 | <f_old_trans></f_old_trans> | ||
444 | <f_translation> | ||
445 | Kritische Nachricht | ||
446 | </f_translation> | ||
447 | </string><string><a_file>floater_customize.xml</a_file> | ||
448 | <b_path>/floater customize/customize tab container/body_parts_placeholder</b_path> | ||
449 | <c_attribute>label</c_attribute> | ||
450 | <d_old></d_old> | ||
451 | <e_new>Body Parts</e_new> | ||
452 | <f_old_trans></f_old_trans> | ||
453 | <f_translation>Körperteile</f_translation> | ||
454 | </string><string><a_file>floater_customize.xml</a_file> | ||
455 | <b_path>/floater customize/customize tab container/clothes_placeholder</b_path> | ||
456 | <c_attribute>label</c_attribute> | ||
457 | <d_old></d_old> | ||
458 | <e_new>Clothes</e_new> | ||
459 | <f_old_trans></f_old_trans> | ||
460 | <f_translation>Kleidung</f_translation> | ||
461 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
462 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLTimeSlider</b_path> | ||
463 | <c_attribute>label</c_attribute> | ||
464 | <d_old></d_old> | ||
465 | <e_new></e_new> | ||
466 | <f_old_trans></f_old_trans> | ||
467 | <f_translation></f_translation> | ||
468 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
469 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDayCycleKeys</b_path> | ||
470 | <c_attribute>label</c_attribute> | ||
471 | <d_old></d_old> | ||
472 | <e_new></e_new> | ||
473 | <f_old_trans></f_old_trans> | ||
474 | <f_translation></f_translation> | ||
475 | </string><string><a_file>floater_device_settings.xml</a_file> | ||
476 | <b_path>/floater_device_settings</b_path> | ||
477 | <c_attribute>title</c_attribute> | 84 | <c_attribute>title</c_attribute> |
478 | <d_old></d_old> | 85 | <d_old></d_old> |
479 | <e_new>Voice Chat Device Settings</e_new> | 86 | <e_new>Memory Leaking Simulation</e_new> |
480 | <f_old_trans></f_old_trans> | 87 | <f_old_trans></f_old_trans> |
481 | <f_translation>Geräte-Einstellungen für Voice-Chat</f_translation> | 88 | <f_translation>Speicherverlust-Simulation</f_translation> |
482 | </string><string><a_file>floater_directory.xml</a_file> | 89 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
483 | <b_path>/directory/Directory Tabs/find_all_old_panel/results/icon</b_path> | 90 | <b_path>/MemLeak/leak_speed</b_path> |
484 | <c_attribute>label</c_attribute> | 91 | <c_attribute>label</c_attribute> |
485 | <d_old></d_old> | 92 | <d_old></d_old> |
486 | <e_new></e_new> | 93 | <e_new>Leaking Speed (bytes per frame):</e_new> |
487 | <f_old_trans></f_old_trans> | 94 | <f_old_trans></f_old_trans> |
488 | <f_translation></f_translation> | 95 | <f_translation>Verlustgeschwindigkeit (Bytes pro Frame):</f_translation> |
489 | </string><string><a_file>floater_env_settings.xml</a_file> | 96 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
490 | <b_path>/Environment Editor Floater/EnvTimeSlider</b_path> | 97 | <b_path>/MemLeak/max_leak</b_path> |
491 | <c_attribute>label</c_attribute> | ||
492 | <d_old></d_old> | ||
493 | <e_new></e_new> | ||
494 | <f_old_trans></f_old_trans> | ||
495 | <f_translation></f_translation> | ||
496 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
497 | <b_path>/Environment Editor Floater/EnvCloudSlider</b_path> | ||
498 | <c_attribute>label</c_attribute> | ||
499 | <d_old></d_old> | ||
500 | <e_new></e_new> | ||
501 | <f_old_trans></f_old_trans> | ||
502 | <f_translation></f_translation> | ||
503 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
504 | <b_path>/Environment Editor Floater/EnvWaterFogSlider</b_path> | ||
505 | <c_attribute>label</c_attribute> | ||
506 | <d_old></d_old> | ||
507 | <e_new></e_new> | ||
508 | <f_old_trans></f_old_trans> | ||
509 | <f_translation></f_translation> | ||
510 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
511 | <b_path>/Hardware Settings Floater/Antialiasing:</b_path> | ||
512 | <c_attribute></c_attribute> | ||
513 | <d_old></d_old> | ||
514 | <e_new> | ||
515 | Antialiasing: | ||
516 | </e_new> | ||
517 | <f_old_trans></f_old_trans> | ||
518 | <f_translation> | ||
519 | Antialiasing: | ||
520 | </f_translation> | ||
521 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
522 | <b_path>/Hardware Settings Floater/fsaa</b_path> | ||
523 | <c_attribute>label</c_attribute> | 98 | <c_attribute>label</c_attribute> |
524 | <d_old></d_old> | 99 | <d_old></d_old> |
525 | <e_new>Antialiasing</e_new> | 100 | <e_new>Max Leaked Memory (MB):</e_new> |
526 | <f_old_trans></f_old_trans> | 101 | <f_old_trans></f_old_trans> |
527 | <f_translation>Antialiasing</f_translation> | 102 | <f_translation>Max. Speicherverlust (MB):</f_translation> |
528 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 103 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
529 | <b_path>/Hardware Settings Floater/fsaa/FSAADisabled</b_path> | 104 | <b_path>/MemLeak/total_leaked_label</b_path> |
530 | <c_attribute></c_attribute> | 105 | <c_attribute></c_attribute> |
531 | <d_old></d_old> | 106 | <d_old></d_old> |
532 | <e_new> | 107 | <e_new> |
533 | Disabled | 108 | Current leaked memory: [SIZE] KB |
534 | </e_new> | ||
535 | <f_old_trans></f_old_trans> | ||
536 | <f_translation> | ||
537 | Deaktiviert | ||
538 | </f_translation> | ||
539 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
540 | <b_path>/Hardware Settings Floater/fsaa/2x</b_path> | ||
541 | <c_attribute></c_attribute> | ||
542 | <d_old></d_old> | ||
543 | <e_new> | ||
544 | 2x | ||
545 | </e_new> | ||
546 | <f_old_trans></f_old_trans> | ||
547 | <f_translation> | ||
548 | 2x | ||
549 | </f_translation> | ||
550 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
551 | <b_path>/Hardware Settings Floater/fsaa/4x</b_path> | ||
552 | <c_attribute></c_attribute> | ||
553 | <d_old></d_old> | ||
554 | <e_new> | ||
555 | 4x | ||
556 | </e_new> | ||
557 | <f_old_trans></f_old_trans> | ||
558 | <f_translation> | ||
559 | 4x | ||
560 | </f_translation> | ||
561 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
562 | <b_path>/Hardware Settings Floater/fsaa/8x</b_path> | ||
563 | <c_attribute></c_attribute> | ||
564 | <d_old></d_old> | ||
565 | <e_new> | ||
566 | 8x | ||
567 | </e_new> | ||
568 | <f_old_trans></f_old_trans> | ||
569 | <f_translation> | ||
570 | 8x | ||
571 | </f_translation> | ||
572 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
573 | <b_path>/Hardware Settings Floater/fsaa/16x</b_path> | ||
574 | <c_attribute></c_attribute> | ||
575 | <d_old></d_old> | ||
576 | <e_new> | ||
577 | 16x | ||
578 | </e_new> | ||
579 | <f_old_trans></f_old_trans> | ||
580 | <f_translation> | ||
581 | 16x | ||
582 | </f_translation> | ||
583 | </string><string><a_file>floater_hud.xml</a_file> | ||
584 | <b_path>/floater_hud</b_path> | ||
585 | <c_attribute>title</c_attribute> | ||
586 | <d_old></d_old> | ||
587 | <e_new>Tutorial</e_new> | ||
588 | <f_old_trans></f_old_trans> | ||
589 | <f_translation>Tutorial</f_translation> | ||
590 | </string><string><a_file>floater_joystick.xml</a_file> | ||
591 | <b_path>/Joystick</b_path> | ||
592 | <c_attribute>title</c_attribute> | ||
593 | <d_old></d_old> | ||
594 | <e_new>Joystick Configuration</e_new> | ||
595 | <f_old_trans></f_old_trans> | ||
596 | <f_translation>Joystick-Konfiguration</f_translation> | ||
597 | </string><string><a_file>floater_joystick.xml</a_file> | ||
598 | <b_path>/Joystick/JoystickAxis1</b_path> | ||
599 | <c_attribute>label</c_attribute> | ||
600 | <d_old></d_old> | ||
601 | <e_new>X Axis Mapping</e_new> | ||
602 | <f_old_trans></f_old_trans> | ||
603 | <f_translation>X-Achse</f_translation> | ||
604 | </string><string><a_file>floater_joystick.xml</a_file> | ||
605 | <b_path>/Joystick/JoystickAxis2</b_path> | ||
606 | <c_attribute>label</c_attribute> | ||
607 | <d_old></d_old> | ||
608 | <e_new>Y Axis Mapping</e_new> | ||
609 | <f_old_trans></f_old_trans> | ||
610 | <f_translation>Y-Achse</f_translation> | ||
611 | </string><string><a_file>floater_joystick.xml</a_file> | ||
612 | <b_path>/Joystick/JoystickAxis0</b_path> | ||
613 | <c_attribute>label</c_attribute> | ||
614 | <d_old></d_old> | ||
615 | <e_new>Z Axis Mapping</e_new> | ||
616 | <f_old_trans></f_old_trans> | ||
617 | <f_translation>Z-Achse</f_translation> | ||
618 | </string><string><a_file>floater_joystick.xml</a_file> | ||
619 | <b_path>/Joystick/JoystickAxis4</b_path> | ||
620 | <c_attribute>label</c_attribute> | ||
621 | <d_old></d_old> | ||
622 | <e_new>Pitch Mapping</e_new> | ||
623 | <f_old_trans></f_old_trans> | ||
624 | <f_translation>Neigungswinkel</f_translation> | ||
625 | </string><string><a_file>floater_joystick.xml</a_file> | ||
626 | <b_path>/Joystick/JoystickAxis5</b_path> | ||
627 | <c_attribute>label</c_attribute> | ||
628 | <d_old></d_old> | ||
629 | <e_new>Yaw Mapping</e_new> | ||
630 | <f_old_trans></f_old_trans> | ||
631 | <f_translation>Gierwinkel</f_translation> | ||
632 | </string><string><a_file>floater_joystick.xml</a_file> | ||
633 | <b_path>/Joystick/JoystickAxis3</b_path> | ||
634 | <c_attribute>label</c_attribute> | ||
635 | <d_old></d_old> | ||
636 | <e_new>Roll Mapping</e_new> | ||
637 | <f_old_trans></f_old_trans> | ||
638 | <f_translation>Rollwinkel</f_translation> | ||
639 | </string><string><a_file>floater_joystick.xml</a_file> | ||
640 | <b_path>/Joystick/JoystickAxis6</b_path> | ||
641 | <c_attribute>label</c_attribute> | ||
642 | <d_old></d_old> | ||
643 | <e_new>Zoom Mapping</e_new> | ||
644 | <f_old_trans></f_old_trans> | ||
645 | <f_translation>Zoom</f_translation> | ||
646 | </string><string><a_file>floater_joystick.xml</a_file> | ||
647 | <b_path>/Joystick/ZoomDirect</b_path> | ||
648 | <c_attribute>label</c_attribute> | ||
649 | <d_old></d_old> | ||
650 | <e_new>Direct Zoom</e_new> | ||
651 | <f_old_trans></f_old_trans> | ||
652 | <f_translation>Direkt-Zoom</f_translation> | ||
653 | </string><string><a_file>floater_joystick.xml</a_file> | ||
654 | <b_path>/Joystick/Cursor3D</b_path> | ||
655 | <c_attribute>label</c_attribute> | ||
656 | <d_old></d_old> | ||
657 | <e_new>3D Cursor</e_new> | ||
658 | <f_old_trans></f_old_trans> | ||
659 | <f_translation>3D-Cursor</f_translation> | ||
660 | </string><string><a_file>floater_joystick.xml</a_file> | ||
661 | <b_path>/Joystick/AutoLeveling</b_path> | ||
662 | <c_attribute>label</c_attribute> | ||
663 | <d_old></d_old> | ||
664 | <e_new>Auto Level</e_new> | ||
665 | <f_old_trans></f_old_trans> | ||
666 | <f_translation>Automatisch ausrichten</f_translation> | ||
667 | </string><string><a_file>floater_joystick.xml</a_file> | ||
668 | <b_path>/Joystick/Control Modes:</b_path> | ||
669 | <c_attribute></c_attribute> | ||
670 | <d_old></d_old> | ||
671 | <e_new> | ||
672 | Control Modes: | ||
673 | </e_new> | 109 | </e_new> |
674 | <f_old_trans></f_old_trans> | 110 | <f_old_trans></f_old_trans> |
675 | <f_translation> | 111 | <f_translation> |
676 | Steuermodi: | 112 | Aktueller Speicherverlust:[SIZE] KB |
677 | </f_translation> | 113 | </f_translation> |
678 | </string><string><a_file>floater_joystick.xml</a_file> | 114 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
679 | <b_path>/Joystick/XScale</b_path> | 115 | <b_path>/MemLeak/note_label_1</b_path> |
680 | <c_attribute></c_attribute> | ||
681 | <d_old></d_old> | ||
682 | <e_new>X Scale</e_new> | ||
683 | <f_old_trans></f_old_trans> | ||
684 | <f_translation>X-Skala </f_translation> | ||
685 | </string><string><a_file>floater_joystick.xml</a_file> | ||
686 | <b_path>/Joystick/YScale</b_path> | ||
687 | <c_attribute></c_attribute> | ||
688 | <d_old></d_old> | ||
689 | <e_new>Y Scale</e_new> | ||
690 | <f_old_trans></f_old_trans> | ||
691 | <f_translation>Y-Skala</f_translation> | ||
692 | </string><string><a_file>floater_joystick.xml</a_file> | ||
693 | <b_path>/Joystick/ZScale</b_path> | ||
694 | <c_attribute></c_attribute> | ||
695 | <d_old></d_old> | ||
696 | <e_new>Z Scale</e_new> | ||
697 | <f_old_trans></f_old_trans> | ||
698 | <f_translation>Z-Skala</f_translation> | ||
699 | </string><string><a_file>floater_joystick.xml</a_file> | ||
700 | <b_path>/Joystick/PitchScale</b_path> | ||
701 | <c_attribute></c_attribute> | ||
702 | <d_old></d_old> | ||
703 | <e_new>Pitch Scale</e_new> | ||
704 | <f_old_trans></f_old_trans> | ||
705 | <f_translation>Neigungsskala</f_translation> | ||
706 | </string><string><a_file>floater_joystick.xml</a_file> | ||
707 | <b_path>/Joystick/YawScale</b_path> | ||
708 | <c_attribute></c_attribute> | ||
709 | <d_old></d_old> | ||
710 | <e_new>Yaw Scale</e_new> | ||
711 | <f_old_trans></f_old_trans> | ||
712 | <f_translation>Gierskala</f_translation> | ||
713 | </string><string><a_file>floater_joystick.xml</a_file> | ||
714 | <b_path>/Joystick/RollScale</b_path> | ||
715 | <c_attribute></c_attribute> | ||
716 | <d_old></d_old> | ||
717 | <e_new>Roll Scale</e_new> | ||
718 | <f_old_trans></f_old_trans> | ||
719 | <f_translation>Rollskala</f_translation> | ||
720 | </string><string><a_file>floater_joystick.xml</a_file> | ||
721 | <b_path>/Joystick/XDeadZone</b_path> | ||
722 | <c_attribute></c_attribute> | ||
723 | <d_old></d_old> | ||
724 | <e_new>X Dead Zone</e_new> | ||
725 | <f_old_trans></f_old_trans> | ||
726 | <f_translation>X-Totzone </f_translation> | ||
727 | </string><string><a_file>floater_joystick.xml</a_file> | ||
728 | <b_path>/Joystick/YDeadZone</b_path> | ||
729 | <c_attribute></c_attribute> | ||
730 | <d_old></d_old> | ||
731 | <e_new>Y Dead Zone</e_new> | ||
732 | <f_old_trans></f_old_trans> | ||
733 | <f_translation>Y-Totzone</f_translation> | ||
734 | </string><string><a_file>floater_joystick.xml</a_file> | ||
735 | <b_path>/Joystick/ZDeadZone</b_path> | ||
736 | <c_attribute></c_attribute> | ||
737 | <d_old></d_old> | ||
738 | <e_new>Z Dead Zone</e_new> | ||
739 | <f_old_trans></f_old_trans> | ||
740 | <f_translation>Z-Totzone</f_translation> | ||
741 | </string><string><a_file>floater_joystick.xml</a_file> | ||
742 | <b_path>/Joystick/PitchDeadZone</b_path> | ||
743 | <c_attribute></c_attribute> | ||
744 | <d_old></d_old> | ||
745 | <e_new>Pitch Dead Zone</e_new> | ||
746 | <f_old_trans></f_old_trans> | ||
747 | <f_translation>Neigen-Totzone</f_translation> | ||
748 | </string><string><a_file>floater_joystick.xml</a_file> | ||
749 | <b_path>/Joystick/YawDeadZone</b_path> | ||
750 | <c_attribute></c_attribute> | ||
751 | <d_old></d_old> | ||
752 | <e_new>Yaw Dead Zone</e_new> | ||
753 | <f_old_trans></f_old_trans> | ||
754 | <f_translation>Gieren-Totzone</f_translation> | ||
755 | </string><string><a_file>floater_joystick.xml</a_file> | ||
756 | <b_path>/Joystick/RollDeadZone</b_path> | ||
757 | <c_attribute></c_attribute> | ||
758 | <d_old></d_old> | ||
759 | <e_new>Roll Dead Zone</e_new> | ||
760 | <f_old_trans></f_old_trans> | ||
761 | <f_translation>Rollen-Totzone</f_translation> | ||
762 | </string><string><a_file>floater_joystick.xml</a_file> | ||
763 | <b_path>/Joystick/Feathering</b_path> | ||
764 | <c_attribute></c_attribute> | ||
765 | <d_old></d_old> | ||
766 | <e_new>Feathering</e_new> | ||
767 | <f_old_trans></f_old_trans> | ||
768 | <f_translation>Auslaufen</f_translation> | ||
769 | </string><string><a_file>floater_joystick.xml</a_file> | ||
770 | <b_path>/Joystick/AvatarFeathering</b_path> | ||
771 | <c_attribute>label</c_attribute> | ||
772 | <d_old></d_old> | ||
773 | <e_new></e_new> | ||
774 | <f_old_trans></f_old_trans> | ||
775 | <f_translation></f_translation> | ||
776 | </string><string><a_file>floater_joystick.xml</a_file> | ||
777 | <b_path>/Joystick/BuildFeathering</b_path> | ||
778 | <c_attribute>label</c_attribute> | ||
779 | <d_old></d_old> | ||
780 | <e_new></e_new> | ||
781 | <f_old_trans></f_old_trans> | ||
782 | <f_translation></f_translation> | ||
783 | </string><string><a_file>floater_joystick.xml</a_file> | ||
784 | <b_path>/Joystick/FlycamFeathering</b_path> | ||
785 | <c_attribute>label</c_attribute> | ||
786 | <d_old></d_old> | ||
787 | <e_new></e_new> | ||
788 | <f_old_trans></f_old_trans> | ||
789 | <f_translation></f_translation> | ||
790 | </string><string><a_file>floater_joystick.xml</a_file> | ||
791 | <b_path>/Joystick/ZoomScale2</b_path> | ||
792 | <c_attribute></c_attribute> | ||
793 | <d_old></d_old> | ||
794 | <e_new>Zoom Scale</e_new> | ||
795 | <f_old_trans></f_old_trans> | ||
796 | <f_translation>Zoom-Skala</f_translation> | ||
797 | </string><string><a_file>floater_joystick.xml</a_file> | ||
798 | <b_path>/Joystick/FlycamAxisScale6</b_path> | ||
799 | <c_attribute>label</c_attribute> | ||
800 | <d_old></d_old> | ||
801 | <e_new></e_new> | ||
802 | <f_old_trans></f_old_trans> | ||
803 | <f_translation></f_translation> | ||
804 | </string><string><a_file>floater_joystick.xml</a_file> | ||
805 | <b_path>/Joystick/ZoomDeadZone</b_path> | ||
806 | <c_attribute></c_attribute> | ||
807 | <d_old></d_old> | ||
808 | <e_new>Zoom Dead Zone</e_new> | ||
809 | <f_old_trans></f_old_trans> | ||
810 | <f_translation>Zoom-Totzone</f_translation> | ||
811 | </string><string><a_file>floater_joystick.xml</a_file> | ||
812 | <b_path>/Joystick/FlycamAxisDeadZone6</b_path> | ||
813 | <c_attribute>label</c_attribute> | ||
814 | <d_old></d_old> | ||
815 | <e_new></e_new> | ||
816 | <f_old_trans></f_old_trans> | ||
817 | <f_translation></f_translation> | ||
818 | </string><string><a_file>floater_joystick.xml</a_file> | ||
819 | <b_path>/Joystick/SpaceNavigatorDefaults</b_path> | ||
820 | <c_attribute>label</c_attribute> | ||
821 | <d_old></d_old> | ||
822 | <e_new>SpaceNavigator Defaults</e_new> | ||
823 | <f_old_trans></f_old_trans> | ||
824 | <f_translation>SpaceNavigator-Standards</f_translation> | ||
825 | </string><string><a_file>floater_joystick.xml</a_file> | ||
826 | <b_path>/Joystick/JoystickMonitor</b_path> | ||
827 | <c_attribute></c_attribute> | ||
828 | <d_old></d_old> | ||
829 | <e_new>Joystick Monitor</e_new> | ||
830 | <f_old_trans></f_old_trans> | ||
831 | <f_translation>Joystick-Monitor</f_translation> | ||
832 | </string><string><a_file>floater_joystick.xml</a_file> | ||
833 | <b_path>/Joystick/Axis</b_path> | ||
834 | <c_attribute></c_attribute> | ||
835 | <d_old></d_old> | ||
836 | <e_new>Axis [NUM]</e_new> | ||
837 | <f_old_trans></f_old_trans> | ||
838 | <f_translation>Achse [NUM]</f_translation> | ||
839 | </string><string><a_file>floater_joystick.xml</a_file> | ||
840 | <b_path>/Joystick/NoDevice</b_path> | ||
841 | <c_attribute></c_attribute> | ||
842 | <d_old></d_old> | ||
843 | <e_new>no device detected</e_new> | ||
844 | <f_old_trans></f_old_trans> | ||
845 | <f_translation>Kein Gerät erkannt</f_translation> | ||
846 | </string><string><a_file>floater_post_process.xml</a_file> | ||
847 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBrightness</b_path> | ||
848 | <c_attribute>label</c_attribute> | ||
849 | <d_old></d_old> | ||
850 | <e_new></e_new> | ||
851 | <f_old_trans></f_old_trans> | ||
852 | <f_translation></f_translation> | ||
853 | </string><string><a_file>floater_post_process.xml</a_file> | ||
854 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterSaturation</b_path> | ||
855 | <c_attribute>label</c_attribute> | ||
856 | <d_old></d_old> | ||
857 | <e_new></e_new> | ||
858 | <f_old_trans></f_old_trans> | ||
859 | <f_translation></f_translation> | ||
860 | </string><string><a_file>floater_post_process.xml</a_file> | ||
861 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterContrast</b_path> | ||
862 | <c_attribute>label</c_attribute> | ||
863 | <d_old></d_old> | ||
864 | <e_new></e_new> | ||
865 | <f_old_trans></f_old_trans> | ||
866 | <f_translation></f_translation> | ||
867 | </string><string><a_file>floater_post_process.xml</a_file> | ||
868 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionBrightMult</b_path> | ||
869 | <c_attribute>label</c_attribute> | ||
870 | <d_old></d_old> | ||
871 | <e_new></e_new> | ||
872 | <f_old_trans></f_old_trans> | ||
873 | <f_translation></f_translation> | ||
874 | </string><string><a_file>floater_post_process.xml</a_file> | ||
875 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseSize</b_path> | ||
876 | <c_attribute>label</c_attribute> | ||
877 | <d_old></d_old> | ||
878 | <e_new></e_new> | ||
879 | <f_old_trans></f_old_trans> | ||
880 | <f_translation></f_translation> | ||
881 | </string><string><a_file>floater_post_process.xml</a_file> | ||
882 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseStrength</b_path> | ||
883 | <c_attribute>label</c_attribute> | ||
884 | <d_old></d_old> | ||
885 | <e_new></e_new> | ||
886 | <f_old_trans></f_old_trans> | ||
887 | <f_translation></f_translation> | ||
888 | </string><string><a_file>floater_post_process.xml</a_file> | ||
889 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomExtract</b_path> | ||
890 | <c_attribute>label</c_attribute> | ||
891 | <d_old></d_old> | ||
892 | <e_new></e_new> | ||
893 | <f_old_trans></f_old_trans> | ||
894 | <f_translation></f_translation> | ||
895 | </string><string><a_file>floater_post_process.xml</a_file> | ||
896 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomSize</b_path> | ||
897 | <c_attribute>label</c_attribute> | ||
898 | <d_old></d_old> | ||
899 | <e_new></e_new> | ||
900 | <f_old_trans></f_old_trans> | ||
901 | <f_translation></f_translation> | ||
902 | </string><string><a_file>floater_post_process.xml</a_file> | ||
903 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomStrength</b_path> | ||
904 | <c_attribute>label</c_attribute> | ||
905 | <d_old></d_old> | ||
906 | <e_new></e_new> | ||
907 | <f_old_trans></f_old_trans> | ||
908 | <f_translation></f_translation> | ||
909 | </string><string><a_file>floater_preview_classified.xml</a_file> | ||
910 | <b_path>/classified_preview</b_path> | ||
911 | <c_attribute>title</c_attribute> | ||
912 | <d_old></d_old> | ||
913 | <e_new>Classified Information</e_new> | ||
914 | <f_old_trans></f_old_trans> | ||
915 | <f_translation>Vertrauliche Informationen</f_translation> | ||
916 | </string><string><a_file>floater_preview_event.xml</a_file> | ||
917 | <b_path>/event_preview</b_path> | ||
918 | <c_attribute>title</c_attribute> | ||
919 | <d_old></d_old> | ||
920 | <e_new>Event Information</e_new> | ||
921 | <f_old_trans></f_old_trans> | ||
922 | <f_translation>Event-Informationen</f_translation> | ||
923 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
924 | <b_path>/gesture_preview/library_label</b_path> | ||
925 | <c_attribute></c_attribute> | 116 | <c_attribute></c_attribute> |
926 | <d_old></d_old> | 117 | <d_old></d_old> |
927 | <e_new> | 118 | <e_new> |
928 | Library: | 119 | [NOTE1] |
929 | </e_new> | 120 | </e_new> |
930 | <f_old_trans></f_old_trans> | 121 | <f_old_trans></f_old_trans> |
931 | <f_translation> | 122 | <f_translation> |
932 | Bibliothek: | 123 | [NOTE1] |
933 | </f_translation> | 124 | </f_translation> |
934 | </string><string><a_file>floater_preview_gesture.xml</a_file> | 125 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
935 | <b_path>/gesture_preview/steps_label</b_path> | 126 | <b_path>/MemLeak/note_label_2</b_path> |
936 | <c_attribute></c_attribute> | 127 | <c_attribute></c_attribute> |
937 | <d_old></d_old> | 128 | <d_old></d_old> |
938 | <e_new> | 129 | <e_new> |
939 | Steps: | 130 | [NOTE2] |
940 | </e_new> | 131 | </e_new> |
941 | <f_old_trans></f_old_trans> | 132 | <f_old_trans></f_old_trans> |
942 | <f_translation> | 133 | <f_translation> |
943 | Schritte: | 134 | [NOTE2] |
944 | </f_translation> | 135 | </f_translation> |
945 | </string><string><a_file>floater_preview_gesture.xml</a_file> | 136 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
946 | <b_path>/gesture_preview/animation_trigger_type/start</b_path> | 137 | <b_path>/MemLeak/start_btn</b_path> |
947 | <c_attribute></c_attribute> | ||
948 | <d_old></d_old> | ||
949 | <e_new> | ||
950 | Start | ||
951 | </e_new> | ||
952 | <f_old_trans></f_old_trans> | ||
953 | <f_translation> | ||
954 | Start | ||
955 | </f_translation> | ||
956 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
957 | <b_path>/gesture_preview/animation_trigger_type/stop</b_path> | ||
958 | <c_attribute></c_attribute> | ||
959 | <d_old></d_old> | ||
960 | <e_new> | ||
961 | Stop | ||
962 | </e_new> | ||
963 | <f_old_trans></f_old_trans> | ||
964 | <f_translation> | ||
965 | Stopp | ||
966 | </f_translation> | ||
967 | </string><string><a_file>floater_preview_notecard_keep_discard.xml</a_file> | ||
968 | <b_path>/preview_notecard/not_allowed</b_path> | ||
969 | <c_attribute></c_attribute> | ||
970 | <d_old></d_old> | ||
971 | <e_new>You are not allowed to view this note.</e_new> | ||
972 | <f_old_trans></f_old_trans> | ||
973 | <f_translation>Sie können diese Notiz nicht anzeigen.</f_translation> | ||
974 | </string><string><a_file>floater_preview_url.xml</a_file> | ||
975 | <b_path>/url_preview</b_path> | ||
976 | <c_attribute>title</c_attribute> | ||
977 | <d_old></d_old> | ||
978 | <e_new>Place Information</e_new> | ||
979 | <f_old_trans></f_old_trans> | ||
980 | <f_translation>Ortsinformationen</f_translation> | ||
981 | </string><string><a_file>floater_region_info.xml</a_file> | ||
982 | <b_path>/regioninfo</b_path> | ||
983 | <c_attribute>title</c_attribute> | ||
984 | <d_old></d_old> | ||
985 | <e_new>Region/Estate</e_new> | ||
986 | <f_old_trans></f_old_trans> | ||
987 | <f_translation>Region/Grundstück</f_translation> | ||
988 | </string><string><a_file>floater_tools.xml</a_file> | ||
989 | <b_path>/toolbox floater/ToolCube</b_path> | ||
990 | <c_attribute>tool_tip</c_attribute> | ||
991 | <d_old></d_old> | ||
992 | <e_new>Cube</e_new> | ||
993 | <f_old_trans></f_old_trans> | ||
994 | <f_translation>Würfel</f_translation> | ||
995 | </string><string><a_file>floater_tools.xml</a_file> | ||
996 | <b_path>/toolbox floater/ToolPrism</b_path> | ||
997 | <c_attribute>tool_tip</c_attribute> | ||
998 | <d_old></d_old> | ||
999 | <e_new>Prism</e_new> | ||
1000 | <f_old_trans></f_old_trans> | ||
1001 | <f_translation>Prisma</f_translation> | ||
1002 | </string><string><a_file>floater_tools.xml</a_file> | ||
1003 | <b_path>/toolbox floater/ToolPyramid</b_path> | ||
1004 | <c_attribute>tool_tip</c_attribute> | ||
1005 | <d_old></d_old> | ||
1006 | <e_new>Pyramid</e_new> | ||
1007 | <f_old_trans></f_old_trans> | ||
1008 | <f_translation>Pyramide</f_translation> | ||
1009 | </string><string><a_file>floater_tools.xml</a_file> | ||
1010 | <b_path>/toolbox floater/ToolTetrahedron</b_path> | ||
1011 | <c_attribute>tool_tip</c_attribute> | ||
1012 | <d_old></d_old> | ||
1013 | <e_new>Tetrahedron</e_new> | ||
1014 | <f_old_trans></f_old_trans> | ||
1015 | <f_translation>Tetraeder</f_translation> | ||
1016 | </string><string><a_file>floater_tools.xml</a_file> | ||
1017 | <b_path>/toolbox floater/ToolCylinder</b_path> | ||
1018 | <c_attribute>tool_tip</c_attribute> | ||
1019 | <d_old></d_old> | ||
1020 | <e_new>Cylinder</e_new> | ||
1021 | <f_old_trans></f_old_trans> | ||
1022 | <f_translation>Zylinder</f_translation> | ||
1023 | </string><string><a_file>floater_tools.xml</a_file> | ||
1024 | <b_path>/toolbox floater/ToolHemiCylinder</b_path> | ||
1025 | <c_attribute>tool_tip</c_attribute> | ||
1026 | <d_old></d_old> | ||
1027 | <e_new>Hemicylinder</e_new> | ||
1028 | <f_old_trans></f_old_trans> | ||
1029 | <f_translation>Halbzylinder</f_translation> | ||
1030 | </string><string><a_file>floater_tools.xml</a_file> | ||
1031 | <b_path>/toolbox floater/ToolCone</b_path> | ||
1032 | <c_attribute>tool_tip</c_attribute> | ||
1033 | <d_old></d_old> | ||
1034 | <e_new>Cone</e_new> | ||
1035 | <f_old_trans></f_old_trans> | ||
1036 | <f_translation>Kegel</f_translation> | ||
1037 | </string><string><a_file>floater_tools.xml</a_file> | ||
1038 | <b_path>/toolbox floater/ToolHemiCone</b_path> | ||
1039 | <c_attribute>tool_tip</c_attribute> | ||
1040 | <d_old></d_old> | ||
1041 | <e_new>Hemicone</e_new> | ||
1042 | <f_old_trans></f_old_trans> | ||
1043 | <f_translation>Halbkegel</f_translation> | ||
1044 | </string><string><a_file>floater_tools.xml</a_file> | ||
1045 | <b_path>/toolbox floater/ToolSphere</b_path> | ||
1046 | <c_attribute>tool_tip</c_attribute> | ||
1047 | <d_old></d_old> | ||
1048 | <e_new>Sphere</e_new> | ||
1049 | <f_old_trans></f_old_trans> | ||
1050 | <f_translation>Kugel</f_translation> | ||
1051 | </string><string><a_file>floater_tools.xml</a_file> | ||
1052 | <b_path>/toolbox floater/ToolHemiSphere</b_path> | ||
1053 | <c_attribute>tool_tip</c_attribute> | ||
1054 | <d_old></d_old> | ||
1055 | <e_new>Hemisphere</e_new> | ||
1056 | <f_old_trans></f_old_trans> | ||
1057 | <f_translation>Halbkugel</f_translation> | ||
1058 | </string><string><a_file>floater_tools.xml</a_file> | ||
1059 | <b_path>/toolbox floater/ToolTorus</b_path> | ||
1060 | <c_attribute>tool_tip</c_attribute> | ||
1061 | <d_old></d_old> | ||
1062 | <e_new>Torus</e_new> | ||
1063 | <f_old_trans></f_old_trans> | ||
1064 | <f_translation>Torus</f_translation> | ||
1065 | </string><string><a_file>floater_tools.xml</a_file> | ||
1066 | <b_path>/toolbox floater/ToolTube</b_path> | ||
1067 | <c_attribute>tool_tip</c_attribute> | ||
1068 | <d_old></d_old> | ||
1069 | <e_new>Tube</e_new> | ||
1070 | <f_old_trans></f_old_trans> | ||
1071 | <f_translation>Rohr</f_translation> | ||
1072 | </string><string><a_file>floater_tools.xml</a_file> | ||
1073 | <b_path>/toolbox floater/ToolRing</b_path> | ||
1074 | <c_attribute>tool_tip</c_attribute> | ||
1075 | <d_old></d_old> | ||
1076 | <e_new>Ring</e_new> | ||
1077 | <f_old_trans></f_old_trans> | ||
1078 | <f_translation>Ring</f_translation> | ||
1079 | </string><string><a_file>floater_tools.xml</a_file> | ||
1080 | <b_path>/toolbox floater/ToolTree</b_path> | ||
1081 | <c_attribute>tool_tip</c_attribute> | ||
1082 | <d_old></d_old> | ||
1083 | <e_new>Tree</e_new> | ||
1084 | <f_old_trans></f_old_trans> | ||
1085 | <f_translation>Baum</f_translation> | ||
1086 | </string><string><a_file>floater_tools.xml</a_file> | ||
1087 | <b_path>/toolbox floater/ToolGrass</b_path> | ||
1088 | <c_attribute>tool_tip</c_attribute> | ||
1089 | <d_old></d_old> | ||
1090 | <e_new>Grass</e_new> | ||
1091 | <f_old_trans></f_old_trans> | ||
1092 | <f_translation>Gras</f_translation> | ||
1093 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1094 | <b_path>/Main Menu/View/Joystick Flycam</b_path> | ||
1095 | <c_attribute>label</c_attribute> | ||
1096 | <d_old></d_old> | ||
1097 | <e_new>Joystick Flycam</e_new> | ||
1098 | <f_old_trans></f_old_trans> | ||
1099 | <f_translation>Joystick-Flycam</f_translation> | ||
1100 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1101 | <b_path>/Main Menu/Help/Tutorial</b_path> | ||
1102 | <c_attribute>label</c_attribute> | 138 | <c_attribute>label</c_attribute> |
1103 | <d_old></d_old> | 139 | <d_old></d_old> |
1104 | <e_new>Tutorial</e_new> | 140 | <e_new>Start</e_new> |
1105 | <f_old_trans></f_old_trans> | 141 | <f_old_trans></f_old_trans> |
1106 | <f_translation>Tutorial</f_translation> | 142 | <f_translation>Start</f_translation> |
1107 | </string><string><a_file>menu_viewer.xml</a_file> | 143 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
1108 | <b_path>/Main Menu/Help/separator7</b_path> | 144 | <b_path>/MemLeak/stop_btn</b_path> |
1109 | <c_attribute>label</c_attribute> | 145 | <c_attribute>label</c_attribute> |
1110 | <d_old></d_old> | 146 | <d_old></d_old> |
1111 | <e_new>-----------</e_new> | 147 | <e_new>Stop</e_new> |
1112 | <f_old_trans></f_old_trans> | 148 | <f_old_trans></f_old_trans> |
1113 | <f_translation> -----------</f_translation> | 149 | <f_translation>Stopp</f_translation> |
1114 | </string><string><a_file>menu_viewer.xml</a_file> | 150 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
1115 | <b_path>/Main Menu/Help/Bug Reporting/separator7</b_path> | 151 | <b_path>/MemLeak/release_btn</b_path> |
1116 | <c_attribute>label</c_attribute> | 152 | <c_attribute>label</c_attribute> |
1117 | <d_old></d_old> | 153 | <d_old></d_old> |
1118 | <e_new>-----------</e_new> | 154 | <e_new>Release</e_new> |
1119 | <f_old_trans></f_old_trans> | 155 | <f_old_trans></f_old_trans> |
1120 | <f_translation> -----------</f_translation> | 156 | <f_translation>Freigeben</f_translation> |
1121 | </string><string><a_file>menu_viewer.xml</a_file> | 157 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
1122 | <b_path>/Main Menu/Help/Bug Reporting/separator9</b_path> | 158 | <b_path>/MemLeak/close_btn</b_path> |
1123 | <c_attribute>label</c_attribute> | 159 | <c_attribute>label</c_attribute> |
1124 | <d_old></d_old> | 160 | <d_old></d_old> |
1125 | <e_new>-----------</e_new> | 161 | <e_new>Close</e_new> |
1126 | <f_old_trans></f_old_trans> | ||
1127 | <f_translation> -----------</f_translation> | ||
1128 | </string><string><a_file>mime_types.xml</a_file> | ||
1129 | <b_path>/default/web/</b_path> | ||
1130 | <c_attribute></c_attribute> | ||
1131 | <d_old></d_old> | ||
1132 | <e_new> | ||
1133 | Web Content | ||
1134 | </e_new> | ||
1135 | <f_old_trans></f_old_trans> | ||
1136 | <f_translation> | ||
1137 | Webinhalt | ||
1138 | </f_translation> | ||
1139 | </string><string><a_file>mime_types.xml</a_file> | ||
1140 | <b_path>/default/web/</b_path> | ||
1141 | <c_attribute></c_attribute> | ||
1142 | <d_old></d_old> | ||
1143 | <e_new> | ||
1144 | This location has Web content | ||
1145 | </e_new> | ||
1146 | <f_old_trans></f_old_trans> | ||
1147 | <f_translation> | ||
1148 | Dieser Ort verfügt über Webinhalte | ||
1149 | </f_translation> | ||
1150 | </string><string><a_file>mime_types.xml</a_file> | ||
1151 | <b_path>/default/web/</b_path> | ||
1152 | <c_attribute></c_attribute> | ||
1153 | <d_old></d_old> | ||
1154 | <e_new> | ||
1155 | Show Web content | ||
1156 | </e_new> | ||
1157 | <f_old_trans></f_old_trans> | 162 | <f_old_trans></f_old_trans> |
1158 | <f_translation> | 163 | <f_translation>Schließen</f_translation> |
1159 | Webinhalt anzeigen | 164 | </string><string><a_file>floater_postcard.xml</a_file> |
1160 | </f_translation> | 165 | <b_path>/Postcard/upload_message</b_path> |
1161 | </string><string><a_file>mime_types.xml</a_file> | ||
1162 | <b_path>/default/movie/</b_path> | ||
1163 | <c_attribute></c_attribute> | ||
1164 | <d_old></d_old> | ||
1165 | <e_new> | ||
1166 | Movie | ||
1167 | </e_new> | ||
1168 | <f_old_trans></f_old_trans> | ||
1169 | <f_translation> | ||
1170 | Video | ||
1171 | </f_translation> | ||
1172 | </string><string><a_file>mime_types.xml</a_file> | ||
1173 | <b_path>/default/movie/</b_path> | ||
1174 | <c_attribute></c_attribute> | ||
1175 | <d_old></d_old> | ||
1176 | <e_new> | ||
1177 | There is a movie to play here | ||
1178 | </e_new> | ||
1179 | <f_old_trans></f_old_trans> | ||
1180 | <f_translation> | ||
1181 | Kein Video gefunden | ||
1182 | </f_translation> | ||
1183 | </string><string><a_file>mime_types.xml</a_file> | ||
1184 | <b_path>/default/movie/</b_path> | ||
1185 | <c_attribute></c_attribute> | ||
1186 | <d_old></d_old> | ||
1187 | <e_new> | ||
1188 | Play movie | ||
1189 | </e_new> | ||
1190 | <f_old_trans></f_old_trans> | ||
1191 | <f_translation> | ||
1192 | Video wiedergeben | ||
1193 | </f_translation> | ||
1194 | </string><string><a_file>mime_types.xml</a_file> | ||
1195 | <b_path>/default/none/</b_path> | ||
1196 | <c_attribute></c_attribute> | ||
1197 | <d_old></d_old> | ||
1198 | <e_new> | ||
1199 | No Content | ||
1200 | </e_new> | ||
1201 | <f_old_trans></f_old_trans> | ||
1202 | <f_translation> | ||
1203 | Keine Inhalte | ||
1204 | </f_translation> | ||
1205 | </string><string><a_file>mime_types.xml</a_file> | ||
1206 | <b_path>/default/none/</b_path> | ||
1207 | <c_attribute></c_attribute> | ||
1208 | <d_old></d_old> | ||
1209 | <e_new> | ||
1210 | No media here | ||
1211 | </e_new> | ||
1212 | <f_old_trans></f_old_trans> | ||
1213 | <f_translation> | ||
1214 | Keine Medien gefunden | ||
1215 | </f_translation> | ||
1216 | </string><string><a_file>mime_types.xml</a_file> | ||
1217 | <b_path>/default/image/</b_path> | ||
1218 | <c_attribute></c_attribute> | ||
1219 | <d_old></d_old> | ||
1220 | <e_new> | ||
1221 | Image | ||
1222 | </e_new> | ||
1223 | <f_old_trans></f_old_trans> | ||
1224 | <f_translation> | ||
1225 | Bild | ||
1226 | </f_translation> | ||
1227 | </string><string><a_file>mime_types.xml</a_file> | ||
1228 | <b_path>/default/image/</b_path> | ||
1229 | <c_attribute></c_attribute> | ||
1230 | <d_old></d_old> | ||
1231 | <e_new> | ||
1232 | There is an image at this location | ||
1233 | </e_new> | ||
1234 | <f_old_trans></f_old_trans> | ||
1235 | <f_translation> | ||
1236 | Dieser Ort verfügt über Bildinhalte | ||
1237 | </f_translation> | ||
1238 | </string><string><a_file>mime_types.xml</a_file> | ||
1239 | <b_path>/default/image/</b_path> | ||
1240 | <c_attribute></c_attribute> | 166 | <c_attribute></c_attribute> |
1241 | <d_old></d_old> | 167 | <d_old></d_old> |
1242 | <e_new> | 168 | <e_new> |
1243 | View this location's image | 169 | "Sending..." |
1244 | </e_new> | 170 | </e_new> |
1245 | <f_old_trans></f_old_trans> | 171 | <f_old_trans></f_old_trans> |
1246 | <f_translation> | 172 | <f_translation> |
1247 | Das Bild an diesem Ort anzeigen | 173 | "Wird gesendet..." |
1248 | </f_translation> | 174 | </f_translation> |
1249 | </string><string><a_file>mime_types.xml</a_file> | 175 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1250 | <b_path>/default/audio/</b_path> | 176 | <b_path>/floater_report_abuse/category_combo/Select_category</b_path> |
1251 | <c_attribute></c_attribute> | 177 | <c_attribute></c_attribute> |
1252 | <d_old></d_old> | 178 | <d_old></d_old> |
1253 | <e_new> | 179 | <e_new> |
1254 | Audio | 180 | Select category |
1255 | </e_new> | 181 | </e_new> |
1256 | <f_old_trans></f_old_trans> | 182 | <f_old_trans></f_old_trans> |
1257 | <f_translation> | 183 | <f_translation> |
1258 | Audio | 184 | Kategorie auswählen |
1259 | </f_translation> | 185 | </f_translation> |
1260 | </string><string><a_file>mime_types.xml</a_file> | 186 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1261 | <b_path>/default/audio/</b_path> | 187 | <b_path>/floater_report_abuse/category_combo/Age__Age_play</b_path> |
1262 | <c_attribute></c_attribute> | 188 | <c_attribute></c_attribute> |
1263 | <d_old></d_old> | 189 | <d_old></d_old> |
1264 | <e_new> | 190 | <e_new> |
1265 | There is audio at this location | 191 | Age > Age play |
1266 | </e_new> | 192 | </e_new> |
1267 | <f_old_trans></f_old_trans> | 193 | <f_old_trans></f_old_trans> |
1268 | <f_translation> | 194 | <f_translation> |
1269 | Dieser Ort verfügt über Audioinhalte | 195 | Alter> Age-Play |
1270 | </f_translation> | 196 | </f_translation> |
1271 | </string><string><a_file>mime_types.xml</a_file> | 197 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1272 | <b_path>/default/audio/</b_path> | 198 | <b_path>/floater_report_abuse/category_combo/Age__Adult_resident_on_Teen_Second_Life</b_path> |
1273 | <c_attribute></c_attribute> | 199 | <c_attribute></c_attribute> |
1274 | <d_old></d_old> | 200 | <d_old></d_old> |
1275 | <e_new> | 201 | <e_new> |
1276 | View this location's audio | 202 | Age > Adult resident on Teen Second Life |
1277 | </e_new> | 203 | </e_new> |
1278 | <f_old_trans></f_old_trans> | 204 | <f_old_trans></f_old_trans> |
1279 | <f_translation> | 205 | <f_translation> |
1280 | Audio an diesem Ort wiedergeben | 206 | Alter> Erwachsener Einwohner in Teen Second Life |
1281 | </f_translation> | 207 | </f_translation> |
1282 | </string><string><a_file>mime_types.xml</a_file> | 208 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1283 | <b_path>/default/rtsp/</b_path> | 209 | <b_path>/floater_report_abuse/category_combo/Age__Underage_resident_on_Adult_Second_Life</b_path> |
1284 | <c_attribute></c_attribute> | 210 | <c_attribute></c_attribute> |
1285 | <d_old></d_old> | 211 | <d_old></d_old> |
1286 | <e_new> | 212 | <e_new> |
1287 | Real Time Streaming | 213 | Age > Underage resident on Adult Second Life |
1288 | </e_new> | 214 | </e_new> |
1289 | <f_old_trans></f_old_trans> | 215 | <f_old_trans></f_old_trans> |
1290 | <f_translation> | 216 | <f_translation> |
1291 | Echtzeit-Streaming | 217 | Alter > Minderjähriger Einwohner in Adult Second Life |
1292 | </f_translation> | 218 | </f_translation> |
1293 | </string><string><a_file>mime_types.xml</a_file> | 219 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1294 | <b_path>/default/blank/</b_path> | 220 | <b_path>/floater_report_abuse/category_combo/Assault__Combat_sandbox___unsafe_area</b_path> |
1295 | <c_attribute></c_attribute> | 221 | <c_attribute></c_attribute> |
1296 | <d_old></d_old> | 222 | <d_old></d_old> |
1297 | <e_new> | 223 | <e_new> |
1298 | - None - | 224 | Assault > Combat sandbox / unsafe area |
1299 | </e_new> | 225 | </e_new> |
1300 | <f_old_trans></f_old_trans> | 226 | <f_old_trans></f_old_trans> |
1301 | <f_translation> | 227 | <f_translation> |
1302 | - Keine - | 228 | Angriff> Kampf-Sandbox / unsichere Region |
1303 | </f_translation> | 229 | </f_translation> |
1304 | </string><string><a_file>mime_types.xml</a_file> | 230 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1305 | <b_path>/default/"none/none"/</b_path> | 231 | <b_path>/floater_report_abuse/category_combo/Assault__Safe_area</b_path> |
1306 | <c_attribute></c_attribute> | 232 | <c_attribute></c_attribute> |
1307 | <d_old></d_old> | 233 | <d_old></d_old> |
1308 | <e_new> | 234 | <e_new> |
1309 | - None - | 235 | Assault > Safe area |
1310 | </e_new> | 236 | </e_new> |
1311 | <f_old_trans></f_old_trans> | 237 | <f_old_trans></f_old_trans> |
1312 | <f_translation> | 238 | <f_translation> |
1313 | - Keine - | 239 | Angriff> Sichere Region |
1314 | </f_translation> | 240 | </f_translation> |
1315 | </string><string><a_file>mime_types.xml</a_file> | 241 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1316 | <b_path>/default/"audio/*"/</b_path> | 242 | <b_path>/floater_report_abuse/category_combo/Assault__Weapons_testing_sandbox</b_path> |
1317 | <c_attribute></c_attribute> | 243 | <c_attribute></c_attribute> |
1318 | <d_old></d_old> | 244 | <d_old></d_old> |
1319 | <e_new> | 245 | <e_new> |
1320 | Audio | 246 | Assault > Weapons testing sandbox |
1321 | </e_new> | 247 | </e_new> |
1322 | <f_old_trans></f_old_trans> | 248 | <f_old_trans></f_old_trans> |
1323 | <f_translation> | 249 | <f_translation> |
1324 | Audio | 250 | Angriff > Sandbox für Waffentest |
1325 | </f_translation> | 251 | </f_translation> |
1326 | </string><string><a_file>mime_types.xml</a_file> | 252 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1327 | <b_path>/default/"video/*"/</b_path> | 253 | <b_path>/floater_report_abuse/category_combo/Copyright_or_intellectual_property_violation</b_path> |
1328 | <c_attribute></c_attribute> | 254 | <c_attribute></c_attribute> |
1329 | <d_old></d_old> | 255 | <d_old></d_old> |
1330 | <e_new> | 256 | <e_new> |
1331 | Video | 257 | Copyright or intellectual property violation |
1332 | </e_new> | 258 | </e_new> |
1333 | <f_old_trans></f_old_trans> | 259 | <f_old_trans></f_old_trans> |
1334 | <f_translation> | 260 | <f_translation> |
1335 | Video | 261 | Urheberrechtsverletzung |
1336 | </f_translation> | 262 | </f_translation> |
1337 | </string><string><a_file>mime_types.xml</a_file> | 263 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1338 | <b_path>/default/"image/*"/</b_path> | 264 | <b_path>/floater_report_abuse/category_combo/Commerce__Failure_to_deliver_product_or_service</b_path> |
1339 | <c_attribute></c_attribute> | 265 | <c_attribute></c_attribute> |
1340 | <d_old></d_old> | 266 | <d_old></d_old> |
1341 | <e_new> | 267 | <e_new> |
1342 | Image | 268 | Commerce > Failure to deliver product or service |
1343 | </e_new> | 269 | </e_new> |
1344 | <f_old_trans></f_old_trans> | 270 | <f_old_trans></f_old_trans> |
1345 | <f_translation> | 271 | <f_translation> |
1346 | Bild | 272 | Handel > Produkt nicht geliefer oder Dienstleistung nicht erbracht |
1347 | </f_translation> | 273 | </f_translation> |
1348 | </string><string><a_file>mime_types.xml</a_file> | 274 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1349 | <b_path>/default/"video/vnd.secondlife.qt.legacy"/</b_path> | 275 | <b_path>/floater_report_abuse/category_combo/Disclosure__First_Life_information</b_path> |
1350 | <c_attribute></c_attribute> | 276 | <c_attribute></c_attribute> |
1351 | <d_old></d_old> | 277 | <d_old></d_old> |
1352 | <e_new> | 278 | <e_new> |
1353 | Movie (QuickTime) | 279 | Disclosure > First life information |
1354 | </e_new> | 280 | </e_new> |
1355 | <f_old_trans></f_old_trans> | 281 | <f_old_trans></f_old_trans> |
1356 | <f_translation> | 282 | <f_translation> |
1357 | Video (QuickTime) | 283 | Offenlegung > Private Benutzerdaten |
1358 | </f_translation> | 284 | </f_translation> |
1359 | </string><string><a_file>mime_types.xml</a_file> | 285 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1360 | <b_path>/default/"application/javascript"/</b_path> | 286 | <b_path>/floater_report_abuse/category_combo/Disclosure__Remotely_monitoring chat</b_path> |
1361 | <c_attribute></c_attribute> | 287 | <c_attribute></c_attribute> |
1362 | <d_old></d_old> | 288 | <d_old></d_old> |
1363 | <e_new> | 289 | <e_new> |
1364 | Javascript | 290 | Disclosure > Remotely monitoring chat |
1365 | </e_new> | 291 | </e_new> |
1366 | <f_old_trans></f_old_trans> | 292 | <f_old_trans></f_old_trans> |
1367 | <f_translation> | 293 | <f_translation> |
1368 | Javascript | 294 | Offenlegung > Abhören eines Chats aus der Ferne |
1369 | </f_translation> | 295 | </f_translation> |
1370 | </string><string><a_file>mime_types.xml</a_file> | 296 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1371 | <b_path>/default/"application/ogg"/</b_path> | 297 | <b_path>/floater_report_abuse/category_combo/Disclosure__Second_Life_information_chat_IMs</b_path> |
1372 | <c_attribute></c_attribute> | 298 | <c_attribute></c_attribute> |
1373 | <d_old></d_old> | 299 | <d_old></d_old> |
1374 | <e_new> | 300 | <e_new> |
1375 | Ogg Audio/Video | 301 | Disclosure > Second Life information/chat/IMs |
1376 | </e_new> | 302 | </e_new> |
1377 | <f_old_trans></f_old_trans> | 303 | <f_old_trans></f_old_trans> |
1378 | <f_translation> | 304 | <f_translation> |
1379 | Ogg Audio/Video | 305 | Offenlegung > Second Life-Informationen/Chat/IMs |
1380 | </f_translation> | 306 | </f_translation> |
1381 | </string><string><a_file>mime_types.xml</a_file> | 307 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1382 | <b_path>/default/"application/pdf"/</b_path> | 308 | <b_path>/floater_report_abuse/category_combo/Disturbing_the_peace__Unfair_use_of_region_resources</b_path> |
1383 | <c_attribute></c_attribute> | 309 | <c_attribute></c_attribute> |
1384 | <d_old></d_old> | 310 | <d_old></d_old> |
1385 | <e_new> | 311 | <e_new> |
1386 | PDF Document | 312 | Disturbing the peace > Unfair use of region resources |
1387 | </e_new> | 313 | </e_new> |
1388 | <f_old_trans></f_old_trans> | 314 | <f_old_trans></f_old_trans> |
1389 | <f_translation> | 315 | <f_translation> |
1390 | PDF-Dokument | 316 | Ruhestörung > Unfaire Nutzung von Regionsressourcen |
1391 | </f_translation> | 317 | </f_translation> |
1392 | </string><string><a_file>mime_types.xml</a_file> | 318 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1393 | <b_path>/default/"application/postscript"/</b_path> | 319 | <b_path>/floater_report_abuse/category_combo/Disturbing_the_peace__Excessive_scripted_objects</b_path> |
1394 | <c_attribute></c_attribute> | 320 | <c_attribute></c_attribute> |
1395 | <d_old></d_old> | 321 | <d_old></d_old> |
1396 | <e_new> | 322 | <e_new> |
1397 | Postscript Document | 323 | Disturbing the peace > Excessive scripted objects |
1398 | </e_new> | 324 | </e_new> |
1399 | <f_old_trans></f_old_trans> | 325 | <f_old_trans></f_old_trans> |
1400 | <f_translation> | 326 | <f_translation> |
1401 | Postscript-Dokument | 327 | Ruhestörung > Exzessive Nutzung geskripteter Objekte |
1402 | </f_translation> | 328 | </f_translation> |
1403 | </string><string><a_file>mime_types.xml</a_file> | 329 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1404 | <b_path>/default/"application/rtf"/</b_path> | 330 | <b_path>/floater_report_abuse/category_combo/Disturbing_the_peace__Object_littering</b_path> |
1405 | <c_attribute></c_attribute> | 331 | <c_attribute></c_attribute> |
1406 | <d_old></d_old> | 332 | <d_old></d_old> |
1407 | <e_new> | 333 | <e_new> |
1408 | Rich Text (RTF) | 334 | Disturbing the peace > Object littering |
1409 | </e_new> | 335 | </e_new> |
1410 | <f_old_trans></f_old_trans> | 336 | <f_old_trans></f_old_trans> |
1411 | <f_translation> | 337 | <f_translation> |
1412 | Rich Text (RTF) | 338 | Ruhestörung > Wildes Erzeugen von Objekten |
1413 | </f_translation> | 339 | </f_translation> |
1414 | </string><string><a_file>mime_types.xml</a_file> | 340 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1415 | <b_path>/default/"application/xhtml+xml"/</b_path> | 341 | <b_path>/floater_report_abuse/category_combo/Disturbing_the_peace__Repetitive_spam</b_path> |
1416 | <c_attribute></c_attribute> | 342 | <c_attribute></c_attribute> |
1417 | <d_old></d_old> | 343 | <d_old></d_old> |
1418 | <e_new> | 344 | <e_new> |
1419 | Web Page (XHTML) | 345 | Disturbing the peace > Repetitive spam |
1420 | </e_new> | 346 | </e_new> |
1421 | <f_old_trans></f_old_trans> | 347 | <f_old_trans></f_old_trans> |
1422 | <f_translation> | 348 | <f_translation> |
1423 | Webseite (XHTML) | 349 | Ruhestörung > Ständige Spam-Wiederholung |
1424 | </f_translation> | 350 | </f_translation> |
1425 | </string><string><a_file>mime_types.xml</a_file> | 351 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1426 | <b_path>/default/"application/x-director"/</b_path> | 352 | <b_path>/floater_report_abuse/category_combo/Disturbing_the_peace__Unwanted_advert_spam</b_path> |
1427 | <c_attribute></c_attribute> | 353 | <c_attribute></c_attribute> |
1428 | <d_old></d_old> | 354 | <d_old></d_old> |
1429 | <e_new> | 355 | <e_new> |
1430 | Macromedia Director | 356 | Disturbing the peace > Unwanted advert spam |
1431 | </e_new> | 357 | </e_new> |
1432 | <f_old_trans></f_old_trans> | 358 | <f_old_trans></f_old_trans> |
1433 | <f_translation> | 359 | <f_translation> |
1434 | Macromedia Director | 360 | Ruhestörung > Unerwünschte Spam-Werbung |
1435 | </f_translation> | 361 | </f_translation> |
1436 | </string><string><a_file>mime_types.xml</a_file> | 362 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1437 | <b_path>/default/"application/x-shockwave-flash"/</b_path> | 363 | <b_path>/floater_report_abuse/category_combo/Fraud__L$</b_path> |
1438 | <c_attribute></c_attribute> | 364 | <c_attribute></c_attribute> |
1439 | <d_old></d_old> | 365 | <d_old></d_old> |
1440 | <e_new> | 366 | <e_new> |
1441 | Flash | 367 | Fraud > L$ |
1442 | </e_new> | 368 | </e_new> |
1443 | <f_old_trans></f_old_trans> | 369 | <f_old_trans></f_old_trans> |
1444 | <f_translation> | 370 | <f_translation> |
1445 | Flash | 371 | Betrug > L$ |
1446 | </f_translation> | 372 | </f_translation> |
1447 | </string><string><a_file>mime_types.xml</a_file> | 373 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1448 | <b_path>/default/"audio/mid"/</b_path> | 374 | <b_path>/floater_report_abuse/category_combo/Fraud__Land</b_path> |
1449 | <c_attribute></c_attribute> | 375 | <c_attribute></c_attribute> |
1450 | <d_old></d_old> | 376 | <d_old></d_old> |
1451 | <e_new> | 377 | <e_new> |
1452 | Audio (MIDI) | 378 | Fraud > Land |
1453 | </e_new> | 379 | </e_new> |
1454 | <f_old_trans></f_old_trans> | 380 | <f_old_trans></f_old_trans> |
1455 | <f_translation> | 381 | <f_translation> |
1456 | Audio (MIDI) | 382 | Betrug> Land |
1457 | </f_translation> | 383 | </f_translation> |
1458 | </string><string><a_file>mime_types.xml</a_file> | 384 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1459 | <b_path>/default/"audio/mpeg"/</b_path> | 385 | <b_path>/floater_report_abuse/category_combo/Fraud__Pyramid_scheme_or_chain_letter</b_path> |
1460 | <c_attribute></c_attribute> | 386 | <c_attribute></c_attribute> |
1461 | <d_old></d_old> | 387 | <d_old></d_old> |
1462 | <e_new> | 388 | <e_new> |
1463 | Audio (MP3) | 389 | Fraud > Pyramid scheme or chain letter |
1464 | </e_new> | 390 | </e_new> |
1465 | <f_old_trans></f_old_trans> | 391 | <f_old_trans></f_old_trans> |
1466 | <f_translation> | 392 | <f_translation> |
1467 | Audio (MP3) | 393 | Betrug > Schneeballsystem oder Kettenbrief |
1468 | </f_translation> | 394 | </f_translation> |
1469 | </string><string><a_file>mime_types.xml</a_file> | 395 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1470 | <b_path>/default/"audio/x-aiff"/</b_path> | 396 | <b_path>/floater_report_abuse/category_combo/Fraud__US$</b_path> |
1471 | <c_attribute></c_attribute> | 397 | <c_attribute></c_attribute> |
1472 | <d_old></d_old> | 398 | <d_old></d_old> |
1473 | <e_new> | 399 | <e_new> |
1474 | Audio (AIFF) | 400 | Fraud > US$ |
1475 | </e_new> | 401 | </e_new> |
1476 | <f_old_trans></f_old_trans> | 402 | <f_old_trans></f_old_trans> |
1477 | <f_translation> | 403 | <f_translation> |
1478 | Audio (AIFF) | 404 | Betrug > US$ |
1479 | </f_translation> | 405 | </f_translation> |
1480 | </string><string><a_file>mime_types.xml</a_file> | 406 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1481 | <b_path>/default/"audio/x-wav"/</b_path> | 407 | <b_path>/floater_report_abuse/category_combo/Harassment__Advert_farms___visual_spam</b_path> |
1482 | <c_attribute></c_attribute> | 408 | <c_attribute></c_attribute> |
1483 | <d_old></d_old> | 409 | <d_old></d_old> |
1484 | <e_new> | 410 | <e_new> |
1485 | Audio (WAV) | 411 | Harassment > Advert farms / visual spam |
1486 | </e_new> | 412 | </e_new> |
1487 | <f_old_trans></f_old_trans> | 413 | <f_old_trans></f_old_trans> |
1488 | <f_translation> | 414 | <f_translation> |
1489 | Audio (WAV) | 415 | Belästigung > Werbefarmen / visueller Spam |
1490 | </f_translation> | 416 | </f_translation> |
1491 | </string><string><a_file>mime_types.xml</a_file> | 417 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1492 | <b_path>/default/"image/bmp"/</b_path> | 418 | <b_path>/floater_report_abuse/category_combo/Harassment__Defaming_individuals_or_groups</b_path> |
1493 | <c_attribute></c_attribute> | 419 | <c_attribute></c_attribute> |
1494 | <d_old></d_old> | 420 | <d_old></d_old> |
1495 | <e_new> | 421 | <e_new> |
1496 | Image (BMP) | 422 | Harassment > Defaming individuals or groups |
1497 | </e_new> | 423 | </e_new> |
1498 | <f_old_trans></f_old_trans> | 424 | <f_old_trans></f_old_trans> |
1499 | <f_translation> | 425 | <f_translation> |
1500 | Bild (BMP) | 426 | Belästigung > Diffamieren von Einzelpersonen/Gruppen |
1501 | </f_translation> | 427 | </f_translation> |
1502 | </string><string><a_file>mime_types.xml</a_file> | 428 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1503 | <b_path>/default/"image/gif"/</b_path> | 429 | <b_path>/floater_report_abuse/category_combo/Harassment__Impeding_movement</b_path> |
1504 | <c_attribute></c_attribute> | 430 | <c_attribute></c_attribute> |
1505 | <d_old></d_old> | 431 | <d_old></d_old> |
1506 | <e_new> | 432 | <e_new> |
1507 | Image (GIF) | 433 | Harassment > Impeding movement |
1508 | </e_new> | 434 | </e_new> |
1509 | <f_old_trans></f_old_trans> | 435 | <f_old_trans></f_old_trans> |
1510 | <f_translation> | 436 | <f_translation> |
1511 | Bild (GIF) | 437 | Belästigung > Bewegungseinschränkung |
1512 | </f_translation> | 438 | </f_translation> |
1513 | </string><string><a_file>mime_types.xml</a_file> | 439 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1514 | <b_path>/default/"image/jpeg"/</b_path> | 440 | <b_path>/floater_report_abuse/category_combo/Harassment__Sexual_harassment</b_path> |
1515 | <c_attribute></c_attribute> | 441 | <c_attribute></c_attribute> |
1516 | <d_old></d_old> | 442 | <d_old></d_old> |
1517 | <e_new> | 443 | <e_new> |
1518 | Image (JPEG) | 444 | Harassment > Sexual harassment |
1519 | </e_new> | 445 | </e_new> |
1520 | <f_old_trans></f_old_trans> | 446 | <f_old_trans></f_old_trans> |
1521 | <f_translation> | 447 | <f_translation> |
1522 | Bild (JPEG) | 448 | Belästigung > Sexuelle Belästigung |
1523 | </f_translation> | 449 | </f_translation> |
1524 | </string><string><a_file>mime_types.xml</a_file> | 450 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1525 | <b_path>/default/"image/png"/</b_path> | 451 | <b_path>/floater_report_abuse/category_combo/Harassment__Solicting_inciting_others_to_violate_ToS</b_path> |
1526 | <c_attribute></c_attribute> | 452 | <c_attribute></c_attribute> |
1527 | <d_old></d_old> | 453 | <d_old></d_old> |
1528 | <e_new> | 454 | <e_new> |
1529 | Image (PNG) | 455 | Harassment > Solicting/inciting others to violate ToS |
1530 | </e_new> | 456 | </e_new> |
1531 | <f_old_trans></f_old_trans> | 457 | <f_old_trans></f_old_trans> |
1532 | <f_translation> | 458 | <f_translation> |
1533 | Bild (PNG) | 459 | Belästigung > Anstiften Dritter zur Missachtung der Nutzungsbedingungen |
1534 | </f_translation> | 460 | </f_translation> |
1535 | </string><string><a_file>mime_types.xml</a_file> | 461 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1536 | <b_path>/default/"image/svg+xml"/</b_path> | 462 | <b_path>/floater_report_abuse/category_combo/Harassment__Verbal_abuse</b_path> |
1537 | <c_attribute></c_attribute> | ||
1538 | <d_old></d_old> | ||
1539 | <e_new> | ||
1540 | Image (SVG) | ||
1541 | </e_new> | ||
1542 | <f_old_trans></f_old_trans> | ||
1543 | <f_translation> | ||
1544 | Bild (SVG) | ||
1545 | </f_translation> | ||
1546 | </string><string><a_file>mime_types.xml</a_file> | ||
1547 | <b_path>/default/"image/tiff"/</b_path> | ||
1548 | <c_attribute></c_attribute> | 463 | <c_attribute></c_attribute> |
1549 | <d_old></d_old> | 464 | <d_old></d_old> |
1550 | <e_new> | 465 | <e_new> |
1551 | Image (TIFF) | 466 | Harassment > Verbal abuse |
1552 | </e_new> | 467 | </e_new> |
1553 | <f_old_trans></f_old_trans> | 468 | <f_old_trans></f_old_trans> |
1554 | <f_translation> | 469 | <f_translation> |
1555 | Bild (TIFF) | 470 | Belästigung > Beschimpfung |
1556 | </f_translation> | 471 | </f_translation> |
1557 | </string><string><a_file>mime_types.xml</a_file> | 472 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1558 | <b_path>/default/"text/html"/</b_path> | 473 | <b_path>/floater_report_abuse/category_combo/Indecency__Broadly_offensive_content_or_conduct</b_path> |
1559 | <c_attribute></c_attribute> | 474 | <c_attribute></c_attribute> |
1560 | <d_old></d_old> | 475 | <d_old></d_old> |
1561 | <e_new> | 476 | <e_new> |
1562 | Web Page | 477 | Indecency > Broadly offensive content or conduct |
1563 | </e_new> | 478 | </e_new> |
1564 | <f_old_trans></f_old_trans> | 479 | <f_old_trans></f_old_trans> |
1565 | <f_translation> | 480 | <f_translation> |
1566 | Webseite | 481 | Unanständigkeit > Anstößige Inhalte oder Handlungen in der Öffentlichkeit |
1567 | </f_translation> | 482 | </f_translation> |
1568 | </string><string><a_file>mime_types.xml</a_file> | 483 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1569 | <b_path>/default/"text/plain"/</b_path> | 484 | <b_path>/floater_report_abuse/category_combo/Indecency__Broadly_visible_mature_content</b_path> |
1570 | <c_attribute></c_attribute> | 485 | <c_attribute></c_attribute> |
1571 | <d_old></d_old> | 486 | <d_old></d_old> |
1572 | <e_new> | 487 | <e_new> |
1573 | Text | 488 | Indecency > Broadly visible mature content |
1574 | </e_new> | 489 | </e_new> |
1575 | <f_old_trans></f_old_trans> | 490 | <f_old_trans></f_old_trans> |
1576 | <f_translation> | 491 | <f_translation> |
1577 | Text | 492 | Unanständigkeit > Nicht jugendfreier Inhalt in der Öffentlichkeit |
1578 | </f_translation> | 493 | </f_translation> |
1579 | </string><string><a_file>mime_types.xml</a_file> | 494 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1580 | <b_path>/default/"text/xml"/</b_path> | 495 | <b_path>/floater_report_abuse/category_combo/Indecency__Inappropriate_avatar_name</b_path> |
1581 | <c_attribute></c_attribute> | 496 | <c_attribute></c_attribute> |
1582 | <d_old></d_old> | 497 | <d_old></d_old> |
1583 | <e_new> | 498 | <e_new> |
1584 | XML | 499 | Indecency > Inappropriate avatar name |
1585 | </e_new> | 500 | </e_new> |
1586 | <f_old_trans></f_old_trans> | 501 | <f_old_trans></f_old_trans> |
1587 | <f_translation> | 502 | <f_translation> |
1588 | XML | 503 | Unanständigkeit > Anstößiger Avatarname |
1589 | </f_translation> | 504 | </f_translation> |
1590 | </string><string><a_file>mime_types.xml</a_file> | 505 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1591 | <b_path>/default/"video/mpeg"/</b_path> | 506 | <b_path>/floater_report_abuse/category_combo/Indecency__Mature_content_in_PG_region</b_path> |
1592 | <c_attribute></c_attribute> | 507 | <c_attribute></c_attribute> |
1593 | <d_old></d_old> | 508 | <d_old></d_old> |
1594 | <e_new> | 509 | <e_new> |
1595 | Movie (MPEG) | 510 | Indecency > Mature content in PG region |
1596 | </e_new> | 511 | </e_new> |
1597 | <f_old_trans></f_old_trans> | 512 | <f_old_trans></f_old_trans> |
1598 | <f_translation> | 513 | <f_translation> |
1599 | Video (MPEG) | 514 | Unanständigkeit > Nicht jugendfreier Inhalt in "Jugendfrei"-Region |
1600 | </f_translation> | 515 | </f_translation> |
1601 | </string><string><a_file>mime_types.xml</a_file> | 516 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1602 | <b_path>/default/"video/mp4"/</b_path> | 517 | <b_path>/floater_report_abuse/category_combo/Land__Abuse_of_sandbox_resources</b_path> |
1603 | <c_attribute></c_attribute> | 518 | <c_attribute></c_attribute> |
1604 | <d_old></d_old> | 519 | <d_old></d_old> |
1605 | <e_new> | 520 | <e_new> |
1606 | Movie (MP4) | 521 | Land > Abuse of sandbox resources |
1607 | </e_new> | 522 | </e_new> |
1608 | <f_old_trans></f_old_trans> | 523 | <f_old_trans></f_old_trans> |
1609 | <f_translation> | 524 | <f_translation> |
1610 | Video (MP4) | 525 | Land > Missbrauch der Sandbox-Ressourcen |
1611 | </f_translation> | 526 | </f_translation> |
1612 | </string><string><a_file>mime_types.xml</a_file> | 527 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1613 | <b_path>/default/"video/quicktime"/</b_path> | 528 | <b_path>/floater_report_abuse/category_combo/Land__Encroachment__Objects_textures</b_path> |
1614 | <c_attribute></c_attribute> | 529 | <c_attribute></c_attribute> |
1615 | <d_old></d_old> | 530 | <d_old></d_old> |
1616 | <e_new> | 531 | <e_new> |
1617 | Movie (QuickTime) | 532 | Land > Encroachment > Objects/textures |
1618 | </e_new> | 533 | </e_new> |
1619 | <f_old_trans></f_old_trans> | 534 | <f_old_trans></f_old_trans> |
1620 | <f_translation> | 535 | <f_translation> |
1621 | Video (QuickTime) | 536 | Land > Unbefugte Nutzung > Objekte/Texturen |
1622 | </f_translation> | 537 | </f_translation> |
1623 | </string><string><a_file>mime_types.xml</a_file> | 538 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1624 | <b_path>/default/"video/x-ms-asf"/</b_path> | 539 | <b_path>/floater_report_abuse/category_combo/Land__Encroachment__Particles</b_path> |
1625 | <c_attribute></c_attribute> | 540 | <c_attribute></c_attribute> |
1626 | <d_old></d_old> | 541 | <d_old></d_old> |
1627 | <e_new> | 542 | <e_new> |
1628 | Movie (Windows Media ASF) | 543 | Land > Encroachment > Particles |
1629 | </e_new> | 544 | </e_new> |
1630 | <f_old_trans></f_old_trans> | 545 | <f_old_trans></f_old_trans> |
1631 | <f_translation> | 546 | <f_translation> |
1632 | Video (Windows Media ASF) | 547 | Land > Unbefugte Nutzung > Partikel |
1633 | </f_translation> | 548 | </f_translation> |
1634 | </string><string><a_file>mime_types.xml</a_file> | 549 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1635 | <b_path>/default/"video/x-ms-wmv"/</b_path> | 550 | <b_path>/floater_report_abuse/category_combo/Land__Encroachment__Trees_plants</b_path> |
1636 | <c_attribute></c_attribute> | 551 | <c_attribute></c_attribute> |
1637 | <d_old></d_old> | 552 | <d_old></d_old> |
1638 | <e_new> | 553 | <e_new> |
1639 | Movie (Windows Media WMV) | 554 | Land > Encroachment > Trees/plants |
1640 | </e_new> | 555 | </e_new> |
1641 | <f_old_trans></f_old_trans> | 556 | <f_old_trans></f_old_trans> |
1642 | <f_translation> | 557 | <f_translation> |
1643 | Video (Windows Media WMV) | 558 | Land > Unbefugte Nutzung > Bäume/Pflanzen |
1644 | </f_translation> | 559 | </f_translation> |
1645 | </string><string><a_file>mime_types.xml</a_file> | 560 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1646 | <b_path>/default/"video/x-msvideo"/</b_path> | 561 | <b_path>/floater_report_abuse/category_combo/Trademark_violation</b_path> |
1647 | <c_attribute></c_attribute> | 562 | <c_attribute></c_attribute> |
1648 | <d_old></d_old> | 563 | <d_old></d_old> |
1649 | <e_new> | 564 | <e_new> |
1650 | Movie (AVI) | 565 | Trademark violation |
1651 | </e_new> | 566 | </e_new> |
1652 | <f_old_trans></f_old_trans> | 567 | <f_old_trans></f_old_trans> |
1653 | <f_translation> | 568 | <f_translation> |
1654 | Video (AVI) | 569 | Markenrechtsverletzung |
1655 | </f_translation> | 570 | </f_translation> |
1656 | </string><string><a_file>notify.xml</a_file> | 571 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1657 | <b_path>//RezItemNoPermissions/message</b_path> | 572 | <b_path>/floater_report_abuse/category_combo/Wagering_gambling</b_path> |
1658 | <c_attribute></c_attribute> | 573 | <c_attribute></c_attribute> |
1659 | <d_old></d_old> | 574 | <d_old></d_old> |
1660 | <e_new> | 575 | <e_new> |
1661 | Insufficient permissions to rez object. | 576 | Wagering/gambling |
1662 | </e_new> | 577 | </e_new> |
1663 | <f_old_trans></f_old_trans> | 578 | <f_old_trans></f_old_trans> |
1664 | <f_translation> | 579 | <f_translation> |
1665 | Keine Berechtigung zum Rezzen von Objekten. | 580 | Wetten/Glücksspiel |
1666 | </f_translation> | 581 | </f_translation> |
1667 | </string><string><a_file>panel_audio.xml</a_file> | 582 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1668 | <b_path>/Media panel/mute_audio</b_path> | 583 | <b_path>/floater_report_abuse/omit_abuser_name</b_path> |
1669 | <c_attribute>label</c_attribute> | 584 | <c_attribute>label</c_attribute> |
1670 | <d_old></d_old> | 585 | <d_old></d_old> |
1671 | <e_new></e_new> | 586 | <e_new>Don't know abuser's name</e_new> |
1672 | <f_old_trans></f_old_trans> | 587 | <f_old_trans></f_old_trans> |
1673 | <f_translation></f_translation> | 588 | <f_translation>Name des Täters ist nicht bekannt</f_translation> |
1674 | </string><string><a_file>panel_audio.xml</a_file> | 589 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1675 | <b_path>/Media panel/mute_music</b_path> | 590 | <b_path>/floater_report_abuse/omit_abuser_name</b_path> |
1676 | <c_attribute>label</c_attribute> | 591 | <c_attribute>tool_tip</c_attribute> |
1677 | <d_old></d_old> | 592 | <d_old></d_old> |
1678 | <e_new></e_new> | 593 | <e_new>Check this if you are unable to provide the abuser's name</e_new> |
1679 | <f_old_trans></f_old_trans> | 594 | <f_old_trans></f_old_trans> |
1680 | <f_translation></f_translation> | 595 | <f_translation>Wählen Sie diese Option, wenn Ihnen der Name des Täters unbekannt ist</f_translation> |
1681 | </string><string><a_file>panel_audio.xml</a_file> | 596 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
1682 | <b_path>/Media panel/mute_media</b_path> | 597 | <b_path>/floater_chatterbox</b_path> |
1683 | <c_attribute>label</c_attribute> | 598 | <c_attribute>title</c_attribute> |
1684 | <d_old></d_old> | 599 | <d_old></d_old> |
1685 | <e_new></e_new> | 600 | <e_new></e_new> |
1686 | <f_old_trans></f_old_trans> | 601 | <f_old_trans></f_old_trans> |
1687 | <f_translation></f_translation> | 602 | <f_translation></f_translation> |
1688 | </string><string><a_file>panel_audio.xml</a_file> | 603 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
1689 | <b_path>/Media panel/mute_voice</b_path> | 604 | <b_path>/floater_chatterbox//chat_btn</b_path> |
1690 | <c_attribute>label</c_attribute> | 605 | <c_attribute>label</c_attribute> |
1691 | <d_old></d_old> | 606 | <d_old></d_old> |
1692 | <e_new></e_new> | 607 | <e_new></e_new> |
1693 | <f_old_trans></f_old_trans> | 608 | <f_old_trans></f_old_trans> |
1694 | <f_translation></f_translation> | 609 | <f_translation></f_translation> |
1695 | </string><string><a_file>panel_audio.xml</a_file> | 610 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
1696 | <b_path>/Media panel/mute_sfx</b_path> | 611 | <b_path>/floater_chatterbox//chat_btn</b_path> |
1697 | <c_attribute>label</c_attribute> | 612 | <c_attribute>tool_tip</c_attribute> |
1698 | <d_old></d_old> | 613 | <d_old></d_old> |
1699 | <e_new></e_new> | 614 | <e_new>Show Chat Bar. (Enter)</e_new> |
1700 | <f_old_trans></f_old_trans> | 615 | <f_old_trans></f_old_trans> |
1701 | <f_translation></f_translation> | 616 | <f_translation>Chat-Leiste anzeigen.(Eingabe)</f_translation> |
1702 | </string><string><a_file>panel_audio.xml</a_file> | 617 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
1703 | <b_path>/Media panel/mute_wind</b_path> | 618 | <b_path>/floater_chatterbox//communicate_btn</b_path> |
1704 | <c_attribute>label</c_attribute> | 619 | <c_attribute>label</c_attribute> |
1705 | <d_old></d_old> | 620 | <d_old></d_old> |
1706 | <e_new></e_new> | 621 | <e_new>Communicate</e_new> |
1707 | <f_old_trans></f_old_trans> | 622 | <f_old_trans></f_old_trans> |
1708 | <f_translation></f_translation> | 623 | <f_translation>Unterhalten</f_translation> |
1709 | </string><string><a_file>panel_audio.xml</a_file> | 624 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
1710 | <b_path>/Media panel/mute_ui</b_path> | 625 | <b_path>/floater_chatterbox//communicate_btn</b_path> |
1711 | <c_attribute>label</c_attribute> | 626 | <c_attribute>tool_tip</c_attribute> |
1712 | <d_old></d_old> | 627 | <d_old></d_old> |
1713 | <e_new></e_new> | 628 | <e_new>Communicate with your Friends and Groups.</e_new> |
1714 | <f_old_trans></f_old_trans> | 629 | <f_old_trans></f_old_trans> |
1715 | <f_translation></f_translation> | 630 | <f_translation>Unterhalten Sie sich mit Freunden und in Gruppen.</f_translation> |
1716 | </string><string><a_file>panel_groups.xml</a_file> | 631 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
1717 | <b_path>/groups/group list/name</b_path> | 632 | <b_path>/floater_chatterbox//fly_btn</b_path> |
1718 | <c_attribute>label</c_attribute> | 633 | <c_attribute>label</c_attribute> |
1719 | <d_old></d_old> | 634 | <d_old></d_old> |
1720 | <e_new></e_new> | 635 | <e_new>Fly</e_new> |
1721 | <f_old_trans></f_old_trans> | 636 | <f_old_trans></f_old_trans> |
1722 | <f_translation></f_translation> | 637 | <f_translation>Fliegen</f_translation> |
1723 | </string><string><a_file>panel_group_invite.xml</a_file> | 638 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
1724 | <b_path>/invite_panel/help_text</b_path> | 639 | <b_path>/floater_chatterbox//fly_btn</b_path> |
1725 | <c_attribute></c_attribute> | 640 | <c_attribute>label_selected</c_attribute> |
1726 | <d_old></d_old> | 641 | <d_old></d_old> |
1727 | <e_new> | 642 | <e_new>Stop Flying</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> | 643 | <f_old_trans></f_old_trans> |
1733 | <f_translation> | 644 | <f_translation>Landen</f_translation> |
1734 | Sie können mehrere Einwohner zu Ihrer | 645 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
1735 | Gruppe einladen. Klicken Sie auf | 646 | <b_path>/floater_chatterbox//fly_btn</b_path> |
1736 | 'Personenauswahl öffnen'. | 647 | <c_attribute>tool_tip</c_attribute> |
1737 | </f_translation> | ||
1738 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
1739 | <b_path>/invite_panel/role_text</b_path> | ||
1740 | <c_attribute></c_attribute> | ||
1741 | <d_old></d_old> | 648 | <d_old></d_old> |
1742 | <e_new> | 649 | <e_new>Start flying. Use E/C or PgUp/PgDn to fly up and down.</e_new> |
1743 | Choose what Role to assign them to: | ||
1744 | </e_new> | ||
1745 | <f_old_trans></f_old_trans> | 650 | <f_old_trans></f_old_trans> |
1746 | <f_translation> | 651 | <f_translation>Flug beginnen.Steigen/sinken mit E/C oder Bild hoch/Bild ab.</f_translation> |
1747 | Wählen Sie eine Rolle aus: | 652 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
1748 | </f_translation> | 653 | <b_path>/floater_chatterbox/panel_unfocused_floater/titlebar_focused</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> | 654 | <c_attribute></c_attribute> |
1752 | <d_old></d_old> | 655 | <d_old></d_old> |
1753 | <e_new> | 656 | <e_new>Unfocused</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> | 657 | <f_old_trans></f_old_trans> |
1757 | <f_translation> | 658 | <f_translation>Nicht fokussiert</f_translation> |
1758 | Möchten Sie wirklich (einen) neue(n) Eigentümer einladen? Dies kann nicht rückgängig gemacht werden! | 659 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
1759 | </f_translation> | 660 | <b_path>/floater_chatterbox/panel_unfocused_floater/combo_box_1</b_path> |
1760 | </string><string><a_file>panel_master_volume.xml</a_file> | ||
1761 | <b_path>/master_volume/mute_master</b_path> | ||
1762 | <c_attribute>label</c_attribute> | 661 | <c_attribute>label</c_attribute> |
1763 | <d_old></d_old> | 662 | <d_old></d_old> |
1764 | <e_new></e_new> | 663 | <e_new>Combo Box</e_new> |
1765 | <f_old_trans></f_old_trans> | ||
1766 | <f_translation></f_translation> | ||
1767 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1768 | <b_path>/media_remote/play_label</b_path> | ||
1769 | <c_attribute></c_attribute> | ||
1770 | <d_old></d_old> | ||
1771 | <e_new> | ||
1772 | Play | ||
1773 | </e_new> | ||
1774 | <f_old_trans></f_old_trans> | ||
1775 | <f_translation> | ||
1776 | Wiedergeben | ||
1777 | </f_translation> | ||
1778 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1779 | <b_path>/media_remote/stop_label</b_path> | ||
1780 | <c_attribute></c_attribute> | ||
1781 | <d_old></d_old> | ||
1782 | <e_new> | ||
1783 | Stop | ||
1784 | </e_new> | ||
1785 | <f_old_trans></f_old_trans> | ||
1786 | <f_translation> | ||
1787 | Stopp | ||
1788 | </f_translation> | ||
1789 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1790 | <b_path>/media_remote/pause_label</b_path> | ||
1791 | <c_attribute></c_attribute> | ||
1792 | <d_old></d_old> | ||
1793 | <e_new> | ||
1794 | Pause | ||
1795 | </e_new> | ||
1796 | <f_old_trans></f_old_trans> | ||
1797 | <f_translation> | ||
1798 | Pause | ||
1799 | </f_translation> | ||
1800 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1801 | <b_path>/media_remote/default_tooltip_label</b_path> | ||
1802 | <c_attribute></c_attribute> | ||
1803 | <d_old></d_old> | ||
1804 | <e_new> | ||
1805 | No Media Specified | ||
1806 | </e_new> | ||
1807 | <f_old_trans></f_old_trans> | ||
1808 | <f_translation> | ||
1809 | Keine Medien angegeben | ||
1810 | </f_translation> | ||
1811 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1812 | <b_path>/media_remote/media_hidden_label</b_path> | ||
1813 | <c_attribute></c_attribute> | ||
1814 | <d_old></d_old> | ||
1815 | <e_new> | ||
1816 | (URL hidden by parcel owner) | ||
1817 | </e_new> | ||
1818 | <f_old_trans></f_old_trans> | ||
1819 | <f_translation> | ||
1820 | (URL von Parzelleneigentümer versteckt) | ||
1821 | </f_translation> | ||
1822 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1823 | <b_path>/media_remote/media_icon_tooltip_web</b_path> | ||
1824 | <c_attribute></c_attribute> | ||
1825 | <d_old></d_old> | ||
1826 | <e_new> | ||
1827 | This location displays content from the World Wide Web. Click the Play button to display Web content. | ||
1828 | </e_new> | ||
1829 | <f_old_trans></f_old_trans> | ||
1830 | <f_translation> | ||
1831 | An diesem Ort werden Inhalte aus dem World Wide Web wiedergegeben. Klicken Sie auf 'Wiedergeben', um Webinhalte wiederzugeben. | ||
1832 | </f_translation> | ||
1833 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1834 | <b_path>/media_remote/media_icon_tooltip_movie</b_path> | ||
1835 | <c_attribute></c_attribute> | ||
1836 | <d_old></d_old> | ||
1837 | <e_new> | ||
1838 | This location displays Video content. Click the Play button to play the video. | ||
1839 | </e_new> | ||
1840 | <f_old_trans></f_old_trans> | ||
1841 | <f_translation> | ||
1842 | An diesem Ort werden Videoinhalte wiedergegeben. Klicken Sie auf 'Wiedergeben', um das Video abzuspielen. | ||
1843 | </f_translation> | ||
1844 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1845 | <b_path>/media_remote/media_play_tooltip</b_path> | ||
1846 | <c_attribute></c_attribute> | ||
1847 | <d_old></d_old> | ||
1848 | <e_new> | ||
1849 | Display Web content at this location. | ||
1850 | </e_new> | ||
1851 | <f_old_trans></f_old_trans> | ||
1852 | <f_translation> | ||
1853 | Webinhalt an diesem Ort anzeigen. | ||
1854 | </f_translation> | ||
1855 | </string><string><a_file>panel_place.xml</a_file> | ||
1856 | <b_path>/Place/name_label</b_path> | ||
1857 | <c_attribute></c_attribute> | ||
1858 | <d_old></d_old> | ||
1859 | <e_new> | ||
1860 | Name: | ||
1861 | </e_new> | ||
1862 | <f_old_trans></f_old_trans> | ||
1863 | <f_translation> | ||
1864 | Name: | ||
1865 | </f_translation> | ||
1866 | </string><string><a_file>panel_place.xml</a_file> | ||
1867 | <b_path>/Place/description_label</b_path> | ||
1868 | <c_attribute></c_attribute> | ||
1869 | <d_old></d_old> | ||
1870 | <e_new> | ||
1871 | Description: | ||
1872 | </e_new> | ||
1873 | <f_old_trans></f_old_trans> | ||
1874 | <f_translation> | ||
1875 | Beschreibung: | ||
1876 | </f_translation> | ||
1877 | </string><string><a_file>panel_place.xml</a_file> | ||
1878 | <b_path>/Place/information_label</b_path> | ||
1879 | <c_attribute></c_attribute> | ||
1880 | <d_old></d_old> | ||
1881 | <e_new> | ||
1882 | Information: | ||
1883 | </e_new> | ||
1884 | <f_old_trans></f_old_trans> | ||
1885 | <f_translation> | ||
1886 | Information: | ||
1887 | </f_translation> | ||
1888 | </string><string><a_file>panel_place.xml</a_file> | ||
1889 | <b_path>/Place/location_label</b_path> | ||
1890 | <c_attribute></c_attribute> | ||
1891 | <d_old></d_old> | ||
1892 | <e_new> | ||
1893 | Location: | ||
1894 | </e_new> | ||
1895 | <f_old_trans></f_old_trans> | 664 | <f_old_trans></f_old_trans> |
1896 | <f_translation> | 665 | <f_translation>Kombifeld</f_translation> |
1897 | Standort: | 666 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
1898 | </f_translation> | 667 | <b_path>/floater_chatterbox/panel_unfocused_floater/Chat History Editor</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> | 668 | <c_attribute></c_attribute> |
1902 | <d_old></d_old> | 669 | <d_old></d_old> |
1903 | <e_new> | 670 | <e_new>Text</e_new> |
1904 | Name: | ||
1905 | </e_new> | ||
1906 | <f_old_trans></f_old_trans> | 671 | <f_old_trans></f_old_trans> |
1907 | <f_translation> | 672 | <f_translation>Text</f_translation> |
1908 | Name: | 673 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
1909 | </f_translation> | 674 | <b_path>/floater_chatterbox/panel_focused_floater/titlebar_focused</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> | 675 | <c_attribute></c_attribute> |
1913 | <d_old></d_old> | 676 | <d_old></d_old> |
1914 | <e_new> | 677 | <e_new>Focused</e_new> |
1915 | Description: | ||
1916 | </e_new> | ||
1917 | <f_old_trans></f_old_trans> | 678 | <f_old_trans></f_old_trans> |
1918 | <f_translation> | 679 | <f_translation>Fokussiert</f_translation> |
1919 | Beschreibung: | 680 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
1920 | </f_translation> | 681 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_1</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> | ||
1924 | <d_old></d_old> | ||
1925 | <e_new> | ||
1926 | Information: | ||
1927 | </e_new> | ||
1928 | <f_old_trans></f_old_trans> | ||
1929 | <f_translation> | ||
1930 | Information: | ||
1931 | </f_translation> | ||
1932 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1933 | <b_path>/Place/location_label</b_path> | ||
1934 | <c_attribute></c_attribute> | ||
1935 | <d_old></d_old> | ||
1936 | <e_new> | ||
1937 | Location: | ||
1938 | </e_new> | ||
1939 | <f_old_trans></f_old_trans> | ||
1940 | <f_translation> | ||
1941 | Standort: | ||
1942 | </f_translation> | ||
1943 | </string><string><a_file>panel_preferences_chat.xml</a_file> | ||
1944 | <b_path>/chat/im</b_path> | ||
1945 | <c_attribute>label</c_attribute> | 682 | <c_attribute>label</c_attribute> |
1946 | <d_old></d_old> | 683 | <d_old></d_old> |
1947 | <e_new>IM</e_new> | 684 | <e_new>Focused</e_new> |
1948 | <f_old_trans></f_old_trans> | 685 | <f_old_trans></f_old_trans> |
1949 | <f_translation>IM</f_translation> | 686 | <f_translation>Fokussiert</f_translation> |
1950 | </string><string><a_file>panel_preferences_general.xml</a_file> | 687 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
1951 | <b_path>/general_panel/fade_out_combobox/Never</b_path> | 688 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_1/SliderTestName</b_path> |
1952 | <c_attribute></c_attribute> | ||
1953 | <d_old></d_old> | ||
1954 | <e_new> | ||
1955 | Never | ||
1956 | </e_new> | ||
1957 | <f_old_trans></f_old_trans> | ||
1958 | <f_translation> | ||
1959 | Nie | ||
1960 | </f_translation> | ||
1961 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1962 | <b_path>/general_panel/fade_out_combobox/Show Temporarily</b_path> | ||
1963 | <c_attribute></c_attribute> | ||
1964 | <d_old></d_old> | ||
1965 | <e_new> | ||
1966 | Show Temporarily | ||
1967 | </e_new> | ||
1968 | <f_old_trans></f_old_trans> | ||
1969 | <f_translation> | ||
1970 | Temporär anzeigen | ||
1971 | </f_translation> | ||
1972 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1973 | <b_path>/general_panel/fade_out_combobox/Always</b_path> | ||
1974 | <c_attribute></c_attribute> | ||
1975 | <d_old></d_old> | ||
1976 | <e_new> | ||
1977 | Always | ||
1978 | </e_new> | ||
1979 | <f_old_trans></f_old_trans> | ||
1980 | <f_translation> | ||
1981 | Immer | ||
1982 | </f_translation> | ||
1983 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1984 | <b_path>/general_panel/group_titles_textbox</b_path> | ||
1985 | <c_attribute></c_attribute> | ||
1986 | <d_old></d_old> | ||
1987 | <e_new> | ||
1988 | Group Titles: | ||
1989 | </e_new> | ||
1990 | <f_old_trans></f_old_trans> | ||
1991 | <f_translation> | ||
1992 | Gruppentitel: | ||
1993 | </f_translation> | ||
1994 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1995 | <b_path>/general_panel/show_all_title_checkbox</b_path> | ||
1996 | <c_attribute>label</c_attribute> | 689 | <c_attribute>label</c_attribute> |
1997 | <d_old></d_old> | 690 | <d_old></d_old> |
1998 | <e_new>Hide All Group Titles</e_new> | 691 | <e_new>Slider</e_new> |
1999 | <f_old_trans></f_old_trans> | 692 | <f_old_trans></f_old_trans> |
2000 | <f_translation>Alle Gruppentitel ausblenden</f_translation> | 693 | <f_translation>Regler</f_translation> |
2001 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | 694 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2002 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | 695 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_1/check_box_test_1</b_path> |
2003 | <c_attribute>label</c_attribute> | 696 | <c_attribute>label</c_attribute> |
2004 | <d_old></d_old> | 697 | <d_old></d_old> |
2005 | <e_new></e_new> | 698 | <e_new>True</e_new> |
2006 | <f_old_trans></f_old_trans> | 699 | <f_old_trans></f_old_trans> |
2007 | <f_translation></f_translation> | 700 | <f_translation>Wahr</f_translation> |
2008 | </string><string><a_file>panel_preferences_input.xml</a_file> | 701 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2009 | <b_path>/Input panel/Camera Follow Distance:</b_path> | 702 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_1/check_box_test_2</b_path> |
2010 | <c_attribute></c_attribute> | ||
2011 | <d_old></d_old> | ||
2012 | <e_new> | ||
2013 | Camera Follow Distance: | ||
2014 | </e_new> | ||
2015 | <f_old_trans></f_old_trans> | ||
2016 | <f_translation> | ||
2017 | Kameraabstand: | ||
2018 | </f_translation> | ||
2019 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2020 | <b_path>/Input panel/Camera Transition Time:</b_path> | ||
2021 | <c_attribute></c_attribute> | ||
2022 | <d_old></d_old> | ||
2023 | <e_new> | ||
2024 | Camera Transition Time: | ||
2025 | </e_new> | ||
2026 | <f_old_trans></f_old_trans> | ||
2027 | <f_translation> | ||
2028 | Zeit für Kamerawechsel: | ||
2029 | </f_translation> | ||
2030 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2031 | <b_path>/Input panel/Camera Smoothing:</b_path> | ||
2032 | <c_attribute></c_attribute> | ||
2033 | <d_old></d_old> | ||
2034 | <e_new> | ||
2035 | Camera Smoothing: | ||
2036 | </e_new> | ||
2037 | <f_old_trans></f_old_trans> | ||
2038 | <f_translation> | ||
2039 | Bewegungsglättung: | ||
2040 | </f_translation> | ||
2041 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2042 | <b_path>/Input panel/joystic_setup_button</b_path> | ||
2043 | <c_attribute>label</c_attribute> | 703 | <c_attribute>label</c_attribute> |
2044 | <d_old></d_old> | 704 | <d_old></d_old> |
2045 | <e_new>Joystick Setup</e_new> | 705 | <e_new>False</e_new> |
2046 | <f_old_trans></f_old_trans> | 706 | <f_old_trans></f_old_trans> |
2047 | <f_translation>Joystick-Einrichtung</f_translation> | 707 | <f_translation>Unwahr</f_translation> |
2048 | </string><string><a_file>panel_preferences_popups.xml</a_file> | 708 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2049 | <b_path>/popups/dont_show_label</b_path> | 709 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_1/Chat History Editor</b_path> |
2050 | <c_attribute></c_attribute> | 710 | <c_attribute></c_attribute> |
2051 | <d_old></d_old> | 711 | <d_old></d_old> |
2052 | <e_new> | 712 | <e_new>Chat Text</e_new> |
2053 | Do not show popups: | ||
2054 | </e_new> | ||
2055 | <f_old_trans></f_old_trans> | 713 | <f_old_trans></f_old_trans> |
2056 | <f_translation> | 714 | <f_translation>Chat-Text</f_translation> |
2057 | Popups nicht anzeigen: | 715 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2058 | </f_translation> | 716 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_2</b_path> |
2059 | </string><string><a_file>panel_preferences_popups.xml</a_file> | 717 | <c_attribute>label</c_attribute> |
2060 | <b_path>/popups/show_label</b_path> | ||
2061 | <c_attribute></c_attribute> | ||
2062 | <d_old></d_old> | 718 | <d_old></d_old> |
2063 | <e_new> | 719 | <e_new>Unfocused</e_new> |
2064 | Show popups: | ||
2065 | </e_new> | ||
2066 | <f_old_trans></f_old_trans> | 720 | <f_old_trans></f_old_trans> |
2067 | <f_translation> | 721 | <f_translation>Nicht fokussiert</f_translation> |
2068 | Popups anzeigen: | 722 | </string><string><a_file>floater_snapshot.xml</a_file> |
2069 | </f_translation> | 723 | <b_path>/Snapshot/save_btn</b_path> |
2070 | </string><string><a_file>panel_speaker_controls.xml</a_file> | 724 | <c_attribute>tool_tip</c_attribute> |
2071 | <b_path>/active_speakers_panel/panels/moderation_mode_panel/moderation_mode/OpenVoice</b_path> | ||
2072 | <c_attribute></c_attribute> | ||
2073 | <d_old></d_old> | 725 | <d_old></d_old> |
2074 | <e_new> | 726 | <e_new>Save image to a file</e_new> |
2075 | Open Voice (default) | ||
2076 | </e_new> | ||
2077 | <f_old_trans></f_old_trans> | 727 | <f_old_trans></f_old_trans> |
2078 | <f_translation> | 728 | <f_translation>Bild als Datei speichern</f_translation> |
2079 | Freies Voice (Standard) | 729 | </string><string><a_file>floater_snapshot.xml</a_file> |
2080 | </f_translation> | 730 | <b_path>/Snapshot/format_label</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> | 731 | <c_attribute></c_attribute> |
2084 | <d_old></d_old> | 732 | <d_old></d_old> |
2085 | <e_new> | 733 | <e_new> |
2086 | Moderated Voice | 734 | Format |
2087 | </e_new> | 735 | </e_new> |
2088 | <f_old_trans></f_old_trans> | 736 | <f_old_trans></f_old_trans> |
2089 | <f_translation> | 737 | <f_translation> |
2090 | Moderiertes Voice | 738 | Format |
2091 | </f_translation> | 739 | </f_translation> |
2092 | </string><string><a_file>panel_speaker_controls.xml</a_file> | 740 | </string><string><a_file>floater_snapshot.xml</a_file> |
2093 | <b_path>/active_speakers_panel/panels/moderate_chat_panel/speakers_list/speaking_status</b_path> | 741 | <b_path>/Snapshot/local_format_combo</b_path> |
2094 | <c_attribute>label</c_attribute> | ||
2095 | <d_old></d_old> | ||
2096 | <e_new></e_new> | ||
2097 | <f_old_trans></f_old_trans> | ||
2098 | <f_translation></f_translation> | ||
2099 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2100 | <b_path>/active_speakers_panel/panels/moderate_chat_panel/speaker_controls/profile_btn</b_path> | ||
2101 | <c_attribute>label</c_attribute> | ||
2102 | <d_old></d_old> | ||
2103 | <e_new></e_new> | ||
2104 | <f_old_trans></f_old_trans> | ||
2105 | <f_translation></f_translation> | ||
2106 | </string><string><a_file>panel_status_bar.xml</a_file> | ||
2107 | <b_path>/status/menubar_search_bevel_bg</b_path> | ||
2108 | <c_attribute>label</c_attribute> | ||
2109 | <d_old></d_old> | ||
2110 | <e_new></e_new> | ||
2111 | <f_old_trans></f_old_trans> | ||
2112 | <f_translation></f_translation> | ||
2113 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | ||
2114 | <b_path>/voice_remote/voice_channel_bg</b_path> | ||
2115 | <c_attribute>label</c_attribute> | ||
2116 | <d_old></d_old> | ||
2117 | <e_new></e_new> | ||
2118 | <f_old_trans></f_old_trans> | ||
2119 | <f_translation></f_translation> | ||
2120 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | ||
2121 | <b_path>/voice_remote/voice_channel_icon</b_path> | ||
2122 | <c_attribute>label</c_attribute> | ||
2123 | <d_old></d_old> | ||
2124 | <e_new></e_new> | ||
2125 | <f_old_trans></f_old_trans> | ||
2126 | <f_translation></f_translation> | ||
2127 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | ||
2128 | <b_path>/voice_remote/channel_label</b_path> | ||
2129 | <c_attribute>label</c_attribute> | 742 | <c_attribute>label</c_attribute> |
2130 | <d_old></d_old> | 743 | <d_old></d_old> |
2131 | <e_new></e_new> | 744 | <e_new>Format</e_new> |
2132 | <f_old_trans></f_old_trans> | ||
2133 | <f_translation></f_translation> | ||
2134 | </string><string><a_file>alerts.xml</a_file> | ||
2135 | <b_path>//UnsupportedHardware/ignore</b_path> | ||
2136 | <c_attribute></c_attribute> | ||
2137 | <d_old></d_old> | ||
2138 | <e_new> | ||
2139 | Ignore unsupported hardware | ||
2140 | </e_new> | ||
2141 | <f_old_trans></f_old_trans> | 745 | <f_old_trans></f_old_trans> |
2142 | <f_translation> | 746 | <f_translation>Format</f_translation> |
2143 | Nicht unterstützte Hardware ignorieren | 747 | </string><string><a_file>floater_snapshot.xml</a_file> |
2144 | </f_translation> | 748 | <b_path>/Snapshot/local_format_combo/PNG</b_path> |
2145 | </string><string><a_file>alerts.xml</a_file> | ||
2146 | <b_path>//UnknownGPU/message</b_path> | ||
2147 | <c_attribute></c_attribute> | 749 | <c_attribute></c_attribute> |
2148 | <d_old></d_old> | 750 | <d_old></d_old> |
2149 | <e_new> | 751 | <e_new> |
2150 | Your system contains a graphics card that is unknown to us at this time. | 752 | PNG |
2151 | This is often the case with new hardware we haven't had a chance to | ||
2152 | test. Second Life will most likely run properly, but you may need to | ||
2153 | adjust your graphics settings to something more appropriate. | ||
2154 | (Edit > Preferences > Graphics). | ||
2155 | </e_new> | 753 | </e_new> |
2156 | <f_old_trans></f_old_trans> | 754 | <f_old_trans></f_old_trans> |
2157 | <f_translation> | 755 | <f_translation> |
2158 | Ihr System verwendet eine uns zurzeit unbekannte Grafikkarte. | 756 | PNG |
2159 | Dies ist häufig der Fall bei neuer Hardware, die wir noch nicht testen konnten. | ||
2160 | Second Life funktioniert aller Voraussicht nach normal, möglicherweise | ||
2161 | müssen Sie aber die Grafikeinstellungen anpassen. | ||
2162 | (Bearbeiten > Einstellungen > Grafik). | ||
2163 | </f_translation> | 757 | </f_translation> |
2164 | </string><string><a_file>alerts.xml</a_file> | 758 | </string><string><a_file>floater_snapshot.xml</a_file> |
2165 | <b_path>//UnknownGPU/ignore</b_path> | 759 | <b_path>/Snapshot/local_format_combo/JPEG</b_path> |
2166 | <c_attribute></c_attribute> | 760 | <c_attribute></c_attribute> |
2167 | <d_old></d_old> | 761 | <d_old></d_old> |
2168 | <e_new> | 762 | <e_new> |
2169 | Ignore unknown graphics card | 763 | JPEG |
2170 | </e_new> | 764 | </e_new> |
2171 | <f_old_trans></f_old_trans> | 765 | <f_old_trans></f_old_trans> |
2172 | <f_translation> | 766 | <f_translation> |
2173 | Unbekannte Grafikkarte ignorieren | 767 | JPEG |
2174 | </f_translation> | 768 | </f_translation> |
2175 | </string><string><a_file>alerts.xml</a_file> | 769 | </string><string><a_file>floater_snapshot.xml</a_file> |
2176 | <b_path>//ClothingLoading/ignore</b_path> | 770 | <b_path>/Snapshot/local_format_combo/BMP</b_path> |
2177 | <c_attribute></c_attribute> | 771 | <c_attribute></c_attribute> |
2178 | <d_old></d_old> | 772 | <d_old></d_old> |
2179 | <e_new> | 773 | <e_new> |
2180 | When clothing is taking a long time to download | 774 | BMP |
2181 | </e_new> | 775 | </e_new> |
2182 | <f_old_trans></f_old_trans> | 776 | <f_old_trans></f_old_trans> |
2183 | <f_translation> | 777 | <f_translation> |
2184 | Wenn das Herunterladen von Kleidung lange dauert | 778 | BMP |
2185 | </f_translation> | 779 | </f_translation> |
2186 | </string><string><a_file>alerts.xml</a_file> | 780 | </string><string><a_file>floater_tools.xml</a_file> |
2187 | <b_path>//SetClassifiedMature/message</b_path> | 781 | <b_path>/toolbox floater/Strength:</b_path> |
2188 | <c_attribute></c_attribute> | ||
2189 | <d_old></d_old> | ||
2190 | <e_new> | ||
2191 | Does this classified contain Mature content? | ||
2192 | </e_new> | ||
2193 | <f_old_trans></f_old_trans> | ||
2194 | <f_translation> | ||
2195 | Enthält diese Anzeige nicht jugendfreie Inhalte? | ||
2196 | </f_translation> | ||
2197 | </string><string><a_file>alerts.xml</a_file> | ||
2198 | <b_path>//SetClassifiedMature/Mature</b_path> | ||
2199 | <c_attribute></c_attribute> | ||
2200 | <d_old></d_old> | ||
2201 | <e_new> | ||
2202 | Yes | ||
2203 | </e_new> | ||
2204 | <f_old_trans></f_old_trans> | ||
2205 | <f_translation> | ||
2206 | Ja | ||
2207 | </f_translation> | ||
2208 | </string><string><a_file>alerts.xml</a_file> | ||
2209 | <b_path>//SetClassifiedMature/Not Mature</b_path> | ||
2210 | <c_attribute></c_attribute> | 782 | <c_attribute></c_attribute> |
2211 | <d_old></d_old> | 783 | <d_old></d_old> |
2212 | <e_new> | 784 | <e_new> |
2213 | No | 785 | Strength: |
2214 | </e_new> | 786 | </e_new> |
2215 | <f_old_trans></f_old_trans> | 787 | <f_old_trans></f_old_trans> |
2216 | <f_translation> | 788 | <f_translation> |
2217 | Nein | 789 | Stärke: |
2218 | </f_translation> | 790 | </f_translation> |
2219 | </string><string><a_file>alerts.xml</a_file> | 791 | </string><string><a_file>floater_tools.xml</a_file> |
2220 | <b_path>//SetClassifiedMature/Cancel</b_path> | 792 | <b_path>/toolbox floater/Object Info Tabs/General/Cost</b_path> |
2221 | <c_attribute></c_attribute> | 793 | <c_attribute></c_attribute> |
2222 | <d_old></d_old> | 794 | <d_old></d_old> |
2223 | <e_new> | 795 | <e_new> |
2224 | Cancel | 796 | Price: L$ |
2225 | </e_new> | 797 | </e_new> |
2226 | <f_old_trans></f_old_trans> | 798 | <f_old_trans></f_old_trans> |
2227 | <f_translation> | 799 | <f_translation> |
2228 | Abbrechen | 800 | Preis:L$ |
2229 | </f_translation> | 801 | </f_translation> |
2230 | </string><string><a_file>alerts.xml</a_file> | 802 | </string><string><a_file>floater_tools.xml</a_file> |
2231 | <b_path>//SetGroupMature/message</b_path> | 803 | <b_path>/toolbox floater/Object Info Tabs/General/Cost Default</b_path> |
2232 | <c_attribute></c_attribute> | 804 | <c_attribute></c_attribute> |
2233 | <d_old></d_old> | 805 | <d_old></d_old> |
2234 | <e_new> | 806 | <e_new> |
2235 | Does this group contain Mature content? | 807 | Price: L$ |
2236 | </e_new> | 808 | </e_new> |
2237 | <f_old_trans></f_old_trans> | 809 | <f_old_trans></f_old_trans> |
2238 | <f_translation> | 810 | <f_translation> |
2239 | Beschäftigt sich diese Gruppe mit nicht jugendfreien Inhalten? | 811 | Preis:L$ |
2240 | </f_translation> | 812 | </f_translation> |
2241 | </string><string><a_file>alerts.xml</a_file> | 813 | </string><string><a_file>floater_tools.xml</a_file> |
2242 | <b_path>//SetGroupMature/Mature</b_path> | 814 | <b_path>/toolbox floater/Object Info Tabs/General/Cost Total</b_path> |
2243 | <c_attribute></c_attribute> | 815 | <c_attribute></c_attribute> |
2244 | <d_old></d_old> | 816 | <d_old></d_old> |
2245 | <e_new> | 817 | <e_new> |
2246 | Yes | 818 | Total Price: L$ |
2247 | </e_new> | 819 | </e_new> |
2248 | <f_old_trans></f_old_trans> | 820 | <f_old_trans></f_old_trans> |
2249 | <f_translation> | 821 | <f_translation> |
2250 | Ja | 822 | Summe:L$ |
2251 | </f_translation> | 823 | </f_translation> |
2252 | </string><string><a_file>alerts.xml</a_file> | 824 | </string><string><a_file>floater_tools.xml</a_file> |
2253 | <b_path>//SetGroupMature/Not Mature</b_path> | 825 | <b_path>/toolbox floater/Object Info Tabs/General/Cost Per Unit</b_path> |
2254 | <c_attribute></c_attribute> | 826 | <c_attribute></c_attribute> |
2255 | <d_old></d_old> | 827 | <d_old></d_old> |
2256 | <e_new> | 828 | <e_new> |
2257 | No | 829 | Price Per: L$ |
2258 | </e_new> | 830 | </e_new> |
2259 | <f_old_trans></f_old_trans> | 831 | <f_old_trans></f_old_trans> |
2260 | <f_translation> | 832 | <f_translation> |
2261 | Nein | 833 | Stückpreis:L$ |
2262 | </f_translation> | 834 | </f_translation> |
2263 | </string><string><a_file>alerts.xml</a_file> | 835 | </string><string><a_file>floater_tools.xml</a_file> |
2264 | <b_path>//SetGroupMature/Cancel</b_path> | 836 | <b_path>/toolbox floater/Object Info Tabs/General/Cost Mixed</b_path> |
2265 | <c_attribute></c_attribute> | 837 | <c_attribute></c_attribute> |
2266 | <d_old></d_old> | 838 | <d_old></d_old> |
2267 | <e_new> | 839 | <e_new> |
2268 | Cancel | 840 | Mixed Price |
2269 | </e_new> | 841 | </e_new> |
2270 | <f_old_trans></f_old_trans> | 842 | <f_old_trans></f_old_trans> |
2271 | <f_translation> | 843 | <f_translation> |
2272 | Abbrechen | 844 | Mischpreis |
2273 | </f_translation> | 845 | </f_translation> |
2274 | </string><string><a_file>alerts.xml</a_file> | 846 | </string><string><a_file>floater_tools.xml</a_file> |
2275 | <b_path>//MissingString/message</b_path> | 847 | <b_path>/toolbox floater/Object Info Tabs/General/Sale Mixed</b_path> |
2276 | <c_attribute></c_attribute> | 848 | <c_attribute></c_attribute> |
2277 | <d_old></d_old> | 849 | <d_old></d_old> |
2278 | <e_new> | 850 | <e_new> |
2279 | The string [STRING_NAME] is missing from strings.xml | 851 | Mixed Sale |
2280 | </e_new> | 852 | </e_new> |
2281 | <f_old_trans></f_old_trans> | 853 | <f_old_trans></f_old_trans> |
2282 | <f_translation> | 854 | <f_translation> |
2283 | Der String [STRING_NAME] fehlt in strings.xml | 855 | Mischverkauf |
2284 | </f_translation> | 856 | </f_translation> |
2285 | </string><string><a_file>floater_active_speakers.xml</a_file> | 857 | </string><string><a_file>floater_tools.xml</a_file> |
2286 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> | 858 | <b_path>/toolbox floater/Object Info Tabs/Object/sculpt mirror control</b_path> |
2287 | <c_attribute>label</c_attribute> | ||
2288 | <d_old></d_old> | ||
2289 | <e_new></e_new> | ||
2290 | <f_old_trans></f_old_trans> | ||
2291 | <f_translation></f_translation> | ||
2292 | </string><string><a_file>floater_directory.xml</a_file> | ||
2293 | <b_path>/directory/Directory Tabs/showcase_panel</b_path> | ||
2294 | <c_attribute>label</c_attribute> | 859 | <c_attribute>label</c_attribute> |
2295 | <d_old></d_old> | 860 | <d_old></d_old> |
2296 | <e_new>Showcase</e_new> | 861 | <e_new>Mirror</e_new> |
2297 | <f_old_trans></f_old_trans> | ||
2298 | <f_translation>Showcase</f_translation> | ||
2299 | </string><string><a_file>floater_directory.xml</a_file> | ||
2300 | <b_path>/directory/Directory Tabs/showcase_panel/searching_text</b_path> | ||
2301 | <c_attribute></c_attribute> | ||
2302 | <d_old></d_old> | ||
2303 | <e_new>Searching...</e_new> | ||
2304 | <f_old_trans></f_old_trans> | ||
2305 | <f_translation>Suchen...</f_translation> | ||
2306 | </string><string><a_file>floater_directory.xml</a_file> | ||
2307 | <b_path>/directory/Directory Tabs/showcase_panel/not_found_text</b_path> | ||
2308 | <c_attribute></c_attribute> | ||
2309 | <d_old></d_old> | ||
2310 | <e_new>None Found.</e_new> | ||
2311 | <f_old_trans></f_old_trans> | 862 | <f_old_trans></f_old_trans> |
2312 | <f_translation>Nicht gefunden.</f_translation> | 863 | <f_translation>Spiegeln</f_translation> |
2313 | </string><string><a_file>floater_directory.xml</a_file> | 864 | </string><string><a_file>floater_tools.xml</a_file> |
2314 | <b_path>/directory/Directory Tabs/showcase_panel/back_btn</b_path> | 865 | <b_path>/toolbox floater/Object Info Tabs/Object/sculpt mirror control</b_path> |
2315 | <c_attribute>label</c_attribute> | 866 | <c_attribute>tool_tip</c_attribute> |
2316 | <d_old></d_old> | 867 | <d_old></d_old> |
2317 | <e_new>Back</e_new> | 868 | <e_new>Flips sculpted prim along the X axis.</e_new> |
2318 | <f_old_trans></f_old_trans> | 869 | <f_old_trans></f_old_trans> |
2319 | <f_translation>Zurück</f_translation> | 870 | <f_translation>Geformtes Primitiv entlang der X-Achse spiegeln.</f_translation> |
2320 | </string><string><a_file>floater_directory.xml</a_file> | 871 | </string><string><a_file>floater_tools.xml</a_file> |
2321 | <b_path>/directory/Directory Tabs/showcase_panel/forward_btn</b_path> | 872 | <b_path>/toolbox floater/Object Info Tabs/Object/sculpt invert control</b_path> |
2322 | <c_attribute>label</c_attribute> | 873 | <c_attribute>label</c_attribute> |
2323 | <d_old></d_old> | 874 | <d_old></d_old> |
2324 | <e_new>Forward</e_new> | 875 | <e_new>Inside-out</e_new> |
2325 | <f_old_trans></f_old_trans> | 876 | <f_old_trans></f_old_trans> |
2326 | <f_translation>Weiter</f_translation> | 877 | <f_translation>Wenden</f_translation> |
2327 | </string><string><a_file>floater_directory.xml</a_file> | 878 | </string><string><a_file>floater_tools.xml</a_file> |
2328 | <b_path>/directory/Directory Tabs/showcase_panel/loading_text</b_path> | 879 | <b_path>/toolbox floater/Object Info Tabs/Object/sculpt invert control</b_path> |
2329 | <c_attribute></c_attribute> | 880 | <c_attribute>tool_tip</c_attribute> |
2330 | <d_old></d_old> | ||
2331 | <e_new>Loading...</e_new> | ||
2332 | <f_old_trans></f_old_trans> | ||
2333 | <f_translation>Wird geladen...</f_translation> | ||
2334 | </string><string><a_file>floater_directory.xml</a_file> | ||
2335 | <b_path>/directory/Directory Tabs/showcase_panel/done_text</b_path> | ||
2336 | <c_attribute></c_attribute> | ||
2337 | <d_old></d_old> | 881 | <d_old></d_old> |
2338 | <e_new>Done</e_new> | 882 | <e_new>Inverts the sculpted prims normals, making it appear inside-out.</e_new> |
2339 | <f_old_trans></f_old_trans> | 883 | <f_old_trans></f_old_trans> |
2340 | <f_translation>Fertig</f_translation> | 884 | <f_translation>Dreht die Normalen des geformten Primitivs von innen nach außen.</f_translation> |
2341 | </string><string><a_file>floater_directory.xml</a_file> | 885 | </string><string><a_file>floater_top_objects.xml</a_file> |
2342 | <b_path>/directory/Directory Tabs/groups_panel/back_btn</b_path> | 886 | <b_path>/top_objects/objects_list/time</b_path> |
2343 | <c_attribute>label</c_attribute> | 887 | <c_attribute>label</c_attribute> |
2344 | <d_old></d_old> | 888 | <d_old></d_old> |
2345 | <e_new>Back</e_new> | 889 | <e_new>Time</e_new> |
2346 | <f_old_trans></f_old_trans> | 890 | <f_old_trans></f_old_trans> |
2347 | <f_translation>Zurück</f_translation> | 891 | <f_translation>Uhrzeit</f_translation> |
2348 | </string><string><a_file>floater_directory.xml</a_file> | 892 | </string><string><a_file>floater_tos.xml</a_file> |
2349 | <b_path>/directory/Directory Tabs/groups_panel/forward_btn</b_path> | 893 | <b_path>/modal container/agree_chk</b_path> |
2350 | <c_attribute>label</c_attribute> | 894 | <c_attribute>label</c_attribute> |
2351 | <d_old></d_old> | 895 | <d_old></d_old> |
2352 | <e_new>Forward</e_new> | 896 | <e_new>I Agree to the Terms of Service</e_new> |
2353 | <f_old_trans></f_old_trans> | 897 | <f_old_trans></f_old_trans> |
2354 | <f_translation>Weiter</f_translation> | 898 | <f_translation>Ich stimme den Nutzungsbedingungen zu</f_translation> |
2355 | </string><string><a_file>floater_directory.xml</a_file> | 899 | </string><string><a_file>menu_viewer.xml</a_file> |
2356 | <b_path>/directory/Directory Tabs/groups_panel/search_editor</b_path> | 900 | <b_path>/Main Menu/World/Release Keys</b_path> |
2357 | <c_attribute>label</c_attribute> | 901 | <c_attribute>label</c_attribute> |
2358 | <d_old></d_old> | 902 | <d_old></d_old> |
2359 | <e_new>Search</e_new> | 903 | <e_new>Release Keys</e_new> |
2360 | <f_old_trans></f_old_trans> | 904 | <f_old_trans></f_old_trans> |
2361 | <f_translation>Suchen</f_translation> | 905 | <f_translation>Tasten freigeben</f_translation> |
2362 | </string><string><a_file>floater_directory.xml</a_file> | 906 | </string><string><a_file>menu_viewer.xml</a_file> |
2363 | <b_path>/directory/Directory Tabs/groups_panel/search_editor</b_path> | 907 | <b_path>/Main Menu/Tools/Recompile Scripts in Selection/Mono</b_path> |
2364 | <c_attribute>tool_tip</c_attribute> | ||
2365 | <d_old></d_old> | ||
2366 | <e_new>Search Second Life</e_new> | ||
2367 | <f_old_trans></f_old_trans> | ||
2368 | <f_translation>Second Life durchsuchen</f_translation> | ||
2369 | </string><string><a_file>floater_directory.xml</a_file> | ||
2370 | <b_path>/directory/Directory Tabs/groups_panel/search_btn</b_path> | ||
2371 | <c_attribute>label</c_attribute> | 908 | <c_attribute>label</c_attribute> |
2372 | <d_old></d_old> | 909 | <d_old></d_old> |
2373 | <e_new>Search</e_new> | 910 | <e_new>Mono</e_new> |
2374 | <f_old_trans></f_old_trans> | 911 | <f_old_trans></f_old_trans> |
2375 | <f_translation>Suchen</f_translation> | 912 | <f_translation>Mono</f_translation> |
2376 | </string><string><a_file>floater_directory.xml</a_file> | 913 | </string><string><a_file>menu_viewer.xml</a_file> |
2377 | <b_path>/directory/Directory Tabs/groups_panel/mature_check</b_path> | 914 | <b_path>/Main Menu/Tools/Recompile Scripts in Selection/LSL</b_path> |
2378 | <c_attribute>label</c_attribute> | 915 | <c_attribute>label</c_attribute> |
2379 | <d_old></d_old> | 916 | <d_old></d_old> |
2380 | <e_new>Include Mature content</e_new> | 917 | <e_new>LSL</e_new> |
2381 | <f_old_trans></f_old_trans> | 918 | <f_old_trans></f_old_trans> |
2382 | <f_translation>Ab-18-Inhalte einschließen</f_translation> | 919 | <f_translation>LSL</f_translation> |
2383 | </string><string><a_file>floater_directory.xml</a_file> | 920 | </string><string><a_file>mime_types.xml</a_file> |
2384 | <b_path>/directory/Directory Tabs/groups_panel/loading_text</b_path> | 921 | <b_path>/default/"application/smil"/"application/smil_label"</b_path> |
2385 | <c_attribute></c_attribute> | ||
2386 | <d_old></d_old> | ||
2387 | <e_new>Loading...</e_new> | ||
2388 | <f_old_trans></f_old_trans> | ||
2389 | <f_translation>Wird geladen...</f_translation> | ||
2390 | </string><string><a_file>floater_directory.xml</a_file> | ||
2391 | <b_path>/directory/Directory Tabs/groups_panel/done_text</b_path> | ||
2392 | <c_attribute></c_attribute> | ||
2393 | <d_old></d_old> | ||
2394 | <e_new>Done</e_new> | ||
2395 | <f_old_trans></f_old_trans> | ||
2396 | <f_translation>Fertig</f_translation> | ||
2397 | </string><string><a_file>floater_im.xml</a_file> | ||
2398 | <b_path>/im_floater/muted_message</b_path> | ||
2399 | <c_attribute></c_attribute> | 922 | <c_attribute></c_attribute> |
2400 | <d_old></d_old> | 923 | <d_old></d_old> |
2401 | <e_new> | 924 | <e_new> |
2402 | [FIRST] [LAST] is muted. | 925 | Synchronized Multimedia Integration Language (SMIL) |
2403 | </e_new> | 926 | </e_new> |
2404 | <f_old_trans></f_old_trans> | 927 | <f_old_trans></f_old_trans> |
2405 | <f_translation> | 928 | <f_translation> |
2406 | [FIRST] [LAST] ist stummgeschaltet. | 929 | Synchronized Multimedia Integration Language (SMIL) |
2407 | </f_translation> | 930 | </f_translation> |
2408 | </string><string><a_file>notify.xml</a_file> | 931 | </string><string><a_file>notify.xml</a_file> |
2409 | <b_path>//AutoUnmuteByIM/message</b_path> | 932 | <b_path>//OfferFriendshipNoMessage/message</b_path> |
2410 | <c_attribute></c_attribute> | 933 | <c_attribute></c_attribute> |
2411 | <d_old></d_old> | 934 | <d_old></d_old> |
2412 | <e_new> | 935 | <e_new> |
2413 | [FIRST] [LAST] was sent an instant message and has been automatically unmuted. | 936 | [NAME] is offering friendship. |
937 | |||
938 | (By default, you will be able to | ||
939 | see each other's online status.) | ||
2414 | </e_new> | 940 | </e_new> |
2415 | <f_old_trans></f_old_trans> | 941 | <f_old_trans></f_old_trans> |
2416 | <f_translation> | 942 | <f_translation> |
2417 | [FIRST] [LAST] hat eine Instant Message erhalten; die Stummschaltung wurde aufgehoben. | 943 | [NAME] bietet Ihnen die Freundschaft an. |
944 | |||
945 | (Sie werden dadurch den gegenseitigen | ||
946 | Online-Status sehen können.) | ||
2418 | </f_translation> | 947 | </f_translation> |
2419 | </string><string><a_file>notify.xml</a_file> | 948 | </string><string><a_file>notify.xml</a_file> |
2420 | <b_path>//AutoUnmuteByMoney/message</b_path> | 949 | <b_path>//OfferFriendshipNoMessage/Accept</b_path> |
2421 | <c_attribute></c_attribute> | 950 | <c_attribute></c_attribute> |
2422 | <d_old></d_old> | 951 | <d_old></d_old> |
2423 | <e_new> | 952 | <e_new> |
2424 | [FIRST] [LAST] was given money and has been automatically unmuted. | 953 | Accept |
2425 | </e_new> | 954 | </e_new> |
2426 | <f_old_trans></f_old_trans> | 955 | <f_old_trans></f_old_trans> |
2427 | <f_translation> | 956 | <f_translation> |
2428 | [FIRST] [LAST] hat Geld erhalten; die Stummschaltung wurde aufgehoben. | 957 | Akzeptieren |
2429 | </f_translation> | 958 | </f_translation> |
2430 | </string><string><a_file>notify.xml</a_file> | 959 | </string><string><a_file>notify.xml</a_file> |
2431 | <b_path>//AutoUnmuteByInventory/message</b_path> | 960 | <b_path>//OfferFriendshipNoMessage/Decline</b_path> |
2432 | <c_attribute></c_attribute> | 961 | <c_attribute></c_attribute> |
2433 | <d_old></d_old> | 962 | <d_old></d_old> |
2434 | <e_new> | 963 | <e_new> |
2435 | [FIRST] [LAST] was offered inventory and has been automatically unmuted. | 964 | Decline |
2436 | </e_new> | 965 | </e_new> |
2437 | <f_old_trans></f_old_trans> | 966 | <f_old_trans></f_old_trans> |
2438 | <f_translation> | 967 | <f_translation> |
2439 | [FIRST] [LAST] wurde ein Inventarobjekt angeboten; die Stummschaltung wurde aufgehoben. | 968 | Ablehnen |
2440 | </f_translation> | 969 | </f_translation> |
2441 | </string><string><a_file>panel_avatar_classified.xml</a_file> | 970 | </string><string><a_file>panel_login.xml</a_file> |
2442 | <b_path>/Classified/classified_mature_check/select_mature</b_path> | 971 | <b_path>/panel_login/create_new_account_text</b_path> |
2443 | <c_attribute></c_attribute> | 972 | <c_attribute></c_attribute> |
2444 | <d_old></d_old> | 973 | <d_old></d_old> |
2445 | <e_new> | 974 | <e_new>Create new account. |
2446 | - Select Mature - | 975 | </e_new> |
2447 | </e_new> | ||
2448 | <f_old_trans></f_old_trans> | 976 | <f_old_trans></f_old_trans> |
2449 | <f_translation> | 977 | <f_translation>Neues Konto erstellen. |
2450 | - Jugendfreigabe wählen - | 978 | </f_translation> |
2451 | </f_translation> | 979 | </string><string><a_file>panel_preferences_chat.xml</a_file> |
2452 | </string><string><a_file>panel_avatar_classified.xml</a_file> | 980 | <b_path>/chat/user</b_path> |
2453 | <b_path>/Classified/classified_mature_check/mature</b_path> | 981 | <c_attribute>label</c_attribute> |
2454 | <c_attribute></c_attribute> | ||
2455 | <d_old></d_old> | 982 | <d_old></d_old> |
2456 | <e_new> | 983 | <e_new>You</e_new> |
2457 | Mature Content | ||
2458 | </e_new> | ||
2459 | <f_old_trans></f_old_trans> | 984 | <f_old_trans></f_old_trans> |
2460 | <f_translation> | 985 | <f_translation>Sie</f_translation> |
2461 | Ab-18-Inhalt | 986 | </string><string><a_file>panel_preferences_chat.xml</a_file> |
2462 | </f_translation> | 987 | <b_path>/chat/agent</b_path> |
2463 | </string><string><a_file>panel_avatar_classified.xml</a_file> | 988 | <c_attribute>label</c_attribute> |
2464 | <b_path>/Classified/classified_mature_check/not_mature</b_path> | ||
2465 | <c_attribute></c_attribute> | ||
2466 | <d_old></d_old> | 989 | <d_old></d_old> |
2467 | <e_new> | 990 | <e_new>Others</e_new> |
2468 | Not Mature Content | ||
2469 | </e_new> | ||
2470 | <f_old_trans></f_old_trans> | 991 | <f_old_trans></f_old_trans> |
2471 | <f_translation> | 992 | <f_translation>Andere</f_translation> |
2472 | Jugendfreier Inhalt | 993 | </string><string><a_file>panel_preferences_chat.xml</a_file> |
2473 | </f_translation> | 994 | <b_path>/chat/play_typing_animation</b_path> |
2474 | </string><string><a_file>panel_classified.xml</a_file> | 995 | <c_attribute>label</c_attribute> |
2475 | <b_path>/Classified/classified_mature_check/select_mature</b_path> | ||
2476 | <c_attribute></c_attribute> | ||
2477 | <d_old></d_old> | 996 | <d_old></d_old> |
2478 | <e_new> | 997 | <e_new>Play typing animation</e_new> |
2479 | - Select Mature - | ||
2480 | </e_new> | ||
2481 | <f_old_trans></f_old_trans> | 998 | <f_old_trans></f_old_trans> |
2482 | <f_translation> | 999 | <f_translation>Tipp-Animation abspielen</f_translation> |
2483 | - Jugendfreigabe wählen - | 1000 | </string><string><a_file>panel_preferences_general.xml</a_file> |
2484 | </f_translation> | 1001 | <b_path>/general_panel/language_is_public</b_path> |
2485 | </string><string><a_file>panel_classified.xml</a_file> | 1002 | <c_attribute>label</c_attribute> |
2486 | <b_path>/Classified/classified_mature_check/mature</b_path> | ||
2487 | <c_attribute></c_attribute> | ||
2488 | <d_old></d_old> | 1003 | <d_old></d_old> |
2489 | <e_new> | 1004 | <e_new>Share language with objects</e_new> |
2490 | Mature Content | ||
2491 | </e_new> | ||
2492 | <f_old_trans></f_old_trans> | 1005 | <f_old_trans></f_old_trans> |
2493 | <f_translation> | 1006 | <f_translation>Objekten Sprache mitteilen</f_translation> |
2494 | Ab-18-Inhalt | 1007 | </string><string><a_file>panel_preferences_general.xml</a_file> |
2495 | </f_translation> | 1008 | <b_path>/general_panel/language_is_public</b_path> |
2496 | </string><string><a_file>panel_classified.xml</a_file> | 1009 | <c_attribute>tool_tip</c_attribute> |
2497 | <b_path>/Classified/classified_mature_check/not_mature</b_path> | ||
2498 | <c_attribute></c_attribute> | ||
2499 | <d_old></d_old> | 1010 | <d_old></d_old> |
2500 | <e_new> | 1011 | <e_new>This lets in-world objects know your preferred language.</e_new> |
2501 | Not Mature Content | ||
2502 | </e_new> | ||
2503 | <f_old_trans></f_old_trans> | 1012 | <f_old_trans></f_old_trans> |
2504 | <f_translation> | 1013 | <f_translation>In-Welt-Objekten wird Ihre bevorzugte Spracheinstellung mitgeteilt.</f_translation> |
2505 | Jugendfreier Inhalt | 1014 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> |
2506 | </f_translation> | 1015 | <b_path>/Display panel/QualityPerformanceSelection</b_path> |
2507 | </string><string><a_file>panel_groups.xml</a_file> | ||
2508 | <b_path>/groups/group list/name</b_path> | ||
2509 | <c_attribute>label</c_attribute> | 1016 | <c_attribute>label</c_attribute> |
2510 | <d_old></d_old> | 1017 | <d_old></d_old> |
2511 | <e_new></e_new> | 1018 | <e_new></e_new> |
2512 | <f_old_trans></f_old_trans> | 1019 | <f_old_trans></f_old_trans> |
2513 | <f_translation></f_translation> | 1020 | <f_translation></f_translation> |
2514 | </string><string><a_file>panel_group_general.xml</a_file> | 1021 | </string><string><a_file>panel_preferences_im.xml</a_file> |
2515 | <b_path>/general_tab/preferences_container/group_mature_check</b_path> | 1022 | <b_path>/im/friends_online_notify_checkbox</b_path> |
2516 | <c_attribute>tool_tip</c_attribute> | 1023 | <c_attribute>label</c_attribute> |
2517 | <d_old></d_old> | 1024 | <d_old></d_old> |
2518 | <e_new>Sets whether your group information is considered mature.</e_new> | 1025 | <e_new>Show Online Friend Notifications</e_new> |
2519 | <f_old_trans></f_old_trans> | 1026 | <f_old_trans></f_old_trans> |
2520 | <f_translation>Festlegen, ob die Informationen Ihrer Gruppe nicht jugendfrei sind.</f_translation> | 1027 | <f_translation>Online-Freundbenachrichtigungen anzeigen</f_translation> |
2521 | </string><string><a_file>panel_group_general.xml</a_file> | 1028 | </string><string><a_file>panel_preferences_popups.xml</a_file> |
2522 | <b_path>/general_tab/preferences_container/group_mature_check/select_mature</b_path> | 1029 | <b_path>/popups/show_in_inventory</b_path> |
2523 | <c_attribute></c_attribute> | 1030 | <c_attribute>label</c_attribute> |
2524 | <d_old></d_old> | ||
2525 | <e_new> | ||
2526 | - Select Mature - | ||
2527 | </e_new> | ||
2528 | <f_old_trans></f_old_trans> | ||
2529 | <f_translation> | ||
2530 | - Jugendfreigabe wählen - | ||
2531 | </f_translation> | ||
2532 | </string><string><a_file>panel_group_general.xml</a_file> | ||
2533 | <b_path>/general_tab/preferences_container/group_mature_check/mature</b_path> | ||
2534 | <c_attribute></c_attribute> | ||
2535 | <d_old></d_old> | 1031 | <d_old></d_old> |
2536 | <e_new> | 1032 | <e_new>Automatically show newly accepted objects in inventory</e_new> |
2537 | Mature Content | ||
2538 | </e_new> | ||
2539 | <f_old_trans></f_old_trans> | 1033 | <f_old_trans></f_old_trans> |
2540 | <f_translation> | 1034 | <f_translation>Neue Objekte im Inventar automatisch anzeigen</f_translation> |
2541 | Ab-18-Inhalt | 1035 | </string><string><a_file>panel_preferences_skins.xml</a_file> |
2542 | </f_translation> | 1036 | <b_path>/Skins panel/classic_preview</b_path> |
2543 | </string><string><a_file>panel_group_general.xml</a_file> | 1037 | <c_attribute>label</c_attribute> |
2544 | <b_path>/general_tab/preferences_container/group_mature_check/not_mature</b_path> | ||
2545 | <c_attribute></c_attribute> | ||
2546 | <d_old></d_old> | 1038 | <d_old></d_old> |
2547 | <e_new> | 1039 | <e_new></e_new> |
2548 | Not Mature Content | ||
2549 | </e_new> | ||
2550 | <f_old_trans></f_old_trans> | 1040 | <f_old_trans></f_old_trans> |
2551 | <f_translation> | 1041 | <f_translation></f_translation> |
2552 | Jugendfreier Inhalt | 1042 | </string><string><a_file>panel_preferences_skins.xml</a_file> |
2553 | </f_translation> | 1043 | <b_path>/Skins panel/silver_preview</b_path> |
2554 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | 1044 | <c_attribute>label</c_attribute> |
2555 | <b_path>/Display panel/WindowSizeLabel</b_path> | ||
2556 | <c_attribute></c_attribute> | ||
2557 | <d_old></d_old> | 1045 | <d_old></d_old> |
2558 | <e_new> | 1046 | <e_new></e_new> |
2559 | Window Size: | ||
2560 | </e_new> | ||
2561 | <f_old_trans></f_old_trans> | 1047 | <f_old_trans></f_old_trans> |
2562 | <f_translation> | 1048 | <f_translation></f_translation> |
2563 | Fenstergröße: | 1049 | </string><string><a_file>panel_region_debug.xml</a_file> |
2564 | </f_translation> | 1050 | <b_path>/Debug/target_avatar_name</b_path> |
2565 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
2566 | <b_path>/Display panel/windowsize combo/640x480</b_path> | ||
2567 | <c_attribute></c_attribute> | 1051 | <c_attribute></c_attribute> |
2568 | <d_old></d_old> | 1052 | <d_old></d_old> |
2569 | <e_new> | 1053 | <e_new> |
2570 | 640x480 | 1054 | (none) |
2571 | </e_new> | 1055 | </e_new> |
2572 | <f_old_trans></f_old_trans> | 1056 | <f_old_trans></f_old_trans> |
2573 | <f_translation> | 1057 | <f_translation> |
2574 | 640x480 | 1058 | (keiner) |
2575 | </f_translation> | 1059 | </f_translation> |
2576 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | 1060 | </string><string><a_file>panel_region_debug.xml</a_file> |
2577 | <b_path>/Display panel/windowsize combo/800x600</b_path> | 1061 | <b_path>/Debug/return_scripts</b_path> |
2578 | <c_attribute></c_attribute> | 1062 | <c_attribute>label</c_attribute> |
2579 | <d_old></d_old> | 1063 | <d_old></d_old> |
2580 | <e_new> | 1064 | <e_new>Return only those objects with scripts</e_new> |
2581 | 800x600 | ||
2582 | </e_new> | ||
2583 | <f_old_trans></f_old_trans> | 1065 | <f_old_trans></f_old_trans> |
2584 | <f_translation> | 1066 | <f_translation>Nur Objekte mit Skripten zurückgeben</f_translation> |
2585 | 800x600 | 1067 | </string><string><a_file>panel_region_debug.xml</a_file> |
2586 | </f_translation> | 1068 | <b_path>/Debug/return_scripts</b_path> |
2587 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | 1069 | <c_attribute>tool_tip</c_attribute> |
2588 | <b_path>/Display panel/windowsize combo/720x480</b_path> | ||
2589 | <c_attribute></c_attribute> | ||
2590 | <d_old></d_old> | 1070 | <d_old></d_old> |
2591 | <e_new> | 1071 | <e_new>Return only objects which have scripts.</e_new> |
2592 | 720x480 (NTSC) | ||
2593 | </e_new> | ||
2594 | <f_old_trans></f_old_trans> | 1072 | <f_old_trans></f_old_trans> |
2595 | <f_translation> | 1073 | <f_translation>Es werden nur die Objekte zurückgegeben, die über Skripte verfügen.</f_translation> |
2596 | 720x480 (NTSC) | 1074 | </string><string><a_file>panel_region_debug.xml</a_file> |
2597 | </f_translation> | 1075 | <b_path>/Debug/return_other_land</b_path> |
2598 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | 1076 | <c_attribute>label</c_attribute> |
2599 | <b_path>/Display panel/windowsize combo/768x576</b_path> | ||
2600 | <c_attribute></c_attribute> | ||
2601 | <d_old></d_old> | 1077 | <d_old></d_old> |
2602 | <e_new> | 1078 | <e_new>Return only those objects on someone else's land</e_new> |
2603 | 768x576 (PAL) | ||
2604 | </e_new> | ||
2605 | <f_old_trans></f_old_trans> | 1079 | <f_old_trans></f_old_trans> |
2606 | <f_translation> | 1080 | <f_translation>Nur Objekte auf dem Land eines anderen Einwohners zurückgeben</f_translation> |
2607 | 768x576 (PAL) | 1081 | </string><string><a_file>panel_region_debug.xml</a_file> |
2608 | </f_translation> | 1082 | <b_path>/Debug/return_other_land</b_path> |
2609 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | 1083 | <c_attribute>tool_tip</c_attribute> |
2610 | <b_path>/Display panel/windowsize combo/1024x768</b_path> | ||
2611 | <c_attribute></c_attribute> | ||
2612 | <d_old></d_old> | 1084 | <d_old></d_old> |
2613 | <e_new> | 1085 | <e_new>Return only objects which are on land belonging to someone else</e_new> |
2614 | 1024x768 | ||
2615 | </e_new> | ||
2616 | <f_old_trans></f_old_trans> | 1086 | <f_old_trans></f_old_trans> |
2617 | <f_translation> | 1087 | <f_translation>Es werden nur die Objekte zurückgegeben, die sich auf dem Land eines anderen Einwohners befinden</f_translation> |
2618 | 1024x768 | 1088 | </string><string><a_file>panel_region_debug.xml</a_file> |
2619 | </f_translation> | 1089 | <b_path>/Debug/return_estate_wide</b_path> |
2620 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
2621 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | ||
2622 | <c_attribute>label</c_attribute> | 1090 | <c_attribute>label</c_attribute> |
2623 | <d_old></d_old> | 1091 | <d_old></d_old> |
2624 | <e_new></e_new> | 1092 | <e_new>Return objects in every region of this estate</e_new> |
2625 | <f_old_trans></f_old_trans> | 1093 | <f_old_trans></f_old_trans> |
2626 | <f_translation></f_translation> | 1094 | <f_translation>Objekte in jeder Region dieses Grundstücks zurückgeben</f_translation> |
2627 | </string><string><a_file>panel_preferences_web.xml</a_file> | 1095 | </string><string><a_file>panel_region_debug.xml</a_file> |
2628 | <b_path>/web/use_external_browser/internal</b_path> | 1096 | <b_path>/Debug/return_estate_wide</b_path> |
2629 | <c_attribute>tool_tip</c_attribute> | 1097 | <c_attribute>tool_tip</c_attribute> |
2630 | <d_old></d_old> | 1098 | <d_old></d_old> |
2631 | <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> | 1099 | <e_new>Return objects in all of the regions that make up this estate</e_new> |
2632 | <f_old_trans></f_old_trans> | 1100 | <f_old_trans></f_old_trans> |
2633 | <f_translation>Den integrierten Browser zur Suche im Internet verwenden. Der Browser wird als eigenständiges Fenster in Second Life geöffnet.</f_translation> | 1101 | <f_translation>Es werden die Objekte in allen Regionen dieses Grundstücks zurückgegeben</f_translation> |
2634 | </string><string><a_file>panel_region_general.xml</a_file> | 1102 | </string><string><a_file>panel_region_debug.xml</a_file> |
2635 | <b_path>/General/version_channel_text_lbl</b_path> | 1103 | <b_path>/Debug/return_btn</b_path> |
2636 | <c_attribute></c_attribute> | 1104 | <c_attribute>label</c_attribute> |
2637 | <d_old></d_old> | 1105 | <d_old></d_old> |
2638 | <e_new> | 1106 | <e_new>Return</e_new> |
2639 | Version: | ||
2640 | </e_new> | ||
2641 | <f_old_trans></f_old_trans> | 1107 | <f_old_trans></f_old_trans> |
2642 | <f_translation> | 1108 | <f_translation>Zurückgeben</f_translation> |
2643 | Version: | 1109 | </string><string><a_file>panel_region_estate.xml</a_file> |
2644 | </f_translation> | 1110 | <b_path>/Estate/abuse_email_text</b_path> |
2645 | </string><string><a_file>panel_region_general.xml</a_file> | ||
2646 | <b_path>/General/version_channel_text</b_path> | ||
2647 | <c_attribute></c_attribute> | 1111 | <c_attribute></c_attribute> |
2648 | <d_old></d_old> | 1112 | <d_old></d_old> |
2649 | <e_new> | 1113 | <e_new> |
2650 | unknown | 1114 | Abuse email address: |
2651 | </e_new> | 1115 | </e_new> |
2652 | <f_old_trans></f_old_trans> | 1116 | <f_old_trans></f_old_trans> |
2653 | <f_translation> | 1117 | <f_translation> |
2654 | unbekannt | 1118 | E-Mail-Adresse für Missbrauchsmeldungen: |
2655 | </f_translation> | 1119 | </f_translation> |
2656 | </string><string><a_file>strings.xml</a_file> | 1120 | </string><string><a_file>panel_region_estate.xml</a_file> |
2657 | <b_path>//LoginInProgress</b_path> | 1121 | <b_path>/Estate/email_unsupported</b_path> |
2658 | <c_attribute></c_attribute> | ||
2659 | <d_old></d_old> | ||
2660 | <e_new>Logging in. [APP_NAME] may appear frozen. Please wait.</e_new> | ||
2661 | <f_old_trans></f_old_trans> | ||
2662 | <f_translation>Anmeldevorgang gestartet. [APP_NAME] reagiert möglicherweise nicht. Bitte warten.</f_translation> | ||
2663 | </string><string><a_file>strings.xml</a_file> | ||
2664 | <b_path>//LoginAuthenticating</b_path> | ||
2665 | <c_attribute></c_attribute> | ||
2666 | <d_old></d_old> | ||
2667 | <e_new>Authenticating</e_new> | ||
2668 | <f_old_trans></f_old_trans> | ||
2669 | <f_translation>Authentifizierung</f_translation> | ||
2670 | </string><string><a_file>strings.xml</a_file> | ||
2671 | <b_path>//LoginMaintenance</b_path> | ||
2672 | <c_attribute></c_attribute> | ||
2673 | <d_old></d_old> | ||
2674 | <e_new>Performing account maintenance...</e_new> | ||
2675 | <f_old_trans></f_old_trans> | ||
2676 | <f_translation>Account wird aktualisiert...</f_translation> | ||
2677 | </string><string><a_file>strings.xml</a_file> | ||
2678 | <b_path>//LoginAttempt</b_path> | ||
2679 | <c_attribute></c_attribute> | ||
2680 | <d_old></d_old> | ||
2681 | <e_new>Previous login attempt failed. Logging in, attempt [NUMBER]</e_new> | ||
2682 | <f_old_trans></f_old_trans> | ||
2683 | <f_translation>Ein früherer Anmeldeversuch ist fehlgeschlagen. Anmeldung, Versuch [NUMBER]</f_translation> | ||
2684 | </string><string><a_file>strings.xml</a_file> | ||
2685 | <b_path>//LoginPrecaching</b_path> | ||
2686 | <c_attribute></c_attribute> | ||
2687 | <d_old></d_old> | ||
2688 | <e_new>Loading world...</e_new> | ||
2689 | <f_old_trans></f_old_trans> | ||
2690 | <f_translation>Welt wird geladen...</f_translation> | ||
2691 | </string><string><a_file>strings.xml</a_file> | ||
2692 | <b_path>//LoginInitializingBrowser</b_path> | ||
2693 | <c_attribute></c_attribute> | ||
2694 | <d_old></d_old> | ||
2695 | <e_new>Initializing embedded web browser...</e_new> | ||
2696 | <f_old_trans></f_old_trans> | ||
2697 | <f_translation>Integrierter Webbrowser wird initialisiert...</f_translation> | ||
2698 | </string><string><a_file>strings.xml</a_file> | ||
2699 | <b_path>//LoginVerifyingCache</b_path> | ||
2700 | <c_attribute></c_attribute> | ||
2701 | <d_old></d_old> | ||
2702 | <e_new>Verifying cache files (can take 60-90 seconds)...</e_new> | ||
2703 | <f_old_trans></f_old_trans> | ||
2704 | <f_translation>Cache-Dateien werden überprüft (dauert 60-90 Sekunden)...</f_translation> | ||
2705 | </string><string><a_file>strings.xml</a_file> | ||
2706 | <b_path>//LoginProcessingResponse</b_path> | ||
2707 | <c_attribute></c_attribute> | 1122 | <c_attribute></c_attribute> |
2708 | <d_old></d_old> | 1123 | <d_old></d_old> |
2709 | <e_new>Processing Response...</e_new> | 1124 | <e_new>Feature unsupported</e_new> |
2710 | <f_old_trans></f_old_trans> | 1125 | <f_old_trans></f_old_trans> |
2711 | <f_translation>Antwort wird verarbeitet...</f_translation> | 1126 | <f_translation>Funktion nicht unterstützt</f_translation> |
2712 | </string><string><a_file>strings.xml</a_file> | 1127 | </string><string><a_file>role_actions.xml</a_file> |
2713 | <b_path>//LoginInitializingWorld</b_path> | 1128 | <b_path>//Chat</b_path> |
2714 | <c_attribute></c_attribute> | 1129 | <c_attribute>description</c_attribute> |
2715 | <d_old></d_old> | ||
2716 | <e_new>Initializing World...</e_new> | ||
2717 | <f_old_trans></f_old_trans> | ||
2718 | <f_translation>Welt wird initialisiert...</f_translation> | ||
2719 | </string><string><a_file>strings.xml</a_file> | ||
2720 | <b_path>//LoginDecodingImages</b_path> | ||
2721 | <c_attribute></c_attribute> | ||
2722 | <d_old></d_old> | ||
2723 | <e_new>Decoding images...</e_new> | ||
2724 | <f_old_trans></f_old_trans> | ||
2725 | <f_translation>Bilder werden entpackt...</f_translation> | ||
2726 | </string><string><a_file>strings.xml</a_file> | ||
2727 | <b_path>//LoginInitializingQuicktime</b_path> | ||
2728 | <c_attribute></c_attribute> | ||
2729 | <d_old></d_old> | ||
2730 | <e_new>Initializing QuickTime...</e_new> | ||
2731 | <f_old_trans></f_old_trans> | ||
2732 | <f_translation>QuickTime wird initialisiert...</f_translation> | ||
2733 | </string><string><a_file>strings.xml</a_file> | ||
2734 | <b_path>//LoginQuicktimeNotFound</b_path> | ||
2735 | <c_attribute></c_attribute> | ||
2736 | <d_old></d_old> | ||
2737 | <e_new>QuickTime not found - unable to initialize.</e_new> | ||
2738 | <f_old_trans></f_old_trans> | ||
2739 | <f_translation>QuickTime nicht gefunden - Initialisierung nicht möglich.</f_translation> | ||
2740 | </string><string><a_file>strings.xml</a_file> | ||
2741 | <b_path>//LoginQuicktimeOK</b_path> | ||
2742 | <c_attribute></c_attribute> | ||
2743 | <d_old></d_old> | ||
2744 | <e_new>QuickTime initialized successfully.</e_new> | ||
2745 | <f_old_trans></f_old_trans> | ||
2746 | <f_translation>QuickTime wurde initialisiert.</f_translation> | ||
2747 | </string><string><a_file>strings.xml</a_file> | ||
2748 | <b_path>//LoginWaitingForRegionHandshake</b_path> | ||
2749 | <c_attribute></c_attribute> | ||
2750 | <d_old></d_old> | ||
2751 | <e_new>Waiting for region handshake...</e_new> | ||
2752 | <f_old_trans></f_old_trans> | ||
2753 | <f_translation>Region-Handshake...</f_translation> | ||
2754 | </string><string><a_file>strings.xml</a_file> | ||
2755 | <b_path>//LoginConnectingToRegion</b_path> | ||
2756 | <c_attribute></c_attribute> | ||
2757 | <d_old></d_old> | 1130 | <d_old></d_old> |
2758 | <e_new>Connecting to region...</e_new> | 1131 | <e_new>These Abilities include powers to allow or restrict access to group chat sessions and group voice chat.</e_new> |
2759 | <f_old_trans></f_old_trans> | 1132 | <f_old_trans></f_old_trans> |
2760 | <f_translation>Region-Verbindung...</f_translation> | 1133 | <f_translation>Diese Fähigkeiten ermöglichen es, den Zugang zu Gruppen-Chat und Gruppen-Voice-Chat zu steuern.</f_translation> |
2761 | </string><string><a_file>strings.xml</a_file> | 1134 | </string><string><a_file>role_actions.xml</a_file> |
2762 | <b_path>//LoginDownloadingClothing</b_path> | 1135 | <b_path>//Chat/join group chat</b_path> |
2763 | <c_attribute></c_attribute> | 1136 | <c_attribute>description</c_attribute> |
2764 | <d_old></d_old> | ||
2765 | <e_new>Downloading clothing...</e_new> | ||
2766 | <f_old_trans></f_old_trans> | ||
2767 | <f_translation>Kleidung wird geladen...</f_translation> | ||
2768 | </string><string><a_file>strings.xml</a_file> | ||
2769 | <b_path>//TooltipPerson</b_path> | ||
2770 | <c_attribute></c_attribute> | ||
2771 | <d_old></d_old> | ||
2772 | <e_new>Person</e_new> | ||
2773 | <f_old_trans></f_old_trans> | ||
2774 | <f_translation>Person</f_translation> | ||
2775 | </string><string><a_file>strings.xml</a_file> | ||
2776 | <b_path>//TooltipNoName</b_path> | ||
2777 | <c_attribute></c_attribute> | ||
2778 | <d_old></d_old> | ||
2779 | <e_new>(no name)</e_new> | ||
2780 | <f_old_trans></f_old_trans> | ||
2781 | <f_translation>(namenlos)</f_translation> | ||
2782 | </string><string><a_file>strings.xml</a_file> | ||
2783 | <b_path>//TooltipOwner</b_path> | ||
2784 | <c_attribute></c_attribute> | ||
2785 | <d_old></d_old> | 1137 | <d_old></d_old> |
2786 | <e_new>Owner:</e_new> | 1138 | <e_new>Join Group Chat</e_new> |
2787 | <f_old_trans></f_old_trans> | 1139 | <f_old_trans></f_old_trans> |
2788 | <f_translation>Eigentümer:</f_translation> | 1140 | <f_translation>Gruppen-Chat beitreten</f_translation> |
2789 | </string><string><a_file>strings.xml</a_file> | 1141 | </string><string><a_file>role_actions.xml</a_file> |
2790 | <b_path>//TooltipPublic</b_path> | 1142 | <b_path>//Chat/join group chat</b_path> |
2791 | <c_attribute></c_attribute> | 1143 | <c_attribute>longdescription</c_attribute> |
2792 | <d_old></d_old> | 1144 | <d_old></d_old> |
2793 | <e_new>Public</e_new> | 1145 | <e_new>Members in a Role with this Ability can join group chat sessions, for text and voice.</e_new> |
2794 | <f_old_trans></f_old_trans> | 1146 | <f_old_trans></f_old_trans> |
2795 | <f_translation>Öffentlich</f_translation> | 1147 | <f_translation>Mitglieder in einer Rolle mit dieser Fähigkeit können Gruppen-Chat und Gruppen-Voice-Chat beitreten.</f_translation> |
2796 | </string><string><a_file>strings.xml</a_file> | 1148 | </string><string><a_file>role_actions.xml</a_file> |
2797 | <b_path>//TooltipIsGroup</b_path> | 1149 | <b_path>//Chat/join voice chat</b_path> |
2798 | <c_attribute></c_attribute> | 1150 | <c_attribute>description</c_attribute> |
2799 | <d_old></d_old> | 1151 | <d_old></d_old> |
2800 | <e_new>(Group)</e_new> | 1152 | <e_new>Join Group Voice Chat</e_new> |
2801 | <f_old_trans></f_old_trans> | 1153 | <f_old_trans></f_old_trans> |
2802 | <f_translation>(Gruppe)</f_translation> | 1154 | <f_translation>Gruppen-Voice-Chat beitreten</f_translation> |
2803 | </string><string><a_file>strings.xml</a_file> | 1155 | </string><string><a_file>role_actions.xml</a_file> |
2804 | <b_path>//TooltipFlagScript</b_path> | 1156 | <b_path>//Chat/join voice chat</b_path> |
2805 | <c_attribute></c_attribute> | 1157 | <c_attribute>longdescription</c_attribute> |
2806 | <d_old></d_old> | 1158 | <d_old></d_old> |
2807 | <e_new>Script</e_new> | 1159 | <e_new>Members in a Role with this Ability can join group voice chat sessions. NOTE: The Join Group Chat ability is required to access the voice chat session.</e_new> |
2808 | <f_old_trans></f_old_trans> | 1160 | <f_old_trans></f_old_trans> |
2809 | <f_translation>Skript</f_translation> | 1161 | <f_translation>Mitglieder in einer Rolle mit dieser Fähigkeit können Gruppen-Voice-Chat beitreten.HINWEIS:Sie benötigen die Fähigkeit 'Gruppen-Chat beitreten', um Zugang zu dieser Voice-Chat-Sitzung zu erhalten.</f_translation> |
2810 | </string><string><a_file>strings.xml</a_file> | 1162 | </string><string><a_file>role_actions.xml</a_file> |
2811 | <b_path>//TooltipFlagPhysics</b_path> | 1163 | <b_path>//Chat/moderate group chat</b_path> |
2812 | <c_attribute></c_attribute> | 1164 | <c_attribute>description</c_attribute> |
2813 | <d_old></d_old> | 1165 | <d_old></d_old> |
2814 | <e_new>Physics</e_new> | 1166 | <e_new>Moderate Group Chat</e_new> |
2815 | <f_old_trans></f_old_trans> | 1167 | <f_old_trans></f_old_trans> |
2816 | <f_translation>Physik</f_translation> | 1168 | <f_translation>Gruppen-Chat moderieren</f_translation> |
2817 | </string><string><a_file>strings.xml</a_file> | 1169 | </string><string><a_file>role_actions.xml</a_file> |
2818 | <b_path>//TooltipFlagTouch</b_path> | 1170 | <b_path>//Chat/moderate group chat</b_path> |
2819 | <c_attribute></c_attribute> | 1171 | <c_attribute>longdescription</c_attribute> |
2820 | <d_old></d_old> | 1172 | <d_old></d_old> |
2821 | <e_new>Touch</e_new> | 1173 | <e_new>Members in a Role with this Ability can control access and participation in group voice and text chat sessions.</e_new> |
2822 | <f_old_trans></f_old_trans> | 1174 | <f_old_trans></f_old_trans> |
2823 | <f_translation>Berühren</f_translation> | 1175 | <f_translation>Mitglieder in einer Rolle mit dieser Fähigkeit können den Zugang zu und die Teilnahme an Gruppen-Chat- und Voice-Chat-Sitzungen steuern.</f_translation> |
2824 | </string><string><a_file>strings.xml</a_file> | 1176 | </string><string><a_file>strings.xml</a_file> |
2825 | <b_path>//TooltipFlagL$</b_path> | 1177 | <b_path>//LoginInitializingMultimedia</b_path> |
2826 | <c_attribute></c_attribute> | 1178 | <c_attribute></c_attribute> |
2827 | <d_old></d_old> | 1179 | <d_old></d_old> |
2828 | <e_new>L$</e_new> | 1180 | <e_new>Initializing multimedia...</e_new> |
2829 | <f_old_trans></f_old_trans> | 1181 | <f_old_trans></f_old_trans> |
2830 | <f_translation>L$</f_translation> | 1182 | <f_translation>Multimedia wird initialisiert...</f_translation> |
2831 | </string><string><a_file>strings.xml</a_file> | 1183 | </string><string><a_file>strings.xml</a_file> |
2832 | <b_path>//TooltipFlagDropInventory</b_path> | 1184 | <b_path>//AgentLostConnection</b_path> |
2833 | <c_attribute></c_attribute> | 1185 | <c_attribute></c_attribute> |
2834 | <d_old></d_old> | 1186 | <d_old></d_old> |
2835 | <e_new>Drop Inventory</e_new> | 1187 | <e_new>This region may be experiencing trouble. Please check your connection to the Internet.</e_new> |
2836 | <f_old_trans></f_old_trans> | 1188 | <f_old_trans></f_old_trans> |
2837 | <f_translation>Inventar fallen lassen</f_translation> | 1189 | <f_translation>In dieser Region kann es zu Problemen kommen. Bitte überprüfen Sie Ihre Internetverbindung.</f_translation> |
2838 | </string><string><a_file>strings.xml</a_file> | 1190 | </string><string><a_file>strings.xml</a_file> |
2839 | <b_path>//TooltipFlagPhantom</b_path> | 1191 | <b_path>//TooltipMustSingleDrop</b_path> |
2840 | <c_attribute></c_attribute> | 1192 | <c_attribute></c_attribute> |
2841 | <d_old></d_old> | 1193 | <d_old></d_old> |
2842 | <e_new>Phantom</e_new> | 1194 | <e_new>Only a single item can be dragged here</e_new> |
2843 | <f_old_trans></f_old_trans> | 1195 | <f_old_trans></f_old_trans> |
2844 | <f_translation>Phantom</f_translation> | 1196 | <f_translation>Sie können nur ein einzelnes Objekt hierher ziehen</f_translation> |
2845 | </string><string><a_file>strings.xml</a_file> | 1197 | </string><string><a_file>strings.xml</a_file> |
2846 | <b_path>//TooltipFlagTemporary</b_path> | 1198 | <b_path>//ReleaseNotes</b_path> |
2847 | <c_attribute></c_attribute> | 1199 | <c_attribute></c_attribute> |
2848 | <d_old></d_old> | 1200 | <d_old></d_old> |
2849 | <e_new>Temporary</e_new> | 1201 | <e_new>Release Notes</e_new> |
2850 | <f_old_trans></f_old_trans> | 1202 | <f_old_trans></f_old_trans> |
2851 | <f_translation>Temporär</f_translation> | 1203 | <f_translation>Versionshinweise</f_translation> |
2852 | </string><string><a_file>strings.xml</a_file> | 1204 | </string><string><a_file>strings.xml</a_file> |
2853 | <b_path>//TooltipFlagRightClickMenu</b_path> | 1205 | <b_path>//texture_loading</b_path> |
2854 | <c_attribute></c_attribute> | ||
2855 | <d_old></d_old> | ||
2856 | <e_new>(Right-click for menu)</e_new> | ||
2857 | <f_old_trans></f_old_trans> | ||
2858 | <f_translation>(Rechtsklick für Menü)</f_translation> | ||
2859 | </string><string><a_file>strings.xml</a_file> | ||
2860 | <b_path>//TooltipFreeToCopy</b_path> | ||
2861 | <c_attribute></c_attribute> | ||
2862 | <d_old></d_old> | ||
2863 | <e_new>Free to copy</e_new> | ||
2864 | <f_old_trans></f_old_trans> | ||
2865 | <f_translation>Kopieren möglich</f_translation> | ||
2866 | </string><string><a_file>strings.xml</a_file> | ||
2867 | <b_path>//TooltipForSaleL$</b_path> | ||
2868 | <c_attribute></c_attribute> | ||
2869 | <d_old></d_old> | ||
2870 | <e_new>For Sale: L$[AMOUNT]</e_new> | ||
2871 | <f_old_trans></f_old_trans> | ||
2872 | <f_translation>Zum Verkauf: [AMOUNT] L$</f_translation> | ||
2873 | </string><string><a_file>strings.xml</a_file> | ||
2874 | <b_path>//TooltipForSaleMsg</b_path> | ||
2875 | <c_attribute></c_attribute> | ||
2876 | <d_old></d_old> | ||
2877 | <e_new>For Sale: [MESSAGE]</e_new> | ||
2878 | <f_old_trans></f_old_trans> | ||
2879 | <f_translation>Zum Verkauf: [MESSAGE]</f_translation> | ||
2880 | </string><string><a_file>strings.xml</a_file> | ||
2881 | <b_path>//TooltipFlagGroupBuild</b_path> | ||
2882 | <c_attribute></c_attribute> | ||
2883 | <d_old></d_old> | ||
2884 | <e_new>Group Build</e_new> | ||
2885 | <f_old_trans></f_old_trans> | ||
2886 | <f_translation>Gruppenbau</f_translation> | ||
2887 | </string><string><a_file>strings.xml</a_file> | ||
2888 | <b_path>//TooltipFlagNoBuild</b_path> | ||
2889 | <c_attribute></c_attribute> | ||
2890 | <d_old></d_old> | ||
2891 | <e_new>No Build</e_new> | ||
2892 | <f_old_trans></f_old_trans> | ||
2893 | <f_translation>Bauen aus</f_translation> | ||
2894 | </string><string><a_file>strings.xml</a_file> | ||
2895 | <b_path>//TooltipFlagNoEdit</b_path> | ||
2896 | <c_attribute></c_attribute> | ||
2897 | <d_old></d_old> | ||
2898 | <e_new>Group Build</e_new> | ||
2899 | <f_old_trans></f_old_trans> | ||
2900 | <f_translation>Gruppenbau</f_translation> | ||
2901 | </string><string><a_file>strings.xml</a_file> | ||
2902 | <b_path>//TooltipFlagNotSafe</b_path> | ||
2903 | <c_attribute></c_attribute> | ||
2904 | <d_old></d_old> | ||
2905 | <e_new>Not Safe</e_new> | ||
2906 | <f_old_trans></f_old_trans> | ||
2907 | <f_translation>Unsicher</f_translation> | ||
2908 | </string><string><a_file>strings.xml</a_file> | ||
2909 | <b_path>//TooltipFlagNoFly</b_path> | ||
2910 | <c_attribute></c_attribute> | ||
2911 | <d_old></d_old> | ||
2912 | <e_new>No Fly</e_new> | ||
2913 | <f_old_trans></f_old_trans> | ||
2914 | <f_translation>Fliegen aus</f_translation> | ||
2915 | </string><string><a_file>strings.xml</a_file> | ||
2916 | <b_path>//TooltipFlagGroupScripts</b_path> | ||
2917 | <c_attribute></c_attribute> | ||
2918 | <d_old></d_old> | ||
2919 | <e_new>Group Scripts</e_new> | ||
2920 | <f_old_trans></f_old_trans> | ||
2921 | <f_translation>Gruppenskripte</f_translation> | ||
2922 | </string><string><a_file>strings.xml</a_file> | ||
2923 | <b_path>//TooltipFlagNoScripts</b_path> | ||
2924 | <c_attribute></c_attribute> | ||
2925 | <d_old></d_old> | ||
2926 | <e_new>No Scripts</e_new> | ||
2927 | <f_old_trans></f_old_trans> | ||
2928 | <f_translation>Skripte aus</f_translation> | ||
2929 | </string><string><a_file>strings.xml</a_file> | ||
2930 | <b_path>//TooltipLand</b_path> | ||
2931 | <c_attribute></c_attribute> | ||
2932 | <d_old></d_old> | ||
2933 | <e_new>Land:</e_new> | ||
2934 | <f_old_trans></f_old_trans> | ||
2935 | <f_translation>Land:</f_translation> | ||
2936 | </string><string><a_file>strings.xml</a_file> | ||
2937 | <b_path>//RetrievingData</b_path> | ||
2938 | <c_attribute></c_attribute> | ||
2939 | <d_old></d_old> | ||
2940 | <e_new>Retrieving...</e_new> | ||
2941 | <f_old_trans></f_old_trans> | ||
2942 | <f_translation>Laden...</f_translation> | ||
2943 | </string><string><a_file>strings.xml</a_file> | ||
2944 | <b_path>//LoadingData</b_path> | ||
2945 | <c_attribute></c_attribute> | 1206 | <c_attribute></c_attribute> |
2946 | <d_old></d_old> | 1207 | <d_old></d_old> |
2947 | <e_new>Loading...</e_new> | 1208 | <e_new>Loading...</e_new> |
2948 | <f_old_trans></f_old_trans> | 1209 | <f_old_trans></f_old_trans> |
2949 | <f_translation>Wird geladen...</f_translation> | 1210 | <f_translation>Wird geladen...</f_translation> |
2950 | </string><string><a_file>strings.xml</a_file> | 1211 | </string><string><a_file>strings.xml</a_file> |
2951 | <b_path>//AvatarNameNobody</b_path> | 1212 | <b_path>//worldmap_offline</b_path> |
2952 | <c_attribute></c_attribute> | ||
2953 | <d_old></d_old> | ||
2954 | <e_new>(nobody)</e_new> | ||
2955 | <f_old_trans></f_old_trans> | ||
2956 | <f_translation>(niemand)</f_translation> | ||
2957 | </string><string><a_file>strings.xml</a_file> | ||
2958 | <b_path>//AvatarNameWaiting</b_path> | ||
2959 | <c_attribute></c_attribute> | ||
2960 | <d_old></d_old> | ||
2961 | <e_new>(waiting)</e_new> | ||
2962 | <f_old_trans></f_old_trans> | ||
2963 | <f_translation>(wartet)</f_translation> | ||
2964 | </string><string><a_file>strings.xml</a_file> | ||
2965 | <b_path>//AvatarNameHippos</b_path> | ||
2966 | <c_attribute></c_attribute> | ||
2967 | <d_old></d_old> | ||
2968 | <e_new>(hippos)</e_new> | ||
2969 | <f_old_trans></f_old_trans> | ||
2970 | <f_translation>(hippos)</f_translation> | ||
2971 | </string><string><a_file>strings.xml</a_file> | ||
2972 | <b_path>//GroupNameNone</b_path> | ||
2973 | <c_attribute></c_attribute> | ||
2974 | <d_old></d_old> | ||
2975 | <e_new>(none)</e_new> | ||
2976 | <f_old_trans></f_old_trans> | ||
2977 | <f_translation>(keiner)</f_translation> | ||
2978 | </string><string><a_file>strings.xml</a_file> | ||
2979 | <b_path>//AssetErrorNone</b_path> | ||
2980 | <c_attribute></c_attribute> | ||
2981 | <d_old></d_old> | ||
2982 | <e_new>No error</e_new> | ||
2983 | <f_old_trans></f_old_trans> | ||
2984 | <f_translation>Kein Fehler</f_translation> | ||
2985 | </string><string><a_file>strings.xml</a_file> | ||
2986 | <b_path>//AssetErrorRequestFailed</b_path> | ||
2987 | <c_attribute></c_attribute> | ||
2988 | <d_old></d_old> | ||
2989 | <e_new>Asset request: failed</e_new> | ||
2990 | <f_old_trans></f_old_trans> | ||
2991 | <f_translation>Asset-Anforderung: fehlgeschlagen</f_translation> | ||
2992 | </string><string><a_file>strings.xml</a_file> | ||
2993 | <b_path>//AssetErrorNonexistentFile</b_path> | ||
2994 | <c_attribute></c_attribute> | ||
2995 | <d_old></d_old> | ||
2996 | <e_new>Asset request: non-existent file</e_new> | ||
2997 | <f_old_trans></f_old_trans> | ||
2998 | <f_translation>Asset-Anforderung: Datei existiert nicht</f_translation> | ||
2999 | </string><string><a_file>strings.xml</a_file> | ||
3000 | <b_path>//AssetErrorNotInDatabase</b_path> | ||
3001 | <c_attribute></c_attribute> | ||
3002 | <d_old></d_old> | ||
3003 | <e_new>Asset request: asset not found in database</e_new> | ||
3004 | <f_old_trans></f_old_trans> | ||
3005 | <f_translation>Asset-Anforderung: Asset in Datenbank nicht gefunden</f_translation> | ||
3006 | </string><string><a_file>strings.xml</a_file> | ||
3007 | <b_path>//AssetErrorEOF</b_path> | ||
3008 | <c_attribute></c_attribute> | ||
3009 | <d_old></d_old> | ||
3010 | <e_new>End of file</e_new> | ||
3011 | <f_old_trans></f_old_trans> | ||
3012 | <f_translation>Ende der Datei</f_translation> | ||
3013 | </string><string><a_file>strings.xml</a_file> | ||
3014 | <b_path>//AssetErrorCannotOpenFile</b_path> | ||
3015 | <c_attribute></c_attribute> | ||
3016 | <d_old></d_old> | ||
3017 | <e_new>Cannot open file</e_new> | ||
3018 | <f_old_trans></f_old_trans> | ||
3019 | <f_translation>Datei kann nicht geöffnet werden</f_translation> | ||
3020 | </string><string><a_file>strings.xml</a_file> | ||
3021 | <b_path>//AssetErrorFileNotFound</b_path> | ||
3022 | <c_attribute></c_attribute> | ||
3023 | <d_old></d_old> | ||
3024 | <e_new>File not found</e_new> | ||
3025 | <f_old_trans></f_old_trans> | ||
3026 | <f_translation>Datei nicht gefunden</f_translation> | ||
3027 | </string><string><a_file>strings.xml</a_file> | ||
3028 | <b_path>//AssetErrorTCPTimeout</b_path> | ||
3029 | <c_attribute></c_attribute> | ||
3030 | <d_old></d_old> | ||
3031 | <e_new>File transfer timeout</e_new> | ||
3032 | <f_old_trans></f_old_trans> | ||
3033 | <f_translation>Zeitüberschreitung bei Dateiübertragung</f_translation> | ||
3034 | </string><string><a_file>strings.xml</a_file> | ||
3035 | <b_path>//AssetErrorCircuitGone</b_path> | ||
3036 | <c_attribute></c_attribute> | ||
3037 | <d_old></d_old> | ||
3038 | <e_new>Circuit gone</e_new> | ||
3039 | <f_old_trans></f_old_trans> | ||
3040 | <f_translation>Verbindung verloren</f_translation> | ||
3041 | </string><string><a_file>strings.xml</a_file> | ||
3042 | <b_path>//AssetErrorUnknownStatus</b_path> | ||
3043 | <c_attribute></c_attribute> | ||
3044 | <d_old></d_old> | ||
3045 | <e_new>Unknown status</e_new> | ||
3046 | <f_old_trans></f_old_trans> | ||
3047 | <f_translation>Status unbekannt</f_translation> | ||
3048 | </string><string><a_file>strings.xml</a_file> | ||
3049 | <b_path>//AvatarEditingApparance</b_path> | ||
3050 | <c_attribute></c_attribute> | ||
3051 | <d_old></d_old> | ||
3052 | <e_new>(Editing Appearance)</e_new> | ||
3053 | <f_old_trans></f_old_trans> | ||
3054 | <f_translation>(Aussehen wird bearbeitet)</f_translation> | ||
3055 | </string><string><a_file>strings.xml</a_file> | ||
3056 | <b_path>//AvatarAway</b_path> | ||
3057 | <c_attribute></c_attribute> | ||
3058 | <d_old></d_old> | ||
3059 | <e_new>Away</e_new> | ||
3060 | <f_old_trans></f_old_trans> | ||
3061 | <f_translation>Abwesend</f_translation> | ||
3062 | </string><string><a_file>strings.xml</a_file> | ||
3063 | <b_path>//AvatarBusy</b_path> | ||
3064 | <c_attribute></c_attribute> | ||
3065 | <d_old></d_old> | ||
3066 | <e_new>Busy</e_new> | ||
3067 | <f_old_trans></f_old_trans> | ||
3068 | <f_translation>Beschäftigt</f_translation> | ||
3069 | </string><string><a_file>strings.xml</a_file> | ||
3070 | <b_path>//AvatarMuted</b_path> | ||
3071 | <c_attribute></c_attribute> | ||
3072 | <d_old></d_old> | ||
3073 | <e_new>Muted</e_new> | ||
3074 | <f_old_trans></f_old_trans> | ||
3075 | <f_translation>Stummgeschaltet</f_translation> | ||
3076 | </string><string><a_file>strings.xml</a_file> | ||
3077 | <b_path>//anim_express_afraid</b_path> | ||
3078 | <c_attribute></c_attribute> | ||
3079 | <d_old></d_old> | ||
3080 | <e_new>Afraid</e_new> | ||
3081 | <f_old_trans></f_old_trans> | ||
3082 | <f_translation>Ängstlich</f_translation> | ||
3083 | </string><string><a_file>strings.xml</a_file> | ||
3084 | <b_path>//anim_express_anger</b_path> | ||
3085 | <c_attribute></c_attribute> | ||
3086 | <d_old></d_old> | ||
3087 | <e_new>Angry</e_new> | ||
3088 | <f_old_trans></f_old_trans> | ||
3089 | <f_translation>Verärgert</f_translation> | ||
3090 | </string><string><a_file>strings.xml</a_file> | ||
3091 | <b_path>//anim_away</b_path> | ||
3092 | <c_attribute></c_attribute> | ||
3093 | <d_old></d_old> | ||
3094 | <e_new>Away</e_new> | ||
3095 | <f_old_trans></f_old_trans> | ||
3096 | <f_translation>Abwesend</f_translation> | ||
3097 | </string><string><a_file>strings.xml</a_file> | ||
3098 | <b_path>//anim_backflip</b_path> | ||
3099 | <c_attribute></c_attribute> | ||
3100 | <d_old></d_old> | ||
3101 | <e_new>Backflip</e_new> | ||
3102 | <f_old_trans></f_old_trans> | ||
3103 | <f_translation>Rückwärtssalto</f_translation> | ||
3104 | </string><string><a_file>strings.xml</a_file> | ||
3105 | <b_path>//anim_express_laugh</b_path> | ||
3106 | <c_attribute></c_attribute> | ||
3107 | <d_old></d_old> | ||
3108 | <e_new>Belly Laugh</e_new> | ||
3109 | <f_old_trans></f_old_trans> | ||
3110 | <f_translation>Lachkrampf</f_translation> | ||
3111 | </string><string><a_file>strings.xml</a_file> | ||
3112 | <b_path>//anim_express_toothsmile</b_path> | ||
3113 | <c_attribute></c_attribute> | ||
3114 | <d_old></d_old> | ||
3115 | <e_new>BigSmile</e_new> | ||
3116 | <f_old_trans></f_old_trans> | ||
3117 | <f_translation>Grinsen</f_translation> | ||
3118 | </string><string><a_file>strings.xml</a_file> | ||
3119 | <b_path>//anim_blowkiss</b_path> | ||
3120 | <c_attribute></c_attribute> | ||
3121 | <d_old></d_old> | ||
3122 | <e_new>Blow Kiss</e_new> | ||
3123 | <f_old_trans></f_old_trans> | ||
3124 | <f_translation>Kusshand</f_translation> | ||
3125 | </string><string><a_file>strings.xml</a_file> | ||
3126 | <b_path>//anim_express_bored</b_path> | ||
3127 | <c_attribute></c_attribute> | ||
3128 | <d_old></d_old> | ||
3129 | <e_new>Bored</e_new> | ||
3130 | <f_old_trans></f_old_trans> | ||
3131 | <f_translation>Gelangweilt</f_translation> | ||
3132 | </string><string><a_file>strings.xml</a_file> | ||
3133 | <b_path>//anim_bow</b_path> | ||
3134 | <c_attribute></c_attribute> | ||
3135 | <d_old></d_old> | ||
3136 | <e_new>Bow</e_new> | ||
3137 | <f_old_trans></f_old_trans> | ||
3138 | <f_translation>Verbeugen</f_translation> | ||
3139 | </string><string><a_file>strings.xml</a_file> | ||
3140 | <b_path>//anim_clap</b_path> | ||
3141 | <c_attribute></c_attribute> | ||
3142 | <d_old></d_old> | ||
3143 | <e_new>Clap</e_new> | ||
3144 | <f_old_trans></f_old_trans> | ||
3145 | <f_translation>Klatschen</f_translation> | ||
3146 | </string><string><a_file>strings.xml</a_file> | ||
3147 | <b_path>//anim_courtbow</b_path> | ||
3148 | <c_attribute></c_attribute> | ||
3149 | <d_old></d_old> | ||
3150 | <e_new>Court Bow</e_new> | ||
3151 | <f_old_trans></f_old_trans> | ||
3152 | <f_translation>Diener</f_translation> | ||
3153 | </string><string><a_file>strings.xml</a_file> | ||
3154 | <b_path>//anim_express_cry</b_path> | ||
3155 | <c_attribute></c_attribute> | ||
3156 | <d_old></d_old> | ||
3157 | <e_new>Cry</e_new> | ||
3158 | <f_old_trans></f_old_trans> | ||
3159 | <f_translation>Weinen</f_translation> | ||
3160 | </string><string><a_file>strings.xml</a_file> | ||
3161 | <b_path>//anim_dance1</b_path> | ||
3162 | <c_attribute></c_attribute> | ||
3163 | <d_old></d_old> | ||
3164 | <e_new>Dance 1</e_new> | ||
3165 | <f_old_trans></f_old_trans> | ||
3166 | <f_translation>Tanz 1</f_translation> | ||
3167 | </string><string><a_file>strings.xml</a_file> | ||
3168 | <b_path>//anim_dance2</b_path> | ||
3169 | <c_attribute></c_attribute> | ||
3170 | <d_old></d_old> | ||
3171 | <e_new>Dance 2</e_new> | ||
3172 | <f_old_trans></f_old_trans> | ||
3173 | <f_translation>Tanz 2</f_translation> | ||
3174 | </string><string><a_file>strings.xml</a_file> | ||
3175 | <b_path>//anim_dance3</b_path> | ||
3176 | <c_attribute></c_attribute> | ||
3177 | <d_old></d_old> | ||
3178 | <e_new>Dance 3</e_new> | ||
3179 | <f_old_trans></f_old_trans> | ||
3180 | <f_translation>Tanz 3</f_translation> | ||
3181 | </string><string><a_file>strings.xml</a_file> | ||
3182 | <b_path>//anim_dance4</b_path> | ||
3183 | <c_attribute></c_attribute> | ||
3184 | <d_old></d_old> | ||
3185 | <e_new>Dance 4</e_new> | ||
3186 | <f_old_trans></f_old_trans> | ||
3187 | <f_translation>Tanz 4</f_translation> | ||
3188 | </string><string><a_file>strings.xml</a_file> | ||
3189 | <b_path>//anim_dance5</b_path> | ||
3190 | <c_attribute></c_attribute> | ||
3191 | <d_old></d_old> | ||
3192 | <e_new>Dance 5</e_new> | ||
3193 | <f_old_trans></f_old_trans> | ||
3194 | <f_translation>Tanz 5</f_translation> | ||
3195 | </string><string><a_file>strings.xml</a_file> | ||
3196 | <b_path>//anim_dance6</b_path> | ||
3197 | <c_attribute></c_attribute> | ||
3198 | <d_old></d_old> | ||
3199 | <e_new>Dance 6</e_new> | ||
3200 | <f_old_trans></f_old_trans> | ||
3201 | <f_translation>Tanz 6</f_translation> | ||
3202 | </string><string><a_file>strings.xml</a_file> | ||
3203 | <b_path>//anim_dance7</b_path> | ||
3204 | <c_attribute></c_attribute> | ||
3205 | <d_old></d_old> | ||
3206 | <e_new>Dance 7</e_new> | ||
3207 | <f_old_trans></f_old_trans> | ||
3208 | <f_translation>Tanz 7</f_translation> | ||
3209 | </string><string><a_file>strings.xml</a_file> | ||
3210 | <b_path>//anim_dance8</b_path> | ||
3211 | <c_attribute></c_attribute> | ||
3212 | <d_old></d_old> | ||
3213 | <e_new>Dance 8</e_new> | ||
3214 | <f_old_trans></f_old_trans> | ||
3215 | <f_translation>Tanz 8</f_translation> | ||
3216 | </string><string><a_file>strings.xml</a_file> | ||
3217 | <b_path>//anim_express_disdain</b_path> | ||
3218 | <c_attribute></c_attribute> | ||
3219 | <d_old></d_old> | ||
3220 | <e_new>Disdain</e_new> | ||
3221 | <f_old_trans></f_old_trans> | ||
3222 | <f_translation>Verachten</f_translation> | ||
3223 | </string><string><a_file>strings.xml</a_file> | ||
3224 | <b_path>//anim_drink</b_path> | ||
3225 | <c_attribute></c_attribute> | ||
3226 | <d_old></d_old> | ||
3227 | <e_new>Drink</e_new> | ||
3228 | <f_old_trans></f_old_trans> | ||
3229 | <f_translation>Trinken</f_translation> | ||
3230 | </string><string><a_file>strings.xml</a_file> | ||
3231 | <b_path>//anim_express_embarrased</b_path> | ||
3232 | <c_attribute></c_attribute> | ||
3233 | <d_old></d_old> | ||
3234 | <e_new>Embarrassed</e_new> | ||
3235 | <f_old_trans></f_old_trans> | ||
3236 | <f_translation>Verlegen</f_translation> | ||
3237 | </string><string><a_file>strings.xml</a_file> | ||
3238 | <b_path>//anim_angry_fingerwag</b_path> | ||
3239 | <c_attribute></c_attribute> | ||
3240 | <d_old></d_old> | ||
3241 | <e_new>Finger Wag</e_new> | ||
3242 | <f_old_trans></f_old_trans> | ||
3243 | <f_translation>Drohen</f_translation> | ||
3244 | </string><string><a_file>strings.xml</a_file> | ||
3245 | <b_path>//anim_fist_pump</b_path> | ||
3246 | <c_attribute></c_attribute> | ||
3247 | <d_old></d_old> | ||
3248 | <e_new>Fist Pump</e_new> | ||
3249 | <f_old_trans></f_old_trans> | ||
3250 | <f_translation>Faust pumpen</f_translation> | ||
3251 | </string><string><a_file>strings.xml</a_file> | ||
3252 | <b_path>//anim_yoga_float</b_path> | ||
3253 | <c_attribute></c_attribute> | ||
3254 | <d_old></d_old> | ||
3255 | <e_new>Floating Yoga</e_new> | ||
3256 | <f_old_trans></f_old_trans> | ||
3257 | <f_translation>Yogaflieger</f_translation> | ||
3258 | </string><string><a_file>strings.xml</a_file> | ||
3259 | <b_path>//anim_express_frown</b_path> | ||
3260 | <c_attribute></c_attribute> | ||
3261 | <d_old></d_old> | ||
3262 | <e_new>Frown</e_new> | ||
3263 | <f_old_trans></f_old_trans> | ||
3264 | <f_translation>Stirnrunzeln</f_translation> | ||
3265 | </string><string><a_file>strings.xml</a_file> | ||
3266 | <b_path>//anim_impatient</b_path> | ||
3267 | <c_attribute></c_attribute> | ||
3268 | <d_old></d_old> | ||
3269 | <e_new>Impatient</e_new> | ||
3270 | <f_old_trans></f_old_trans> | ||
3271 | <f_translation>Ungeduldig</f_translation> | ||
3272 | </string><string><a_file>strings.xml</a_file> | ||
3273 | <b_path>//anim_jumpforjoy</b_path> | ||
3274 | <c_attribute></c_attribute> | ||
3275 | <d_old></d_old> | ||
3276 | <e_new>Jump For Joy</e_new> | ||
3277 | <f_old_trans></f_old_trans> | ||
3278 | <f_translation>Freudensprung</f_translation> | ||
3279 | </string><string><a_file>strings.xml</a_file> | ||
3280 | <b_path>//anim_kissmybutt</b_path> | ||
3281 | <c_attribute></c_attribute> | ||
3282 | <d_old></d_old> | ||
3283 | <e_new>Kiss My Butt</e_new> | ||
3284 | <f_old_trans></f_old_trans> | ||
3285 | <f_translation>LMA</f_translation> | ||
3286 | </string><string><a_file>strings.xml</a_file> | ||
3287 | <b_path>//anim_express_kiss</b_path> | ||
3288 | <c_attribute></c_attribute> | ||
3289 | <d_old></d_old> | ||
3290 | <e_new>Kiss</e_new> | ||
3291 | <f_old_trans></f_old_trans> | ||
3292 | <f_translation>Küssen</f_translation> | ||
3293 | </string><string><a_file>strings.xml</a_file> | ||
3294 | <b_path>//anim_laugh_short</b_path> | ||
3295 | <c_attribute></c_attribute> | ||
3296 | <d_old></d_old> | ||
3297 | <e_new>Laugh</e_new> | ||
3298 | <f_old_trans></f_old_trans> | ||
3299 | <f_translation>Lachen</f_translation> | ||
3300 | </string><string><a_file>strings.xml</a_file> | ||
3301 | <b_path>//anim_musclebeach</b_path> | ||
3302 | <c_attribute></c_attribute> | ||
3303 | <d_old></d_old> | ||
3304 | <e_new>Muscle Beach</e_new> | ||
3305 | <f_old_trans></f_old_trans> | ||
3306 | <f_translation>Posen</f_translation> | ||
3307 | </string><string><a_file>strings.xml</a_file> | ||
3308 | <b_path>//anim_no_unhappy</b_path> | ||
3309 | <c_attribute></c_attribute> | ||
3310 | <d_old></d_old> | ||
3311 | <e_new>No (Unhappy)</e_new> | ||
3312 | <f_old_trans></f_old_trans> | ||
3313 | <f_translation>Nein (Bedauernd)</f_translation> | ||
3314 | </string><string><a_file>strings.xml</a_file> | ||
3315 | <b_path>//anim_no_head</b_path> | ||
3316 | <c_attribute></c_attribute> | ||
3317 | <d_old></d_old> | ||
3318 | <e_new>No</e_new> | ||
3319 | <f_old_trans></f_old_trans> | ||
3320 | <f_translation>Nein</f_translation> | ||
3321 | </string><string><a_file>strings.xml</a_file> | ||
3322 | <b_path>//anim_nyanya</b_path> | ||
3323 | <c_attribute></c_attribute> | ||
3324 | <d_old></d_old> | ||
3325 | <e_new>Nya-nya-nya</e_new> | ||
3326 | <f_old_trans></f_old_trans> | ||
3327 | <f_translation>Ällabätsch</f_translation> | ||
3328 | </string><string><a_file>strings.xml</a_file> | ||
3329 | <b_path>//anim_punch_onetwo</b_path> | ||
3330 | <c_attribute></c_attribute> | ||
3331 | <d_old></d_old> | ||
3332 | <e_new>One-Two Punch</e_new> | ||
3333 | <f_old_trans></f_old_trans> | ||
3334 | <f_translation>Eins-Zwei-Punch</f_translation> | ||
3335 | </string><string><a_file>strings.xml</a_file> | ||
3336 | <b_path>//anim_express_open_mouth</b_path> | ||
3337 | <c_attribute></c_attribute> | ||
3338 | <d_old></d_old> | ||
3339 | <e_new>Open Mouth</e_new> | ||
3340 | <f_old_trans></f_old_trans> | ||
3341 | <f_translation>Mund offen</f_translation> | ||
3342 | </string><string><a_file>strings.xml</a_file> | ||
3343 | <b_path>//anim_peace</b_path> | ||
3344 | <c_attribute></c_attribute> | ||
3345 | <d_old></d_old> | ||
3346 | <e_new>Peace</e_new> | ||
3347 | <f_old_trans></f_old_trans> | ||
3348 | <f_translation>Friede</f_translation> | ||
3349 | </string><string><a_file>strings.xml</a_file> | ||
3350 | <b_path>//anim_point_you</b_path> | ||
3351 | <c_attribute></c_attribute> | ||
3352 | <d_old></d_old> | ||
3353 | <e_new>Point at Other</e_new> | ||
3354 | <f_old_trans></f_old_trans> | ||
3355 | <f_translation>Auf anderen zeigen</f_translation> | ||
3356 | </string><string><a_file>strings.xml</a_file> | ||
3357 | <b_path>//anim_point_me</b_path> | ||
3358 | <c_attribute></c_attribute> | ||
3359 | <d_old></d_old> | ||
3360 | <e_new>Point at Self</e_new> | ||
3361 | <f_old_trans></f_old_trans> | ||
3362 | <f_translation>Auf mich zeigen</f_translation> | ||
3363 | </string><string><a_file>strings.xml</a_file> | ||
3364 | <b_path>//anim_punch_l</b_path> | ||
3365 | <c_attribute></c_attribute> | ||
3366 | <d_old></d_old> | ||
3367 | <e_new>Punch Left</e_new> | ||
3368 | <f_old_trans></f_old_trans> | ||
3369 | <f_translation>Linker Haken</f_translation> | ||
3370 | </string><string><a_file>strings.xml</a_file> | ||
3371 | <b_path>//anim_punch_r</b_path> | ||
3372 | <c_attribute></c_attribute> | ||
3373 | <d_old></d_old> | ||
3374 | <e_new>Punch Right</e_new> | ||
3375 | <f_old_trans></f_old_trans> | ||
3376 | <f_translation>Rechter Haken</f_translation> | ||
3377 | </string><string><a_file>strings.xml</a_file> | ||
3378 | <b_path>//anim_rps_countdown</b_path> | ||
3379 | <c_attribute></c_attribute> | ||
3380 | <d_old></d_old> | ||
3381 | <e_new>RPS count</e_new> | ||
3382 | <f_old_trans></f_old_trans> | ||
3383 | <f_translation>SSP zählen</f_translation> | ||
3384 | </string><string><a_file>strings.xml</a_file> | ||
3385 | <b_path>//anim_rps_paper</b_path> | ||
3386 | <c_attribute></c_attribute> | ||
3387 | <d_old></d_old> | ||
3388 | <e_new>RPS paper</e_new> | ||
3389 | <f_old_trans></f_old_trans> | ||
3390 | <f_translation>SSP Papier</f_translation> | ||
3391 | </string><string><a_file>strings.xml</a_file> | ||
3392 | <b_path>//anim_rps_rock</b_path> | ||
3393 | <c_attribute></c_attribute> | ||
3394 | <d_old></d_old> | ||
3395 | <e_new>RPS rock</e_new> | ||
3396 | <f_old_trans></f_old_trans> | ||
3397 | <f_translation>SSP Stein</f_translation> | ||
3398 | </string><string><a_file>strings.xml</a_file> | ||
3399 | <b_path>//anim_rps_scissors</b_path> | ||
3400 | <c_attribute></c_attribute> | ||
3401 | <d_old></d_old> | ||
3402 | <e_new>RPS scissors</e_new> | ||
3403 | <f_old_trans></f_old_trans> | ||
3404 | <f_translation>SSP Schere</f_translation> | ||
3405 | </string><string><a_file>strings.xml</a_file> | ||
3406 | <b_path>//anim_express_repulsed</b_path> | ||
3407 | <c_attribute></c_attribute> | ||
3408 | <d_old></d_old> | ||
3409 | <e_new>Repulsed</e_new> | ||
3410 | <f_old_trans></f_old_trans> | ||
3411 | <f_translation>Angewidert</f_translation> | ||
3412 | </string><string><a_file>strings.xml</a_file> | ||
3413 | <b_path>//anim_kick_roundhouse_r</b_path> | ||
3414 | <c_attribute></c_attribute> | 1213 | <c_attribute></c_attribute> |
3415 | <d_old></d_old> | 1214 | <d_old></d_old> |
3416 | <e_new>Roundhouse Kick</e_new> | 1215 | <e_new>Offline</e_new> |
3417 | <f_old_trans></f_old_trans> | 1216 | <f_old_trans></f_old_trans> |
3418 | <f_translation>Rundkick</f_translation> | 1217 | <f_translation>Offline</f_translation> |
3419 | </string><string><a_file>strings.xml</a_file> | 1218 | </string><string><a_file>strings.xml</a_file> |
3420 | <b_path>//anim_express_sad</b_path> | 1219 | <b_path>//whisper</b_path> |
3421 | <c_attribute></c_attribute> | 1220 | <c_attribute></c_attribute> |
3422 | <d_old></d_old> | 1221 | <d_old></d_old> |
3423 | <e_new>Sad</e_new> | 1222 | <e_new>whispers:</e_new> |
3424 | <f_old_trans></f_old_trans> | 1223 | <f_old_trans></f_old_trans> |
3425 | <f_translation>Traurig</f_translation> | 1224 | <f_translation>Flüstert:</f_translation> |
3426 | </string><string><a_file>strings.xml</a_file> | 1225 | </string><string><a_file>strings.xml</a_file> |
3427 | <b_path>//anim_salute</b_path> | 1226 | <b_path>//shout</b_path> |
3428 | <c_attribute></c_attribute> | 1227 | <c_attribute></c_attribute> |
3429 | <d_old></d_old> | 1228 | <d_old></d_old> |
3430 | <e_new>Salute</e_new> | 1229 | <e_new>shouts:</e_new> |
3431 | <f_old_trans></f_old_trans> | 1230 | <f_old_trans></f_old_trans> |
3432 | <f_translation>Salutieren</f_translation> | 1231 | <f_translation>Ruft:</f_translation> |
3433 | </string><string><a_file>strings.xml</a_file> | ||
3434 | <b_path>//anim_shout</b_path> | ||
3435 | <c_attribute></c_attribute> | ||
3436 | <d_old></d_old> | ||
3437 | <e_new>Shout</e_new> | ||
3438 | <f_old_trans></f_old_trans> | ||
3439 | <f_translation>Rufen</f_translation> | ||
3440 | </string><string><a_file>strings.xml</a_file> | ||
3441 | <b_path>//anim_express_shrug</b_path> | ||
3442 | <c_attribute></c_attribute> | ||
3443 | <d_old></d_old> | ||
3444 | <e_new>Shrug</e_new> | ||
3445 | <f_old_trans></f_old_trans> | ||
3446 | <f_translation>Schulterzucken</f_translation> | ||
3447 | </string><string><a_file>strings.xml</a_file> | ||
3448 | <b_path>//anim_express_smile</b_path> | ||
3449 | <c_attribute></c_attribute> | ||
3450 | <d_old></d_old> | ||
3451 | <e_new>Smile</e_new> | ||
3452 | <f_old_trans></f_old_trans> | ||
3453 | <f_translation>Lächeln</f_translation> | ||
3454 | </string><string><a_file>strings.xml</a_file> | ||
3455 | <b_path>//anim_smoke_idle</b_path> | ||
3456 | <c_attribute></c_attribute> | ||
3457 | <d_old></d_old> | ||
3458 | <e_new>Smoke Idle</e_new> | ||
3459 | <f_old_trans></f_old_trans> | ||
3460 | <f_translation>Zigarette halten</f_translation> | ||
3461 | </string><string><a_file>strings.xml</a_file> | ||
3462 | <b_path>//anim_smoke_inhale</b_path> | ||
3463 | <c_attribute></c_attribute> | ||
3464 | <d_old></d_old> | ||
3465 | <e_new>Smoke Inhale</e_new> | ||
3466 | <f_old_trans></f_old_trans> | ||
3467 | <f_translation>Rauchen</f_translation> | ||
3468 | </string><string><a_file>strings.xml</a_file> | ||
3469 | <b_path>//anim_smoke_throw_down</b_path> | ||
3470 | <c_attribute></c_attribute> | ||
3471 | <d_old></d_old> | ||
3472 | <e_new>Smoke Throw Down</e_new> | ||
3473 | <f_old_trans></f_old_trans> | ||
3474 | <f_translation>Zigarette wegwerfen</f_translation> | ||
3475 | </string><string><a_file>strings.xml</a_file> | ||
3476 | <b_path>//anim_express_surprise</b_path> | ||
3477 | <c_attribute></c_attribute> | ||
3478 | <d_old></d_old> | ||
3479 | <e_new>Surprise</e_new> | ||
3480 | <f_old_trans></f_old_trans> | ||
3481 | <f_translation>Überraschung</f_translation> | ||
3482 | </string><string><a_file>strings.xml</a_file> | ||
3483 | <b_path>//anim_sword_strike_r</b_path> | ||
3484 | <c_attribute></c_attribute> | ||
3485 | <d_old></d_old> | ||
3486 | <e_new>Sword Strike</e_new> | ||
3487 | <f_old_trans></f_old_trans> | ||
3488 | <f_translation>Schwerthieb</f_translation> | ||
3489 | </string><string><a_file>strings.xml</a_file> | ||
3490 | <b_path>//anim_angry_tantrum</b_path> | ||
3491 | <c_attribute></c_attribute> | ||
3492 | <d_old></d_old> | ||
3493 | <e_new>Tantrum</e_new> | ||
3494 | <f_old_trans></f_old_trans> | ||
3495 | <f_translation>Wutanfall</f_translation> | ||
3496 | </string><string><a_file>strings.xml</a_file> | ||
3497 | <b_path>//anim_express_tongue_out</b_path> | ||
3498 | <c_attribute></c_attribute> | ||
3499 | <d_old></d_old> | ||
3500 | <e_new>TongueOut</e_new> | ||
3501 | <f_old_trans></f_old_trans> | ||
3502 | <f_translation>Zunge rausstrecken</f_translation> | ||
3503 | </string><string><a_file>strings.xml</a_file> | ||
3504 | <b_path>//anim_hello</b_path> | ||
3505 | <c_attribute></c_attribute> | ||
3506 | <d_old></d_old> | ||
3507 | <e_new>Wave</e_new> | ||
3508 | <f_old_trans></f_old_trans> | ||
3509 | <f_translation>Winken</f_translation> | ||
3510 | </string><string><a_file>strings.xml</a_file> | ||
3511 | <b_path>//anim_whisper</b_path> | ||
3512 | <c_attribute></c_attribute> | ||
3513 | <d_old></d_old> | ||
3514 | <e_new>Whisper</e_new> | ||
3515 | <f_old_trans></f_old_trans> | ||
3516 | <f_translation>Flüstern</f_translation> | ||
3517 | </string><string><a_file>strings.xml</a_file> | ||
3518 | <b_path>//anim_whistle</b_path> | ||
3519 | <c_attribute></c_attribute> | ||
3520 | <d_old></d_old> | ||
3521 | <e_new>Whistle</e_new> | ||
3522 | <f_old_trans></f_old_trans> | ||
3523 | <f_translation>Pfeifen</f_translation> | ||
3524 | </string><string><a_file>strings.xml</a_file> | ||
3525 | <b_path>//anim_express_wink</b_path> | ||
3526 | <c_attribute></c_attribute> | ||
3527 | <d_old></d_old> | ||
3528 | <e_new>Wink</e_new> | ||
3529 | <f_old_trans></f_old_trans> | ||
3530 | <f_translation>Zwinkern</f_translation> | ||
3531 | </string><string><a_file>strings.xml</a_file> | ||
3532 | <b_path>//anim_wink_hollywood</b_path> | ||
3533 | <c_attribute></c_attribute> | ||
3534 | <d_old></d_old> | ||
3535 | <e_new>Wink (Hollywood)</e_new> | ||
3536 | <f_old_trans></f_old_trans> | ||
3537 | <f_translation>Zwinkern (Hollywood)</f_translation> | ||
3538 | </string><string><a_file>strings.xml</a_file> | ||
3539 | <b_path>//anim_express_worry</b_path> | ||
3540 | <c_attribute></c_attribute> | ||
3541 | <d_old></d_old> | ||
3542 | <e_new>Worry</e_new> | ||
3543 | <f_old_trans></f_old_trans> | ||
3544 | <f_translation>Sorgenvoll</f_translation> | ||
3545 | </string><string><a_file>strings.xml</a_file> | ||
3546 | <b_path>//anim_yes_happy</b_path> | ||
3547 | <c_attribute></c_attribute> | ||
3548 | <d_old></d_old> | ||
3549 | <e_new>Yes (Happy)</e_new> | ||
3550 | <f_old_trans></f_old_trans> | ||
3551 | <f_translation>Ja (Erfreut)</f_translation> | ||
3552 | </string><string><a_file>strings.xml</a_file> | ||
3553 | <b_path>//anim_yes_head</b_path> | ||
3554 | <c_attribute></c_attribute> | ||
3555 | <d_old></d_old> | ||
3556 | <e_new>Yes</e_new> | ||
3557 | <f_old_trans></f_old_trans> | ||
3558 | <f_translation>Ja</f_translation> | ||
3559 | </string> | 1232 | </string> |
3560 | <string><a_file>alerts.xml</a_file> | ||
3561 | <b_path>//ChangeSkin/message</b_path> | ||
3562 | <c_attribute></c_attribute> | ||
3563 | <d_old></d_old> | ||
3564 | <e_new> | ||
3565 | The new skin will appear after you restart [SECOND_LIFE]. | ||
3566 | </e_new> | ||
3567 | <f_old_trans></f_old_trans> | ||
3568 | <f_translation> Die neue Benutzeroberfläche wird nach einem Neustart von [SECOND_LIFE] angewendet. | ||
3569 | </f_translation></string><string><a_file>notify.xml</a_file> | ||
3570 | <b_path>//UnableToOpenCommandURL/message</b_path> | ||
3571 | <c_attribute></c_attribute> | ||
3572 | <d_old></d_old> | ||
3573 | <e_new> | ||
3574 | The URL you clicked cannot be opened from this web browser. | ||
3575 | </e_new> | ||
3576 | <f_old_trans></f_old_trans> | ||
3577 | <f_translation> Die URL, die Sie angeklickt haben, kann in diesem Web Browser nicht geöffnet werden. | ||
3578 | </f_translation></string><string><a_file>panel_preferences_skins.xml</a_file> | ||
3579 | <b_path>/Skins panel</b_path> | ||
3580 | <c_attribute>label</c_attribute> | ||
3581 | <d_old></d_old> | ||
3582 | <e_new>Skins</e_new> | ||
3583 | <f_old_trans></f_old_trans> | ||
3584 | <f_translation>Benutzeroberflächen</f_translation></string><string><a_file>panel_preferences_skins.xml</a_file> | ||
3585 | <b_path>/Skins panel/muting_text</b_path> | ||
3586 | <c_attribute></c_attribute> | ||
3587 | <d_old></d_old> | ||
3588 | <e_new> | ||
3589 | Select a skin (requires restart): | ||
3590 | </e_new> | ||
3591 | <f_old_trans></f_old_trans> | ||
3592 | <f_translation> | ||
3593 | Wählen Sie eine Benutzeroberfläche aus (erfordert Neustart): | ||
3594 | </f_translation></string><string><a_file>panel_preferences_skins.xml</a_file> | ||
3595 | <b_path>/Skins panel/skin_selection/default</b_path> | ||
3596 | <c_attribute></c_attribute> | ||
3597 | <d_old></d_old> | ||
3598 | <e_new> | ||
3599 | Classic | ||
3600 | </e_new> | ||
3601 | <f_old_trans></f_old_trans> | ||
3602 | <f_translation> | ||
3603 | Klassisch | ||
3604 | </f_translation></string><string><a_file>panel_preferences_skins.xml</a_file> | ||
3605 | <b_path>/Skins panel/skin_selection/silver</b_path> | ||
3606 | <c_attribute></c_attribute> | ||
3607 | <d_old></d_old> | ||
3608 | <e_new> | ||
3609 | Silver | ||
3610 | </e_new> | ||
3611 | <f_old_trans></f_old_trans> | ||
3612 | <f_translation> | ||
3613 | Silber | ||
3614 | </f_translation></string> | ||
3615 | </strings> | 1233 | </strings> |
diff --git a/linden/indra/newview/skins/default/xui/de/need_to_update.xml b/linden/indra/newview/skins/default/xui/de/need_to_update.xml index 87b80a4..8bf3f74 100644 --- a/linden/indra/newview/skins/default/xui/de/need_to_update.xml +++ b/linden/indra/newview/skins/default/xui/de/need_to_update.xml | |||
@@ -2,519 +2,624 @@ | |||
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>//ClickPublishHelpAvatar/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 | Selecting "Show in Search" will show: |
9 | ANY objects you may have in-world. Be VERY careful when handing | 9 | - my profile in search results |
10 | out this permission. | 10 | - a link to my profile in public group pages |
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 | Selecting "Show in Search" will show: |
15 | delete or take ANY objects you may have in-world. Be VERY careful | 14 | - my profile in search results |
16 | when handing out this permission. | 15 | - a link to my profile in public group pages |
17 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | ||
18 | </e_new> | 16 | </e_new> |
19 | <f_translation> | 17 | <f_translation> |
20 | Die Gewährung von Änderungsrechten an andere Einwohner ermöglicht es diesen, | 18 | "In Suche anzeigen" wird: |
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 | 19 | - Ihr Profil in den Suchergebnissen anzeigen |
22 | dieser Erlaubnis. | 20 | - einen Link auf Ihr Profil auf öffentlichen Gruppenseiten anzeigen |
23 | Möchten Sie [FIRST_NAME] [LAST_NAME] Änderungsrechte gewähren? | ||
24 | </f_translation> | 21 | </f_translation> |
25 | <f_old_trans> | 22 | <f_old_trans> |
26 | Die Gewährung von Änderungsrechten an einen anderen Einwohner ermöglicht es diesem, | 23 | In Suche anzeigen |
27 | JEDES BELIEBIGE Objekt zu ändern, das Sie in der Second Life-Welt besitzen. Seien Sie SEHR vorsichtig, | ||
28 | wenn Sie diese Erlaubnis erteilen. | ||
29 | Möchten Sie [FIRST_NAME] [LAST_NAME] Änderungsrechte gewähren? | ||
30 | </f_old_trans> | 24 | </f_old_trans> |
31 | </string><string><a_file>alerts.xml</a_file> | 25 | </string><string><a_file>alerts.xml</a_file> |
32 | <b_path>//CannotBuyLandNoRegion/message</b_path> | 26 | <b_path>//ClickWebProfileHelpAvatar/message</b_path> |
33 | <c_attribute></c_attribute> | 27 | <c_attribute></c_attribute> |
34 | <d_old> | 28 | <d_old> |
35 | Unable to buy land: | 29 | If this resident has a web profile URL set then you can: |
36 | Cannot find the region this land is in. | 30 | * Click Load to load the page with the embedded web browser. |
31 | * Click Open to view externally in your default web browser. | ||
32 | |||
33 | When viewing your profile you can enter any URL as your Web Profile. | ||
34 | Residents can visit the URL you specify when they view your profile. | ||
37 | </d_old> | 35 | </d_old> |
38 | <e_new> | 36 | <e_new> |
39 | Unable to buy land: | 37 | If this resident has set a web profile URL then you can: |
40 | Cannot find the region this land is in. | 38 | * Click "Load" to load the page with the embedded web browser. |
39 | * Click Load->"Open in external browser" to view externally. | ||
40 | * Click Load->"Home URL" to return to resident's web profile if you've navigated away. | ||
41 | |||
42 | When viewing your own profile you can enter any URL as your web profile and click OK to set it. | ||
43 | Other residents can visit the URL you set when they view your profile. | ||
41 | </e_new> | 44 | </e_new> |
42 | <f_translation> | 45 | <f_translation> |
43 | Land kann nicht gekauft werden: | 46 | Wenn dieser Einwohner eine Webprofil-URL angegeben hat, können Sie: |
44 | Kann die Region nicht finden, in der sich dieses Land befindet. | 47 | * Auf 'Laden' klicken und die Seite im integrierten Browser anzuzeigen. |
48 | * Auf Laden->"In external Browser öffnen" klicken um die Seite extern anzeigen zu lassen. | ||
49 | * Auf Laden->"Home-URL" klicken um zum Webprofil des Benutzers zurückzukehren. | ||
50 | |||
51 | In Ihrem eigenen Profil können Sie jede beliebige URL als Ihr Webprofil eingeben und mit OK übernehmen. | ||
52 | Wenn andere Einwohner Ihr Profil betrachten, können sie diese URL besuchen. | ||
45 | </f_translation> | 53 | </f_translation> |
46 | <f_old_trans> | 54 | <f_old_trans> |
47 | Land kann nicht gekauft werden: | 55 | Wenn dieser Einwohner einen Webprofil-URL angegeben hat, können Sie: |
48 | Kann die Region nicht finden, in der sich dieses Land befindet. | 56 | * Auf 'Laden' klicken und die Seite im integrierten Browser anzeigen. |
57 | * Auf 'Öffnen' klicken und die Seite im externen Browser anzeigen. | ||
58 | |||
59 | In Ihrem Profil können Sie jeden URL als Webprofil festlegen. | ||
60 | Bei Anzeige ihres Profils kann jeder Einwohner diesen URL öffnen. | ||
49 | </f_old_trans> | 61 | </f_old_trans> |
50 | </string><string><a_file>alerts.xml</a_file> | 62 | </string><string><a_file>alerts.xml</a_file> |
51 | <b_path>//ParcelCanPlayMedia/message</b_path> | 63 | <b_path>//PromptMissingSubjMsg/message</b_path> |
52 | <c_attribute></c_attribute> | 64 | <c_attribute></c_attribute> |
53 | <d_old> | 65 | <d_old> |
54 | This location can play streaming video. | 66 | Send postcard with the default subject or message? |
55 | Streaming video requires a 768 kbps or | ||
56 | faster Internet connection. | ||
57 | |||
58 | Play streaming video when available? | ||
59 | (You can change this option later under | ||
60 | Preferences > Audio & Video.) | ||
61 | </d_old> | 67 | </d_old> |
62 | <e_new> | 68 | <e_new> |
63 | This location can play streaming media. | 69 | Email snapshot with the default subject or message? |
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 | </e_new> |
70 | <f_translation> | 71 | <f_translation> |
71 | Dieser Ort kann Streaming-Medien abspielen. | 72 | Foto mit Standardbetreff bzw. -nachricht als E-Mail versenden? |
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> | 73 | </f_translation> |
78 | <f_old_trans> | 74 | <f_old_trans> |
79 | Dieser Ort kann Streaming-Video abspielen. | 75 | Postkarte mit Standardbetreff bzw. -nachricht senden? |
80 | Streaming-Video erfordert eine Internetverbindung | ||
81 | mit mindestens 768 kbit/s. | ||
82 | |||
83 | Streaming-Video abspielen, wenn verfügbar? | ||
84 | (Sie können diese Option später unter | ||
85 | 'Einstellungen' > 'Audio & Video' ändern.) | ||
86 | </f_old_trans> | 76 | </f_old_trans> |
87 | </string><string><a_file>alerts.xml</a_file> | 77 | </string><string><a_file>alerts.xml</a_file> |
88 | <b_path>//ConfirmClearBrowserCache/message</b_path> | 78 | <b_path>//ErrorUploadingPostcard/message</b_path> |
89 | <c_attribute></c_attribute> | 79 | <c_attribute></c_attribute> |
90 | <d_old> | 80 | <d_old> |
91 | Are you sure you want to clear your | 81 | There was a problem uploading a postcard due to the following reason: [REASON] |
92 | browser cache? | ||
93 | </d_old> | 82 | </d_old> |
94 | <e_new> | 83 | <e_new> |
95 | Are you sure you want to clear your browser cache? | 84 | There was a problem sending a snapshot due to the following reason: [REASON] |
96 | </e_new> | 85 | </e_new> |
97 | <f_translation> | 86 | <f_translation> |
98 | Möchten Sie Ihren Browser-Cache wirklich leeren? | 87 | Ein Foto konnte aus folgendem Grund nicht gesendet werden: [REASON] |
99 | </f_translation> | 88 | </f_translation> |
100 | <f_old_trans> | 89 | <f_old_trans> |
101 | Möchten Sie Ihren Browser-Cache | 90 | Eine Postkarte konnte aus folgendem Grund nicht hochgeladen werden: [REASON] |
102 | wirklich löschen? | ||
103 | </f_old_trans> | 91 | </f_old_trans> |
104 | </string><string><a_file>alerts.xml</a_file> | 92 | </string><string><a_file>alerts.xml</a_file> |
105 | <b_path>//HelpWaterNormalMap/message</b_path> | 93 | <b_path>//MustHaveAccountToLogIn/message</b_path> |
106 | <c_attribute></c_attribute> | 94 | <c_attribute></c_attribute> |
107 | <d_old> | 95 | <d_old> |
108 | Controls what normal map is layered across the water | 96 | You must have an account to connect to [SECOND_LIFE]. |
109 | to determine reflections/refractions. | 97 | Go to www.secondlife.com to create an account? |
110 | </d_old> | 98 | </d_old> |
111 | <e_new> | 99 | <e_new> |
112 | Controls what normal map is layered across the water to determine reflections/refractions. | 100 | Oops! Something was left blank. |
101 | You need to enter both the First and Last name of your avatar. | ||
102 | |||
103 | You need an account to enter [SECOND_LIFE]. Would you like to create one now? | ||
104 | </e_new> | ||
105 | <f_translation> | ||
106 | Hoppla! Da fehlt noch etwas. | ||
107 | Geben Sie bitte den Vor- und den Nachnamen Ihres Avatars ein. | ||
108 | |||
109 | Sie benötigen ein Benutzerkonto, um [SECOND_LIFE] betreten zu können.Möchten Sie jetzt ein Benutzerkonto anlegen? | ||
110 | </f_translation> | ||
111 | <f_old_trans> | ||
112 | Sie benötigen ein Konto, um sich in [SECOND_LIFE] anmelden zu können. | ||
113 | Möchten Sie auf www.secondlife.com ein Konto anlegen? | ||
114 | </f_old_trans> | ||
115 | </string><string><a_file>alerts.xml</a_file> | ||
116 | <b_path>//MustHaveAccountToLogIn/OK</b_path> | ||
117 | <c_attribute></c_attribute> | ||
118 | <d_old> | ||
119 | OK | ||
120 | </d_old> | ||
121 | <e_new> | ||
122 | Create a new account | ||
113 | </e_new> | 123 | </e_new> |
114 | <f_translation> | 124 | <f_translation> |
115 | Ermöglicht die Auswahl einer Normal-Map zur Berechnung von Reflexionen/Brechungen auf dem Wasser. | 125 | Neues Benutzerkonto anlegen |
116 | </f_translation> | 126 | </f_translation> |
117 | <f_old_trans> | 127 | <f_old_trans> |
118 | Ermöglicht die Auswahl einer Normal-Map zur | 128 | OK |
119 | Berechnung von Reflexionen/Brechungen auf dem Wasser. | ||
120 | </f_old_trans> | 129 | </f_old_trans> |
121 | </string><string><a_file>alerts.xml</a_file> | 130 | </string><string><a_file>alerts.xml</a_file> |
122 | <b_path>//HelpWaterWave1/message</b_path> | 131 | <b_path>//MustHaveAccountToLogIn/Cancel</b_path> |
123 | <c_attribute></c_attribute> | 132 | <c_attribute></c_attribute> |
124 | <d_old> | 133 | <d_old> |
125 | Controls where and how fast the large scaled version of the normal | 134 | Cancel |
126 | map moves in the X and Y direction. | ||
127 | </d_old> | 135 | </d_old> |
128 | <e_new> | 136 | <e_new> |
129 | Controls where and how fast the large scaled version of the normal map moves in the X and Y direction. | 137 | Try again |
130 | </e_new> | 138 | </e_new> |
131 | <f_translation> | 139 | <f_translation> |
132 | Steuert die Bewegungsgeschwindigkeit und -richtung der großen Normal-Map-Version in X- und Y-Richtung. | 140 | Erneut versuchen |
133 | </f_translation> | 141 | </f_translation> |
134 | <f_old_trans> | 142 | <f_old_trans> |
135 | Steuert die Bewegungsgeschwindigkeit und -richtung der großen | 143 | Abbrechen |
136 | Normal-Map-Version in X- und Y-Richtung. | 144 | </f_old_trans> |
145 | </string><string><a_file>alerts.xml</a_file> | ||
146 | <b_path>//ChangeSkin/message</b_path> | ||
147 | <c_attribute></c_attribute> | ||
148 | <d_old> | ||
149 | New skin will appear after you restart [SECOND_LIFE]. | ||
150 | </d_old> | ||
151 | <e_new> | ||
152 | The new skin will appear after you restart [SECOND_LIFE]. | ||
153 | </e_new> | ||
154 | <f_translation> | ||
155 | Die neue Haut wird nach dem erneuten Start von [SECOND_LIFE] angezeigt. | ||
156 | </f_translation> | ||
157 | <f_old_trans> | ||
158 | Die neue Benutzeroberfläche wird nach einem Neustart von [SECOND_LIFE] erscheinen. | ||
137 | </f_old_trans> | 159 | </f_old_trans> |
138 | </string><string><a_file>alerts.xml</a_file> | 160 | </string><string><a_file>alerts.xml</a_file> |
139 | <b_path>//HelpWaterWave2/message</b_path> | 161 | <b_path>//CannotGiveCategory/message</b_path> |
140 | <c_attribute></c_attribute> | 162 | <c_attribute></c_attribute> |
141 | <d_old> | 163 | <d_old> |
142 | Controls where and how fast the the small scaled version of the | 164 | You do not have permission to transfer |
143 | normal map moves in the X and Y direction. | 165 | the selected folder. |
144 | </d_old> | 166 | </d_old> |
145 | <e_new> | 167 | <e_new> |
146 | Controls where and how fast the the small scaled version of the normal map moves in the X and Y direction. | 168 | You do not have permission to transfer |
169 | the selected folder. | ||
147 | </e_new> | 170 | </e_new> |
148 | <f_translation> | 171 | <f_translation> |
149 | Steuert die Bewegungsgeschwindigkeit und -richtung der kleinen Normal-Map-Version in X- und Y-Richtung. | 172 | Sie sind nicht berechtigt, den ausgewählten |
173 | Ordner zu kopieren. | ||
150 | </f_translation> | 174 | </f_translation> |
151 | <f_old_trans> | 175 | <f_old_trans> |
152 | Steuert die Bewegungsgeschwindigkeit und -richtung der kleinen | 176 | Sie sind nicht berechtigt, die ausgewählten |
153 | Normal-Map-Version in X- und Y-Richtung. | 177 | Ordner zu kopieren. |
154 | </f_old_trans> | 178 | </f_old_trans> |
155 | </string><string><a_file>floater_buy_land.xml</a_file> | 179 | </string><string><a_file>alerts.xml</a_file> |
156 | <b_path>/buy land/land_use_reason</b_path> | 180 | <b_path>//CannotBuyLandNoRegion/message</b_path> |
157 | <c_attribute></c_attribute> | 181 | <c_attribute></c_attribute> |
158 | <d_old> | 182 | <d_old> |
159 | You hold 1,309 square meters of land. | 183 | Unable to buy land: |
160 | This parcel is 512 square meters of land. | 184 | Cannot find the region this land is in. |
161 | </d_old> | 185 | </d_old> |
162 | <e_new> | 186 | <e_new> |
163 | You hold 1,309 square meters of land. | 187 | Unable to buy land: |
164 | This parcel is 512 square meters of land. | 188 | Cannot find the region this land is in. |
165 | </e_new> | 189 | </e_new> |
166 | <f_translation> | 190 | <f_translation> |
167 | Sie besitzen 1.309 qm Land. | 191 | Land kann nicht gekauft werden: |
168 | Diese Parzelle ist 512 qm groß. | 192 | Kann die Region nicht finden, in der sich dieses Land befindet. |
169 | </f_translation> | 193 | </f_translation> |
170 | <f_old_trans> | 194 | <f_old_trans> |
171 | Sie besitzen 1.309 qm Land. | 195 | Land kann nicht gekauft werden: |
172 | Diese Parzelle ist 512 qm groß. | 196 | Die Region, in der sich dieses Land befindet, kann nicht gefunden werden. |
173 | </f_old_trans> | 197 | </f_old_trans> |
174 | </string><string><a_file>floater_buy_land.xml</a_file> | 198 | </string><string><a_file>alerts.xml</a_file> |
175 | <b_path>/buy land/multiple_parcels_selected</b_path> | 199 | <b_path>//YouHaveBeenLoggedOut/message</b_path> |
176 | <c_attribute></c_attribute> | 200 | <c_attribute></c_attribute> |
177 | <d_old> | 201 | <d_old> |
178 | Multiple different parcels selected. | 202 | You have been logged out of [SECOND_LIFE]: |
179 | Try selecting a smaller area. | 203 | [MESSAGE] |
180 | </d_old> | 204 | |
205 | Click Continue to look at existing IM and chat. | ||
206 | You will not be able to perform any other operations. | ||
207 | Click Quit to exit [SECOND_LIFE] immediately. | ||
208 | </d_old> | ||
181 | <e_new> | 209 | <e_new> |
182 | Multiple different parcels selected. | 210 | You have been logged out of [SECOND_LIFE]: |
183 | Try selecting a smaller area. | 211 | [MESSAGE] |
184 | </e_new> | 212 | You can still look at existing IM and chat by clicking 'View IM & Chat'. Otherwise, click 'Quit' to exit [SECOND_LIFE] immediately. |
213 | </e_new> | ||
185 | <f_translation> | 214 | <f_translation> |
186 | Mehrere unterschiedliche Parzellen ausgewählt. | 215 | Sie wurden von [SECOND_LIFE] abgemeldet: |
187 | Verkleinern Sie Ihre Auswahl. | 216 | [MESSAGE] |
188 | </f_translation> | 217 | Klicken Sie auf 'IM & Chat anzeigen', um vorhandene Nachrichten und Chat weiterhin anzuzeigen. Klicken Sie andernfalls auf 'Beenden', um [SECOND_LIFE] sofort zu beenden. |
218 | </f_translation> | ||
189 | <f_old_trans> | 219 | <f_old_trans> |
190 | Mehrere unterschiedliche Parzellen ausgewählt. | 220 | Sie wurden von [SECOND_LIFE] abgemeldet: |
191 | Verkleinern Sie Ihre Auswahl. | 221 | [MESSAGE] |
192 | </f_old_trans> | 222 | |
193 | </string><string><a_file>floater_buy_land.xml</a_file> | 223 | Klicken Sie auf 'Weiter', um IM und Chat anzuzeigen. |
194 | <b_path>/buy land/not_owned_by_you</b_path> | 224 | Andere Optionen sind nicht mehr möglich. |
225 | Klicken Sie auf 'Beenden', um [SECOND_LIFE] zu schließen. | ||
226 | </f_old_trans> | ||
227 | </string><string><a_file>alerts.xml</a_file> | ||
228 | <b_path>//YouHaveBeenLoggedOut/Continue</b_path> | ||
195 | <c_attribute></c_attribute> | 229 | <c_attribute></c_attribute> |
196 | <d_old> | 230 | <d_old> |
197 | Land owned by another user is selected. | 231 | Continue |
198 | Try selecting a smaller area. | 232 | </d_old> |
199 | </d_old> | ||
200 | <e_new> | 233 | <e_new> |
201 | Land owned by another user is selected. | 234 | View IM & Chat |
202 | Try selecting a smaller area. | 235 | </e_new> |
203 | </e_new> | ||
204 | <f_translation> | 236 | <f_translation> |
205 | Sie haben Land ausgewählt, das einer anderen Person gehört. | 237 | IM & Chat anzeigen |
206 | Verkleinern Sie Ihre Auswahl. | 238 | </f_translation> |
207 | </f_translation> | ||
208 | <f_old_trans> | 239 | <f_old_trans> |
209 | Sie haben Land ausgewählt, das einer anderen Person gehört. | 240 | Weiter |
210 | Verkleinern Sie Ihre Auswahl. | 241 | </f_old_trans> |
211 | </f_old_trans> | 242 | </string><string><a_file>alerts.xml</a_file> |
212 | </string><string><a_file>floater_buy_land.xml</a_file> | 243 | <b_path>//AddFriend/message</b_path> |
213 | <b_path>/buy land/for_first_time_group</b_path> | ||
214 | <c_attribute></c_attribute> | 244 | <c_attribute></c_attribute> |
215 | <d_old> | 245 | <d_old> |
216 | This land is reserved for first time buyers. | 246 | Friends can give permissions to |
217 | You cannot buy it for a group. | 247 | track each other on the map and |
218 | </d_old> | 248 | receive online status updates. |
249 | |||
250 | Offer friendship to [NAME]? | ||
251 | </d_old> | ||
219 | <e_new> | 252 | <e_new> |
220 | This land is reserved for first time buyers. | 253 | Friends can give permissions to track each |
221 | You cannot buy it for a group. | 254 | other on the map and receive online status updates. |
222 | </e_new> | 255 | |
256 | Offer friendship to [NAME]? | ||
257 | </e_new> | ||
223 | <f_translation> | 258 | <f_translation> |
224 | Dieses Land ist für Erstkäufer reserviert. | 259 | Freunde können sich gegenseitig die Berechtigung |
225 | Es kann nicht für eine Gruppe gekauft werden. | 260 | erteilen, sich auf der Karte zu verfolgen und den jeweiligen Online-Status einzusehen. |
226 | </f_translation> | 261 | |
262 | [NAME] die Freundschaft anbieten? | ||
263 | </f_translation> | ||
227 | <f_old_trans> | 264 | <f_old_trans> |
228 | Dieses Land ist für Erstkäufer reserviert. | 265 | Freunde können einander die Erlaubnis erteilen, |
229 | Es kann nicht für eine Gruppe gekauft werden. | 266 | sich gegenseitig auf der Karte verfolgen und |
230 | </f_old_trans> | 267 | ihren Online-Status einsehen zu können. |
231 | </string><string><a_file>floater_buy_land.xml</a_file> | 268 | |
232 | <b_path>/buy land/for_first_time</b_path> | 269 | [NAME] Freundschaft anbieten? |
270 | </f_old_trans> | ||
271 | </string><string><a_file>alerts.xml</a_file> | ||
272 | <b_path>//ConfirmClearCookies/message</b_path> | ||
233 | <c_attribute></c_attribute> | 273 | <c_attribute></c_attribute> |
234 | <d_old> | 274 | <d_old> |
235 | This land is reserved for first time buyers. | 275 | Are you sure you want to clear |
236 | You already own land. | 276 | your cookies? |
237 | </d_old> | 277 | </d_old> |
238 | <e_new> | 278 | <e_new> |
239 | This land is reserved for first time buyers. | 279 | Are you sure you want to clear your cookies? |
240 | You already own land. | 280 | </e_new> |
241 | </e_new> | ||
242 | <f_translation> | 281 | <f_translation> |
243 | Dieses Land ist für Erstkäufer reserviert. | 282 | Sind Sie sicher, dass Sie Ihre Cookies löschen möchten? |
244 | Sie besitzen bereits Land. | 283 | </f_translation> |
245 | </f_translation> | ||
246 | <f_old_trans> | 284 | <f_old_trans> |
247 | Dieses Land ist für Erstkufer reserviert. | 285 | Mchten Sie Ihre Cookies |
248 | Sie besitzen bereits Land. | 286 | wirklich löschen? |
249 | </f_old_trans> | 287 | </f_old_trans> |
250 | </string><string><a_file>floater_gesture.xml</a_file> | 288 | </string><string><a_file>alerts.xml</a_file> |
251 | <b_path>/gestures/help_label</b_path> | 289 | <b_path>//Cannot_Purchase_an_Attachment/message</b_path> |
252 | <c_attribute></c_attribute> | 290 | <c_attribute></c_attribute> |
253 | <d_old> | 291 | <d_old> |
254 | Click a gesture or press a key to play animations and sounds. | 292 | Items may not be purchased while |
255 | </d_old> | 293 | they are part of an attachment. |
294 | </d_old> | ||
256 | <e_new> | 295 | <e_new> |
257 | Double-click a gesture to play animations and sounds. | 296 | Items may not be purchased while |
258 | </e_new> | 297 | they are part of an attachment. |
298 | </e_new> | ||
259 | <f_translation> | 299 | <f_translation> |
260 | Doppelklicken Sie auf eine Geste, um Animationen und Sound abzuspielen. | 300 | Objekte können nicht gekauft werden, |
261 | </f_translation> | 301 | solange sie Teil eines Anhangs sind. |
302 | </f_translation> | ||
262 | <f_old_trans> | 303 | <f_old_trans> |
263 | Klicken Sie auf eine Geste oder drücken Sie eine Taste, | 304 | Objekte können nicht gekauft werden, |
264 | um Animationen und Sound abzuspielen. | 305 | wenn sie Teil eines Anhangs sind. |
265 | </f_old_trans> | 306 | </f_old_trans> |
266 | </string><string><a_file>floater_joystick.xml</a_file> | 307 | </string><string><a_file>floater_about_land.xml</a_file> |
267 | <b_path>/Joystick</b_path> | 308 | <b_path>/floaterland/landtab/land_access_panel/estate_override</b_path> |
268 | <c_attribute>title</c_attribute> | ||
269 | <d_old>Flycam Options</d_old> | ||
270 | <e_new>Joystick Configuration</e_new> | ||
271 | <f_translation>Joystick-Konfiguration</f_translation> | ||
272 | </string><string><a_file>floater_preview_notecard_keep_discard.xml</a_file> | ||
273 | <b_path>/preview_notecard/no_object</b_path> | ||
274 | <c_attribute></c_attribute> | 309 | <c_attribute></c_attribute> |
275 | <d_old> | 310 | <d_old> |
276 | Unable to find object containing this note.: | 311 | One ore more of these options is set at the estate level |
277 | </d_old> | 312 | </d_old> |
278 | <e_new>Unable to find object containing this note.:</e_new> | 313 | <e_new> |
279 | <f_translation>Es wurde kein Objekt gefunden, das diese Notiz enthält:</f_translation> | 314 | One or more of these options is set at the estate level |
315 | </e_new> | ||
316 | <f_translation> | ||
317 | Eine oder mehrere dieser Optionen gelten auf Grundstücksebene | ||
318 | </f_translation> | ||
280 | <f_old_trans> | 319 | <f_old_trans> |
281 | Es wurde kein Objekt gefunden, das diese Notiz enthält: | 320 | Eine oder mehrere dieser Optionen gelten auf Grundstücksebene |
282 | </f_old_trans> | 321 | </f_old_trans> |
283 | </string><string><a_file>panel_friends.xml</a_file> | 322 | </string><string><a_file>floater_im.xml</a_file> |
284 | <b_path>/friends/friend_list/icon_edit_mine</b_path> | 323 | <b_path>/im_floater/muted_message</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> | 324 | <c_attribute></c_attribute> |
307 | <d_old> | 325 | <d_old> |
308 | (loading...) | 326 | [FIRST] [LAST] is muted. |
309 | </d_old> | 327 | </d_old> |
310 | <e_new>(loading...)</e_new> | 328 | <e_new> |
311 | <f_translation>(wird geladen...)</f_translation> | 329 | You have muted this resident. Sending a message will automatically unmute them. |
330 | </e_new> | ||
331 | <f_translation> | ||
332 | Sie haben diesen Einwohner stummgeschaltet.Wenn Sie ihm eine Nachricht senden, wird die Stummschaltung automatisch aufgehoben. | ||
333 | </f_translation> | ||
312 | <f_old_trans> | 334 | <f_old_trans> |
313 | (wird geladen...) | 335 | Einwohner ist stummgeschaltet. |
314 | </f_old_trans> | 336 | </f_old_trans> |
315 | </string><string><a_file>panel_preferences_chat.xml</a_file> | 337 | </string><string><a_file>floater_postcard.xml</a_file> |
316 | <b_path>/chat/users</b_path> | 338 | <b_path>/Postcard</b_path> |
317 | <c_attribute>label</c_attribute> | 339 | <c_attribute>title</c_attribute> |
318 | <d_old>Users</d_old> | 340 | <d_old>Send Postcard</d_old> |
319 | <e_new>Chat</e_new> | 341 | <e_new>Email Snapshot</e_new> |
320 | <f_translation>Chat</f_translation> | 342 | <f_translation>Foto per E-Mail senden</f_translation> |
321 | <f_old_trans>Benutzer</f_old_trans> | 343 | <f_old_trans>Postkarte senden</f_old_trans> |
322 | </string><string><a_file>panel_preferences_voice.xml</a_file> | 344 | </string><string><a_file>floater_postcard.xml</a_file> |
323 | <b_path>/chat/device_settings_text</b_path> | 345 | <b_path>/Postcard/fine_print</b_path> |
324 | <c_attribute></c_attribute> | 346 | <c_attribute></c_attribute> |
325 | <d_old> | 347 | <d_old> |
326 | NOTE: Running the Device Settings or Voice Chat Setup will temporarily disconnect you from Voice Chat. | 348 | If your postcard recipient joins SL, you'll get a referral bonus. |
327 | </d_old> | 349 | </d_old> |
328 | <e_new> | 350 | <e_new> |
329 | NOTE: Running the Device Settings will temporarily disconnect you from Voice Chat. | 351 | If your recipient joins SL, you'll get a referral bonus. |
330 | </e_new> | 352 | </e_new> |
331 | <f_translation> | 353 | <f_translation> |
332 | HINWEIS: Beim Öffnen der Geräte-Einstellungen werden Sie vorübergehend vom Voice-Chat getrennt. | 354 | Wenn sich der Empfänger bei SL anmeldet, erhalten Sie einen Empfehlungsbonus. |
333 | </f_translation> | 355 | </f_translation> |
334 | <f_old_trans> | 356 | <f_old_trans> |
335 | HINWEIS: Beim Öffnen der Geräte-Einstellungen oder der Voice-Chat-Einrichtung werden Sie vorübergehend vom Voice-Chat getrennt. | 357 | Wenn sich der Empfänger Ihrer Postkarte bei SL anmeldet, erhalten Sie eine |
358 | Prämie für Ihre Empfehlung. | ||
336 | </f_old_trans> | 359 | </f_old_trans> |
337 | </string><string><a_file>panel_toolbar.xml</a_file> | 360 | </string><string><a_file>floater_report_abuse.xml</a_file> |
338 | <b_path>/toolbar/Redock Windows</b_path> | 361 | <b_path>/floater_report_abuse/category_combo/Intolerance</b_path> |
339 | <c_attribute></c_attribute> | 362 | <c_attribute></c_attribute> |
340 | <d_old> | 363 | <d_old> |
341 | Redock Windows | 364 | Intolerance |
342 | </d_old> | 365 | </d_old> |
343 | <e_new>Redock Windows</e_new> | 366 | <e_new> |
344 | <f_translation>Fenster andocken</f_translation> | 367 | Intolerance |
345 | <f_old_trans>Fenster andocken</f_old_trans> | 368 | </e_new> |
346 | </string><string><a_file>alerts.xml</a_file> | 369 | <f_translation> |
347 | <b_path>//ClothingLoading/message</b_path> | 370 | Intoleranz |
371 | </f_translation> | ||
372 | <f_old_trans> | ||
373 | Intoleranz | ||
374 | </f_old_trans> | ||
375 | </string><string><a_file>floater_report_abuse.xml</a_file> | ||
376 | <b_path>/floater_report_abuse/category_combo/Other</b_path> | ||
348 | <c_attribute></c_attribute> | 377 | <c_attribute></c_attribute> |
349 | <d_old> | 378 | <d_old> |
350 | Your clothing is still downloading. | 379 | Other |
351 | You can use the world normally, and other users | ||
352 | will see you correctly. | ||
353 | </d_old> | 380 | </d_old> |
354 | <e_new> | 381 | <e_new> |
355 | Your clothing is still downloading. | 382 | Other |
356 | You can use [SECOND_LIFE] normally and other users will see you correctly. | 383 | </e_new> |
357 | </e_new> | ||
358 | <f_translation> | 384 | <f_translation> |
359 | Ihre Kleidung wird noch heruntergeladen. | 385 | Sonstige |
360 | Sie können [SECOND_LIFE] normal verwenden. Andere Benutzer können Sie korrekt dargestellt sehen. | 386 | </f_translation> |
361 | </f_translation> | ||
362 | <f_old_trans> | 387 | <f_old_trans> |
363 | Ihre Kleidung wird noch heruntergeladen. | 388 | Sonstige |
364 | Sie können sich in der Welt normal verhalten und andere | ||
365 | Einwohner können Sie sehen. | ||
366 | </f_old_trans> | 389 | </f_old_trans> |
367 | </string><string><a_file>floater_directory.xml</a_file> | 390 | </string><string><a_file>floater_snapshot.xml</a_file> |
368 | <b_path>/directory/Directory Tabs/places_panel/searching_text</b_path> | 391 | <b_path>/Snapshot/type_label</b_path> |
369 | <c_attribute></c_attribute> | 392 | <c_attribute></c_attribute> |
370 | <d_old> | 393 | <d_old> |
371 | Searching... | 394 | What would you like to do? |
372 | </d_old> | 395 | </d_old> |
373 | <e_new>Searching...</e_new> | 396 | <e_new> |
374 | <f_translation>Suchen...</f_translation> | 397 | Snapshot destination |
398 | </e_new> | ||
399 | <f_translation> | ||
400 | Zweck des Fotos | ||
401 | </f_translation> | ||
375 | <f_old_trans> | 402 | <f_old_trans> |
376 | Suchen... | 403 | Was möchten Sie tun? |
377 | </f_old_trans> | 404 | </f_old_trans> |
378 | </string><string><a_file>floater_directory.xml</a_file> | 405 | </string><string><a_file>floater_snapshot.xml</a_file> |
379 | <b_path>/directory/Directory Tabs/places_panel/not_found_text</b_path> | 406 | <b_path>/Snapshot/snapshot_type_radio/postcard</b_path> |
380 | <c_attribute></c_attribute> | 407 | <c_attribute></c_attribute> |
381 | <d_old> | 408 | <d_old> |
382 | None Found. | 409 | Send a postcard |
383 | </d_old> | 410 | </d_old> |
384 | <e_new>None Found.</e_new> | 411 | <e_new> |
385 | <f_translation>Nicht gefunden.</f_translation> | 412 | Send via email |
413 | </e_new> | ||
414 | <f_translation> | ||
415 | Per E-Mail senden | ||
416 | </f_translation> | ||
386 | <f_old_trans> | 417 | <f_old_trans> |
387 | Nicht gefunden. | 418 | Postkarte senden |
388 | </f_old_trans> | 419 | </f_old_trans> |
389 | </string><string><a_file>floater_directory.xml</a_file> | 420 | </string><string><a_file>floater_snapshot.xml</a_file> |
390 | <b_path>/directory/Directory Tabs/people_panel/find</b_path> | 421 | <b_path>/Snapshot/snapshot_type_radio/texture</b_path> |
391 | <c_attribute></c_attribute> | 422 | <c_attribute></c_attribute> |
392 | <d_old> | 423 | <d_old> |
393 | Find: | 424 | Upload a snapshot |
394 | </d_old> | 425 | </d_old> |
395 | <e_new> | 426 | <e_new> |
396 | Find: | 427 | Save to your inventory (L$10) |
397 | </e_new> | 428 | </e_new> |
398 | <f_translation> | 429 | <f_translation> |
399 | Suchen: | 430 | Im Inventar speichern (L$10) |
400 | </f_translation> | 431 | </f_translation> |
401 | <f_old_trans> | 432 | <f_old_trans> |
402 | Suchen: | 433 | Foto hochladen |
403 | </f_old_trans> | 434 | </f_old_trans> |
404 | </string><string><a_file>floater_directory.xml</a_file> | 435 | </string><string><a_file>floater_snapshot.xml</a_file> |
405 | <b_path>/directory/Directory Tabs/groups_panel/searching_text</b_path> | 436 | <b_path>/Snapshot/snapshot_type_radio/local</b_path> |
406 | <c_attribute></c_attribute> | 437 | <c_attribute></c_attribute> |
407 | <d_old> | 438 | <d_old> |
408 | Searching... | 439 | Save snapshot to hard drive |
409 | </d_old> | 440 | </d_old> |
410 | <e_new>Searching...</e_new> | 441 | <e_new> |
411 | <f_translation>Suchen...</f_translation> | 442 | Save to your hard drive |
443 | </e_new> | ||
444 | <f_translation> | ||
445 | Auf Festplatte speichern | ||
446 | </f_translation> | ||
412 | <f_old_trans> | 447 | <f_old_trans> |
413 | Suchen... | 448 | Foto auf Festplatte speichern |
414 | </f_old_trans> | 449 | </f_old_trans> |
415 | </string><string><a_file>floater_directory.xml</a_file> | 450 | </string><string><a_file>floater_snapshot.xml</a_file> |
416 | <b_path>/directory/Directory Tabs/groups_panel/not_found_text</b_path> | 451 | <b_path>/Snapshot/upload_btn</b_path> |
452 | <c_attribute>label</c_attribute> | ||
453 | <d_old>Upload (L$10)</d_old> | ||
454 | <e_new>Save (L$10)</e_new> | ||
455 | <f_translation>Speichern (L$10)</f_translation> | ||
456 | <f_old_trans>Hochladen (10 L$)</f_old_trans> | ||
457 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
458 | <b_path>/Snapshot/type_label2</b_path> | ||
417 | <c_attribute></c_attribute> | 459 | <c_attribute></c_attribute> |
418 | <d_old> | 460 | <d_old> |
419 | None Found. | 461 | What size image do you need? |
420 | </d_old> | 462 | </d_old> |
421 | <e_new>None Found.</e_new> | 463 | <e_new> |
422 | <f_translation>Nicht gefunden.</f_translation> | 464 | Size |
465 | </e_new> | ||
466 | <f_translation> | ||
467 | Größe | ||
468 | </f_translation> | ||
423 | <f_old_trans> | 469 | <f_old_trans> |
424 | Nicht gefunden. | 470 | Welche Bildgröße benötigen Sie? |
425 | </f_old_trans> | 471 | </f_old_trans> |
426 | </string><string><a_file>floater_script_debug.xml</a_file> | 472 | </string><string><a_file>floater_snapshot.xml</a_file> |
427 | <b_path>/script debug floater</b_path> | 473 | <b_path>/Snapshot/auto_snapshot_check</b_path> |
428 | <c_attribute>title</c_attribute> | 474 | <c_attribute>label</c_attribute> |
429 | <d_old>Script Errors/Warning</d_old> | 475 | <d_old>Auto-snapshot</d_old> |
430 | <e_new>Script Warning/Error</e_new> | 476 | <e_new>Auto-refresh</e_new> |
431 | <f_translation>Skriptwarnung/Fehler</f_translation> | 477 | <f_translation>Automatisch aktualisieren</f_translation> |
432 | <f_old_trans>Skriptfehler/Warnung</f_old_trans> | 478 | <f_old_trans>Automatisches Foto</f_old_trans> |
433 | </string><string><a_file>floater_world_map.xml</a_file> | 479 | </string><string><a_file>menu_pie_avatar.xml</a_file> |
434 | <b_path>/worldmap/friend combo</b_path> | 480 | <b_path>/Avatar Pie/Add Friend</b_path> |
435 | <c_attribute>label</c_attribute> | 481 | <c_attribute>label</c_attribute> |
436 | <d_old>My Friends</d_old> | 482 | <d_old>Add Friend</d_old> |
437 | <e_new>Online Friends</e_new> | 483 | <e_new>Add Friend...</e_new> |
438 | <f_translation>Online-Freunde</f_translation> | 484 | <f_translation>Freund hinzufügen...</f_translation> |
439 | <f_old_trans>Meine Freunde</f_old_trans> | 485 | <f_old_trans>Freund hinzufügen</f_old_trans> |
440 | </string><string><a_file>floater_world_map.xml</a_file> | 486 | </string><string><a_file>notify.xml</a_file> |
441 | <b_path>/worldmap/friend combo/none_selected</b_path> | 487 | <b_path>//OfferFriendship/message</b_path> |
442 | <c_attribute></c_attribute> | 488 | <c_attribute></c_attribute> |
443 | <d_old> | 489 | <d_old> |
444 | My Friends | 490 | [NAME] is offering friendship. |
491 | |||
492 | By default, you will be able to | ||
493 | see each other's online status. | ||
445 | </d_old> | 494 | </d_old> |
446 | <e_new> | 495 | <e_new> |
447 | Online Friends | 496 | [NAME] is offering friendship. |
497 | |||
498 | [MESSAGE] | ||
499 | |||
500 | (By default, you will be able to see each other's online status.) | ||
448 | </e_new> | 501 | </e_new> |
449 | <f_translation> | 502 | <f_translation> |
450 | Online-Freunde | 503 | [NAME] bietet Ihnen die Freundschaft an. |
504 | |||
505 | [MESSAGE] | ||
506 | |||
507 | (Standardmäßig werden Sie gegenseitig ihren Online-Status sehen können.) | ||
451 | </f_translation> | 508 | </f_translation> |
452 | <f_old_trans> | 509 | <f_old_trans> |
453 | Meine Freunde | 510 | [NAME] bietet die Freundschaft an. |
511 | |||
512 | Sie werden dadurch den gegenseitigen | ||
513 | Online-Status sehen können. | ||
454 | </f_old_trans> | 514 | </f_old_trans> |
455 | </string><string><a_file>floater_world_map.xml</a_file> | 515 | </string><string><a_file>notify.xml</a_file> |
456 | <b_path>/worldmap/landmark combo</b_path> | 516 | <b_path>//FailedToLoadWearableUnnamed/message</b_path> |
457 | <c_attribute>label</c_attribute> | ||
458 | <d_old>My Landmarks</d_old> | ||
459 | <e_new>Landmarks</e_new> | ||
460 | <f_translation>Landmarken</f_translation> | ||
461 | <f_old_trans>Meine Landmarken</f_old_trans> | ||
462 | </string><string><a_file>floater_world_map.xml</a_file> | ||
463 | <b_path>/worldmap/landmark combo/none_selected</b_path> | ||
464 | <c_attribute></c_attribute> | 517 | <c_attribute></c_attribute> |
465 | <d_old> | 518 | <d_old> |
466 | My Landmarks | 519 | Failed to load [TYPE]. |
520 | Please notify the vendor from whom you purchased this item. | ||
467 | </d_old> | 521 | </d_old> |
468 | <e_new> | 522 | <e_new> |
469 | Landmarks | 523 | Oops! |
524 | You tried to wear a [TYPE] and it did not load. | ||
525 | |||
526 | Don't panic. | ||
527 | Try again in a minute to give things a chance to settle down. | ||
470 | </e_new> | 528 | </e_new> |
471 | <f_translation> | 529 | <f_translation> |
472 | Landmarken | 530 | Hoppla! |
531 | Sie haben versucht, ein(e)/einen [TYPE] anzuziehen, aber das Laden hat nicht funktioniert. | ||
532 | |||
533 | Keine Panik. | ||
534 | Versuchen Sie es in einer Minute erneut, dann wird es schon klappen. | ||
473 | </f_translation> | 535 | </f_translation> |
474 | <f_old_trans> | 536 | <f_old_trans> |
475 | Meine Landmarken | 537 | [TYPE] konnte nicht geladen werden. |
538 | Wenden Sie sich an den Verkäufer dieses Objekts. | ||
476 | </f_old_trans> | 539 | </f_old_trans> |
477 | </string><string><a_file>panel_avatar_classified.xml</a_file> | 540 | </string><string><a_file>notify.xml</a_file> |
478 | <b_path>/Classified/classified_mature_check</b_path> | 541 | <b_path>//FailedToLoadWearable/message</b_path> |
479 | <c_attribute>label</c_attribute> | ||
480 | <d_old>Mature</d_old> | ||
481 | <e_new></e_new> | ||
482 | <f_translation></f_translation> | ||
483 | <f_old_trans>Ab 18</f_old_trans> | ||
484 | </string><string><a_file>panel_group_notices.xml</a_file> | ||
485 | <b_path>/notices_tab/lbl2</b_path> | ||
486 | <c_attribute></c_attribute> | 542 | <c_attribute></c_attribute> |
487 | <d_old> | 543 | <d_old> |
488 | Notices are kept for 30 days. Click the notice below you wish to view. | 544 | Failed to load [TYPE] named [DESC]. |
489 | Click the 'Refresh' button to check if new notices have been received. | 545 | Please notify the vendor from whom you purchased this item. |
490 | </d_old> | 546 | </d_old> |
491 | <e_new> | 547 | <e_new> |
492 | Notices are kept for 14 days. Click the notice below you wish to view. | 548 | Oops! |
493 | Click the 'Refresh' button to check if new notices have been received. | 549 | You tried to wear [TYPE] named [DESC] and it did not load. |
494 | Notice lists are limited to 200 notices per group on a daily basis. | 550 | |
495 | </e_new> | 551 | Don't panic. |
552 | Try again in a minute to give things a chance to settle down. | ||
553 | </e_new> | ||
496 | <f_translation> | 554 | <f_translation> |
497 | Mitteilungen werden 14 Tage lang aufbewahrt. Klicken Sie auf eine Mitteilung, um sie anzuzeigen. | 555 | Hoppla! |
498 | Klicken Sie auf 'Aktualisieren', um neue Mitteilungen zu suchen. | 556 | Sie haben versucht, ein(e)/einen [TYPE] namens [DESC] anzuziehen, aber das Laden hat nicht funktioniert. |
499 | Eine Mitteilungsliste speichert maximal 200 Mitteilungen pro Gruppe täglich. | 557 | |
500 | </f_translation> | 558 | Keine Panik. |
559 | Versuchen Sie es in einer Minute erneut, dann wird es schon klappen. | ||
560 | </f_translation> | ||
501 | <f_old_trans> | 561 | <f_old_trans> |
502 | Mitteilungen werden 14 Tage lang aufbewahrt. Klicken | 562 | [TYPE] namens [DESC] konnte nicht geladen werden. |
503 | Sie auf eine Mitteilung, um sie anzuzeigen. Klicken Sie | 563 | Wenden Sie sich an den Verkäufer dieses Objekts. |
504 | auf 'Aktualisieren', um neue Mitteilungen zu suchen. | 564 | </f_old_trans> |
505 | </f_old_trans> | 565 | </string><string><a_file>notify.xml</a_file> |
566 | <b_path>//FirstTeleport/message</b_path> | ||
567 | <c_attribute></c_attribute> | ||
568 | <d_old> | ||
569 | You have just teleported. | ||
570 | You are at the Infohub nearest your destination. | ||
571 | Your destination is marked with a tall red beacon. | ||
572 | </d_old> | ||
573 | <e_new> | ||
574 | This region doesn't allow point-to-point teleports, so you've been transported to the nearest telehub. | ||
575 | Your destination is marked with a tall beacon. | ||
576 | Follow the red arrow to the beacon, or click the arrow to dismiss the beacon. | ||
577 | </e_new> | ||
578 | <f_translation> | ||
579 | Diese Region unterstützt keine direkten Teleports. Sie wurden zum nächstgelegenen Telehub transportiert. | ||
580 | Ihr Ziel ist mit einem großen roten Strahl markiert. | ||
581 | Folgen Sie dem roten Pfeil zum Strahl oder klicken Sie auf den Pfeil, um den Strahl zu entfernen. | ||
582 | </f_translation> | ||
583 | <f_old_trans> | ||
584 | Sie wurden teleportiert. | ||
585 | Sie befinden sich am Infohub, der Ihrem Ziel am nächsten liegt. | ||
586 | Ihr Ziel ist mit einem großen roten Strahl markiert. | ||
587 | </f_old_trans> | ||
506 | </string><string><a_file>panel_login.xml</a_file> | 588 | </string><string><a_file>panel_login.xml</a_file> |
507 | <b_path>/panel_login/forgot_password_text</b_path> | 589 | <b_path>/panel_login/connect_btn</b_path> |
590 | <c_attribute>label</c_attribute> | ||
591 | <d_old>Connect</d_old> | ||
592 | <e_new>Enter Second Life</e_new> | ||
593 | <f_translation>Second Life betreten</f_translation> | ||
594 | <f_old_trans>Verbinden</f_old_trans> | ||
595 | </string><string><a_file>panel_preferences_chat.xml</a_file> | ||
596 | <b_path>/chat/script_error</b_path> | ||
597 | <c_attribute>label</c_attribute> | ||
598 | <d_old>Color</d_old> | ||
599 | <e_new>Errors</e_new> | ||
600 | <f_translation>Fehler</f_translation> | ||
601 | <f_old_trans>Farbe</f_old_trans> | ||
602 | </string><string><a_file>panel_preferences_skins.xml</a_file> | ||
603 | <b_path>/Skins panel/skin_selection/default</b_path> | ||
508 | <c_attribute></c_attribute> | 604 | <c_attribute></c_attribute> |
509 | <d_old> | 605 | <d_old> |
510 | Forgot your password? | 606 | Classic |
511 | </d_old> | 607 | </d_old> |
512 | <e_new>Forgot your name or password? | 608 | <e_new> |
513 | </e_new> | 609 | Default |
514 | <f_translation>Namen oder Kennwort vergessen? | 610 | </e_new> |
515 | </f_translation> | 611 | <f_translation> |
612 | Standard | ||
613 | </f_translation> | ||
516 | <f_old_trans> | 614 | <f_old_trans> |
517 | Kennwort vergessen? | 615 | Klassisch |
518 | </f_old_trans> | 616 | </f_old_trans> |
617 | </string><string><a_file>panel_region_debug.xml</a_file> | ||
618 | <b_path>/Debug/choose_avatar_btn</b_path> | ||
619 | <c_attribute>label</c_attribute> | ||
620 | <d_old>Choose Avatar...</d_old> | ||
621 | <e_new>Choose...</e_new> | ||
622 | <f_translation>Auswählen...</f_translation> | ||
623 | <f_old_trans>Avatar wählen...</f_old_trans> | ||
519 | </string> | 624 | </string> |
520 | </strings> | 625 | </strings> |
diff --git a/linden/indra/newview/skins/default/xui/de/notify.xml b/linden/indra/newview/skins/default/xui/de/notify.xml index 4218a4a..cafbf97 100644 --- a/linden/indra/newview/skins/default/xui/de/notify.xml +++ b/linden/indra/newview/skins/default/xui/de/notify.xml | |||
@@ -576,10 +576,25 @@ Der Beitritt ist kostenlos. | |||
576 | </notify> | 576 | </notify> |
577 | <notify name="OfferFriendship"> | 577 | <notify name="OfferFriendship"> |
578 | <message name="message"> | 578 | <message name="message"> |
579 | [NAME] bietet die Freundschaft an. | 579 | [NAME] bietet Ihnen die Freundschaft an. |
580 | 580 | ||
581 | Sie werden dadurch den gegenseitigen | 581 | [MESSAGE] |
582 | Online-Status sehen können. | 582 | |
583 | (Standardmäßig werden Sie gegenseitig ihren Online-Status sehen können.) | ||
584 | </message> | ||
585 | <option name="Accept"> | ||
586 | Akzeptieren | ||
587 | </option> | ||
588 | <option name="Decline"> | ||
589 | Ablehnen | ||
590 | </option> | ||
591 | </notify> | ||
592 | <notify name="OfferFriendshipNoMessage"> | ||
593 | <message name="message"> | ||
594 | [NAME] bietet Ihnen die Freundschaft an. | ||
595 | |||
596 | (Sie werden dadurch den gegenseitigen | ||
597 | Online-Status sehen können.) | ||
583 | </message> | 598 | </message> |
584 | <option name="Accept"> | 599 | <option name="Accept"> |
585 | Akzeptieren | 600 | Akzeptieren |
@@ -640,14 +655,20 @@ Von Objekt: [OBJECTNAME], Eigentümer: [NAME]? | |||
640 | </notify> | 655 | </notify> |
641 | <notify name="FailedToLoadWearableUnnamed"> | 656 | <notify name="FailedToLoadWearableUnnamed"> |
642 | <message name="message"> | 657 | <message name="message"> |
643 | [TYPE] konnte nicht geladen werden. | 658 | Hoppla! |
644 | Wenden Sie sich an den Verkäufer dieses Objekts. | 659 | Sie haben versucht, ein(e)/einen [TYPE] anzuziehen, aber das Laden hat nicht funktioniert. |
660 | |||
661 | Keine Panik. | ||
662 | Versuchen Sie es in einer Minute erneut, dann wird es schon klappen. | ||
645 | </message> | 663 | </message> |
646 | </notify> | 664 | </notify> |
647 | <notify name="FailedToLoadWearable"> | 665 | <notify name="FailedToLoadWearable"> |
648 | <message name="message"> | 666 | <message name="message"> |
649 | [TYPE] namens [DESC] konnte nicht geladen werden. | 667 | Hoppla! |
650 | Wenden Sie sich an den Verkäufer dieses Objekts. | 668 | Sie haben versucht, ein(e)/einen [TYPE] namens [DESC] anzuziehen, aber das Laden hat nicht funktioniert. |
669 | |||
670 | Keine Panik. | ||
671 | Versuchen Sie es in einer Minute erneut, dann wird es schon klappen. | ||
651 | </message> | 672 | </message> |
652 | </notify> | 673 | </notify> |
653 | <notify name="FailedToFindWearableUnnamed"> | 674 | <notify name="FailedToFindWearableUnnamed"> |
@@ -832,9 +853,9 @@ Die rechte Maustaste zeigt immer ein Aktionsmenü an. | |||
832 | </notify> | 853 | </notify> |
833 | <notify name="FirstTeleport"> | 854 | <notify name="FirstTeleport"> |
834 | <message name="message"> | 855 | <message name="message"> |
835 | Sie wurden teleportiert. | 856 | Diese Region unterstützt keine direkten Teleports. Sie wurden zum nächstgelegenen Telehub transportiert. |
836 | Sie befinden sich am Infohub, der Ihrem Ziel am nchsten liegt. | 857 | Ihr Ziel ist mit einem groen roten Strahl markiert. |
837 | Ihr Ziel ist mit einem großen roten Strahl markiert. | 858 | Folgen Sie dem roten Pfeil zum Strahl oder klicken Sie auf den Pfeil, um den Strahl zu entfernen. |
838 | </message> | 859 | </message> |
839 | </notify> | 860 | </notify> |
840 | <notify name="FirstOverrideKeys"> | 861 | <notify name="FirstOverrideKeys"> |
diff --git a/linden/indra/newview/skins/default/xui/de/panel_login.xml b/linden/indra/newview/skins/default/xui/de/panel_login.xml index ac08744..b024f7a 100644 --- a/linden/indra/newview/skins/default/xui/de/panel_login.xml +++ b/linden/indra/newview/skins/default/xui/de/panel_login.xml | |||
@@ -30,11 +30,14 @@ | |||
30 | <button label="Neues Konto..." label_selected="Neues Konto..." name="new_account_btn" /> | 30 | <button label="Neues Konto..." label_selected="Neues Konto..." name="new_account_btn" /> |
31 | <button label="Einstellungen..." label_selected="Einstellungen..." | 31 | <button label="Einstellungen..." label_selected="Einstellungen..." |
32 | name="preferences_btn" /> | 32 | name="preferences_btn" /> |
33 | <button label="Verbinden" label_selected="Verbinden" name="connect_btn" /> | 33 | <button label="Second Life betreten" label_selected="Verbinden" name="connect_btn" /> |
34 | <button label="Beenden" label_selected="Beenden" name="quit_btn" /> | 34 | <button label="Beenden" label_selected="Beenden" name="quit_btn" /> |
35 | <text name="version_text"> | 35 | <text name="version_text"> |
36 | 1.23.4 (5) | 36 | 1.23.4 (5) |
37 | </text> | 37 | </text> |
38 | <text name="create_new_account_text"> | ||
39 | Neues Konto erstellen. | ||
40 | </text> | ||
38 | <text name="channel_text"> | 41 | <text name="channel_text"> |
39 | [Viewer Channel Name] | 42 | [Viewer Channel Name] |
40 | </text> | 43 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/de/panel_preferences_chat.xml b/linden/indra/newview/skins/default/xui/de/panel_preferences_chat.xml index 036b916..63120d3 100644 --- a/linden/indra/newview/skins/default/xui/de/panel_preferences_chat.xml +++ b/linden/indra/newview/skins/default/xui/de/panel_preferences_chat.xml | |||
@@ -17,6 +17,8 @@ | |||
17 | <text type="string" length="1" name="text_box2"> | 17 | <text type="string" length="1" name="text_box2"> |
18 | Chat-Farbe: | 18 | Chat-Farbe: |
19 | </text> | 19 | </text> |
20 | <color_swatch label="Sie" name="user" /> | ||
21 | <color_swatch label="Andere" name="agent" /> | ||
20 | <color_swatch label="IM" name="im" /> | 22 | <color_swatch label="IM" name="im" /> |
21 | <color_swatch label="System" name="system" /> | 23 | <color_swatch label="System" name="system" /> |
22 | <color_swatch label="Chat" name="users" /> | 24 | <color_swatch label="Chat" name="users" /> |
@@ -47,6 +49,7 @@ | |||
47 | <check_box label="Pfeiltasten bewegen immer den Avatar beim Chatten" | 49 | <check_box label="Pfeiltasten bewegen immer den Avatar beim Chatten" |
48 | name="arrow_keys_move_avatar_check" /> | 50 | name="arrow_keys_move_avatar_check" /> |
49 | <check_box label="Zeitstempel in Chat anzeigen" name="show_timestamps_check" /> | 51 | <check_box label="Zeitstempel in Chat anzeigen" name="show_timestamps_check" /> |
52 | <check_box label="Tipp-Animation abspielen" name="play_typing_animation" /> | ||
50 | <text type="string" length="1" name="text_box7"> | 53 | <text type="string" length="1" name="text_box7"> |
51 | Blasen-Chat: | 54 | Blasen-Chat: |
52 | </text> | 55 | </text> |
@@ -57,5 +60,5 @@ | |||
57 | </text> | 60 | </text> |
58 | <check_box label="Skriptfehler und Warnungen als normalen Chat anzeigen" | 61 | <check_box label="Skriptfehler und Warnungen als normalen Chat anzeigen" |
59 | name="script_errors_as_chat" /> | 62 | name="script_errors_as_chat" /> |
60 | <color_swatch label="Farbe" name="script_error" /> | 63 | <color_swatch label="Fehler" name="script_error" /> |
61 | </panel> | 64 | </panel> |
diff --git a/linden/indra/newview/skins/default/xui/de/panel_preferences_general.xml b/linden/indra/newview/skins/default/xui/de/panel_preferences_general.xml index 26e8459..fbf5742 100644 --- a/linden/indra/newview/skins/default/xui/de/panel_preferences_general.xml +++ b/linden/indra/newview/skins/default/xui/de/panel_preferences_general.xml | |||
@@ -119,4 +119,6 @@ | |||
119 | Español (Spanisch) - Beta | 119 | Español (Spanisch) - Beta |
120 | </combo_item> | 120 | </combo_item> |
121 | </combo_box> | 121 | </combo_box> |
122 | <check_box label="Objekten Sprache mitteilen" name="language_is_public" | ||
123 | tool_tip="In-Welt-Objekten wird Ihre bevorzugte Spracheinstellung mitgeteilt." /> | ||
122 | </panel> | 124 | </panel> |
diff --git a/linden/indra/newview/skins/default/xui/de/panel_preferences_im.xml b/linden/indra/newview/skins/default/xui/de/panel_preferences_im.xml index 58f874e..ce3b453 100644 --- a/linden/indra/newview/skins/default/xui/de/panel_preferences_im.xml +++ b/linden/indra/newview/skins/default/xui/de/panel_preferences_im.xml | |||
@@ -14,6 +14,8 @@ | |||
14 | <check_box label="IM an E-Mail senden ([EMAIL])" name="send_im_to_email" /> | 14 | <check_box label="IM an E-Mail senden ([EMAIL])" name="send_im_to_email" /> |
15 | <check_box label="IM in Chat-Verlauf einschließen" name="include_im_in_chat_history" /> | 15 | <check_box label="IM in Chat-Verlauf einschließen" name="include_im_in_chat_history" /> |
16 | <check_box label="Zeitstempel in IM anzeigen" name="show_timestamps_check" /> | 16 | <check_box label="Zeitstempel in IM anzeigen" name="show_timestamps_check" /> |
17 | <check_box label="Online-Freundbenachrichtigungen anzeigen" | ||
18 | name="friends_online_notify_checkbox" /> | ||
17 | <text type="string" length="1" name="text_box3"> | 19 | <text type="string" length="1" name="text_box3"> |
18 | Protokolloptionen: | 20 | Protokolloptionen: |
19 | </text> | 21 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/de/panel_preferences_popups.xml b/linden/indra/newview/skins/default/xui/de/panel_preferences_popups.xml index 6c38032..0233aa6 100644 --- a/linden/indra/newview/skins/default/xui/de/panel_preferences_popups.xml +++ b/linden/indra/newview/skins/default/xui/de/panel_preferences_popups.xml | |||
@@ -24,4 +24,5 @@ | |||
24 | <button label="Alle 'Überspringen'-Dialoge überspringen..." | 24 | <button label="Alle 'Überspringen'-Dialoge überspringen..." |
25 | name="skip_dialogs_btn" | 25 | name="skip_dialogs_btn" |
26 | tool_tip="Alle optionalen Popups und 'Das erste Mal'-Meldungen deaktivieren." /> | 26 | tool_tip="Alle optionalen Popups und 'Das erste Mal'-Meldungen deaktivieren." /> |
27 | <check_box label="Neue Objekte im Inventar automatisch anzeigen" name="show_in_inventory" /> | ||
27 | </panel> | 28 | </panel> |
diff --git a/linden/indra/newview/skins/default/xui/de/panel_preferences_skins.xml b/linden/indra/newview/skins/default/xui/de/panel_preferences_skins.xml index 5148c39..f5fafc7 100644 --- a/linden/indra/newview/skins/default/xui/de/panel_preferences_skins.xml +++ b/linden/indra/newview/skins/default/xui/de/panel_preferences_skins.xml | |||
@@ -5,7 +5,7 @@ | |||
5 | </text> | 5 | </text> |
6 | <radio_group name="skin_selection"> | 6 | <radio_group name="skin_selection"> |
7 | <radio_item name="default"> | 7 | <radio_item name="default"> |
8 | Klassisch | 8 | Standard |
9 | </radio_item> | 9 | </radio_item> |
10 | <radio_item name="silver"> | 10 | <radio_item name="silver"> |
11 | Silber | 11 | Silber |
diff --git a/linden/indra/newview/skins/default/xui/de/panel_region_debug.xml b/linden/indra/newview/skins/default/xui/de/panel_region_debug.xml index e31754d..1d77eac 100644 --- a/linden/indra/newview/skins/default/xui/de/panel_region_debug.xml +++ b/linden/indra/newview/skins/default/xui/de/panel_region_debug.xml | |||
@@ -16,11 +16,23 @@ | |||
16 | tool_tip="Physik in dieser Region deaktivieren" /> | 16 | tool_tip="Physik in dieser Region deaktivieren" /> |
17 | <button label="?" name="disable_physics_help" /> | 17 | <button label="?" name="disable_physics_help" /> |
18 | <button label="Übernehmen" name="apply_btn" /> | 18 | <button label="Übernehmen" name="apply_btn" /> |
19 | <button label="Avatar wählen..." name="choose_avatar_btn" /> | 19 | <line_editor name="target_avatar_name"> |
20 | (keiner) | ||
21 | </line_editor> | ||
22 | <button label="Auswählen..." name="choose_avatar_btn" /> | ||
20 | <button label="Skriptobjekte des Avatars auf fremdem Land zurückgeben" | 23 | <button label="Skriptobjekte des Avatars auf fremdem Land zurückgeben" |
21 | name="return_scripted_other_land_btn" /> | 24 | name="return_scripted_other_land_btn" /> |
22 | <button label="ALLE Skriptobjekte des Avatars zurückgeben" | 25 | <button label="ALLE Skriptobjekte des Avatars zurückgeben" |
23 | name="return_scripted_all_btn" /> | 26 | name="return_scripted_all_btn" /> |
27 | <check_box label="Nur Objekte mit Skripten zurückgeben" name="return_scripts" | ||
28 | tool_tip="Es werden nur die Objekte zurückgegeben, die über Skripte verfügen." /> | ||
29 | <check_box label="Nur Objekte auf dem Land eines anderen Einwohners zurückgeben" | ||
30 | name="return_other_land" | ||
31 | tool_tip="Es werden nur die Objekte zurückgegeben, die sich auf dem Land eines anderen Einwohners befinden" /> | ||
32 | <check_box label="Objekte in jeder Region dieses Grundstücks zurückgeben" | ||
33 | name="return_estate_wide" | ||
34 | tool_tip="Es werden die Objekte in allen Regionen dieses Grundstücks zurückgegeben" /> | ||
35 | <button label="Zurückgeben" name="return_btn" /> | ||
24 | <button label="Top-Kollisionsobjekte..." name="top_colliders_btn" | 36 | <button label="Top-Kollisionsobjekte..." name="top_colliders_btn" |
25 | tool_tip="Liste der Objekte mit den meisten potenziellen Kollisionen" /> | 37 | tool_tip="Liste der Objekte mit den meisten potenziellen Kollisionen" /> |
26 | <button label="?" name="top_colliders_help" /> | 38 | <button label="?" name="top_colliders_help" /> |
diff --git a/linden/indra/newview/skins/default/xui/de/panel_region_estate.xml b/linden/indra/newview/skins/default/xui/de/panel_region_estate.xml index 6dd4be0..94d7d18 100644 --- a/linden/indra/newview/skins/default/xui/de/panel_region_estate.xml +++ b/linden/indra/newview/skins/default/xui/de/panel_region_estate.xml | |||
@@ -24,6 +24,12 @@ | |||
24 | tool_tip="Einwohner ohne Altersprüfung verbannen. Weitere Informationen finden Sie auf support.secondlife.com." /> | 24 | tool_tip="Einwohner ohne Altersprüfung verbannen. Weitere Informationen finden Sie auf support.secondlife.com." /> |
25 | <check_box label="Voice-Chat erlauben" name="voice_chat_check" /> | 25 | <check_box label="Voice-Chat erlauben" name="voice_chat_check" /> |
26 | <button label="?" name="voice_chat_help" /> | 26 | <button label="?" name="voice_chat_help" /> |
27 | <text name="abuse_email_text"> | ||
28 | E-Mail-Adresse für Missbrauchsmeldungen: | ||
29 | </text> | ||
30 | <string name="email_unsupported"> | ||
31 | Funktion nicht unterstützt | ||
32 | </string> | ||
27 | <button label=" ?" name="abuse_email_address_help" /> | 33 | <button label=" ?" name="abuse_email_address_help" /> |
28 | <button label="?" name="estate_manager_help" /> | 34 | <button label="?" name="estate_manager_help" /> |
29 | <button label="Hinzufügen..." name="add_estate_manager_btn" /> | 35 | <button label="Hinzufügen..." name="add_estate_manager_btn" /> |
diff --git a/linden/indra/newview/skins/default/xui/de/role_actions.xml b/linden/indra/newview/skins/default/xui/de/role_actions.xml index c46fa0d..26042bd 100644 --- a/linden/indra/newview/skins/default/xui/de/role_actions.xml +++ b/linden/indra/newview/skins/default/xui/de/role_actions.xml | |||
@@ -144,7 +144,7 @@ | |||
144 | name="land gardening" /> | 144 | name="land gardening" /> |
145 | </action_set> | 145 | </action_set> |
146 | <action_set | 146 | <action_set |
147 | description="Diese Fähigkeiten ermöglichen es, gruppeneigene Objekte zu übertragen, zu bearbeiten und zu verkaufen. Änderungen werden unter 'Auswahl-Tool' > 'Bearbeiten' auf der Registerkarte 'Allgemein' vorgenommen. Klicken Sie mit rechts auf ein Objekt und wählen Sie 'Bearbeiten', um seine Einstellungen anzuzeigen." | 147 | description="Diese Fähigkeiten ermöglichen es, gruppeneigene Objekte zu übertragen, zu bearbeiten und zu verkaufen. Änderungen werden unter 'Auswahl-Tool' > 'Bearbeiten' auf der Registerkarte 'Allgemein' vorgenommen. Klicken Sie mit rechts auf ein Objekt und wählen Sie 'Bearbeiten', um seine Einstellungen anzuzeigen." |
148 | name="Object Management"> | 148 | name="Object Management"> |
149 | <action description="Objekte an Gruppe übertragen" | 149 | <action description="Objekte an Gruppe übertragen" |
150 | longdescription="Objekte an eine Gruppe übertragen können Sie unter 'Auswahl-Tool' > 'Bearbeiten' auf der Registerkarte 'Allgemein'." | 150 | longdescription="Objekte an eine Gruppe übertragen können Sie unter 'Auswahl-Tool' > 'Bearbeiten' auf der Registerkarte 'Allgemein'." |
@@ -184,4 +184,17 @@ | |||
184 | longdescription="Mitglieder in einer Rolle mit dieser Fähigkeit können in der Gruppeninfo unter 'Anfragen' über Anfragen abstimmen." | 184 | longdescription="Mitglieder in einer Rolle mit dieser Fähigkeit können in der Gruppeninfo unter 'Anfragen' über Anfragen abstimmen." |
185 | name="proposal vote" /> | 185 | name="proposal vote" /> |
186 | </action_set> | 186 | </action_set> |
187 | <action_set | ||
188 | description="Diese Fähigkeiten ermöglichen es, den Zugang zu Gruppen-Chat und Gruppen-Voice-Chat zu steuern." | ||
189 | name="Chat"> | ||
190 | <action description="Gruppen-Chat beitreten" | ||
191 | longdescription="Mitglieder in einer Rolle mit dieser Fähigkeit können Gruppen-Chat und Gruppen-Voice-Chat beitreten." | ||
192 | name="join group chat" /> | ||
193 | <action description="Gruppen-Voice-Chat beitreten" | ||
194 | longdescription="Mitglieder in einer Rolle mit dieser Fähigkeit können Gruppen-Voice-Chat beitreten.HINWEIS:Sie benötigen die Fähigkeit 'Gruppen-Chat beitreten', um Zugang zu dieser Voice-Chat-Sitzung zu erhalten." | ||
195 | name="join voice chat" /> | ||
196 | <action description="Gruppen-Chat moderieren" | ||
197 | longdescription="Mitglieder in einer Rolle mit dieser Fähigkeit können den Zugang zu und die Teilnahme an Gruppen-Chat- und Voice-Chat-Sitzungen steuern." | ||
198 | name="moderate group chat" /> | ||
199 | </action_set> | ||
187 | </role_actions> | 200 | </role_actions> |
diff --git a/linden/indra/newview/skins/default/xui/de/strings.xml b/linden/indra/newview/skins/default/xui/de/strings.xml index be64d7f..6a9a9cc 100644 --- a/linden/indra/newview/skins/default/xui/de/strings.xml +++ b/linden/indra/newview/skins/default/xui/de/strings.xml | |||
@@ -18,6 +18,9 @@ | |||
18 | <string name="LoginInitializingBrowser"> | 18 | <string name="LoginInitializingBrowser"> |
19 | Integrierter Webbrowser wird initialisiert... | 19 | Integrierter Webbrowser wird initialisiert... |
20 | </string> | 20 | </string> |
21 | <string name="LoginInitializingMultimedia"> | ||
22 | Multimedia wird initialisiert... | ||
23 | </string> | ||
21 | <string name="LoginVerifyingCache"> | 24 | <string name="LoginVerifyingCache"> |
22 | Cache-Dateien werden überprüft (dauert 60-90 Sekunden)... | 25 | Cache-Dateien werden überprüft (dauert 60-90 Sekunden)... |
23 | </string> | 26 | </string> |
@@ -48,6 +51,9 @@ | |||
48 | <string name="LoginDownloadingClothing"> | 51 | <string name="LoginDownloadingClothing"> |
49 | Kleidung wird geladen... | 52 | Kleidung wird geladen... |
50 | </string> | 53 | </string> |
54 | <string name="AgentLostConnection"> | ||
55 | In dieser Region kann es zu Problemen kommen. Bitte überprüfen Sie Ihre Internetverbindung. | ||
56 | </string> | ||
51 | <string name="TooltipPerson"> | 57 | <string name="TooltipPerson"> |
52 | Person | 58 | Person |
53 | </string> | 59 | </string> |
@@ -120,9 +126,15 @@ | |||
120 | <string name="TooltipLand"> | 126 | <string name="TooltipLand"> |
121 | Land: | 127 | Land: |
122 | </string> | 128 | </string> |
129 | <string name="TooltipMustSingleDrop"> | ||
130 | Sie können nur ein einzelnes Objekt hierher ziehen | ||
131 | </string> | ||
123 | <string name="RetrievingData"> | 132 | <string name="RetrievingData"> |
124 | Laden... | 133 | Laden... |
125 | </string> | 134 | </string> |
135 | <string name="ReleaseNotes"> | ||
136 | Versionshinweise | ||
137 | </string> | ||
126 | <string name="LoadingData"> | 138 | <string name="LoadingData"> |
127 | Wird geladen... | 139 | Wird geladen... |
128 | </string> | 140 | </string> |
@@ -387,4 +399,16 @@ | |||
387 | <string name="anim_yes_head"> | 399 | <string name="anim_yes_head"> |
388 | Ja | 400 | Ja |
389 | </string> | 401 | </string> |
402 | <string name="texture_loading"> | ||
403 | Wird geladen... | ||
404 | </string> | ||
405 | <string name="worldmap_offline"> | ||
406 | Offline | ||
407 | </string> | ||
408 | <string name="whisper"> | ||
409 | Flüstert: | ||
410 | </string> | ||
411 | <string name="shout"> | ||
412 | Ruft: | ||
413 | </string> | ||
390 | </strings> | 414 | </strings> |
diff --git a/linden/indra/newview/skins/default/xui/en-us/alerts.xml b/linden/indra/newview/skins/default/xui/en-us/alerts.xml index 57736b4..1dcdc7d 100644 --- a/linden/indra/newview/skins/default/xui/en-us/alerts.xml +++ b/linden/indra/newview/skins/default/xui/en-us/alerts.xml | |||
@@ -2101,8 +2101,22 @@ You do not have permission to buy land for your active group. | |||
2101 | </alert> | 2101 | </alert> |
2102 | <alert modal="true" name="AddFriend" title="Add Friend"> | 2102 | <alert modal="true" name="AddFriend" title="Add Friend"> |
2103 | <message name="message"> | 2103 | <message name="message"> |
2104 | Friends can give permissions to track each | 2104 | Friends can give permissions to track each |
2105 | other on the map and receive online status updates. | 2105 | other on the map and receive online status updates. |
2106 | |||
2107 | Offer friendship to [NAME]? | ||
2108 | </message> | ||
2109 | <option name="Offer"> | ||
2110 | OK | ||
2111 | </option> | ||
2112 | <option name="Cancel"> | ||
2113 | Cancel | ||
2114 | </option> | ||
2115 | </alert> | ||
2116 | <alert modal="true" name="AddFriendWithMessage" title="Add Friend"> | ||
2117 | <message name="message"> | ||
2118 | Friends can give permissions to track each | ||
2119 | other on the map and receive online status updates. | ||
2106 | 2120 | ||
2107 | Offer friendship to [NAME]? | 2121 | Offer friendship to [NAME]? |
2108 | </message> | 2122 | </message> |
diff --git a/linden/indra/newview/skins/default/xui/en-us/floater_top_objects.xml b/linden/indra/newview/skins/default/xui/en-us/floater_top_objects.xml index 2108b42..96f48eb 100644 --- a/linden/indra/newview/skins/default/xui/en-us/floater_top_objects.xml +++ b/linden/indra/newview/skins/default/xui/en-us/floater_top_objects.xml | |||
@@ -10,10 +10,10 @@ | |||
10 | follows="left|top|bottom|right" height="150" left="10" multi_select="true" | 10 | follows="left|top|bottom|right" height="150" left="10" multi_select="true" |
11 | name="objects_list" width="530"> | 11 | name="objects_list" width="530"> |
12 | <column label="Score" name="score" width="55" /> | 12 | <column label="Score" name="score" width="55" /> |
13 | <column dynamicwidth="true" label="Name" name="name" /> | 13 | <column label="Name" name="name" width="140"/> |
14 | <column label="Owner" name="owner" width="105" /> | 14 | <column label="Owner" name="owner" width="105" /> |
15 | <column label="Location" name="location" width="130" /> | 15 | <column label="Location" name="location" width="130" /> |
16 | <column label="Time" name="time" width="180" /> | 16 | <column label="Time" name="time" width="100" /> |
17 | </scroll_list> | 17 | </scroll_list> |
18 | <text bottom_delta="-30" follows="left|bottom" font="SansSerifSmall" height="20" | 18 | <text bottom_delta="-30" follows="left|bottom" font="SansSerifSmall" height="20" |
19 | left="10" name="id_text" width="100"> | 19 | left="10" name="id_text" width="100"> |
diff --git a/linden/indra/newview/skins/default/xui/en-us/notify.xml b/linden/indra/newview/skins/default/xui/en-us/notify.xml index 60f70b2..6af19ee 100644 --- a/linden/indra/newview/skins/default/xui/en-us/notify.xml +++ b/linden/indra/newview/skins/default/xui/en-us/notify.xml | |||
@@ -997,7 +997,7 @@ Click Accept to join the chat or Decline to decline the invitation. Click Mute t | |||
997 | </notify> | 997 | </notify> |
998 | <notify name="ProximalVoiceChannelFull" tip="true" unique="true"> | 998 | <notify name="ProximalVoiceChannelFull" tip="true" unique="true"> |
999 | <message name="message"> | 999 | <message name="message"> |
1000 | We're sorry. This area has has reached maximum capacity for voice conversations. Please try to use voice in another area. | 1000 | We're sorry. This area has reached maximum capacity for voice conversations. Please try to use voice in another area. |
1001 | </message> | 1001 | </message> |
1002 | </notify> | 1002 | </notify> |
1003 | <notify name="VoiceChannelDisconnected" tip="true" unique="true"> | 1003 | <notify name="VoiceChannelDisconnected" tip="true" unique="true"> |
diff --git a/linden/indra/newview/skins/default/xui/en-us/panel_preferences_voice.xml b/linden/indra/newview/skins/default/xui/en-us/panel_preferences_voice.xml index 62fb7b7..7d72001 100644 --- a/linden/indra/newview/skins/default/xui/en-us/panel_preferences_voice.xml +++ b/linden/indra/newview/skins/default/xui/en-us/panel_preferences_voice.xml | |||
@@ -36,11 +36,6 @@ | |||
36 | name="voice_chat_description" tab_stop="false" width="450" word_wrap="true"> | 36 | name="voice_chat_description" tab_stop="false" width="450" word_wrap="true"> |
37 | Push-to-Talk mode lets you control when your voice is transmitted. When in toggle mode, press and release the push-to-talk trigger to switch your microphone on and off. When not in toggle mode, the microphone is active only when the trigger is held down. | 37 | Push-to-Talk mode lets you control when your voice is transmitted. When in toggle mode, press and release the push-to-talk trigger to switch your microphone on and off. When not in toggle mode, the microphone is active only when the trigger is held down. |
38 | </text_editor> | 38 | </text_editor> |
39 | <!-- <check_box bottom_delta="-20" control_name="EnablePushToTalk" enabled="true" --> | ||
40 | <!-- follows="left|top" font="SansSerifSmall" height="16" initial_value="false" --> | ||
41 | <!-- label="Start Viewer in Push-to-Talk mode" left_delta="0" --> | ||
42 | <!-- mouse_opaque="true" name="push_to_talk_check" radio_style="false" --> | ||
43 | <!-- width="200" /> --> | ||
44 | <check_box bottom_delta="-20" control_name="PushToTalkToggle" enabled="true" | 39 | <check_box bottom_delta="-20" control_name="PushToTalkToggle" enabled="true" |
45 | follows="left|top" font="SansSerifSmall" height="16" initial_value="false" | 40 | follows="left|top" font="SansSerifSmall" height="16" initial_value="false" |
46 | label="Use Push-to-Talk in toggle mode" left_delta="0" mouse_opaque="true" | 41 | label="Use Push-to-Talk in toggle mode" left_delta="0" mouse_opaque="true" |
diff --git a/linden/indra/newview/skins/default/xui/en-us/panel_voice_options.xml b/linden/indra/newview/skins/default/xui/en-us/panel_voice_options.xml index 0ecf3fc..494cd39 100644 --- a/linden/indra/newview/skins/default/xui/en-us/panel_voice_options.xml +++ b/linden/indra/newview/skins/default/xui/en-us/panel_voice_options.xml | |||
@@ -20,10 +20,6 @@ | |||
20 | font="SansSerifSmall" height="16" initial_value="false" | 20 | font="SansSerifSmall" height="16" initial_value="false" |
21 | label="Only allow Friends to initiate Voice Calls with me" left="20" | 21 | label="Only allow Friends to initiate Voice Calls with me" left="20" |
22 | left_delta="2" name="friends_only_check" width="200" /> | 22 | left_delta="2" name="friends_only_check" width="200" /> |
23 | <!-- <check_box bottom_delta="-20" control_name="EnablePushToTalk" follows="left|top" --> | ||
24 | <!-- font="SansSerifSmall" height="16" initial_value="false" --> | ||
25 | <!-- label="Start Viewer in Push-to-Talk mode" left_delta="0" --> | ||
26 | <!-- name="push_to_talk_check" width="200" /> --> | ||
27 | <check_box bottom_delta="-20" control_name="PushToTalkToggle" follows="left|top" | 23 | <check_box bottom_delta="-20" control_name="PushToTalkToggle" follows="left|top" |
28 | font="SansSerifSmall" height="16" initial_value="false" | 24 | font="SansSerifSmall" height="16" initial_value="false" |
29 | label="Use Push-to-Talk in toggle mode" left_delta="0" | 25 | label="Use Push-to-Talk in toggle mode" left_delta="0" |
diff --git a/linden/indra/newview/skins/default/xui/es/panel_toolbar.xml b/linden/indra/newview/skins/default/xui/es/panel_toolbar.xml index b804f95..3a3b1df 100644 --- a/linden/indra/newview/skins/default/xui/es/panel_toolbar.xml +++ b/linden/indra/newview/skins/default/xui/es/panel_toolbar.xml | |||
@@ -3,7 +3,7 @@ | |||
3 | <layout_stack name="toolbar_stack"> | 3 | <layout_stack name="toolbar_stack"> |
4 | <button label="MI" name="im_btn" | 4 | <button label="MI" name="im_btn" |
5 | tool_tip="Enviar mensaje instantáneo para sus amigos." /> | 5 | tool_tip="Enviar mensaje instantáneo para sus amigos." /> |
6 | <button label="Chat" name="chat_btn" tool_tip="Talk to people nearby. (Enter)" /> | 6 | <button label="" name="chat_btn" tool_tip="Talk to people nearby. (Enter)" /> |
7 | <button label="Amigos" name="friends_btn" | 7 | <button label="Amigos" name="friends_btn" |
8 | tool_tip="Encontrar y se comunicar con sus amigos." /> | 8 | tool_tip="Encontrar y se comunicar con sus amigos." /> |
9 | <button label="Volar" label_selected="Parar de volar" name="fly_btn" | 9 | <button label="Volar" label_selected="Parar de volar" name="fly_btn" |
diff --git a/linden/indra/newview/skins/default/xui/fr/panel_toolbar.xml b/linden/indra/newview/skins/default/xui/fr/panel_toolbar.xml index 87e32b2..8476264 100644 --- a/linden/indra/newview/skins/default/xui/fr/panel_toolbar.xml +++ b/linden/indra/newview/skins/default/xui/fr/panel_toolbar.xml | |||
@@ -3,7 +3,7 @@ | |||
3 | <layout_stack name="toolbar_stack"> | 3 | <layout_stack name="toolbar_stack"> |
4 | <button label="IM" name="im_btn" | 4 | <button label="IM" name="im_btn" |
5 | tool_tip="Envoyez des messages instantanés à vos amis." /> | 5 | tool_tip="Envoyez des messages instantanés à vos amis." /> |
6 | <button label="Chat" name="chat_btn" | 6 | <button label="" name="chat_btn" |
7 | tool_tip="Parlez aux personnes dans votre entourage. Cliquez Chat puis Historique pour afficher ce qui s'est dit." /> | 7 | tool_tip="Parlez aux personnes dans votre entourage. Cliquez Chat puis Historique pour afficher ce qui s'est dit." /> |
8 | <button label="Amis" name="friends_btn" | 8 | <button label="Amis" name="friends_btn" |
9 | tool_tip="Retrouvez vos amis et communiquez avec eux." /> | 9 | tool_tip="Retrouvez vos amis et communiquez avec eux." /> |
diff --git a/linden/indra/newview/skins/default/xui/ja/alerts.xml b/linden/indra/newview/skins/default/xui/ja/alerts.xml index a664d36..03e2ff9 100644 --- a/linden/indra/newview/skins/default/xui/ja/alerts.xml +++ b/linden/indra/newview/skins/default/xui/ja/alerts.xml | |||
@@ -396,9 +396,9 @@ Studio exhibitのウェブ・ページで確認してください。 | |||
396 | </alert> | 396 | </alert> |
397 | <alert name="ClickPublishHelpAvatar"> | 397 | <alert name="ClickPublishHelpAvatar"> |
398 | <message name="message"> | 398 | <message name="message"> |
399 | 「検索に表示選択すると表示: | 399 | [検索に表示]を選択すると表示: |
400 | - 検索結果における自分のプロフィール | 400 | - 検索結果における自分のプロフィール |
401 | - パブリックグループページにおける自分のプロフィールへのリンク | 401 | - パブリックループージにおける自分のプロフィールへのリンク |
402 | </message> | 402 | </message> |
403 | </alert> | 403 | </alert> |
404 | <alert name="ClickPartnerHelpAvatar"> | 404 | <alert name="ClickPartnerHelpAvatar"> |
@@ -416,12 +416,13 @@ Studio exhibitのウェブ・ページで確認してください。 | |||
416 | </alert> | 416 | </alert> |
417 | <alert name="ClickWebProfileHelpAvatar"> | 417 | <alert name="ClickWebProfileHelpAvatar"> |
418 | <message name="message"> | 418 | <message name="message"> |
419 | この住人がウェブ・プロフィールURLを設定している場合は、以下のことが可能です。 | 419 | この住人がウェブプロフィールURLを設定している場合は、以下のことが可能です。 |
420 | *そのページを内蔵ブラウザーで表示するには、[ロード]をクリックします。 | 420 | * そのページを内蔵ブラウザーで表示するには、[ロード]をクリックします。 |
421 | *そのページをデフォルトの外部ウェブ・ブラウザーで表示するには、[開く]をクリックします。 | 421 | * そのページを外部ブラウザーで表示するには、[ロード]-[開く]をクリックします。 |
422 | * 別のページにアクセスしてしまい、住人のウェブ・プロフィールに戻りたい時は、[ロード]-[ホームURL]をクリックします。 | ||
422 | 423 | ||
423 | 自分のプロフィールを表示しているときは、任意のURLをウェブ・プロフィールとして入力できます。 | 424 | 自分のプロフィールを表示しているときは、任意のURLをウェブプロフィールとして入力し、[OK]をクリックして設定できます。 |
424 | プロフィールを見た住人は、そのURLにアクセスすることができます。 | 425 | プロフィールを見たの人は、そのURLにアクセスすることができます。 |
425 | </message> | 426 | </message> |
426 | </alert> | 427 | </alert> |
427 | <alert name="ClickWebProfileNoWebHelpAvatar"> | 428 | <alert name="ClickWebProfileNoWebHelpAvatar"> |
@@ -698,7 +699,7 @@ Studio exhibitのウェブ・ページで確認してください。 | |||
698 | </alert> | 699 | </alert> |
699 | <alert name="PromptMissingSubjMsg"> | 700 | <alert name="PromptMissingSubjMsg"> |
700 | <message name="message"> | 701 | <message name="message"> |
701 | デフォルトの件名またはメッセージを付けて、ポストカードを送信しますか? | 702 | デフォルトの件名またはメッセージを付けて、スナップショットを送信しますか? |
702 | </message> | 703 | </message> |
703 | <option name="OK"> | 704 | <option name="OK"> |
704 | OK | 705 | OK |
@@ -817,7 +818,7 @@ Studio exhibitのウェブ・ページで確認してください。 | |||
817 | </alert> | 818 | </alert> |
818 | <alert name="ErrorUploadingPostcard"> | 819 | <alert name="ErrorUploadingPostcard"> |
819 | <message name="message"> | 820 | <message name="message"> |
820 | 次の理由で、時に問題が起こりました。 [REASON] | 821 | 次の理由で、スッッ送信時に問題が起こりました: [REASON] |
821 | </message> | 822 | </message> |
822 | </alert> | 823 | </alert> |
823 | <alert name="ErrorUploadingReportScreenshot"> | 824 | <alert name="ErrorUploadingReportScreenshot"> |
@@ -859,14 +860,16 @@ Studio exhibitのウェブ・ページで確認してください。 | |||
859 | </alert> | 860 | </alert> |
860 | <alert name="MustHaveAccountToLogIn"> | 861 | <alert name="MustHaveAccountToLogIn"> |
861 | <message name="message"> | 862 | <message name="message"> |
862 | [SECOND_LIFE]に接続するにはアカウントが必要です。 | 863 | おっと! 記入漏れがありますよ。 |
863 | アカウントを作成するためにwww.secondlife.comを開きますか? | 864 | アバターのファーストネームとラストネームの両方を入力する必要があります。 |
865 | |||
866 | [SECOND_LIFE]に入るには、アカウントが必要です。 アカウントを作成しますか? | ||
864 | </message> | 867 | </message> |
865 | <option name="OK"> | 868 | <option name="OK"> |
866 | OK | 869 | 新しいアカウントを作成 |
867 | </option> | 870 | </option> |
868 | <option name="Cancel"> | 871 | <option name="Cancel"> |
869 | 取消 | 872 | 一度試す |
870 | </option> | 873 | </option> |
871 | </alert> | 874 | </alert> |
872 | <alert name="FreezeAvatarFullname"> | 875 | <alert name="FreezeAvatarFullname"> |
@@ -1378,6 +1381,17 @@ www.secondlife.comに戻って、新規アカウントの作成を行います | |||
1378 | 女性 | 1381 | 女性 |
1379 | </option> | 1382 | </option> |
1380 | </alert> | 1383 | </alert> |
1384 | <alert name="EstateObjectReturn"> | ||
1385 | <message name="message"> | ||
1386 | [USER_NAME]が所有しているオブジェクトを返却しますか? | ||
1387 | </message> | ||
1388 | <option name="Return"> | ||
1389 | OK | ||
1390 | </option> | ||
1391 | <option name="Cancel"> | ||
1392 | キャンセル | ||
1393 | </option> | ||
1394 | </alert> | ||
1381 | <alert name="MaxAgentOnRegionBatch"> | 1395 | <alert name="MaxAgentOnRegionBatch"> |
1382 | <message name="message"> | 1396 | <message name="message"> |
1383 | [NUM_ADDED] 個のエージェントを追加しようとして失敗しました: [MAX_AGENTS] [LIST_TYPE] 制限を [NUM_EXCESS] 個超過しています。 | 1397 | [NUM_ADDED] 個のエージェントを追加しようとして失敗しました: [MAX_AGENTS] [LIST_TYPE] 制限を [NUM_EXCESS] 個超過しています。 |
@@ -1658,7 +1672,7 @@ www.secondlife.comに戻って、新規アカウントの作成を行います | |||
1658 | <alert name="CannotGiveCategory"> | 1672 | <alert name="CannotGiveCategory"> |
1659 | <message name="message"> | 1673 | <message name="message"> |
1660 | 選択したフォルダを譲渡できる権限 | 1674 | 選択したフォルダを譲渡できる権限 |
1661 | がありません。 | 1675 | がありません |
1662 | </message> | 1676 | </message> |
1663 | </alert> | 1677 | </alert> |
1664 | <alert name="FreezeAvatar"> | 1678 | <alert name="FreezeAvatar"> |
@@ -2048,7 +2062,7 @@ www.secondlife.comに戻って、新規アカウントの作成を行います | |||
2048 | <alert name="CannotBuyLandNoRegion"> | 2062 | <alert name="CannotBuyLandNoRegion"> |
2049 | <message name="message"> | 2063 | <message name="message"> |
2050 | 土地を購入できません: | 2064 | 土地を購入できません: |
2051 | この土地がある地域を見つけることができません。 | 2065 | この土地がある地域を見つけることができません |
2052 | </message> | 2066 | </message> |
2053 | </alert> | 2067 | </alert> |
2054 | <alert name="CannotDeedLandNothingSelected"> | 2068 | <alert name="CannotDeedLandNothingSelected"> |
@@ -2426,15 +2440,12 @@ L$は贈与されません。 | |||
2426 | </alert> | 2440 | </alert> |
2427 | <alert name="YouHaveBeenLoggedOut"> | 2441 | <alert name="YouHaveBeenLoggedOut"> |
2428 | <message name="message"> | 2442 | <message name="message"> |
2429 | あなたは[SECOND_LIFE]からログアウトされました: | 2443 | あなたは[SECOND_LIFE]からログアウトされました。 |
2430 | [MESSAGE] | 2444 | [MESSAGE] |
2431 | 2445 | [IMとチャットを表示]をクリックすると、現在あるIMとチャットを確認できます。 確認しない場合は、[終了]をクリックして、すぐに[SECOND_LIFE]を終了してください。 | |
2432 | [続行]をクリックすると現在あるIMとチャットを確認できます。 | ||
2433 | これ以外の操作はできません。 | ||
2434 | [終了]をクリックして、すぐに[SECOND_LIFE]を終了してください。 | ||
2435 | </message> | 2446 | </message> |
2436 | <option name="Continue"> | 2447 | <option name="Continue"> |
2437 | 続 | 2448 | IMとチャットを示 |
2438 | </option> | 2449 | </option> |
2439 | <option name="Quit"> | 2450 | <option name="Quit"> |
2440 | 終了 | 2451 | 終了 |
@@ -2456,11 +2467,10 @@ L$は贈与されません。 | |||
2456 | </alert> | 2467 | </alert> |
2457 | <alert name="AddFriend" title="フレンドを追加"> | 2468 | <alert name="AddFriend" title="フレンドを追加"> |
2458 | <message name="message"> | 2469 | <message name="message"> |
2459 | フレンド同士は、地図上で互いを追跡し、 | 2470 | フレンド同士は、地図上でお互いを追跡し、 |
2460 | オンライン・ステータスの更新情報を受信する | 2471 | オンライン・ステータスの更新情報を受信する権限を与え合うことができます。 |
2461 | 権限を与え合うことができます。 | ||
2462 | 2472 | ||
2463 | [NAME]とフレンド登録をしますか? | 2473 | [NAME]とフレンド登録をしますか? |
2464 | </message> | 2474 | </message> |
2465 | <option name="Offer"> | 2475 | <option name="Offer"> |
2466 | OK | 2476 | OK |
@@ -2468,6 +2478,7 @@ L$は贈与されません。 | |||
2468 | <option name="Cancel"> | 2478 | <option name="Cancel"> |
2469 | 取り消し | 2479 | 取り消し |
2470 | </option> | 2480 | </option> |
2481 | フレンドになっていただけますか? | ||
2471 | </alert> | 2482 | </alert> |
2472 | <alert name="RemoveFromFriends"> | 2483 | <alert name="RemoveFromFriends"> |
2473 | <message name="message"> | 2484 | <message name="message"> |
@@ -4502,15 +4513,18 @@ http://secondlife.com/community/support.php | |||
4502 | </alert> | 4513 | </alert> |
4503 | <alert name="HelpReportAbuseContainsCopyright"> | 4514 | <alert name="HelpReportAbuseContainsCopyright"> |
4504 | <message name="message"> | 4515 | <message name="message"> |
4505 | 親愛なる住人の皆様へ: | 4516 | 親愛なる住人の皆様へ |
4506 | 4517 | ||
4507 | 著作権侵害に関する報告はhttp://secondlife.com/corporate/dmca.phpの | 4518 | 知的所有権の侵害を報告する場合は、以下のとおり正確に報告してください。 |
4508 | 記述に従ってのみ提出することができます。 | 4519 | |
4520 | (1) 嫌がらせの処理。 住人がSecond Lifeの許可システムを不当に使用し、知的所有権が侵害されていると考えられる場合は、嫌がらせ報告を提出することができます。許可システムを不当に使用する手段としては、たとえば、CopyBotまたは類似したコピー・ツールがあります。 嫌がらせ対応担当チームが調査を行い、Second Lifeのコミュニティ・スタンダードまたは利用規約に違反する態度に対しては適切な懲罰処分が行われます。 ただし、嫌がらせ対応担当チームでは、コンテンツをSecond Lifeワールドから削除するリクエストに対する処理または回答は行いません。 | ||
4521 | |||
4522 | (2) DMCAまたはコンテンツの削除処理。 Second Lifeからのコンテンツの削除をリクエストするには、http://secondlife.com/corporate/dmca.phpのDMCAポリシーにある、侵害に関する有効な通知を提出する必要があります。 | ||
4523 | |||
4524 | 嫌がらせの処理を継続する場合は、このウインドウを閉じ、報告を提出してください。 | ||
4509 | 4525 | ||
4510 | [嫌がらせ報告]機能を通じて著作権侵害に関する報告を提出しても、その報告は自動的に破棄されます。著作権侵害に関係のない報告であれば、このウィンドウを閉じて報告を提出することができます。 | ||
4511 | |||
4512 | ご協力ありがとうございます。 | 4526 | ご協力ありがとうございます。 |
4513 | 4527 | ||
4514 | Linden Lab | 4528 | Linden Lab |
4515 | </message> | 4529 | </message> |
4516 | </alert> | 4530 | </alert> |
@@ -4587,8 +4601,7 @@ Linden Lab | |||
4587 | </alert> | 4601 | </alert> |
4588 | <alert name="ConfirmClearCookies"> | 4602 | <alert name="ConfirmClearCookies"> |
4589 | <message name="message"> | 4603 | <message name="message"> |
4590 | 本当にクッキーを | 4604 | 本当にクッキーをクリアしますか? |
4591 | クリアしますか? | ||
4592 | </message> | 4605 | </message> |
4593 | <option name="Yes"> | 4606 | <option name="Yes"> |
4594 | はい | 4607 | はい |
@@ -5052,7 +5065,7 @@ Linden Lab | |||
5052 | <alert name="Cannot_Purchase_an_Attachment"> | 5065 | <alert name="Cannot_Purchase_an_Attachment"> |
5053 | <message name="message"> | 5066 | <message name="message"> |
5054 | アイテムが添付物の一部である間は、 | 5067 | アイテムが添付物の一部である間は、 |
5055 | アイテムを購入できません。 | 5068 | アイテムを購入できません。 |
5056 | </message> | 5069 | </message> |
5057 | </alert> | 5070 | </alert> |
5058 | <alert name="DebitPermissionDetails" | 5071 | <alert name="DebitPermissionDetails" |
diff --git a/linden/indra/newview/skins/default/xui/ja/floater_about.xml b/linden/indra/newview/skins/default/xui/ja/floater_about.xml index 57faea0..6f6ec42 100644 --- a/linden/indra/newview/skins/default/xui/ja/floater_about.xml +++ b/linden/indra/newview/skins/default/xui/ja/floater_about.xml | |||
@@ -1,32 +1,32 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="floater_about" title="Second Lifeについて"> | 2 | <floater name="floater_about" title="Second Lifeについて"> |
3 | <text_editor name="credits_editor"> | 3 | <text_editor name="credits_editor"> |
4 | Second Life は、 Philip、 Tessa、 Andrew、 Cory、 Ben、 Bunny、 Char、 Charlie、 Colin、 Dan、 Daniel、 Doug、 Eric、 Hamlet、 Haney、 Hunter、 Ian、 Jeff、 Jim、 John、 Lee、 Mark、 Peter、 Phoenix、 Richard、 Robin、 Xenon、 Steve、 Tanya、 Eddie、 Frank、 Bruce、 Aaron、 Alice、 Bob、 Debra、 Eileen、 Helen、 Janet、 Louie、 Leviathania、 Stefan、 Ray、 Kevin、 Tom、 Mikeb、 MikeT、 Burgess、 Elena、 Tracy、 BillTodd、 Ryan、 Zach、 Sarah、 Nova、 Otakon、 Tim、 Stephanie、 Michael、 Evan、 Nicolas、 Catherine、 Rachelle、 Dave、 Holly、 Bub、 Kelly、 Magellan、 Ramzi、 Don、 Sabin、 Jill、 Rheya、 DanceStar、 Jeska、 Hungry、 Torley、 Kona、 Callum、 Charity、 Ventrella、 Jack、 Uncle、 Vektor、 Iris、 Chris、 Nicole、 Mick、 Reuben、 Blue、 Babbage、 Yedwab、 Deana、 Lauren、 Brent、 Pathfinder、 Chadrick、 Altruima、 Jesse、 Monroe、 David、 Tess、 Lizzie、 Patsy、 Pony、 Isaac、 Lawrence、 Cyn、 Bo、 Gia、 Annette、 Marius、 Tbone、 Jonathan、 Karen、 Ginsu、 Yuko、 Makiko、 Thomas、 Harry、 Seth、 Alexei、 Brian、 Guy、 Runitai、 Ethan、 Data、 Cornelius、 Kenny、 Swiss、 Zero、 Natria、 Wendy、 Stephen、 Teeple、 Thumper、 Lucy、 Dee、 Mia、 Liana、 Warren、 Branka、 Aura、 beez、 Milo、 Hermia、 Red、 Thrax、 Joe、 Sally、 Magenta、 Paul、 Jose、 Rejean、 Henrik、 Lexie、 Amber、 Logan、 Xan、 Nora、 Morpheus、 Donovan、 Leyla、 MichaelFrancis、 Beast、 Cube、 Bucky、 Joshua、 Stryfe、 Harmony、 Teresa、 Claudia、 Walker、 Glenn、 Fritz、 Fordak、 June、 Cleopetra、 Jean、 Ivy、 Betsy、 Roosevelt、 Spike、 Ken、 Which、 Tofu、 Chiyo、 Rob、 Zee、 dustin、 George、 Del、 Matthew、 Cat、 Jacqui、 Lightfoot、 Adrian、 Viola、 Alfred、 Noel、 Irfan、 Sunil、 Yool、 Rika、 Jane、 Xtreme、 Frontier、 a2、 Neo、 Siobhan、 Yoz、 Justin、 Elle、 Qarl、 Benjamin、 Isabel、 Gulliver、 Everett、 Christopher、 Izzy、 Stephany、 Garry、 Sejong、 Sean、 Tobin、 Iridium、 Meta、 Anthony、 Jeremy、 JP、 Jake、 Maurice、 Madhavi、 Leopard、 Kyle、 Joon、 Kari、 Bert、 Belinda、 Jon、 Kristi、 Bridie、 Pramod、 KJ、 Socrates、 Maria、 Ivan、 Aric、 Yamasaki、 Adreanne、 Jay、 MitchK、 Ceren、 Coco、 Durl、 Jenny、 Periapse、 Kartic、 Storrs、 Lotte、 Sandy、 Colossus、 Zen、 BigPapi、 Brad、 Pastrami、 Kurz、 Mani、 Neuro、 Jaime、 MJ、 Rowan、 Sgt、 Elvis、 Gecko、 Samuel、 Sardonyx、 Leo、 Bryan、 Niko、 Soft、 Poppy、 Rachel、 Aki、 Angelo、 Banzai、 Alexa、 Sue、 CeeLo、 Bender、 CG、 Gillian、 Pelle、 Nick、 Echo、 Zara、 Christine、 Shamiran、 Emma、 Blake、 Keiko、 Plexus、 Joppa、 Sidewinder、 Erica、 Ashlei、 Twilight、 Kristen、 Brett、 Q、 Enus、 Simon、 Bevis、 Kraft、 Kip、 Chandler、 Ron、 LauraP、 Ram、 KyleJM、 Scouse、 Prospero、 Melissa、 Marty、 Nat、 Hamilton、 Kend、 Lordan、 Jimmy、 Kosmo、 Seraph、 Green、 Ekim、 Wiggo、 JT、 Rome、 Doris、 Miz、 Benoc、 Whump、 Trinity、 Patch、 Kate、 TJ、 Bao、 Joohwan、 Christy、 Sofia、 Matias、 Cogsworth、 Johan、 Oreh、 Cheah、 Angela、 Brandy、 Mango、 Lan、 Aleks、 Gloria、 Heidy、 Mitchell、 Space、 Colton、 Bambers、 Einstein、 Maggie、 Malbers、 Rose、 Winnie、 Stella、 Milton、 Rothman、 Niall、 Marin、 Allison、 James、 Katie、 Dawn、 Katt、 Kalpana、 Judy、 Andrea、 Ambroff、 Infinity、 Gail、 Rico、 Raymond、 Yi、 William、 Christa、 M、 Teagan、 Scout、 Molly、 Dante、 Corr、 Dynamike、 Usi、 Kaylee、 Lil、 Danica、 Sascha、 Kelv、 Jacob、 Nya、 Rodney、 Brandon、 Elsie、 Blondin、 Grant、 Katrin、 Nyx、 Gabriel、 Locklainn、 Claire、 Devin、 Minerva、 Monty、 Austin、 Bradford、 Si、 Keira、 H、 Caitlin、 Dita、 Makai、 Jenn と、その他多数の人達によって作成されました。 | 4 | Second Lifeは、Philip、Tessa、Andrew、Cory、Ben、Bunny、Char、Charlie、Colin、Dan、Daniel、Doug、Eric、Hamlet、Haney、Hunter、Ian、Jeff、Jim、John、Lee、Mark、Peter、Phoenix、Richard、Robin、Xenon、Steve、Tanya、Eddie、Frank、Bruce、Aaron、Alice、Bob、Debra、Eileen、Helen、Janet、Louie、Leviathania、Stefan、Ray、Kevin、Tom、Mikeb、MikeT、Burgess、Elena、Tracy、BillTodd、Ryan、Zach、Sarah、Nova、Otakon、Tim、Stephanie、Michael、Evan、Nicolas、Catherine、Rachelle、Dave、Holly、Bub、Kelly、Magellan、Ramzi、Don、Sabin、Jill、Rheya、DanceStar、Jeska、Hungry、Torley、Kona、Callum、Charity、Ventrella、Jack、Uncle、Vektor、Iris、Chris、Nicole、Mick、Reuben、Blue、Babbage、Yedwab、Deana、Lauren、Brent、Pathfinder、Chadrick、Altruima、Jesse、Monroe、David、Tess、Lizzie、Patsy、Pony、Isaac、Lawrence、Cyn、Bo、Gia、Annette、Marius、Tbone、Jonathan、Karen、Ginsu、Yuko、Makiko、Thomas、Harry、Seth、Alexei、Brian、Guy、Runitai、Ethan、Data、Cornelius、Kenny、Swiss、Zero、Natria、Wendy、Stephen、Teeple、Thumper、Lucy、Dee、Mia、Liana、Warren、Branka、Aura、beez、Milo、Hermia、Red、Thrax、Joe、Sally、Magenta、Paul、Jose、Rejean、Henrik、Lexie、Amber、Logan、Xan、Nora、Morpheus、Donovan、Leyla、MichaelFrancis、Beast、Cube、Bucky、Joshua、Stryfe、Harmony、Teresa、Claudia、Walker、Glenn、Fritz、Fordak、June、Cleopetra、Jean、Ivy、Betsy、Roosevelt、Spike、Ken、Which、Tofu、Chiyo、Rob、Zee、dustin、George、Del、Matthew、Cat、Jacqui、Lightfoot、Adrian、Viola、Alfred、Noel、Irfan、Sunil、Yool、Rika、Jane、Xtreme、Frontier、a2、Neo、Siobhan、Yoz、Justin、Elle、Qarl、Benjamin、Isabel、Gulliver、Everett、Christopher、Izzy、Stephany、Garry、Sejong、Sean、Tobin、Iridium、Meta、Anthony、Jeremy、JP、Jake、Maurice、Madhavi、Leopard、Kyle、Joon、Kari、Bert、Belinda、Jon、Kristi、Bridie、Pramod、KJ、Socrates、Maria、Ivan、Aric、Yamasaki、Adreanne、Jay、MitchK、Ceren、Coco、Durl、Jenny、Periapse、Kartic、Storrs、Lotte、Sandy、Colossus、Zen、BigPapi、Brad、Pastrami、Kurz、Mani、Neuro、Jaime、MJ、Rowan、Sgt、Elvis、Gecko、Samuel、Sardonyx、Leo、Bryan、Niko、Soft、Poppy、Rachel、Aki、Angelo、Banzai、Alexa、Sue、CeeLo、Bender、CG、Gillian、Pelle、Nick、Echo、Zara、Christine、Shamiran、Emma、Blake、Keiko、Plexus、Joppa、Sidewinder、Erica、Ashlei、Twilight、Kristen、Brett、Q、Enus、Simon、Bevis、Kraft、Kip、Chandler、Ron、LauraP、Ram、KyleJM、Scouse、Prospero、Melissa、Marty、Nat、Hamilton、Kend、Lordan、Jimmy、Kosmo、Seraph、Green、Ekim、Wiggo、JT、Rome、Doris、Miz、Benoc、Whump、Trinity、Patch、Kate、TJ、Bao、Joohwan、Christy、Sofia、Matias、Cogsworth、Johan、Oreh、Cheah、Angela、Brandy、Mango、Lan、Aleks、Gloria、Heidy、Mitchell、Space、Colton、Bambers、Einstein、Maggie、Malbers、Rose、Winnie、Stella、Milton、Rothman、Niall、Marin、Allison、James、Katie、Dawn、Katt、Kalpana、Judy、Andrea、Ambroff、Infinity、Gail、Rico、Raymond、Yi、William、Christa、M、Teagan、Scout、Molly、Dante、Corr、Dynamike、Usi、Kaylee、Lil、Danica、Sascha、Kelv、Jacob、Nya、Rodney、Brandon、Elsie、Blondin、Grant、Katrin、Nyx、Gabriel、Locklainn、Claire、Devin、Minerva、Monty、Austin、Bradford、Si、Keira、H、Caitlin、Dita、Makai、Jennと、その他多数の人達によって作成されました。 |
5 | 5 | ||
6 | このバージョンをこれまでで最高のものになるようご協力をいただいた以下の住人の皆様に深く感謝いたします。aaron23 decuir、 Abra Miles、 absolute balderdash、 adelle fitzgerald、 Aeron Kohime、 Aki Shichiroji、 Alger Meads、 Alissa Sabre、 AlwaysIcey Mapholisto、 Arawn Spitteler、 Aren Mandala、 Arianna Wrigglesworth、 Bagushii Kohime、 Balpien Hammerer、 Blinking2342 Blinker、 byakuya runo、 Capucchy Streeter、 Chandra Jun、 Coyote Pace、 Crusher Soderstrom、 Cummere Mayo、 cyberrosa Rossini、 Dael Ra、 danana dodonpa、 Darek Deluca、 Davec Horsforth、 django yifu、 draco crane、 Dre Dagostino、 Ephyu Reino、 etan quan、 Fenrix Murakami、 Fledhyris Proudhon、 Fred Wardhani、 Frederich Courier、 garth fairchang、 Gellan Glenelg、 Geraldine Giha、 GOLAN Eilde、 gonzo joubert、 Hachiro Yokosuka、 Hampton Hax、 harleywood guru、 Hevenz Vansant、 imnotgoing sideways、 Jaden Giles、 Jeanette Janus、 Karl Dorance、 keaton Akina、 Khashai Steinbeck、 KiPSOFT Tuqiri、 kirstenlee Cinquetti、 Kitty Barnett、 Laurent Vesta、 Lazure Ryba、 Lima Vesperia、 Linzi Bingyi、 Lisa Lowe、 LuDon Ninetails、 Mark Rosenbaum、 McCabe Maxsted、 Michi Lumin、 Midi Aeon、 ml0rtd kit、 Mo Eriksen、 Morice Flanagan、 Mysterion Aeon、 Nad Gough、 norgan torok、 Pygar Bu、 Qie Niangao、 rachel corleone、 Rado Arado、 roberto salubrius、 Royer Pessoa、 samia bechir、 Sasha Nurmi、 Sean Heying、 Selkit Diller、 Shadow Pidgeon、 simon kline、 Smokie Ember、 Soap Clawtooth、 Strife Onizuka、 Tal Chernov、 Talan Hyun、 tangletwigs fairymeadow、 Tanya Spinotti、 Tayra Dagostino、 Teebone Aeon、 Theremes Langdon、 Thraxis Epsilon、 tucor Capalini、 Vasko Hawker、 VenusMari Zapedzki、 Vex Streeter、 Viktoria Dovgal、 Vincent Nacon、 Viridian Exonar、 Vivienne Schell、 WarKirby Magojiro、 Wilton Lundquist、 Yukinoroh Kamachi、 Zyzzy Zarf | 6 | このバージョンをこれまでで最高のものになるようご協力をいただいた以下の住人の皆様に深く感謝いたします。 aaron23 decuir、Abra Miles、absolute balderdash、adelle fitzgerald、Aeron Kohime、Aki Shichiroji、Alger Meads、Alissa Sabre、AlwaysIcey Mapholisto、Arawn Spitteler、Aren Mandala、Arianna Wrigglesworth、Bagushii Kohime、Balpien Hammerer、Blinking2342 Blinker、byakuya runo、Capucchy Streeter、Chandra Jun、Coyote Pace、Crusher Soderstrom、Cummere Mayo、cyberrosa Rossini、Dael Ra、danana dodonpa、Darek Deluca、Davec Horsforth、django yifu、draco crane、Dre Dagostino、Ephyu Reino、etan quan、Fenrix Murakami、Fledhyris Proudhon、Fred Wardhani、Frederich Courier、garth fairchang、Gellan Glenelg、Geraldine Giha、GOLAN Eilde、gonzo joubert、Hachiro Yokosuka、Hampton Hax、harleywood guru、Hevenz Vansant、imnotgoing sideways、Jaden Giles、Jeanette Janus、Karl Dorance、keaton Akina、Khashai Steinbeck、KiPSOFT Tuqiri、kirstenlee Cinquetti、Kitty Barnett、Laurent Vesta、Lazure Ryba、Lima Vesperia、Linzi Bingyi、Lisa Lowe、LuDon Ninetails、Mark Rosenbaum、McCabe Maxsted、Michi Lumin、Midi Aeon、ml0rtd kit、Mo Eriksen、Morice Flanagan、Mysterion Aeon、Nad Gough、norgan torok、Pygar Bu、Qie Niangao、rachel corleone、Rado Arado、roberto salubrius、Royer Pessoa、samia bechir、Sasha Nurmi、Sean Heying、Selkit Diller、Shadow Pidgeon、simon kline、Smokie Ember、Soap Clawtooth、Strife Onizuka、Tal Chernov、Talan Hyun、tangletwigs fairymeadow、Tanya Spinotti、Tayra Dagostino、Teebone Aeon、Theremes Langdon、Thraxis Epsilon、tucor Capalini、Vasko Hawker、VenusMari Zapedzki、Vex Streeter、Viktoria Dovgal、Vincent Nacon、Viridian Exonar、Vivienne Schell、WarKirby Magojiro、Wilton Lundquist、Yukinoroh Kamachi、Zyzzy Zarf |
7 | 7 | ||
8 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | 8 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion |
9 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 9 | APR Copyright (C) 2000-2004 The Apache Software Foundation |
10 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | 10 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) |
11 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | 11 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. |
12 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | 12 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). |
13 | GL Copyright (C) 1999-2004 Brian Paul. | 13 | GL Copyright (C) 1999-2004 Brian Paul. |
14 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | 14 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. |
15 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | 15 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) |
16 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | 16 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. |
17 | ogg/vorbis Copyright (C) 2001, Xiphophorus | 17 | ogg/vorbis Copyright (C) 2001, Xiphophorus |
18 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | 18 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. |
19 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | 19 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga |
20 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 20 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
21 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | 21 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. |
22 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | 22 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. |
23 | 23 | ||
24 | 無断写転載を禁じます。詳細はlicenses.txtを参照してください。 | 24 | 無断写製、載を禁じます。 詳細はlicenses.txtを参照してください。 |
25 | 25 | ||
26 | Voice chat Audio coding:Polycom(R) Siren14(TM) (ITU-T Rec.G.722.1 Annex C) | 26 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) |
27 | 27 | ||
28 | 28 | ||
29 | しは子犬-- M・ュ | 29 | 後回し夢は? --ュ |
30 | </text_editor> | 30 | </text_editor> |
31 | <text name="you_are_at"> | 31 | <text name="you_are_at"> |
32 | [POSITION]中 | 32 | [POSITION]中 |
diff --git a/linden/indra/newview/skins/default/xui/ja/floater_about_land.xml b/linden/indra/newview/skins/default/xui/ja/floater_about_land.xml index cbefed4..adc85df 100644 --- a/linden/indra/newview/skins/default/xui/ja/floater_about_land.xml +++ b/linden/indra/newview/skins/default/xui/ja/floater_about_land.xml | |||
@@ -115,6 +115,10 @@ | |||
115 | <text name="sale_pending_text"> | 115 | <text name="sale_pending_text"> |
116 | (購入審査中) | 116 | (購入審査中) |
117 | </text> | 117 | </text> |
118 | <string name="no_selection_text"> | ||
119 | 区画が選定されていません。 | ||
120 | [世界]メニュー>[土地情報]に進むか、別の区画を選択して、詳細を表示します。 | ||
121 | </string> | ||
118 | </panel> | 122 | </panel> |
119 | <panel label="約款" name="land_covenant_panel"> | 123 | <panel label="約款" name="land_covenant_panel"> |
120 | <text type="string" length="1" name="covenant_timestamp_text"> | 124 | <text type="string" length="1" name="covenant_timestamp_text"> |
diff --git a/linden/indra/newview/skins/default/xui/ja/floater_im.xml b/linden/indra/newview/skins/default/xui/ja/floater_im.xml index 1be8e7b..4887bee 100644 --- a/linden/indra/newview/skins/default/xui/ja/floater_im.xml +++ b/linden/indra/newview/skins/default/xui/ja/floater_im.xml | |||
@@ -7,7 +7,7 @@ | |||
7 | [FIRST] [LAST]はオフラインです。 | 7 | [FIRST] [LAST]はオフラインです。 |
8 | </text> | 8 | </text> |
9 | <string name="muted_message"> | 9 | <string name="muted_message"> |
10 | 住人はミュートされています。 | 10 | あなたはこの住人をミュートしています。 メッセージを送信すると、ミュートは自動的に解除されます。 |
11 | </string> | 11 | </string> |
12 | <text name="generic_request_error"> | 12 | <text name="generic_request_error"> |
13 | 要求中にエラーが発生しました。後でもう一度試してください。 | 13 | 要求中にエラーが発生しました。後でもう一度試してください。 |
diff --git a/linden/indra/newview/skins/default/xui/ja/floater_instant_message.xml b/linden/indra/newview/skins/default/xui/ja/floater_instant_message.xml index ab20016..365705c 100644 --- a/linden/indra/newview/skins/default/xui/ja/floater_instant_message.xml +++ b/linden/indra/newview/skins/default/xui/ja/floater_instant_message.xml | |||
@@ -12,6 +12,9 @@ | |||
12 | <string name="hang_up"> | 12 | <string name="hang_up"> |
13 | 通話が終了しました | 13 | 通話が終了しました |
14 | </string> | 14 | </string> |
15 | <string name="inventory_item_offered"> | ||
16 | 贈られた持ち物アイテム | ||
17 | </string> | ||
15 | <string name="voice_icon"> | 18 | <string name="voice_icon"> |
16 | icn_voice-pvtfocus.tga | 19 | icn_voice-pvtfocus.tga |
17 | </string> | 20 | </string> |
diff --git a/linden/indra/newview/skins/default/xui/ja/floater_live_lsleditor.xml b/linden/indra/newview/skins/default/xui/ja/floater_live_lsleditor.xml index b7ce98c..d28c673 100644 --- a/linden/indra/newview/skins/default/xui/ja/floater_live_lsleditor.xml +++ b/linden/indra/newview/skins/default/xui/ja/floater_live_lsleditor.xml | |||
@@ -2,6 +2,7 @@ | |||
2 | <floater name="script ed float" title="スクリプト:新しいスクリプト"> | 2 | <floater name="script ed float" title="スクリプト:新しいスクリプト"> |
3 | <button label="リセット" label_selected="リセット" name="Reset" /> | 3 | <button label="リセット" label_selected="リセット" name="Reset" /> |
4 | <check_box label="実行中" name="running" /> | 4 | <check_box label="実行中" name="running" /> |
5 | <check_box label="モノ" name="mono" /> | ||
5 | <text name="not_allowed"> | 6 | <text name="not_allowed"> |
6 | あなたはこのスクリプトを見ることができません。 | 7 | あなたはこのスクリプトを見ることができません。 |
7 | </text> | 8 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/ja/floater_mem_leaking.xml b/linden/indra/newview/skins/default/xui/ja/floater_mem_leaking.xml new file mode 100644 index 0000000..bdec7e5 --- /dev/null +++ b/linden/indra/newview/skins/default/xui/ja/floater_mem_leaking.xml | |||
@@ -0,0 +1,19 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="MemLeak" title="メモリ・リーク・シミュレーション"> | ||
3 | <spinner label="リークスピード(1フレームごとのバイト数):" | ||
4 | name="leak_speed" /> | ||
5 | <spinner label="リークした最大メモリ数(MB):" name="max_leak" /> | ||
6 | <text name="total_leaked_label"> | ||
7 | 現在のリークメモリサイズ: [SIZE] KB | ||
8 | </text> | ||
9 | <text name="note_label_1"> | ||
10 | [NOTE1] | ||
11 | </text> | ||
12 | <text name="note_label_2"> | ||
13 | [NOTE2] | ||
14 | </text> | ||
15 | <button label="開始" name="start_btn" /> | ||
16 | <button label="停止" name="stop_btn" /> | ||
17 | <button label="解放" name="release_btn" /> | ||
18 | <button label="閉じる" name="close_btn" /> | ||
19 | </floater> | ||
diff --git a/linden/indra/newview/skins/default/xui/ja/floater_postcard.xml b/linden/indra/newview/skins/default/xui/ja/floater_postcard.xml index eb318f6..1689ec7 100644 --- a/linden/indra/newview/skins/default/xui/ja/floater_postcard.xml +++ b/linden/indra/newview/skins/default/xui/ja/floater_postcard.xml | |||
@@ -1,37 +1,37 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="Postcard" title="トー送る"> | 2 | <floater name="Postcard" title="プッ電子送信"> |
3 | <text name="to_label"> | 3 | <text name="to_label"> |
4 | 住人の電子メール: | 4 | 住人の電子メール: |
5 | </text> | 5 | </text> |
6 | <line_editor left="145" name="to_form" width="125"/> | 6 | <line_editor left="145" name="to_form" width="125" /> |
7 | <text name="from_label"> | 7 | <text name="from_label"> |
8 | あなたのEメール: | 8 | あなたのEメール: |
9 | </text> | 9 | </text> |
10 | <line_editor left="145" name="from_form" width="125"/> | 10 | <line_editor left="145" name="from_form" width="125" /> |
11 | <text name="name_label"> | 11 | <text name="name_label"> |
12 | あなたの名前: | 12 | あなたの名前: |
13 | </text> | 13 | </text> |
14 | <line_editor left="145" name="name_form" width="125"/> | 14 | <line_editor left="145" name="name_form" width="125" /> |
15 | <text name="subject_label"> | 15 | <text name="subject_label"> |
16 | 件名: | 16 | 件名: |
17 | </text> | 17 | </text> |
18 | <line_editor label="件名をここにタイプ。" name="subject_form" left="145" width="125" /> | 18 | <line_editor label="件名をここにタイプ。" left="145" name="subject_form" |
19 | width="125" /> | ||
19 | <text name="msg_label"> | 20 | <text name="msg_label"> |
20 | メッセージ: | 21 | メッセージ: |
21 | </text> | 22 | </text> |
22 | <text_editor name="msg_form" height="110" bottom_delta="-120"> | 23 | <text_editor bottom_delta="-120" height="110" name="msg_form"> |
23 | メッセージをここにタイプ。 | 24 | メッセージをここにタイプ。 |
24 | </text_editor> | 25 | </text_editor> |
25 | <check_box label="ウェブ上で公開" name="allow_publish_check" | 26 | <check_box label="ウェブ上で公開" name="allow_publish_check" |
26 | tool_tip="このポストカードをウェブ上で公開します。" /> | 27 | tool_tip="このポストカードをウェブ上で公開します。" /> |
27 | <check_box label="成人向けコンテンツ" name="mature_check" | 28 | <check_box label="成人向けコンテンツ" name="mature_check" |
28 | tool_tip="このポストカードには成人向け内容が含まれます。" /> | 29 | tool_tip="このポストカードには成人向け内容が含まれます。" /> |
29 | <button label="?" name="publish_help_btn" left="300" /> | 30 | <button label="?" left="300" name="publish_help_btn" /> |
30 | <text name="fine_print"> | 31 | <text name="fine_print"> |
31 | あなたのポストカードの受信者がSLに参加すると、あなたは紹介ボーナスを受 | 32 | あなたの受信者がSLに参加すると、あなたは紹介ボーナスを受け取れます |
32 | け取ります。 | ||
33 | </text> | 33 | </text> |
34 | <button label="取り消し" name="cancel_btn" bottom_delta="-52" /> | 34 | <button bottom_delta="-52" label="取り消し" name="cancel_btn" /> |
35 | <button label="送信" name="send_btn" /> | 35 | <button label="送信" name="send_btn" /> |
36 | <text name="default_subject"> | 36 | <text name="default_subject"> |
37 | Second Life からのポストカード。 | 37 | Second Life からのポストカード。 |
@@ -39,4 +39,7 @@ | |||
39 | <text name="default_message"> | 39 | <text name="default_message"> |
40 | これは絶対チェック! | 40 | これは絶対チェック! |
41 | </text> | 41 | </text> |
42 | <string name="upload_message"> | ||
43 | 送信中... | ||
44 | </string> | ||
42 | </floater> | 45 | </floater> |
diff --git a/linden/indra/newview/skins/default/xui/ja/floater_report_abuse.xml b/linden/indra/newview/skins/default/xui/ja/floater_report_abuse.xml index e87b779..052e560 100644 --- a/linden/indra/newview/skins/default/xui/ja/floater_report_abuse.xml +++ b/linden/indra/newview/skins/default/xui/ja/floater_report_abuse.xml | |||
@@ -42,8 +42,101 @@ | |||
42 | <combo_item name="Selectcategory"> | 42 | <combo_item name="Selectcategory"> |
43 | カテゴリーを選択 | 43 | カテゴリーを選択 |
44 | </combo_item> | 44 | </combo_item> |
45 | <combo_item name="Select_category"> | ||
46 | カテゴリーを選択 | ||
47 | </combo_item> | ||
48 | <combo_item name="Age__Age_play"> | ||
49 | 年齢>年齢偽証 | ||
50 | </combo_item> | ||
51 | <combo_item name="Age__Adult_resident_on_Teen_Second_Life"> | ||
52 | 年齢>成人の住人がTeen Second Life上にいる | ||
53 | </combo_item> | ||
54 | <combo_item name="Age__Underage_resident_on_Adult_Second_Life"> | ||
55 | 年齢>未成年の住人がAdult Second Life上にいる | ||
56 | </combo_item> | ||
57 | <combo_item name="Assault__Combat_sandbox___unsafe_area"> | ||
58 | 攻撃>コンバット・サンドボックス/危険なエリア | ||
59 | </combo_item> | ||
60 | <combo_item name="Assault__Safe_area"> | ||
61 | 攻撃>安全なエリア | ||
62 | </combo_item> | ||
63 | <combo_item name="Assault__Weapons_testing_sandbox"> | ||
64 | 攻撃>武器テスト用サンドボックス | ||
65 | </combo_item> | ||
66 | <combo_item name="Copyright_or_intellectual_property_violation"> | ||
67 | 著作権または知的所有権に関する違反 | ||
68 | </combo_item> | ||
69 | <combo_item name="Commerce__Failure_to_deliver_product_or_service"> | ||
70 | 商取引>製品またはサービスの提供が行われない | ||
71 | </combo_item> | ||
72 | <combo_item name="Disclosure__First_Life_information"> | ||
73 | 開示>1st Lifeの情報 | ||
74 | </combo_item> | ||
75 | <combo_item name="Disclosure__Remotely_monitoring chat"> | ||
76 | 開示>離れたところからチャットをモニターしている | ||
77 | </combo_item> | ||
78 | <combo_item name="Disclosure__Second_Life_information_chat_IMs"> | ||
79 | 開示>Second Lifeの情報/チャット/IM | ||
80 | </combo_item> | ||
81 | <combo_item name="Disturbing_the_peace__Unfair_use_of_region_resources"> | ||
82 | 平穏を乱す行為>地域リソースの使用が不公平 | ||
83 | </combo_item> | ||
84 | <combo_item name="Disturbing_the_peace__Excessive_scripted_objects"> | ||
85 | 平穏を乱す行為>スクリプト・オブジェクトの乱用 | ||
86 | </combo_item> | ||
87 | <combo_item name="Disturbing_the_peace__Object_littering"> | ||
88 | 平穏を乱す行為>オブジェクトの捨て置き | ||
89 | </combo_item> | ||
90 | <combo_item name="Disturbing_the_peace__Repetitive_spam"> | ||
91 | 平穏を乱す行為>繰り返しスパム | ||
92 | </combo_item> | ||
93 | <combo_item name="Disturbing_the_peace__Unwanted_advert_spam"> | ||
94 | 平穏を乱す行為>不要な広告スパム | ||
95 | </combo_item> | ||
96 | <combo_item name="Fraud__L$"> | ||
97 | 詐欺> L$ | ||
98 | </combo_item> | ||
99 | <combo_item name="Fraud__Land"> | ||
100 | 詐欺>土地 | ||
101 | </combo_item> | ||
102 | <combo_item name="Fraud__Pyramid_scheme_or_chain_letter"> | ||
103 | 詐欺>マルチ商法またはチェーン・メール | ||
104 | </combo_item> | ||
105 | <combo_item name="Fraud__US$"> | ||
106 | 詐欺> US$ | ||
107 | </combo_item> | ||
108 | <combo_item name="Harassment__Advert_farms___visual_spam"> | ||
109 | 嫌がらせ>広告委託/視覚的なスパム | ||
110 | </combo_item> | ||
111 | <combo_item name="Harassment__Defaming_individuals_or_groups"> | ||
112 | 嫌がらせ>個人またはグループの中傷 | ||
113 | </combo_item> | ||
114 | <combo_item name="Harassment__Impeding_movement"> | ||
115 | 嫌がらせ>移動の妨害 | ||
116 | </combo_item> | ||
117 | <combo_item name="Harassment__Sexual_harassment"> | ||
118 | 嫌がらせ>性的な嫌がらせ | ||
119 | </combo_item> | ||
120 | <combo_item name="Harassment__Solicting_inciting_others_to_violate_ToS"> | ||
121 | 嫌がらせ>利用規約(ToS)に違反する行為を行うよう他者を勧誘/扇動 | ||
122 | </combo_item> | ||
123 | <combo_item name="Harassment__Verbal_abuse"> | ||
124 | 嫌がらせ>暴言 | ||
125 | </combo_item> | ||
126 | <combo_item name="Indecency__Broadly_offensive_content_or_conduct"> | ||
127 | わいせつ>著しく不快であると見なされるコンテンツまたは行為 | ||
128 | </combo_item> | ||
129 | <combo_item name="Indecency__Broadly_visible_mature_content"> | ||
130 | わいせつ>あからさまに見せつけられる成人向けと見なされるコンテンツ | ||
131 | </combo_item> | ||
132 | <combo_item name="Indecency__Inappropriate_avatar_name"> | ||
133 | わいせつ>不適切なアバター名 | ||
134 | </combo_item> | ||
135 | <combo_item name="Indecency__Mature_content_in_PG_region"> | ||
136 | わいせつ>PG地域で成人向けと見なされるコンテンツ | ||
137 | </combo_item> | ||
45 | <combo_item name="Intolerance"> | 138 | <combo_item name="Intolerance"> |
46 | 非許容 | 139 | 不 |
47 | </combo_item> | 140 | </combo_item> |
48 | <combo_item name="Harassment"> | 141 | <combo_item name="Harassment"> |
49 | 嫌がらせ | 142 | 嫌がらせ |
@@ -63,6 +156,24 @@ | |||
63 | <combo_item name="Parcel"> | 156 | <combo_item name="Parcel"> |
64 | 区画 | 157 | 区画 |
65 | </combo_item> | 158 | </combo_item> |
159 | <combo_item name="Land__Abuse_of_sandbox_resources"> | ||
160 | 土地>サンドボックス・リソースの乱用 | ||
161 | </combo_item> | ||
162 | <combo_item name="Land__Encroachment__Objects_textures"> | ||
163 | 土地>不法侵入>オブジェクト/テクスチャー | ||
164 | </combo_item> | ||
165 | <combo_item name="Land__Encroachment__Particles"> | ||
166 | 土地>不法侵入>パーティクル | ||
167 | </combo_item> | ||
168 | <combo_item name="Land__Encroachment__Trees_plants"> | ||
169 | 土地>不法侵入>樹木/植物 | ||
170 | </combo_item> | ||
171 | <combo_item name="Trademark_violation"> | ||
172 | 商標権の侵害 | ||
173 | </combo_item> | ||
174 | <combo_item name="Wagering_gambling"> | ||
175 | 賭け/ギャンブル | ||
176 | </combo_item> | ||
66 | <combo_item name="Other"> | 177 | <combo_item name="Other"> |
67 | その他 | 178 | その他 |
68 | </combo_item> | 179 | </combo_item> |
@@ -72,6 +183,8 @@ | |||
72 | </text> | 183 | </text> |
73 | <button label="住人を選択" label_selected="" name="select_abuser" | 184 | <button label="住人を選択" label_selected="" name="select_abuser" |
74 | tool_tip="嫌がらせをした人の名前をリストから選択してください。" /> | 185 | tool_tip="嫌がらせをした人の名前をリストから選択してください。" /> |
186 | <check_box label="嫌がらせをした人の名前が不明" name="omit_abuser_name" | ||
187 | tool_tip="嫌がらせをした人の名前を提供できないかについて、これを確認" /> | ||
75 | <text name="abuser_name_title2"> | 188 | <text name="abuser_name_title2"> |
76 | 嫌がらせの起きた場所: | 189 | 嫌がらせの起きた場所: |
77 | </text> | 190 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/ja/floater_skin_preview_template.xml b/linden/indra/newview/skins/default/xui/ja/floater_skin_preview_template.xml new file mode 100644 index 0000000..8be67d5 --- /dev/null +++ b/linden/indra/newview/skins/default/xui/ja/floater_skin_preview_template.xml | |||
@@ -0,0 +1,30 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <multi_floater name="floater_chatterbox"> | ||
3 | <icon label="飛行" label_selected="飛行を停止" name="" | ||
4 | tool_tip="飛行開始: EキーまたはPageUpキーで上昇、CキーまたはPageDownキーで下降" /> | ||
5 | <panel name="panel_unfocused_floater"> | ||
6 | <text name="titlebar_focused"> | ||
7 | アンフォーカス | ||
8 | </text> | ||
9 | <combo_box label="コンボ・ボックス" name="combo_box_1" /> | ||
10 | <text_editor name="Chat History Editor"> | ||
11 | テキスト | ||
12 | </text_editor> | ||
13 | </panel> | ||
14 | <panel name="panel_focused_floater"> | ||
15 | <text name="titlebar_focused"> | ||
16 | フォーカス | ||
17 | </text> | ||
18 | <tab_container name="chatterbox_tabs"> | ||
19 | <panel label="フォーカス" name="test_1"> | ||
20 | <slider label="スライダー" name="SliderTestName" /> | ||
21 | <check_box label="正" name="check_box_test_1" /> | ||
22 | <check_box label="不" name="check_box_test_2" /> | ||
23 | <text_editor name="Chat History Editor"> | ||
24 | チャット・テキスト | ||
25 | </text_editor> | ||
26 | </panel> | ||
27 | <panel label="アンフォーカス" name="test_2" /> | ||
28 | </tab_container> | ||
29 | </panel> | ||
30 | </multi_floater> | ||
diff --git a/linden/indra/newview/skins/default/xui/ja/floater_snapshot.xml b/linden/indra/newview/skins/default/xui/ja/floater_snapshot.xml index 694ea4e..57cd2d4 100644 --- a/linden/indra/newview/skins/default/xui/ja/floater_snapshot.xml +++ b/linden/indra/newview/skins/default/xui/ja/floater_snapshot.xml | |||
@@ -1,23 +1,26 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="Snapshot" title="プレビュー"> | 2 | <floater name="Snapshot" title="プレビュー"> |
3 | <text name="type_label"> | 3 | <text name="type_label"> |
4 | 何? | 4 | 送り先 |
5 | </text> | 5 | </text> |
6 | <radio_group label="スナップショット・タイプ" name="snapshot_type_radio"> | 6 | <radio_group label="スナップショット・タイプ" name="snapshot_type_radio"> |
7 | <radio_item name="postcard"> | 7 | <radio_item name="postcard"> |
8 | カ送信 | 8 | 電子ーで送信 |
9 | </radio_item> | 9 | </radio_item> |
10 | <radio_item name="texture"> | 10 | <radio_item name="texture"> |
11 | プード | 11 | 持物保(L$10) |
12 | </radio_item> | 12 | </radio_item> |
13 | <radio_item name="local"> | 13 | <radio_item name="local"> |
14 | ハードに保存 | 14 | ハードに保存 |
15 | </radio_item> | 15 | </radio_item> |
16 | </radio_group> | 16 | </radio_group> |
17 | <button label="全表示 >>" name="more_btn" tool_tip="高度なオプション" /> | 17 | <button label="全表示 >>" name="more_btn" tool_tip="高度なオプション" /> |
18 | <button label="<< 簡易" name="less_btn" tool_tip="高度なオプション" /> | 18 | <button label="<< 簡易" name="less_btn" tool_tip="高度なオプション" /> |
19 | <text name="type_label2"> | 19 | <text name="type_label2"> |
20 | どんな大きさの画像が必要ですか? | 20 | サイズ |
21 | </text> | ||
22 | <text name="format_label"> | ||
23 | フォーマット | ||
21 | </text> | 24 | </text> |
22 | <combo_box label="解像度" name="postcard_size_combo"> | 25 | <combo_box label="解像度" name="postcard_size_combo"> |
23 | <combo_item name="640x480"> | 26 | <combo_item name="640x480"> |
@@ -79,6 +82,17 @@ | |||
79 | カスタム | 82 | カスタム |
80 | </combo_item> | 83 | </combo_item> |
81 | </combo_box> | 84 | </combo_box> |
85 | <combo_box label="フォーマット" name="local_format_combo"> | ||
86 | <combo_item name="PNG"> | ||
87 | PNG | ||
88 | </combo_item> | ||
89 | <combo_item name="JPEG"> | ||
90 | JPEG | ||
91 | </combo_item> | ||
92 | <combo_item name="BMP"> | ||
93 | BMP | ||
94 | </combo_item> | ||
95 | </combo_box> | ||
82 | <spinner label="幅" name="snapshot_width" /> | 96 | <spinner label="幅" name="snapshot_width" /> |
83 | <spinner label="高さ" name="snapshot_height" /> | 97 | <spinner label="高さ" name="snapshot_height" /> |
84 | <slider label="画質" name="image_quality_slider" /> | 98 | <slider label="画質" name="image_quality_slider" /> |
@@ -105,10 +119,10 @@ | |||
105 | <check_box label="比率の制限" name="keep_aspect_check" /> | 119 | <check_box label="比率の制限" name="keep_aspect_check" /> |
106 | <check_box label="フレームをフリーズ(全画面)" name="freeze_frame_check" /> | 120 | <check_box label="フレームをフリーズ(全画面)" name="freeze_frame_check" /> |
107 | <button label="スナップショットを更新" name="new_snapshot_btn" /> | 121 | <button label="スナップショットを更新" name="new_snapshot_btn" /> |
108 | <check_box label="自動スナップショット" name="auto_snapshot_check" /> | 122 | <check_box label="自動更新" name="auto_snapshot_check" /> |
109 | <button label="アップロードL$10" name="upload_btn" /> | 123 | <button label="保存(L$10)" name="upload_btn" /> |
110 | <button label="送信" name="send_btn" /> | 124 | <button label="送信" name="send_btn" /> |
111 | <button label="保存" name="save_btn" /> | 125 | <button label="保存" name="save_btn" tool_tip="画像をファイルに保存" /> |
112 | <button label="キャンセル" name="discard_btn" /> | 126 | <button label="キャンセル" name="discard_btn" /> |
113 | <text name="unknown"> | 127 | <text name="unknown"> |
114 | 未知 | 128 | 未知 |
diff --git a/linden/indra/newview/skins/default/xui/ja/floater_tools.xml b/linden/indra/newview/skins/default/xui/ja/floater_tools.xml index 3ec14a7..e755b7c 100644 --- a/linden/indra/newview/skins/default/xui/ja/floater_tools.xml +++ b/linden/indra/newview/skins/default/xui/ja/floater_tools.xml | |||
@@ -89,6 +89,9 @@ | |||
89 | 大 | 89 | 大 |
90 | </combo_item> | 90 | </combo_item> |
91 | </combo_box> | 91 | </combo_box> |
92 | <text name="Strength:"> | ||
93 | 強度: | ||
94 | </text> | ||
92 | <button label="選択対象に適用" label_selected="選択対象に適用" | 95 | <button label="選択対象に適用" label_selected="選択対象に適用" |
93 | name="button apply to selection" tool_tip="選択した土地を修正" /> | 96 | name="button apply to selection" tool_tip="選択した土地を修正" /> |
94 | <check_box label="オーナーを表示" left="140" name="checkbox show owners" /> | 97 | <check_box label="オーナーを表示" left="140" name="checkbox show owners" /> |
@@ -153,6 +156,9 @@ | |||
153 | <text name="Price: L$"> | 156 | <text name="Price: L$"> |
154 | 料金:L$ | 157 | 料金:L$ |
155 | </text> | 158 | </text> |
159 | <text name="Cost"> | ||
160 | 価格: L$ | ||
161 | </text> | ||
156 | <radio_group left="30" name="sale type"> | 162 | <radio_group left="30" name="sale type"> |
157 | <radio_item name="Original"> | 163 | <radio_item name="Original"> |
158 | オリジナル | 164 | オリジナル |
@@ -229,6 +235,21 @@ | |||
229 | <text name="text modify warning"> | 235 | <text name="text modify warning"> |
230 | 権限を設定するには、オブジェクト全体を選択する必要があります。 | 236 | 権限を設定するには、オブジェクト全体を選択する必要があります。 |
231 | </text> | 237 | </text> |
238 | <string name="Cost Default"> | ||
239 | 価格: L$ | ||
240 | </string> | ||
241 | <string name="Cost Total"> | ||
242 | 合計価格: L$ | ||
243 | </string> | ||
244 | <string name="Cost Per Unit"> | ||
245 | 単価: L$ | ||
246 | </string> | ||
247 | <string name="Cost Mixed"> | ||
248 | 混合価格 | ||
249 | </string> | ||
250 | <string name="Sale Mixed"> | ||
251 | 混合販売 | ||
252 | </string> | ||
232 | </panel> | 253 | </panel> |
233 | <panel label="オブジェクト" name="Object"> | 254 | <panel label="オブジェクト" name="Object"> |
234 | <text name="select_single"> | 255 | <text name="select_single"> |
@@ -385,6 +406,10 @@ | |||
385 | </text> | 406 | </text> |
386 | <texture_picker label="変形テクスチャー" name="sculpt texture control" | 407 | <texture_picker label="変形テクスチャー" name="sculpt texture control" |
387 | tool_tip="クリックして写真を選択してください。" /> | 408 | tool_tip="クリックして写真を選択してください。" /> |
409 | <check_box label="ミラー" name="sculpt mirror control" | ||
410 | tool_tip="スカルプトされたプリムをX軸上で反転" /> | ||
411 | <check_box label="裏返し" name="sculpt invert control" | ||
412 | tool_tip="スカルプトされたプリムのノーマルを逆転させ、裏返しに表示" /> | ||
388 | <text name="label sculpt type"> | 413 | <text name="label sculpt type"> |
389 | 縫い目のタイプ | 414 | 縫い目のタイプ |
390 | </text> | 415 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/ja/floater_top_objects.xml b/linden/indra/newview/skins/default/xui/ja/floater_top_objects.xml index 879e2d8..819a715 100644 --- a/linden/indra/newview/skins/default/xui/ja/floater_top_objects.xml +++ b/linden/indra/newview/skins/default/xui/ja/floater_top_objects.xml | |||
@@ -8,6 +8,7 @@ | |||
8 | <column label="名前" name="name" /> | 8 | <column label="名前" name="name" /> |
9 | <column label="所有者" name="owner" /> | 9 | <column label="所有者" name="owner" /> |
10 | <column label="ロケーション" name="location" /> | 10 | <column label="ロケーション" name="location" /> |
11 | <column label="時間" name="time" /> | ||
11 | </scroll_list> | 12 | </scroll_list> |
12 | <text name="id_text"> | 13 | <text name="id_text"> |
13 | 物体ID: | 14 | 物体ID: |
diff --git a/linden/indra/newview/skins/default/xui/ja/floater_tos.xml b/linden/indra/newview/skins/default/xui/ja/floater_tos.xml index ee01a2b..31e3a24 100644 --- a/linden/indra/newview/skins/default/xui/ja/floater_tos.xml +++ b/linden/indra/newview/skins/default/xui/ja/floater_tos.xml | |||
@@ -13,6 +13,7 @@ | |||
13 | <text name="tos_title"> | 13 | <text name="tos_title"> |
14 | 利用規約 | 14 | 利用規約 |
15 | </text> | 15 | </text> |
16 | <check_box label="利用規約に同意します" name="agree_chk" /> | ||
16 | <text name="tos_heading"> | 17 | <text name="tos_heading"> |
17 | 以下の利用規約を注意深くお読みください。 SecondLifeへログインするには、 | 18 | 以下の利用規約を注意深くお読みください。 SecondLifeへログインするには、 |
18 | 規約に同意しなければなりません。 | 19 | 規約に同意しなければなりません。 |
diff --git a/linden/indra/newview/skins/default/xui/ja/menu_pie_avatar.xml b/linden/indra/newview/skins/default/xui/ja/menu_pie_avatar.xml index f206789..3be4b21 100644 --- a/linden/indra/newview/skins/default/xui/ja/menu_pie_avatar.xml +++ b/linden/indra/newview/skins/default/xui/ja/menu_pie_avatar.xml | |||
@@ -4,7 +4,7 @@ | |||
4 | <menu_item_call label="ミュート" name="Avatar Mute" /> | 4 | <menu_item_call label="ミュート" name="Avatar Mute" /> |
5 | <menu_item_call label="移動先" name="Go To" /> | 5 | <menu_item_call label="移動先" name="Go To" /> |
6 | <menu_item_call label="評価" name="Rate" /> | 6 | <menu_item_call label="評価" name="Rate" /> |
7 | <menu_item_call label="フレンドを追加" name="Add Friend" /> | 7 | <menu_item_call label="フレンドを追加..." name="Add Friend" /> |
8 | <menu_item_call label="支払い..." name="Pay..." /> | 8 | <menu_item_call label="支払い..." name="Pay..." /> |
9 | <pie_menu label="詳細>" name="More >"> | 9 | <pie_menu label="詳細>" name="More >"> |
10 | <menu_item_call label="フリーズ..." name="Freeze..." /> | 10 | <menu_item_call label="フリーズ..." name="Freeze..." /> |
diff --git a/linden/indra/newview/skins/default/xui/ja/menu_viewer.xml b/linden/indra/newview/skins/default/xui/ja/menu_viewer.xml index 278e43f..ef68d38 100644 --- a/linden/indra/newview/skins/default/xui/ja/menu_viewer.xml +++ b/linden/indra/newview/skins/default/xui/ja/menu_viewer.xml | |||
@@ -146,6 +146,7 @@ | |||
146 | <menu_item_call label="退席中に設定" name="Set Away" /> | 146 | <menu_item_call label="退席中に設定" name="Set Away" /> |
147 | <menu_item_call label="ビジーに設定" name="Set Busy" /> | 147 | <menu_item_call label="ビジーに設定" name="Set Busy" /> |
148 | <menu_item_call label="アニメーションをすべて停止" name="Stop All Animations" /> | 148 | <menu_item_call label="アニメーションをすべて停止" name="Stop All Animations" /> |
149 | <menu_item_call label="キーを解除" name="Release Keys" /> | ||
149 | <menu_item_separator label="-----------" name="separator4" /> | 150 | <menu_item_separator label="-----------" name="separator4" /> |
150 | <menu_item_call label="口座履歴..." name="Account History..." /> | 151 | <menu_item_call label="口座履歴..." name="Account History..." /> |
151 | <menu_item_call label="自分の口座の管理..." name="Manage My Account..." /> | 152 | <menu_item_call label="自分の口座の管理..." name="Manage My Account..." /> |
@@ -216,7 +217,10 @@ | |||
216 | <menu_item_call label="スクリプト警告/エラー・ウィンドウを表示" | 217 | <menu_item_call label="スクリプト警告/エラー・ウィンドウを表示" |
217 | name="Show Script Warning/Error Window" /> | 218 | name="Show Script Warning/Error Window" /> |
218 | <menu_item_call label="選択したスクリプトを再コンパイル" | 219 | <menu_item_call label="選択したスクリプトを再コンパイル" |
219 | name="Recompile Scripts in Selection" /> | 220 | name="Recompile Scripts in Selection"> |
221 | <menu_item_call label="モノ" name="Mono" /> | ||
222 | <menu_item_call label="LSL" name="LSL" /> | ||
223 | </menu_item_call> | ||
220 | <menu_item_call label="選択したスクリプトをリセット" | 224 | <menu_item_call label="選択したスクリプトをリセット" |
221 | name="Reset Scripts in Selection" /> | 225 | name="Reset Scripts in Selection" /> |
222 | <menu_item_call label="選択したスクリプトを起動する" | 226 | <menu_item_call label="選択したスクリプトを起動する" |
diff --git a/linden/indra/newview/skins/default/xui/ja/mime_types.xml b/linden/indra/newview/skins/default/xui/ja/mime_types.xml index 9bebc7c..3d5f43a 100644 --- a/linden/indra/newview/skins/default/xui/ja/mime_types.xml +++ b/linden/indra/newview/skins/default/xui/ja/mime_types.xml | |||
@@ -112,6 +112,11 @@ | |||
112 | リッチ・テキスト (RTF) | 112 | リッチ・テキスト (RTF) |
113 | </label> | 113 | </label> |
114 | </mimetype> | 114 | </mimetype> |
115 | <mimetype name="application/smil"> | ||
116 | <label name="application/smil_label"> | ||
117 | 同期マルチメディア統合言語(SMIL) | ||
118 | </label> | ||
119 | </mimetype> | ||
115 | <mimetype name="application/xhtml+xml"> | 120 | <mimetype name="application/xhtml+xml"> |
116 | <label name="application/xhtml+xml_label"> | 121 | <label name="application/xhtml+xml_label"> |
117 | ウェブ・ページ (XHTML) | 122 | ウェブ・ページ (XHTML) |
@@ -222,4 +227,4 @@ | |||
222 | ムービー (AVI) | 227 | ムービー (AVI) |
223 | </label> | 228 | </label> |
224 | </mimetype> | 229 | </mimetype> |
225 | </mimetypes> \ No newline at end of file | 230 | </mimetypes> |
diff --git a/linden/indra/newview/skins/default/xui/ja/need_to_long.xml b/linden/indra/newview/skins/default/xui/ja/need_to_long.xml index 205da47..de50c4c 100644 --- a/linden/indra/newview/skins/default/xui/ja/need_to_long.xml +++ b/linden/indra/newview/skins/default/xui/ja/need_to_long.xml | |||
@@ -1,81 +1,127 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>alerts.xml</a_file> | 4 | <string> |
5 | <b_path>//HelpRegionObjectBonus/message</b_path> | 5 | <a_file>alerts.xml</a_file> |
6 | <c_attribute></c_attribute> | 6 | <b_path>//ClickWebProfileHelpAvatar/message</b_path> |
7 | <c_attribute/> | ||
7 | <d_old> | 8 | <d_old> |
8 | The Object Bonus is a multiplier for primitives allowed on any given | 9 | |
9 | parcel. The range allowed is 1 to 10. Set at '1', each 512m2 parcel | 10 | If this resident has a web profile URL set then you can: |
10 | is allowed 117 objects. Set at '2', each 512m2 parcel is | 11 | * Click Load to load the page with the embedded web browser. |
11 | allowed 234, or twice as many, and so on. The max number of objects | 12 | * Click Open to view externally in your default web browser. |
12 | allowed per region remains 15,000 no matter what the | ||
13 | Object Bonus is. once set, be aware that lowering the Object Bonus may cause | ||
14 | objects to be returned or deleted. | ||
15 | 13 | ||
16 | Default: 1.0 | 14 | When viewing your profile you can enter any URL as your Web Profile. |
17 | </d_old> | 15 | Residents can visit the URL you specify when they view your profile. |
16 | |||
17 | </d_old> | ||
18 | <e_new> | 18 | <e_new> |
19 | The Object Bonus is a multiplier for primitives allowed on any given | 19 | |
20 | parcel. The range allowed is 1 to 10. Set at '1', each 512m2 parcel | 20 | If this resident has set a web profile URL then you can: |
21 | is allowed 117 objects. Set at '2', each 512m2 parcel is | 21 | * Click "Load" to load the page with the embedded web browser. |
22 | allowed 234, or twice as many, and so on. The max number of objects | 22 | * Click Load->"Open in external browser" to view externally. |
23 | allowed per region remains 15,000 no matter what the | 23 | * Click Load->"Home URL" to return to resident's web profile if you've navigated away. |
24 | Object Bonus is. Once set, be aware that lowering the Object Bonus may cause objects to be returned or deleted. | ||
25 | 24 | ||
26 | Default: 1.0 | 25 | When viewing your own profile you can enter any URL as your web profile and click OK to set it. |
27 | </e_new> | 26 | Other residents can visit the URL you set when they view your profile. |
27 | |||
28 | </e_new> | ||
28 | <f_translation> | 29 | <f_translation> |
29 | オブジェクトボーナスは、区画において許可されているプリムの倍率数を | 30 | |
30 | 意味します。認可されている範囲は1から10です。したがって、'1'に設定すると、512 m2の土地には、 | 31 | この住人がウェブプロフィールURLを設定している場合は、以下のことが可能です。 |
31 | 117のオブジェクトが許可されます。'2'に設定すると、同じ512 m2の土地には、1のときの2倍にあたる | 32 | * そのページを内蔵ブラウザーで表示するには、[ロード]をクリックします。 |
32 | 234のオブジェクトが許可され、3以降も同様に増えていきます。全地域の最高オブジェクト数は、 | 33 | * そのページを外部ブラウザーで表示するには、[ロード]-[開く]をクリックします。 |
33 | オブジェクトボーナスの値に影響されず、 | 34 | * 別のページにアクセスしてしまい、住人のウェブ・プロフィールに戻りたい時は、[ロード]-[ホームURL]をクリックします。 |
34 | 15,000のまま変わりません。いったん決定した後でオブジェクトボーナスの値を下げると、オブジェクトが返却または削除される可能性がありますのでご注意ください。 | 35 | |
35 | ディフォルト: 1.0 | 36 | 自分のプロフィールを表示しているときは、任意のURLをウェブプロフィールとして入力し、[OK]をクリックして設定できます。 |
36 | </f_translation> | 37 | プロフィールを見た他の住人は、そのURLにアクセスすることができます。 |
38 | |||
39 | </f_translation> | ||
37 | <f_old_trans> | 40 | <f_old_trans> |
38 | オブジェクトボーナスは、区画において許可されているプリムの倍率数を | 41 | |
39 | 意味します。認可されている範囲は1から10です。したがって、'1'に設定すると、512 m2の土地には、 | 42 | この住人がウェブ・プロフィールURLを設定している場合は、以下のことが可能です。 |
40 | 117のオブジェクトが許可されます。'2'に設定すると、同じ512 m2の土地には、1のときの2倍にあたる | 43 | *そのページを内蔵ブラウザーで表示するには、[ロード]をクリックします。 |
41 | 234のオブジェクトが許可され、3以降も同様に増えていきます。全地域の最高オブジェクト数は、 | 44 | *そのページをデフォルトの外部ウェブ・ブラウザーで表示するには、[開く]をクリックします。 |
42 | オブジェクトボーナスの値に影響されず、 | ||
43 | 15,000のまま変わりません。いったん決定した後でオブジェクトボーナスの値を下げると、 | ||
44 | オブジェクトが返却または削除される可能性がありますのでご注意ください。 | ||
45 | 45 | ||
46 | デフォルト: 1.0 | 46 | 自分のプロフィールを表示しているときは、任意のURLをウェブ・プロフィールとして入力できます。 |
47 | </f_old_trans> | 47 | プロフィールを見た住人は、そのURLにアクセスすることができます。 |
48 | </string><string><a_file>floater_about.xml</a_file> | 48 | |
49 | <b_path>/floater_about/credits_editor</b_path> | 49 | </f_old_trans> |
50 | <c_attribute></c_attribute> | 50 | </string> |
51 | <string> | ||
52 | <a_file>alerts.xml</a_file> | ||
53 | <b_path>//HelpReportAbuseContainsCopyright/message</b_path> | ||
54 | <c_attribute/> | ||
51 | <d_old> | 55 | <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 | 56 | ||
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 | 57 | Dear Resident, |
58 | |||
59 | Reports about copyright infringement can only be submitted | ||
60 | as described at http://secondlife.com/corporate/dmca.php. | ||
55 | 61 | ||
56 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 62 | Reports concerning copyright infringement will automatically |
57 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | 63 | be discarded if they are submitted through the 'Abuse Report' |
58 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | 64 | feature. If your report does not relate to copyright infringement, |
59 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | 65 | you may close this window and finish submitting your report. |
60 | GL Copyright (C) 1999-2004 Brian Paul. | 66 | |
61 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | 67 | Thank you, |
62 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | 68 | |
63 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | 69 | Linden Lab |
64 | ogg/vorbis Copyright (C) 2001, Xiphophorus | 70 | |
65 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | 71 | </d_old> |
66 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | 72 | <e_new> |
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 | 73 | ||
71 | All rights reserved. See licenses.txt for details. | 74 | Dear Resident, |
72 | 75 | ||
73 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 76 | If you are reporting intellectual property infringement, please make sure you are reporting it correctly: |
74 | 77 | ||
78 | (1) The Abuse Process. You may submit an abuse report if you believe a Resident is exploiting the Second Life permissions system, for example, by using CopyBot or similar copying tools, to infringe intellectual property rights. The Abuse Team investigates and issues appropriate disciplinary action for behavior that violates the Second Life Community Standards or Terms of Service. However, the Abuse Team does not handle and will not respond to requests to remove content from the Second Life world. | ||
79 | |||
80 | (2) The DMCA or Content Removal Process. To request removal of content from Second Life, you must submit a valid notification of infringement as provided in our DMCA Policy at http://secondlife.com/corporate/dmca.php. | ||
81 | |||
82 | If you still wish to continue with the abuse process, please close this window and finish submitting your report. | ||
83 | |||
84 | Thank you, | ||
85 | |||
86 | Linden Lab | ||
87 | </e_new> | ||
88 | <f_translation> | ||
89 | |||
90 | 親愛なる住人の皆様へ | ||
91 | |||
92 | 知的所有権の侵害を報告する場合は、以下のとおり正確に報告してください。 | ||
93 | |||
94 | (1) 嫌がらせの処理。 住人がSecond Lifeの許可システムを不当に使用し、知的所有権が侵害されていると考えられる場合は、嫌がらせ報告を提出することができます。許可システムを不当に使用する手段としては、たとえば、CopyBotまたは類似したコピー・ツールがあります。 嫌がらせ対応担当チームが調査を行い、Second Lifeのコミュニティ・スタンダードまたは利用規約に違反する態度に対しては適切な懲罰処分が行われます。 ただし、嫌がらせ対応担当チームでは、コンテンツをSecond Lifeワールドから削除するリクエストに対する処理または回答は行いません。 | ||
95 | |||
96 | (2) DMCAまたはコンテンツの削除処理。 Second Lifeからのコンテンツの削除をリクエストするには、http://secondlife.com/corporate/dmca.phpのDMCAポリシーにある、侵害に関する有効な通知を提出する必要があります。 | ||
97 | |||
98 | 嫌がらせの処理を継続する場合は、このウインドウを閉じ、報告を提出してください。 | ||
99 | |||
100 | ご協力ありがとうございます。 | ||
101 | |||
102 | Linden Lab | ||
103 | </f_translation> | ||
104 | <f_old_trans> | ||
105 | |||
106 | 親愛なる住人の皆様へ: | ||
107 | |||
108 | 著作権侵害に関する報告はhttp://secondlife.com/corporate/dmca.phpの | ||
109 | 記述に従ってのみ提出することができます。 | ||
110 | |||
111 | [嫌がらせ報告]機能を通じて著作権侵害に関する報告を提出しても、その報告は自動的に破棄されます。著作権侵害に関係のない報告であれば、このウィンドウを閉じて報告を提出することができます。 | ||
112 | |||
113 | ご協力ありがとうございます。 | ||
114 | |||
115 | Linden Lab | ||
116 | |||
117 | </f_old_trans> | ||
118 | </string> | ||
119 | <string> | ||
120 | <a_file>floater_about.xml</a_file> | ||
121 | <b_path>/floater_about/credits_editor</b_path> | ||
122 | <c_attribute/> | ||
123 | <d_old> | ||
75 | 124 | ||
76 | Happiness is a warm puppy. -- Charles M. Schulz | ||
77 | </d_old> | ||
78 | <e_new> | ||
79 | Second Life is brought to you by Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa, Enus, Kraft, Naveen, Simon, Q, Ronp, Laurap, Ram, KyleJM, Marty, Kend, Daveh, Prospero, Melissa, Nat, Hamilton, Green, Seraph, Ekim, Miz, Jimmy, Kosmo, Rome, Doris, JT, Benoc, Whump, Mango, Trinity, Patch, TJ, Christy, Bao, Joohwan, Kate, Oreh, Angela, Johan, Cheah, Lan, Matias, Brandy, Cogsworth, Aleks, Mitchell, Space, Einstein, Bambers, Colton, Malbers, Maggie, Umesh, Santosh, Rose, Stash, Rothman, Winnie, Stella, Niall and many others. | 125 | 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 | 126 | ||
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 | 127 | 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 |
@@ -101,38 +147,71 @@ Happiness is a warm puppy. -- Charles M. Schulz | |||
101 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 147 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) |
102 | 148 | ||
103 | 149 | ||
104 | Happiness is a warm puppy. -- Charles M. Schulz</e_new> | 150 | Happiness is a warm puppy. -- Charles M. Schulz |
151 | </d_old> | ||
152 | <e_new> | ||
153 | |||
154 | Second Life is brought to you by Philip, Tessa, Andrew, Cory, Ben, Bunny, Char, Charlie, Colin, Dan, Daniel, Doug, Eric, Hamlet, Haney, Hunter, Ian, Jeff, Jim, John, Lee, Mark, Peter, Phoenix, Richard, Robin, Xenon, Steve, Tanya, Eddie, Frank, Bruce, Aaron, Alice, Bob, Debra, Eileen, Helen, Janet, Louie, Leviathania, Stefan, Ray, Kevin, Tom, Mikeb, MikeT, Burgess, Elena, Tracy, BillTodd, Ryan, Zach, Sarah, Nova, Otakon, Tim, Stephanie, Michael, Evan, Nicolas, Catherine, Rachelle, Dave, Holly, Bub, Kelly, Magellan, Ramzi, Don, Sabin, Jill, Rheya, DanceStar, Jeska, Hungry, Torley, Kona, Callum, Charity, Ventrella, Jack, Uncle, Vektor, Iris, Chris, Nicole, Mick, Reuben, Blue, Babbage, Yedwab, Deana, Lauren, Brent, Pathfinder, Chadrick, Altruima, Jesse, Monroe, David, Tess, Lizzie, Patsy, Pony, Isaac, Lawrence, Cyn, Bo, Gia, Annette, Marius, Tbone, Jonathan, Karen, Ginsu, Yuko, Makiko, Thomas, Harry, Seth, Alexei, Brian, Guy, Runitai, Ethan, Data, Cornelius, Kenny, Swiss, Zero, Natria, Wendy, Stephen, Teeple, Thumper, Lucy, Dee, Mia, Liana, Warren, Branka, Aura, beez, Milo, Hermia, Red, Thrax, Joe, Sally, Magenta, Paul, Jose, Rejean, Henrik, Lexie, Amber, Logan, Xan, Nora, Morpheus, Donovan, Leyla, MichaelFrancis, Beast, Cube, Bucky, Joshua, Stryfe, Harmony, Teresa, Claudia, Walker, Glenn, Fritz, Fordak, June, Cleopetra, Jean, Ivy, Betsy, Roosevelt, Spike, Ken, Which, Tofu, Chiyo, Rob, Zee, dustin, George, Del, Matthew, Cat, Jacqui, Lightfoot, Adrian, Viola, Alfred, Noel, Irfan, Sunil, Yool, Rika, Jane, Xtreme, Frontier, a2, Neo, Siobhan, Yoz, Justin, Elle, Qarl, Benjamin, Isabel, Gulliver, Everett, Christopher, Izzy, Stephany, Garry, Sejong, Sean, Tobin, Iridium, Meta, Anthony, Jeremy, JP, Jake, Maurice, Madhavi, Leopard, Kyle, Joon, Kari, Bert, Belinda, Jon, Kristi, Bridie, Pramod, KJ, Socrates, Maria, Ivan, Aric, Yamasaki, Adreanne, Jay, MitchK, Ceren, Coco, Durl, Jenny, Periapse, Kartic, Storrs, Lotte, Sandy, Colossus, Zen, BigPapi, Brad, Pastrami, Kurz, Mani, Neuro, Jaime, MJ, Rowan, Sgt, Elvis, Gecko, Samuel, Sardonyx, Leo, Bryan, Niko, Soft, Poppy, Rachel, Aki, Angelo, Banzai, Alexa, Sue, CeeLo, Bender, CG, Gillian, Pelle, Nick, Echo, Zara, Christine, Shamiran, Emma, Blake, Keiko, Plexus, Joppa, Sidewinder, Erica, Ashlei, Twilight, Kristen, Brett, Q, Enus, Simon, Bevis, Kraft, Kip, Chandler, Ron, LauraP, Ram, KyleJM, Scouse, Prospero, Melissa, Marty, Nat, Hamilton, Kend, Lordan, Jimmy, Kosmo, Seraph, Green, Ekim, Wiggo, JT, Rome, Doris, Miz, Benoc, Whump, Trinity, Patch, Kate, TJ, Bao, Joohwan, Christy, Sofia, Matias, Cogsworth, Johan, Oreh, Cheah, Angela, Brandy, Mango, Lan, Aleks, Gloria, Heidy, Mitchell, Space, Colton, Bambers, Einstein, Maggie, Malbers, Rose, Winnie, Stella, Milton, Rothman, Niall, Marin, Allison, James, Katie, Dawn, Katt, Kalpana, Judy, Andrea, Ambroff, Infinity, Gail, Rico, Raymond, Yi, William, Christa, M, Teagan, Scout, Molly, Dante, Corr, Dynamike, Usi, Kaylee, Lil, Danica, Sascha, Kelv, Jacob, Nya, Rodney, Brandon, Elsie, Blondin, Grant, Katrin, Nyx, Gabriel, Locklainn, Claire, Devin, Minerva, Monty, Austin, Bradford, Si, Keira, H, Caitlin, Dita, Makai, Jenn and many others. | ||
155 | |||
156 | Thank you to the following residents for helping to ensure that this is the best version yet: aaron23 decuir, Abra Miles, absolute balderdash, adelle fitzgerald, Aeron Kohime, Aki Shichiroji, Alger Meads, Alissa Sabre, AlwaysIcey Mapholisto, Arawn Spitteler, Aren Mandala, Arianna Wrigglesworth, Bagushii Kohime, Balpien Hammerer, Blinking2342 Blinker, byakuya runo, Capucchy Streeter, Chandra Jun, Coyote Pace, Crusher Soderstrom, Cummere Mayo, cyberrosa Rossini, Dael Ra, danana dodonpa, Darek Deluca, Davec Horsforth, django yifu, draco crane, Dre Dagostino, Ephyu Reino, etan quan, Fenrix Murakami, Fledhyris Proudhon, Fred Wardhani, Frederich Courier, garth fairchang, Gellan Glenelg, Geraldine Giha, GOLAN Eilde, gonzo joubert, Hachiro Yokosuka, Hampton Hax, harleywood guru, Hevenz Vansant, imnotgoing sideways, Jaden Giles, Jeanette Janus, Karl Dorance, keaton Akina, Khashai Steinbeck, KiPSOFT Tuqiri, kirstenlee Cinquetti, Kitty Barnett, Laurent Vesta, Lazure Ryba, Lima Vesperia, Linzi Bingyi, Lisa Lowe, LuDon Ninetails, Mark Rosenbaum, McCabe Maxsted, Michi Lumin, Midi Aeon, ml0rtd kit, Mo Eriksen, Morice Flanagan, Mysterion Aeon, Nad Gough, norgan torok, Pygar Bu, Qie Niangao, rachel corleone, Rado Arado, roberto salubrius, Royer Pessoa, samia bechir, Sasha Nurmi, Sean Heying, Selkit Diller, Shadow Pidgeon, simon kline, Smokie Ember, Soap Clawtooth, Strife Onizuka, Tal Chernov, Talan Hyun, tangletwigs fairymeadow, Tanya Spinotti, Tayra Dagostino, Teebone Aeon, Theremes Langdon, Thraxis Epsilon, tucor Capalini, Vasko Hawker, VenusMari Zapedzki, Vex Streeter, Viktoria Dovgal, Vincent Nacon, Viridian Exonar, Vivienne Schell, WarKirby Magojiro, Wilton Lundquist, Yukinoroh Kamachi, Zyzzy Zarf | ||
157 | |||
158 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | ||
159 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
160 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
161 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
162 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
163 | GL Copyright (C) 1999-2004 Brian Paul. | ||
164 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
165 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
166 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
167 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
168 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
169 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
170 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
171 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
172 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
173 | |||
174 | All rights reserved. See licenses.txt for details. | ||
175 | |||
176 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
177 | |||
178 | |||
179 | What happens to a dream deferred? --Langston Hughes | ||
180 | </e_new> | ||
105 | <f_translation> | 181 | <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 | 182 | ||
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 | 183 | Second Lifeは、Philip、Tessa、Andrew、Cory、Ben、Bunny、Char、Charlie、Colin、Dan、Daniel、Doug、Eric、Hamlet、Haney、Hunter、Ian、Jeff、Jim、John、Lee、Mark、Peter、Phoenix、Richard、Robin、Xenon、Steve、Tanya、Eddie、Frank、Bruce、Aaron、Alice、Bob、Debra、Eileen、Helen、Janet、Louie、Leviathania、Stefan、Ray、Kevin、Tom、Mikeb、MikeT、Burgess、Elena、Tracy、BillTodd、Ryan、Zach、Sarah、Nova、Otakon、Tim、Stephanie、Michael、Evan、Nicolas、Catherine、Rachelle、Dave、Holly、Bub、Kelly、Magellan、Ramzi、Don、Sabin、Jill、Rheya、DanceStar、Jeska、Hungry、Torley、Kona、Callum、Charity、Ventrella、Jack、Uncle、Vektor、Iris、Chris、Nicole、Mick、Reuben、Blue、Babbage、Yedwab、Deana、Lauren、Brent、Pathfinder、Chadrick、Altruima、Jesse、Monroe、David、Tess、Lizzie、Patsy、Pony、Isaac、Lawrence、Cyn、Bo、Gia、Annette、Marius、Tbone、Jonathan、Karen、Ginsu、Yuko、Makiko、Thomas、Harry、Seth、Alexei、Brian、Guy、Runitai、Ethan、Data、Cornelius、Kenny、Swiss、Zero、Natria、Wendy、Stephen、Teeple、Thumper、Lucy、Dee、Mia、Liana、Warren、Branka、Aura、beez、Milo、Hermia、Red、Thrax、Joe、Sally、Magenta、Paul、Jose、Rejean、Henrik、Lexie、Amber、Logan、Xan、Nora、Morpheus、Donovan、Leyla、MichaelFrancis、Beast、Cube、Bucky、Joshua、Stryfe、Harmony、Teresa、Claudia、Walker、Glenn、Fritz、Fordak、June、Cleopetra、Jean、Ivy、Betsy、Roosevelt、Spike、Ken、Which、Tofu、Chiyo、Rob、Zee、dustin、George、Del、Matthew、Cat、Jacqui、Lightfoot、Adrian、Viola、Alfred、Noel、Irfan、Sunil、Yool、Rika、Jane、Xtreme、Frontier、a2、Neo、Siobhan、Yoz、Justin、Elle、Qarl、Benjamin、Isabel、Gulliver、Everett、Christopher、Izzy、Stephany、Garry、Sejong、Sean、Tobin、Iridium、Meta、Anthony、Jeremy、JP、Jake、Maurice、Madhavi、Leopard、Kyle、Joon、Kari、Bert、Belinda、Jon、Kristi、Bridie、Pramod、KJ、Socrates、Maria、Ivan、Aric、Yamasaki、Adreanne、Jay、MitchK、Ceren、Coco、Durl、Jenny、Periapse、Kartic、Storrs、Lotte、Sandy、Colossus、Zen、BigPapi、Brad、Pastrami、Kurz、Mani、Neuro、Jaime、MJ、Rowan、Sgt、Elvis、Gecko、Samuel、Sardonyx、Leo、Bryan、Niko、Soft、Poppy、Rachel、Aki、Angelo、Banzai、Alexa、Sue、CeeLo、Bender、CG、Gillian、Pelle、Nick、Echo、Zara、Christine、Shamiran、Emma、Blake、Keiko、Plexus、Joppa、Sidewinder、Erica、Ashlei、Twilight、Kristen、Brett、Q、Enus、Simon、Bevis、Kraft、Kip、Chandler、Ron、LauraP、Ram、KyleJM、Scouse、Prospero、Melissa、Marty、Nat、Hamilton、Kend、Lordan、Jimmy、Kosmo、Seraph、Green、Ekim、Wiggo、JT、Rome、Doris、Miz、Benoc、Whump、Trinity、Patch、Kate、TJ、Bao、Joohwan、Christy、Sofia、Matias、Cogsworth、Johan、Oreh、Cheah、Angela、Brandy、Mango、Lan、Aleks、Gloria、Heidy、Mitchell、Space、Colton、Bambers、Einstein、Maggie、Malbers、Rose、Winnie、Stella、Milton、Rothman、Niall、Marin、Allison、James、Katie、Dawn、Katt、Kalpana、Judy、Andrea、Ambroff、Infinity、Gail、Rico、Raymond、Yi、William、Christa、M、Teagan、Scout、Molly、Dante、Corr、Dynamike、Usi、Kaylee、Lil、Danica、Sascha、Kelv、Jacob、Nya、Rodney、Brandon、Elsie、Blondin、Grant、Katrin、Nyx、Gabriel、Locklainn、Claire、Devin、Minerva、Monty、Austin、Bradford、Si、Keira、H、Caitlin、Dita、Makai、Jennと、その他多数の人達によって作成されました。 |
109 | 184 | ||
110 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | 185 | このバージョンをこれまでで最高のものになるようご協力をいただいた以下の住人の皆様に深く感謝いたします。 aaron23 decuir、Abra Miles、absolute balderdash、adelle fitzgerald、Aeron Kohime、Aki Shichiroji、Alger Meads、Alissa Sabre、AlwaysIcey Mapholisto、Arawn Spitteler、Aren Mandala、Arianna Wrigglesworth、Bagushii Kohime、Balpien Hammerer、Blinking2342 Blinker、byakuya runo、Capucchy Streeter、Chandra Jun、Coyote Pace、Crusher Soderstrom、Cummere Mayo、cyberrosa Rossini、Dael Ra、danana dodonpa、Darek Deluca、Davec Horsforth、django yifu、draco crane、Dre Dagostino、Ephyu Reino、etan quan、Fenrix Murakami、Fledhyris Proudhon、Fred Wardhani、Frederich Courier、garth fairchang、Gellan Glenelg、Geraldine Giha、GOLAN Eilde、gonzo joubert、Hachiro Yokosuka、Hampton Hax、harleywood guru、Hevenz Vansant、imnotgoing sideways、Jaden Giles、Jeanette Janus、Karl Dorance、keaton Akina、Khashai Steinbeck、KiPSOFT Tuqiri、kirstenlee Cinquetti、Kitty Barnett、Laurent Vesta、Lazure Ryba、Lima Vesperia、Linzi Bingyi、Lisa Lowe、LuDon Ninetails、Mark Rosenbaum、McCabe Maxsted、Michi Lumin、Midi Aeon、ml0rtd kit、Mo Eriksen、Morice Flanagan、Mysterion Aeon、Nad Gough、norgan torok、Pygar Bu、Qie Niangao、rachel corleone、Rado Arado、roberto salubrius、Royer Pessoa、samia bechir、Sasha Nurmi、Sean Heying、Selkit Diller、Shadow Pidgeon、simon kline、Smokie Ember、Soap Clawtooth、Strife Onizuka、Tal Chernov、Talan Hyun、tangletwigs fairymeadow、Tanya Spinotti、Tayra Dagostino、Teebone Aeon、Theremes Langdon、Thraxis Epsilon、tucor Capalini、Vasko Hawker、VenusMari Zapedzki、Vex Streeter、Viktoria Dovgal、Vincent Nacon、Viridian Exonar、Vivienne Schell、WarKirby Magojiro、Wilton Lundquist、Yukinoroh Kamachi、Zyzzy Zarf |
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 | 186 | ||
126 | 無断複写・転載を禁じます。詳細はlicenses.txtを参照してください。 | 187 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion |
188 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
189 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
190 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
191 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
192 | GL Copyright (C) 1999-2004 Brian Paul. | ||
193 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
194 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
195 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
196 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
197 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
198 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
199 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
200 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
201 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
127 | 202 | ||
128 | Voice chat Audio coding:Polycom(R) Siren14(TM) (ITU-T Rec.G.722.1 Annex C) | 203 | 無断転写、複製、転載を禁じます。 詳細はlicenses.txtを参照してください。 |
204 | |||
205 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
129 | 206 | ||
130 | 207 | ||
131 | Happiness is a warm puppy. (しあわせはcあったかい子犬)-- チャールズ・M・シュルツ</f_translation> | 208 | 後回しにされた夢はどうなるの? --ラングストン・ヒューズ |
209 | </f_translation> | ||
132 | <f_old_trans> | 210 | <f_old_trans> |
133 | Second Life は、Philip、Andrew、Tessa、Cory、Frank、James、Doug、Hunter、Richard、John、Eric、Avi、AaronB、AaronY、Ian、Peter、Mark、Robin、Stephen、Tracy、Ryan、Alberto、Haney、Tanya、JimJ、Dan、Ben、Stephanie、Tim、Evan、Catherine、Colin、Chris、Reuben、Charity、Jeska、James、JonHenry、Kelly、Callum、Char、Daniel、DavidF、Don、Jeff、Lauren、Lee、Michael、Ramzi、Vektor、Steve、TomY、Tess、Kona、Brent、Clarissa、PeterP、Jesse、Annette、Cyn、Blue、Ginsu、Jonathan、Karen、Adam、Nova、Deana、Lizzie、Patsy、DavidK、Isaac、Pathfinder、Monroe、Jill、Benny、Altruima、Rheya、Jennifer、Jack、DaveP、Brad、Mick、Babbage、Elisabeth、Brian、Beth、Data、Ethan、Wendy、Nicole、Sky、Jeffrey、Zero、Coffee、Tesla、Kenny、Makiko、Nigel、Teeple、Lucy、Mia、Dee、Guy、Harry、Liana、Branka、Jimbo、Aura、Vasuda、SarahD、bethanye、Torley、Runitai、MikeS、PaulM、Milo、Hermia、JoeM、Melanie、Rejean、DSmith、SMiller、Susan、Jose、DongYun、Justin、Andrey、Syrah、Donovan、Henrik、Nora、Lexie、AC、Donna、ChrisC、Alex、Leyla、Kyle、Mathew、Devin、Joshua、DanC、Jessica、Harmony、Claudia、Tramel、Glenn、Betsy、Fritz、Jun、Adam、Cassandra、Ken、RyanW、Spike、Tofu、Varas、Andy、Luke、RobLa、Chiyo、JohnZ、Dustin、George、Del、PeterP、Migyeong、Matthew、RMullane、CChampion、JTurbin、JamesC、Viola、Lightfoot、Jacqui、Sturm、Adrian、Buttercup、Alfred、Sunil、Alfred、Noel、Irfan、Jill、Yool、Jane、Yuki、Yoz、Matthew、Arthur、Jennifer、Karl、Brian、Ben、Janine、Christopher、Madhavi、Everett、Anthony、Joon、Jake、sean、Adreanne、Stephany、KellyJo、Jeremy、Pramod、Joshua、Sean、Christopher、Amy、Ceren、Katherine、jon、Sudheendra、James、Stephan、Kari、Kartic、Todd、Thomas、Joki、Rebecca、Belinda、Bert、Roger、Bridie、Kristi、Brian、Maria、John、Aric、Nathanel、Melinda、Darrell、Jennifer、Sandy、Greg、Rob、Brad、Chris、Eric、Palmer、Asi、Katja、Lisa、Minda、Jen、Aaron、Bryan、Mark、Jonathan、Jamie、Laurel、William、Matthew、Steve、David、Remy、James、Tim、Lee、Brian、Ashlei、Sam、Mike、Ethan、Austin、Wanda、Paul、Brian、Rachel、Valentyn、Emma Williams、Autum、Steven、Laley、Charles、Jessica、Sue、Gillian、CG、Kip、Kristen、Shamiran、Blake、Brett、Erica、Kent、Joel、Plexus、Twilight、Joppa、Enus、Kraft、Naveen、Simon、Q、Ronp、Laurap、Ram、KyleJM、Marty、Kend、Daveh、Prospero、Melissa、Nat、Hamilton、Green、Seraph、Ekim、Miz、Jimmy、Kosmo、Rome、Doris、JT、Benoc、Whump、Mango、Trinity、Patch、TJ、Christy、Bao、Joohwan、Kate、Oreh、Angela、Johan、Cheah、Lan、Matias、Brandy、Cogsworth、Aleks、 Mitchell、Space、Einstein、Bambers、Colton、Malbers、Maggie、Umesh、Santosh、Rose、Stash、Rothman、Winnie、Stella、Niall と、その他多数の人達によって作成されました。 | ||
134 | 211 | ||
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 | 212 | Second Life は、 Philip、 Tessa、 Andrew、 Cory、 Ben、 Bunny、 Char、 Charlie、 Colin、 Dan、 Daniel、 Doug、 Eric、 Hamlet、 Haney、 Hunter、 Ian、 Jeff、 Jim、 John、 Lee、 Mark、 Peter、 Phoenix、 Richard、 Robin、 Xenon、 Steve、 Tanya、 Eddie、 Frank、 Bruce、 Aaron、 Alice、 Bob、 Debra、 Eileen、 Helen、 Janet、 Louie、 Leviathania、 Stefan、 Ray、 Kevin、 Tom、 Mikeb、 MikeT、 Burgess、 Elena、 Tracy、 BillTodd、 Ryan、 Zach、 Sarah、 Nova、 Otakon、 Tim、 Stephanie、 Michael、 Evan、 Nicolas、 Catherine、 Rachelle、 Dave、 Holly、 Bub、 Kelly、 Magellan、 Ramzi、 Don、 Sabin、 Jill、 Rheya、 DanceStar、 Jeska、 Hungry、 Torley、 Kona、 Callum、 Charity、 Ventrella、 Jack、 Uncle、 Vektor、 Iris、 Chris、 Nicole、 Mick、 Reuben、 Blue、 Babbage、 Yedwab、 Deana、 Lauren、 Brent、 Pathfinder、 Chadrick、 Altruima、 Jesse、 Monroe、 David、 Tess、 Lizzie、 Patsy、 Pony、 Isaac、 Lawrence、 Cyn、 Bo、 Gia、 Annette、 Marius、 Tbone、 Jonathan、 Karen、 Ginsu、 Yuko、 Makiko、 Thomas、 Harry、 Seth、 Alexei、 Brian、 Guy、 Runitai、 Ethan、 Data、 Cornelius、 Kenny、 Swiss、 Zero、 Natria、 Wendy、 Stephen、 Teeple、 Thumper、 Lucy、 Dee、 Mia、 Liana、 Warren、 Branka、 Aura、 beez、 Milo、 Hermia、 Red、 Thrax、 Joe、 Sally、 Magenta、 Paul、 Jose、 Rejean、 Henrik、 Lexie、 Amber、 Logan、 Xan、 Nora、 Morpheus、 Donovan、 Leyla、 MichaelFrancis、 Beast、 Cube、 Bucky、 Joshua、 Stryfe、 Harmony、 Teresa、 Claudia、 Walker、 Glenn、 Fritz、 Fordak、 June、 Cleopetra、 Jean、 Ivy、 Betsy、 Roosevelt、 Spike、 Ken、 Which、 Tofu、 Chiyo、 Rob、 Zee、 dustin、 George、 Del、 Matthew、 Cat、 Jacqui、 Lightfoot、 Adrian、 Viola、 Alfred、 Noel、 Irfan、 Sunil、 Yool、 Rika、 Jane、 Xtreme、 Frontier、 a2、 Neo、 Siobhan、 Yoz、 Justin、 Elle、 Qarl、 Benjamin、 Isabel、 Gulliver、 Everett、 Christopher、 Izzy、 Stephany、 Garry、 Sejong、 Sean、 Tobin、 Iridium、 Meta、 Anthony、 Jeremy、 JP、 Jake、 Maurice、 Madhavi、 Leopard、 Kyle、 Joon、 Kari、 Bert、 Belinda、 Jon、 Kristi、 Bridie、 Pramod、 KJ、 Socrates、 Maria、 Ivan、 Aric、 Yamasaki、 Adreanne、 Jay、 MitchK、 Ceren、 Coco、 Durl、 Jenny、 Periapse、 Kartic、 Storrs、 Lotte、 Sandy、 Colossus、 Zen、 BigPapi、 Brad、 Pastrami、 Kurz、 Mani、 Neuro、 Jaime、 MJ、 Rowan、 Sgt、 Elvis、 Gecko、 Samuel、 Sardonyx、 Leo、 Bryan、 Niko、 Soft、 Poppy、 Rachel、 Aki、 Angelo、 Banzai、 Alexa、 Sue、 CeeLo、 Bender、 CG、 Gillian、 Pelle、 Nick、 Echo、 Zara、 Christine、 Shamiran、 Emma、 Blake、 Keiko、 Plexus、 Joppa、 Sidewinder、 Erica、 Ashlei、 Twilight、 Kristen、 Brett、 Q、 Enus、 Simon、 Bevis、 Kraft、 Kip、 Chandler、 Ron、 LauraP、 Ram、 KyleJM、 Scouse、 Prospero、 Melissa、 Marty、 Nat、 Hamilton、 Kend、 Lordan、 Jimmy、 Kosmo、 Seraph、 Green、 Ekim、 Wiggo、 JT、 Rome、 Doris、 Miz、 Benoc、 Whump、 Trinity、 Patch、 Kate、 TJ、 Bao、 Joohwan、 Christy、 Sofia、 Matias、 Cogsworth、 Johan、 Oreh、 Cheah、 Angela、 Brandy、 Mango、 Lan、 Aleks、 Gloria、 Heidy、 Mitchell、 Space、 Colton、 Bambers、 Einstein、 Maggie、 Malbers、 Rose、 Winnie、 Stella、 Milton、 Rothman、 Niall、 Marin、 Allison、 James、 Katie、 Dawn、 Katt、 Kalpana、 Judy、 Andrea、 Ambroff、 Infinity、 Gail、 Rico、 Raymond、 Yi、 William、 Christa、 M、 Teagan、 Scout、 Molly、 Dante、 Corr、 Dynamike、 Usi、 Kaylee、 Lil、 Danica、 Sascha、 Kelv、 Jacob、 Nya、 Rodney、 Brandon、 Elsie、 Blondin、 Grant、 Katrin、 Nyx、 Gabriel、 Locklainn、 Claire、 Devin、 Minerva、 Monty、 Austin、 Bradford、 Si、 Keira、 H、 Caitlin、 Dita、 Makai、 Jenn と、その他多数の人達によって作成されました。 |
213 | |||
214 | このバージョンをこれまでで最高のものになるようご協力をいただいた以下の住人の皆様に深く感謝いたします。aaron23 decuir、 Abra Miles、 absolute balderdash、 adelle fitzgerald、 Aeron Kohime、 Aki Shichiroji、 Alger Meads、 Alissa Sabre、 AlwaysIcey Mapholisto、 Arawn Spitteler、 Aren Mandala、 Arianna Wrigglesworth、 Bagushii Kohime、 Balpien Hammerer、 Blinking2342 Blinker、 byakuya runo、 Capucchy Streeter、 Chandra Jun、 Coyote Pace、 Crusher Soderstrom、 Cummere Mayo、 cyberrosa Rossini、 Dael Ra、 danana dodonpa、 Darek Deluca、 Davec Horsforth、 django yifu、 draco crane、 Dre Dagostino、 Ephyu Reino、 etan quan、 Fenrix Murakami、 Fledhyris Proudhon、 Fred Wardhani、 Frederich Courier、 garth fairchang、 Gellan Glenelg、 Geraldine Giha、 GOLAN Eilde、 gonzo joubert、 Hachiro Yokosuka、 Hampton Hax、 harleywood guru、 Hevenz Vansant、 imnotgoing sideways、 Jaden Giles、 Jeanette Janus、 Karl Dorance、 keaton Akina、 Khashai Steinbeck、 KiPSOFT Tuqiri、 kirstenlee Cinquetti、 Kitty Barnett、 Laurent Vesta、 Lazure Ryba、 Lima Vesperia、 Linzi Bingyi、 Lisa Lowe、 LuDon Ninetails、 Mark Rosenbaum、 McCabe Maxsted、 Michi Lumin、 Midi Aeon、 ml0rtd kit、 Mo Eriksen、 Morice Flanagan、 Mysterion Aeon、 Nad Gough、 norgan torok、 Pygar Bu、 Qie Niangao、 rachel corleone、 Rado Arado、 roberto salubrius、 Royer Pessoa、 samia bechir、 Sasha Nurmi、 Sean Heying、 Selkit Diller、 Shadow Pidgeon、 simon kline、 Smokie Ember、 Soap Clawtooth、 Strife Onizuka、 Tal Chernov、 Talan Hyun、 tangletwigs fairymeadow、 Tanya Spinotti、 Tayra Dagostino、 Teebone Aeon、 Theremes Langdon、 Thraxis Epsilon、 tucor Capalini、 Vasko Hawker、 VenusMari Zapedzki、 Vex Streeter、 Viktoria Dovgal、 Vincent Nacon、 Viridian Exonar、 Vivienne Schell、 WarKirby Magojiro、 Wilton Lundquist、 Yukinoroh Kamachi、 Zyzzy Zarf | ||
136 | 215 | ||
137 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | 216 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion |
138 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 217 | APR Copyright (C) 2000-2004 The Apache Software Foundation |
@@ -150,97 +229,13 @@ SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | |||
150 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | 229 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. |
151 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | 230 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. |
152 | 231 | ||
153 | </f_old_trans> | 232 | 無断複写・転載を禁じます。詳細はlicenses.txtを参照してください。 |
154 | </string><string><a_file>alerts.xml</a_file> | ||
155 | <b_path>//GraphicsPreferencesHelp/message</b_path> | ||
156 | <c_attribute></c_attribute> | ||
157 | <d_old> | ||
158 | 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: | ||
159 | |||
160 | Shaders: Enable or disable various types of pixel shaders. | ||
161 | |||
162 | Reflection Detail: Sets the types of objects that water can reflect. | ||
163 | |||
164 | Avatar Rendering: Sets options that affect how the client renders avatars. | ||
165 | |||
166 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. | ||
167 | |||
168 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. | ||
169 | |||
170 | Post Process Quality: Sets the resolution with which Glow is rendered. | ||
171 | |||
172 | Mesh Detail: Sets the amout of detail used in rendering certain objects. | ||
173 | |||
174 | Lighting Detail: Selects what types of lights you would like to render. | ||
175 | |||
176 | Terrain Detail: Sets the amount of terrain detail you would like to see. | ||
177 | |||
178 | 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. | ||
179 | </d_old> | ||
180 | <e_new> | ||
181 | 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: | ||
182 | |||
183 | Shaders: Enable or disable various types of pixel shaders. | ||
184 | |||
185 | Reflection Detail: Sets the types of objects that water can reflect. | ||
186 | |||
187 | Avatar Rendering: Sets options that affect how the client renders avatars. | ||
188 | |||
189 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. | ||
190 | |||
191 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. | ||
192 | |||
193 | Post Process Quality: Sets the resolution with which Glow is rendered. | ||
194 | |||
195 | 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. | ||
196 | |||
197 | Lighting Detail: Selects what types of lights you would like to render. | ||
198 | |||
199 | Terrain Detail: Sets the amount of detail you would like to see for the terrain texture. | ||
200 | </e_new> | ||
201 | <f_old_trans></f_old_trans> | ||
202 | <f_translation> | ||
203 | このパネルはウィンドウのサイズと解像度、およびクライアントのグラフィックの品質を制御します。 [環境設定]>[グラフィック]のインタフェースでは、次の 4 つの中からグラフィック・レベルを選択できます。低、中、高、超高。 また、[カスタム]チェックボックスをクリックし、次の設定を操作することで、グラフィックスの設定をカスタマイズすることもできます。 | ||
204 | |||
205 | シェーダー:ピクセル・シェーダーのさまざまな種類を有効または無効にします。 | ||
206 | |||
207 | 反射詳細:水が反射するオブジェクトの種類を設定します。 | ||
208 | |||
209 | アバター・レンダリング:クライアントによるアバターのレンダリング方法に影響するオプションを設定します。 | ||
210 | |||
211 | 描画距離:あなたの視点から視界のどのくらいの距離まで、オブジェクトがレンダリングされるかに影響します。 | ||
212 | |||
213 | 最大パーティクル数:画面に一度に見ることができるパーティクルの最大数を設定します。 | ||
214 | |||
215 | ポストプロセス品質:グロー効果(輝き)がレンダリングされる際の解像度を設定します。 | ||
216 | |||
217 | メッシュ詳細: 特定のオブジェクトのレンダリング時の細部表現、または三角形の数を設定します。 値を大きくするほどレンダリングに時間がかかりますが、オブジェクトがより詳細に表示されます。 | ||
218 | |||
219 | ライティング詳細:レンダリングする光源の種類を選択します。 | ||
220 | |||
221 | 地形詳細: 地形テクスチャの細部表現を設定します。 | ||
222 | </f_translation> | ||
223 | |||
224 | <f_old_trans> | ||
225 | このパネルはウィンドウのサイズと解像度、およびクライアントのグラフィックの品質を制御します。 グラフィックの環境設定のインタフェースでは、次の 4 つの中からグラフィック・レベルを選択できます。 低、中、高、超高。 [カスタム]チェックボックをクリックし、次の設定を操作することで、グラフィックスの設定をカスタマイズすることができます。 | ||
226 | |||
227 | シェーダー: ピクセル・シェーダーのさまざまな種類を有効または無効にします。 | ||
228 | |||
229 | 反射詳細: 水が反射するオブジェクトの種類を設定します。 | ||
230 | |||
231 | アバター・レンダリング: クライアントによるアバターのレンダリング方法に影響するオプションを設定します。 | ||
232 | |||
233 | 描画距離: あなたの視点から視界のどのくらいの距離まで、オブジェクトがレンダリングされるかに影響します。 | ||
234 | |||
235 | 最大パーティクル数: 画面に一度に見ることができるパーティクルの最大数を設定します。 | ||
236 | |||
237 | ポストプロセス品質: グロー効果(輝き)がレンダリングされる際の解像度を設定します。 | ||
238 | 233 | ||
239 | メッシュ詳細: 特定のオブジェクトのレンダリング時の細部表現を設定します。 | 234 | Voice chat Audio coding:Polycom(R) Siren14(TM) (ITU-T Rec.G.722.1 Annex C) |
240 | 235 | ||
241 | ライティング詳細: レンダリングする光源の種類を選択します。 | ||
242 | 236 | ||
243 | 地形詳細: 地形の細部表現を設定します。 | 237 | しあわせはあったかい子犬-- チャールズ・M・シュルツ |
244 | </f_old_trans> | 238 | |
239 | </f_old_trans> | ||
245 | </string> | 240 | </string> |
246 | </strings> | 241 | </strings> |
diff --git a/linden/indra/newview/skins/default/xui/ja/need_to_translate.xml b/linden/indra/newview/skins/default/xui/ja/need_to_translate.xml index f8c0cbe..35c56fd 100644 --- a/linden/indra/newview/skins/default/xui/ja/need_to_translate.xml +++ b/linden/indra/newview/skins/default/xui/ja/need_to_translate.xml | |||
@@ -1,3625 +1,1551 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>alerts.xml</a_file> | 4 | <string> |
5 | <b_path>//TutorialNotFound/message</b_path> | 5 | <a_file>alerts.xml</a_file> |
6 | <c_attribute></c_attribute> | 6 | <b_path>//AddFriend/editline</b_path> |
7 | <d_old></d_old> | 7 | <c_attribute/> |
8 | <d_old/> | ||
8 | <e_new> | 9 | <e_new> |
9 | No tutorial is currently available. | 10 | Would you be my friend? |
10 | </e_new> | 11 | </e_new> |
11 | <f_old_trans></f_old_trans> | 12 | <f_old_trans/> |
12 | <f_translation> | 13 | <f_translation> |
13 | 現在利用可能 | 14 | ? |
14 | </f_translation> | 15 | </f_translation> |
15 | </string><string><a_file>alerts.xml</a_file> | 16 | </string> |
16 | <b_path>//TutorialNotFound/OK</b_path> | 17 | <string> |
17 | <c_attribute></c_attribute> | 18 | <a_file>alerts.xml</a_file> |
18 | <d_old></d_old> | 19 | <b_path>//EstateObjectReturn/message</b_path> |
19 | <e_new> | 20 | <c_attribute/> |
20 | OK | 21 | <d_old/> |
21 | </e_new> | ||
22 | <f_old_trans></f_old_trans> | ||
23 | <f_translation> | ||
24 | OK | ||
25 | </f_translation> | ||
26 | </string><string><a_file>alerts.xml</a_file> | ||
27 | <b_path>//FreezeAvatarFullname/message</b_path> | ||
28 | <c_attribute></c_attribute> | ||
29 | <d_old></d_old> | ||
30 | <e_new> | ||
31 | Freeze [AVATAR_NAME]? | ||
32 | He or she will temporarily be unable to move, | ||
33 | chat, or interact with the world. | ||
34 | </e_new> | ||
35 | <f_old_trans></f_old_trans> | ||
36 | <f_translation> | ||
37 | [AVATAR_NAME]をフリーズしますか? | ||
38 | フリーズされた人は一時的に動けなくなり、チャットなど、この世界に対する関わりを持つことができなくなります。 | ||
39 | </f_translation> | ||
40 | </string><string><a_file>alerts.xml</a_file> | ||
41 | <b_path>//FreezeAvatarFullname/Freeze</b_path> | ||
42 | <c_attribute></c_attribute> | ||
43 | <d_old></d_old> | ||
44 | <e_new> | ||
45 | Freeze | ||
46 | </e_new> | ||
47 | <f_old_trans></f_old_trans> | ||
48 | <f_translation> | ||
49 | フリーズ | ||
50 | </f_translation> | ||
51 | </string><string><a_file>alerts.xml</a_file> | ||
52 | <b_path>//FreezeAvatarFullname/Unfreeze</b_path> | ||
53 | <c_attribute></c_attribute> | ||
54 | <d_old></d_old> | ||
55 | <e_new> | ||
56 | Unfreeze | ||
57 | </e_new> | ||
58 | <f_old_trans></f_old_trans> | ||
59 | <f_translation> | ||
60 | 解凍 | ||
61 | </f_translation> | ||
62 | </string><string><a_file>alerts.xml</a_file> | ||
63 | <b_path>//FreezeAvatarFullname/Cancel</b_path> | ||
64 | <c_attribute></c_attribute> | ||
65 | <d_old></d_old> | ||
66 | <e_new> | ||
67 | Cancel | ||
68 | </e_new> | ||
69 | <f_old_trans></f_old_trans> | ||
70 | <f_translation> | ||
71 | キャンセル | ||
72 | </f_translation> | ||
73 | </string><string><a_file>alerts.xml</a_file> | ||
74 | <b_path>//EjectAvatarFullname/message</b_path> | ||
75 | <c_attribute></c_attribute> | ||
76 | <d_old></d_old> | ||
77 | <e_new> | ||
78 | Eject [AVATAR_NAME] from your land? | ||
79 | </e_new> | ||
80 | <f_old_trans></f_old_trans> | ||
81 | <f_translation> | ||
82 | あなたの土地から[AVATAR_NAME]を追放しますか? | ||
83 | </f_translation> | ||
84 | </string><string><a_file>alerts.xml</a_file> | ||
85 | <b_path>//EjectAvatarFullname/Eject</b_path> | ||
86 | <c_attribute></c_attribute> | ||
87 | <d_old></d_old> | ||
88 | <e_new> | ||
89 | Eject | ||
90 | </e_new> | ||
91 | <f_old_trans></f_old_trans> | ||
92 | <f_translation> | ||
93 | 追放 | ||
94 | </f_translation> | ||
95 | </string><string><a_file>alerts.xml</a_file> | ||
96 | <b_path>//EjectAvatarFullname/EjectandBan</b_path> | ||
97 | <c_attribute></c_attribute> | ||
98 | <d_old></d_old> | ||
99 | <e_new> | ||
100 | Eject and Ban | ||
101 | </e_new> | ||
102 | <f_old_trans></f_old_trans> | ||
103 | <f_translation> | ||
104 | 追放と禁止 | ||
105 | </f_translation> | ||
106 | </string><string><a_file>alerts.xml</a_file> | ||
107 | <b_path>//EjectAvatarFullname/Cancel</b_path> | ||
108 | <c_attribute></c_attribute> | ||
109 | <d_old></d_old> | ||
110 | <e_new> | ||
111 | Cancel | ||
112 | </e_new> | ||
113 | <f_old_trans></f_old_trans> | ||
114 | <f_translation> | ||
115 | キャンセル | ||
116 | </f_translation> | ||
117 | </string><string><a_file>alerts.xml</a_file> | ||
118 | <b_path>//SeachFilteredOnShortWords/message</b_path> | ||
119 | <c_attribute></c_attribute> | ||
120 | <d_old></d_old> | ||
121 | <e_new> | 22 | <e_new> |
122 | Your search query was modified and the | ||
123 | words that were too short were removed. | ||
124 | |||
125 | Searched for: [FINALQUERY] | ||
126 | </e_new> | ||
127 | <f_old_trans></f_old_trans> | ||
128 | <f_translation> | ||
129 | 指定した検索クエリは変更され、短すぎる語句は取り除かれています。 | ||
130 | 23 | ||
131 | 検索語句: [FINALQUERY] | 24 | Are you sure you want to return objects owned by |
132 | </f_translation> | 25 | [USER_NAME] ? |
133 | </string><string><a_file>alerts.xml</a_file> | 26 | |
134 | <b_path>//SeachFilteredOnShortWordsEmpty/message</b_path> | 27 | </e_new> |
135 | <c_attribute></c_attribute> | 28 | <f_old_trans/> |
136 | <d_old></d_old> | ||
137 | <e_new> | ||
138 | Your search terms were too short | ||
139 | so no search was performed. | ||
140 | </e_new> | ||
141 | <f_old_trans></f_old_trans> | ||
142 | <f_translation> | ||
143 | 指定した検索語句が短すぎたため、検索は行われませんでした。 | ||
144 | </f_translation> | ||
145 | </string><string><a_file>alerts.xml</a_file> | ||
146 | <b_path>//CannotCloseFloaterBuyLand/message</b_path> | ||
147 | <c_attribute></c_attribute> | ||
148 | <d_old></d_old> | ||
149 | <e_new> | ||
150 | You cannot close the Buy Land window until Second Life | ||
151 | estimates the price of this transaction. | ||
152 | </e_new> | ||
153 | <f_old_trans></f_old_trans> | ||
154 | <f_translation> | ||
155 | Second Lifeによるこの取引の見積りが完了するまで[土地を購入]ウィンドウを閉じることはできません。 | ||
156 | </f_translation> | ||
157 | </string><string><a_file>alerts.xml</a_file> | ||
158 | <b_path>//MaxAgentOnRegionBatch/message</b_path> | ||
159 | <c_attribute></c_attribute> | ||
160 | <d_old></d_old> | ||
161 | <e_new> | ||
162 | Failure while attempting to add [NUM_ADDED] agents: | ||
163 | Exceeds the [MAX_AGENTS] [LIST_TYPE] limit by [NUM_EXCESS]. | ||
164 | </e_new> | ||
165 | <f_old_trans></f_old_trans> | ||
166 | <f_translation> | 29 | <f_translation> |
167 | [NUM_ADDED] 個のエージェントを追加しようとして失敗しました: [MAX_AGENTS] [LIST_TYPE] 制限を [NUM_EXCESS] 個超過しています。 | 30 | [USER_NAME]が所有しているオブジェクトを返却しますか? |
168 | </f_translation> | 31 | </f_translation> |
169 | </string><string><a_file>alerts.xml</a_file> | 32 | </string> |
170 | <b_path>//WebLaunchExternalTarget/message</b_path> | 33 | <string> |
171 | <c_attribute></c_attribute> | 34 | <a_file>alerts.xml</a_file> |
172 | <d_old></d_old> | 35 | <b_path>//EstateObjectReturn/Return</b_path> |
173 | <e_new> | 36 | <c_attribute/> |
174 | Open your system Web browser to view this content? | 37 | <d_old/> |
175 | </e_new> | ||
176 | <f_old_trans></f_old_trans> | ||
177 | <f_translation> | ||
178 | お使いのシステムのウェブ・ブラウザーを開いて、この内容を表示しますか? | ||
179 | </f_translation> | ||
180 | </string><string><a_file>alerts.xml</a_file> | ||
181 | <b_path>//WebLaunchExternalTarget/ignore</b_path> | ||
182 | <c_attribute></c_attribute> | ||
183 | <d_old></d_old> | ||
184 | <e_new> | ||
185 | When opening your system browser to view a Web page | ||
186 | </e_new> | ||
187 | <f_old_trans></f_old_trans> | ||
188 | <f_translation> | ||
189 | お使いのシステムのブラウザーを開いてウェブ・ページを表示しようとしたとき | ||
190 | </f_translation> | ||
191 | </string><string><a_file>alerts.xml</a_file> | ||
192 | <b_path>//WebLaunchExternalTarget/Open</b_path> | ||
193 | <c_attribute></c_attribute> | ||
194 | <d_old></d_old> | ||
195 | <e_new> | 38 | <e_new> |
196 | OK | 39 | OK |
197 | </e_new> | 40 | </e_new> |
198 | <f_old_trans></f_old_trans> | 41 | <f_old_trans/> |
199 | <f_translation> | 42 | <f_translation> |
200 | OK | 43 | OK |
201 | </f_translation> | 44 | </f_translation> |
202 | </string><string><a_file>alerts.xml</a_file> | 45 | </string> |
203 | <b_path>//WebLaunchExternalTarget/Cancel</b_path> | 46 | <string> |
204 | <c_attribute></c_attribute> | 47 | <a_file>alerts.xml</a_file> |
205 | <d_old></d_old> | 48 | <b_path>//EstateObjectReturn/Cancel</b_path> |
49 | <c_attribute/> | ||
50 | <d_old/> | ||
206 | <e_new> | 51 | <e_new> |
207 | Cancel | 52 | Cancel |
208 | </e_new> | 53 | </e_new> |
209 | <f_old_trans></f_old_trans> | 54 | <f_old_trans/> |
210 | <f_translation> | 55 | <f_translation> |
211 | キャンセル | 56 | キャンセル |
212 | </f_translation> | 57 | </f_translation> |
213 | </string><string><a_file>alerts.xml</a_file> | 58 | </string> |
214 | <b_path>//ProblemAddingEstateGeneric/message</b_path> | 59 | <string> |
215 | <c_attribute></c_attribute> | 60 | <a_file>floater_about_land.xml</a_file> |
216 | <d_old></d_old> | 61 | <b_path>/floaterland/landtab/land_general_panel/no_selection_text</b_path> |
217 | <e_new> | 62 | <c_attribute/> |
218 | Problems adding to this estate list. One or more estates may have a full list. | 63 | <d_old/> |
219 | </e_new> | ||
220 | <f_old_trans></f_old_trans> | ||
221 | <f_translation> | ||
222 | 不動産リストの追加に関する問題。1つ以上の不動産で、リストが満杯になっています。 | ||
223 | </f_translation> | ||
224 | </string><string><a_file>alerts.xml</a_file> | ||
225 | <b_path>//ReplaceAttachment/ignore</b_path> | ||
226 | <c_attribute></c_attribute> | ||
227 | <d_old></d_old> | ||
228 | <e_new> | 64 | <e_new> |
229 | When replacing existing attachments | 65 | |
230 | </e_new> | 66 | No parcel selected. |
231 | <f_old_trans></f_old_trans> | 67 | Go to World menu > About Land or select another parcel to show its details. |
68 | |||
69 | </e_new> | ||
70 | <f_old_trans/> | ||
232 | <f_translation> | 71 | <f_translation> |
233 | 現在、装着しているものを置換するとき | 72 | |
234 | </f_translation> | 73 | 区画が選定されていません。 |
235 | </string><string><a_file>alerts.xml</a_file> | 74 | [世界]メニュー>[土地情報]に進むか、別の区画を選択して、詳細を表示します。 |
236 | <b_path>//BusyModePay/ignore</b_path> | 75 | |
237 | <c_attribute></c_attribute> | 76 | </f_translation> |
238 | <d_old></d_old> | 77 | </string> |
78 | <string> | ||
79 | <a_file>floater_instant_message.xml</a_file> | ||
80 | <b_path>/im_floater/inventory_item_offered</b_path> | ||
81 | <c_attribute/> | ||
82 | <d_old/> | ||
239 | <e_new> | 83 | <e_new> |
240 | When paying a person or object in busy mode | 84 | Inventory item offered |
241 | </e_new> | ||
242 | <f_old_trans></f_old_trans> | ||
243 | <f_translation> | ||
244 | ビジー・モードの人またはオブジェクトに支払うとき | ||
245 | </f_translation> | ||
246 | </string><string><a_file>floater_about_land.xml</a_file> | ||
247 | <b_path>/floaterland/landtab/land_objects_panel/owner list/type</b_path> | ||
248 | <c_attribute>label</c_attribute> | ||
249 | <d_old></d_old> | ||
250 | <e_new>Type</e_new> | ||
251 | <f_old_trans></f_old_trans> | ||
252 | <f_translation>タイプ</f_translation> | ||
253 | </string><string><a_file>floater_about_land.xml</a_file> | ||
254 | <b_path>/floaterland/landtab/land_objects_panel/owner list/name</b_path> | ||
255 | <c_attribute>label</c_attribute> | ||
256 | <d_old></d_old> | ||
257 | <e_new>Name</e_new> | ||
258 | <f_old_trans></f_old_trans> | ||
259 | <f_translation>名前</f_translation> | ||
260 | </string><string><a_file>floater_about_land.xml</a_file> | ||
261 | <b_path>/floaterland/landtab/land_objects_panel/owner list/count</b_path> | ||
262 | <c_attribute>label</c_attribute> | ||
263 | <d_old></d_old> | ||
264 | <e_new>Count</e_new> | ||
265 | <f_old_trans></f_old_trans> | ||
266 | <f_translation>カウント</f_translation> | ||
267 | </string><string><a_file>floater_active_speakers.xml</a_file> | ||
268 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> | ||
269 | <c_attribute>label</c_attribute> | ||
270 | <d_old></d_old> | ||
271 | <e_new></e_new> | ||
272 | <f_old_trans></f_old_trans> | ||
273 | <f_translation></f_translation> | ||
274 | </string><string><a_file>floater_avatar_textures.xml</a_file> | ||
275 | <b_path>/avatar_texture_debug/baked_label</b_path> | ||
276 | <c_attribute></c_attribute> | ||
277 | <d_old></d_old> | ||
278 | <e_new> | ||
279 | Baked Textures | ||
280 | </e_new> | 85 | </e_new> |
281 | <f_old_trans></f_old_trans> | 86 | <f_old_trans/> |
282 | <f_translation> | 87 | <f_translation> |
283 | 構築れたー | 88 | 贈れた持物 |
284 | </f_translation> | 89 | </f_translation> |
285 | </string><string><a_file>floater_avatar_textures.xml</a_file> | 90 | </string> |
286 | <b_path>/avatar_texture_debug/composite_label</b_path> | 91 | <string> |
287 | <c_attribute></c_attribute> | 92 | <a_file>floater_live_lsleditor.xml</a_file> |
288 | <d_old></d_old> | 93 | <b_path>/script ed float/mono</b_path> |
94 | <c_attribute>label</c_attribute> | ||
95 | <d_old/> | ||
96 | <e_new>Mono</e_new> | ||
97 | <f_old_trans/> | ||
98 | <f_translation>モノ</f_translation> | ||
99 | <f_old_trans/> | ||
100 | </string> | ||
101 | <string> | ||
102 | <a_file>floater_mem_leaking.xml</a_file> | ||
103 | <b_path>/MemLeak</b_path> | ||
104 | <c_attribute>title</c_attribute> | ||
105 | <d_old/> | ||
106 | <e_new>Memory Leaking Simulation</e_new> | ||
107 | <f_old_trans/> | ||
108 | <f_translation>メモリ・リーク・シミュレーション</f_translation> | ||
109 | </string> | ||
110 | <string> | ||
111 | <a_file>floater_mem_leaking.xml</a_file> | ||
112 | <b_path>/MemLeak/leak_speed</b_path> | ||
113 | <c_attribute>label</c_attribute> | ||
114 | <d_old/> | ||
115 | <e_new>Leaking Speed (bytes per frame):</e_new> | ||
116 | <f_old_trans/> | ||
117 | <f_translation>リークスピード(1フレームごとのバイト数):</f_translation> | ||
118 | </string> | ||
119 | <string> | ||
120 | <a_file>floater_mem_leaking.xml</a_file> | ||
121 | <b_path>/MemLeak/max_leak</b_path> | ||
122 | <c_attribute>label</c_attribute> | ||
123 | <d_old/> | ||
124 | <e_new>Max Leaked Memory (MB):</e_new> | ||
125 | <f_old_trans/> | ||
126 | <f_translation>リークした最大メモリ数(MB):</f_translation> | ||
127 | </string> | ||
128 | <string> | ||
129 | <a_file>floater_mem_leaking.xml</a_file> | ||
130 | <b_path>/MemLeak/total_leaked_label</b_path> | ||
131 | <c_attribute/> | ||
132 | <d_old/> | ||
289 | <e_new> | 133 | <e_new> |
290 | Composite Textures | 134 | Current leaked memory: [SIZE] KB |
291 | </e_new> | 135 | </e_new> |
292 | <f_old_trans></f_old_trans> | 136 | <f_old_trans/> |
293 | <f_translation> | 137 | <f_translation> |
294 | 成ー | 138 | 現サイズ [SIZE] KB |
295 | </f_translation> | 139 | </f_translation> |
296 | </string><string><a_file>floater_buy_currency.xml</a_file> | 140 | </string> |
297 | <b_path>/buy currency/getting_data</b_path> | 141 | <string> |
298 | <c_attribute></c_attribute> | 142 | <a_file>floater_mem_leaking.xml</a_file> |
299 | <d_old></d_old> | 143 | <b_path>/MemLeak/note_label_1</b_path> |
144 | <c_attribute/> | ||
145 | <d_old/> | ||
300 | <e_new> | 146 | <e_new> |
301 | Getting data... | 147 | [NOTE1] |
302 | </e_new> | 148 | </e_new> |
303 | <f_old_trans></f_old_trans> | 149 | <f_old_trans/> |
304 | <f_translation> | 150 | <f_translation> |
305 | データを取得しています... | 151 | [NOTE1] |
306 | </f_translation> | 152 | </f_translation> |
307 | </string><string><a_file>floater_camera.xml</a_file> | 153 | </string> |
308 | <b_path>/move floater</b_path> | 154 | <string> |
309 | <c_attribute>title</c_attribute> | 155 | <a_file>floater_mem_leaking.xml</a_file> |
310 | <d_old></d_old> | 156 | <b_path>/MemLeak/note_label_2</b_path> |
311 | <e_new></e_new> | 157 | <c_attribute/> |
312 | <f_old_trans></f_old_trans> | 158 | <d_old/> |
313 | <f_translation></f_translation> | ||
314 | </string><string><a_file>floater_camera.xml</a_file> | ||
315 | <b_path>/move floater/rotate_tooltip</b_path> | ||
316 | <c_attribute></c_attribute> | ||
317 | <d_old></d_old> | ||
318 | <e_new>Rotate Camera Around Focus</e_new> | ||
319 | <f_old_trans></f_old_trans> | ||
320 | <f_translation>フォーカスを中心にカメラを回転</f_translation> | ||
321 | </string><string><a_file>floater_camera.xml</a_file> | ||
322 | <b_path>/move floater/zoom_tooltip</b_path> | ||
323 | <c_attribute></c_attribute> | ||
324 | <d_old></d_old> | ||
325 | <e_new>Zoom Camera Towards Focus</e_new> | ||
326 | <f_old_trans></f_old_trans> | ||
327 | <f_translation>フォーカスに向けてカメラをズーム</f_translation> | ||
328 | </string><string><a_file>floater_camera.xml</a_file> | ||
329 | <b_path>/move floater/move_tooltip</b_path> | ||
330 | <c_attribute></c_attribute> | ||
331 | <d_old></d_old> | ||
332 | <e_new>Move Camera Up and Down, Left and Right</e_new> | ||
333 | <f_old_trans></f_old_trans> | ||
334 | <f_translation>カメラを上下左右に移動</f_translation> | ||
335 | </string><string><a_file>floater_chatterbox.xml</a_file> | ||
336 | <b_path>/floater_chatterbox</b_path> | ||
337 | <c_attribute>title</c_attribute> | ||
338 | <d_old></d_old> | ||
339 | <e_new>Communicate</e_new> | ||
340 | <f_old_trans></f_old_trans> | ||
341 | <f_translation>コミュニケーション</f_translation> | ||
342 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
343 | <b_path>/chat floater/IM_logging_string</b_path> | ||
344 | <c_attribute></c_attribute> | ||
345 | <d_old></d_old> | ||
346 | <e_new> | 159 | <e_new> |
347 | -- Instant message logging enabled -- | 160 | [NOTE2] |
348 | </e_new> | 161 | </e_new> |
349 | <f_old_trans></f_old_trans> | 162 | <f_old_trans/> |
350 | <f_translation> | 163 | <f_translation> |
351 | -- インスタント・メッセージのログ記録が有効 -- | 164 | [NOTE2] |
352 | </f_translation> | 165 | </f_translation> |
353 | </string><string><a_file>floater_chat_history.xml</a_file> | 166 | </string> |
354 | <b_path>/chat floater/IM_end_log_string</b_path> | 167 | <string> |
355 | <c_attribute></c_attribute> | 168 | <a_file>floater_mem_leaking.xml</a_file> |
356 | <d_old></d_old> | 169 | <b_path>/MemLeak/start_btn</b_path> |
170 | <c_attribute>label</c_attribute> | ||
171 | <d_old/> | ||
172 | <e_new>Start</e_new> | ||
173 | <f_old_trans/> | ||
174 | <f_translation>開始</f_translation> | ||
175 | </string> | ||
176 | <string> | ||
177 | <a_file>floater_mem_leaking.xml</a_file> | ||
178 | <b_path>/MemLeak/stop_btn</b_path> | ||
179 | <c_attribute>label</c_attribute> | ||
180 | <d_old/> | ||
181 | <e_new>Stop</e_new> | ||
182 | <f_old_trans/> | ||
183 | <f_translation>停止</f_translation> | ||
184 | </string> | ||
185 | <string> | ||
186 | <a_file>floater_mem_leaking.xml</a_file> | ||
187 | <b_path>/MemLeak/release_btn</b_path> | ||
188 | <c_attribute>label</c_attribute> | ||
189 | <d_old/> | ||
190 | <e_new>Release</e_new> | ||
191 | <f_old_trans/> | ||
192 | <f_translation>解放</f_translation> | ||
193 | </string> | ||
194 | <string> | ||
195 | <a_file>floater_mem_leaking.xml</a_file> | ||
196 | <b_path>/MemLeak/close_btn</b_path> | ||
197 | <c_attribute>label</c_attribute> | ||
198 | <d_old/> | ||
199 | <e_new>Close</e_new> | ||
200 | <f_old_trans/> | ||
201 | <f_translation>閉じる</f_translation> | ||
202 | </string> | ||
203 | <string> | ||
204 | <a_file>floater_postcard.xml</a_file> | ||
205 | <b_path>/Postcard/upload_message</b_path> | ||
206 | <c_attribute/> | ||
207 | <d_old/> | ||
357 | <e_new> | 208 | <e_new> |
358 | -- End of Log -- | 209 | "Sending..." |
359 | </e_new> | 210 | </e_new> |
360 | <f_old_trans></f_old_trans> | 211 | <f_old_trans/> |
361 | <f_translation> | 212 | <f_translation> |
362 | -- ログ記終 -- | 213 | "中..." |
363 | </f_translation> | 214 | </f_translation> |
364 | </string><string><a_file>floater_chat_history.xml</a_file> | 215 | </string> |
365 | <b_path>/chat floater/panels/im_contents_panel/Gesture</b_path> | 216 | <string> |
366 | <c_attribute>label</c_attribute> | 217 | <a_file>floater_report_abuse.xml</a_file> |
367 | <d_old></d_old> | 218 | <b_path>/floater_report_abuse/category_combo/Select_category</b_path> |
368 | <e_new>Gestures</e_new> | 219 | <c_attribute/> |
369 | <f_old_trans></f_old_trans> | 220 | <d_old/> |
370 | <f_translation>ジェスチャー</f_translation> | 221 | <e_new> |
371 | </string><string><a_file>floater_chat_history.xml</a_file> | 222 | Select category |
372 | <b_path>/chat floater/panels/im_contents_panel/Gesture/Gestures</b_path> | 223 | </e_new> |
373 | <c_attribute></c_attribute> | 224 | <f_old_trans/> |
374 | <d_old></d_old> | 225 | <f_translation> |
375 | <e_new> | 226 | カテゴリーを選択 |
376 | Gestures | 227 | </f_translation> |
377 | </e_new> | 228 | </string> |
378 | <f_old_trans></f_old_trans> | 229 | <string> |
379 | <f_translation> | 230 | <a_file>floater_report_abuse.xml</a_file> |
380 | ジェスチャー | 231 | <b_path>/floater_report_abuse/category_combo/Age__Age_play</b_path> |
381 | </f_translation> | 232 | <c_attribute/> |
382 | </string><string><a_file>floater_chat_history.xml</a_file> | 233 | <d_old/> |
383 | <b_path>/chat floater/panels/im_contents_panel/show mutes</b_path> | 234 | <e_new> |
384 | <c_attribute>label</c_attribute> | 235 | Age > Age play |
385 | <d_old></d_old> | 236 | </e_new> |
386 | <e_new>Show Muted Text</e_new> | 237 | <f_old_trans/> |
387 | <f_old_trans></f_old_trans> | 238 | <f_translation> |
388 | <f_translation>ミュートされたテキストを表示</f_translation> | 239 | 年齢>年齢偽証 |
389 | </string><string><a_file>floater_chat_history.xml</a_file> | 240 | </f_translation> |
390 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | 241 | </string> |
391 | <c_attribute>label</c_attribute> | 242 | <string> |
392 | <d_old></d_old> | 243 | <a_file>floater_report_abuse.xml</a_file> |
393 | <e_new>< <</e_new> | 244 | <b_path>/floater_report_abuse/category_combo/Age__Adult_resident_on_Teen_Second_Life</b_path> |
394 | <f_old_trans></f_old_trans> | 245 | <c_attribute/> |
395 | <f_translation>< <</f_translation> | 246 | <d_old/> |
396 | </string><string><a_file>floater_chat_history.xml</a_file> | 247 | <e_new> |
397 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | 248 | Age > Adult resident on Teen Second Life |
398 | <c_attribute>label_selected</c_attribute> | 249 | </e_new> |
399 | <d_old></d_old> | 250 | <f_old_trans/> |
400 | <e_new>> ></e_new> | 251 | <f_translation> |
401 | <f_old_trans></f_old_trans> | 252 | 年齢>成人の住人がTeen Second Life上にいる |
402 | <f_translation>> ></f_translation> | 253 | </f_translation> |
403 | </string><string><a_file>floater_chat_history.xml</a_file> | 254 | </string> |
404 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | 255 | <string> |
405 | <c_attribute>tool_tip</c_attribute> | 256 | <a_file>floater_report_abuse.xml</a_file> |
406 | <d_old></d_old> | 257 | <b_path>/floater_report_abuse/category_combo/Age__Underage_resident_on_Adult_Second_Life</b_path> |
407 | <e_new>Click here to show list of active participants in this IM session.</e_new> | 258 | <c_attribute/> |
408 | <f_old_trans></f_old_trans> | 259 | <d_old/> |
409 | <f_translation>ここをクリックして、このIMセッションへのアクティブな参加者リストを表示。</f_translation> | 260 | <e_new> |
410 | </string><string><a_file>floater_chat_history.xml</a_file> | 261 | Age > Underage resident on Adult Second Life |
411 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Chat Editor</b_path> | 262 | </e_new> |
412 | <c_attribute>label</c_attribute> | 263 | <f_old_trans/> |
413 | <d_old></d_old> | 264 | <f_translation> |
414 | <e_new>Click here to chat.</e_new> | 265 | 年齢>未成年の住人がAdult Second Life上にいる |
415 | <f_old_trans></f_old_trans> | 266 | </f_translation> |
416 | <f_translation>チャットを開始するには、ここをクリックします。</f_translation> | 267 | </string> |
417 | </string><string><a_file>floater_chat_history.xml</a_file> | 268 | <string> |
418 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Say</b_path> | 269 | <a_file>floater_report_abuse.xml</a_file> |
419 | <c_attribute>label</c_attribute> | 270 | <b_path>/floater_report_abuse/category_combo/Assault__Combat_sandbox___unsafe_area</b_path> |
420 | <d_old></d_old> | 271 | <c_attribute/> |
421 | <e_new>Say</e_new> | 272 | <d_old/> |
422 | <f_old_trans></f_old_trans> | 273 | <e_new> |
423 | <f_translation>発言</f_translation> | 274 | Assault > Combat sandbox / unsafe area |
424 | </string><string><a_file>floater_chat_history.xml</a_file> | 275 | </e_new> |
425 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Say</b_path> | 276 | <f_old_trans/> |
426 | <c_attribute>tool_tip</c_attribute> | 277 | <f_translation> |
427 | <d_old></d_old> | 278 | 攻撃>コンバット・サンドボックス/危険なエリア |
428 | <e_new>(Enter)</e_new> | 279 | </f_translation> |
429 | <f_old_trans></f_old_trans> | 280 | </string> |
430 | <f_translation>(Enter)</f_translation> | 281 | <string> |
431 | </string><string><a_file>floater_critical.xml</a_file> | 282 | <a_file>floater_report_abuse.xml</a_file> |
432 | <b_path>/modal container/tos_title</b_path> | 283 | <b_path>/floater_report_abuse/category_combo/Assault__Safe_area</b_path> |
433 | <c_attribute></c_attribute> | 284 | <c_attribute/> |
434 | <d_old></d_old> | 285 | <d_old/> |
435 | <e_new> | 286 | <e_new> |
436 | Critical Message | 287 | Assault > Safe area |
437 | </e_new> | 288 | </e_new> |
438 | <f_old_trans></f_old_trans> | 289 | <f_old_trans/> |
439 | <f_translation> | 290 | <f_translation> |
440 | クリティカル・メッセージ | 291 | 攻撃>安全なエリア |
441 | </f_translation> | 292 | </f_translation> |
442 | </string><string><a_file>floater_customize.xml</a_file> | 293 | </string> |
443 | <b_path>/floater customize/customize tab container/body_parts_placeholder</b_path> | 294 | <string> |
444 | <c_attribute>label</c_attribute> | 295 | <a_file>floater_report_abuse.xml</a_file> |
445 | <d_old></d_old> | 296 | <b_path>/floater_report_abuse/category_combo/Assault__Weapons_testing_sandbox</b_path> |
446 | <e_new>Body Parts</e_new> | 297 | <c_attribute/> |
447 | <f_old_trans></f_old_trans> | 298 | <d_old/> |
448 | <f_translation>身体部位</f_translation> | 299 | <e_new> |
449 | </string><string><a_file>floater_customize.xml</a_file> | 300 | Assault > Weapons testing sandbox |
450 | <b_path>/floater customize/customize tab container/clothes_placeholder</b_path> | 301 | </e_new> |
451 | <c_attribute>label</c_attribute> | 302 | <f_old_trans/> |
452 | <d_old></d_old> | 303 | <f_translation> |
453 | <e_new>Clothes</e_new> | 304 | 攻撃>武器テスト用サンドボックス |
454 | <f_old_trans></f_old_trans> | 305 | </f_translation> |
455 | <f_translation>服</f_translation> | 306 | </string> |
456 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | 307 | <string> |
457 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLTimeSlider</b_path> | 308 | <a_file>floater_report_abuse.xml</a_file> |
458 | <c_attribute>label</c_attribute> | 309 | <b_path>/floater_report_abuse/category_combo/Copyright_or_intellectual_property_violation</b_path> |
459 | <d_old></d_old> | 310 | <c_attribute/> |
460 | <e_new></e_new> | 311 | <d_old/> |
461 | <f_old_trans></f_old_trans> | 312 | <e_new> |
462 | <f_translation></f_translation> | 313 | Copyright or intellectual property violation |
463 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | 314 | </e_new> |
464 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDayCycleKeys</b_path> | 315 | <f_old_trans/> |
465 | <c_attribute>label</c_attribute> | 316 | <f_translation> |
466 | <d_old></d_old> | 317 | 著作権または知的所有権に関する違反 |
467 | <e_new></e_new> | 318 | </f_translation> |
468 | <f_old_trans></f_old_trans> | 319 | </string> |
469 | <f_translation></f_translation> | 320 | <string> |
470 | </string><string><a_file>floater_device_settings.xml</a_file> | 321 | <a_file>floater_report_abuse.xml</a_file> |
471 | <b_path>/floater_device_settings</b_path> | 322 | <b_path>/floater_report_abuse/category_combo/Commerce__Failure_to_deliver_product_or_service</b_path> |
472 | <c_attribute>title</c_attribute> | 323 | <c_attribute/> |
473 | <d_old></d_old> | 324 | <d_old/> |
474 | <e_new>Voice Chat Device Settings</e_new> | 325 | <e_new> |
475 | <f_old_trans></f_old_trans> | 326 | Commerce > Failure to deliver product or service |
476 | <f_translation>ボイスチャット機器の設定</f_translation> | 327 | </e_new> |
477 | </string><string><a_file>floater_directory.xml</a_file> | 328 | <f_old_trans/> |
478 | <b_path>/directory/Directory Tabs/find_all_old_panel/results/icon</b_path> | 329 | <f_translation> |
479 | <c_attribute>label</c_attribute> | 330 | 商取引>製品またはサービスの提供が行われない |
480 | <d_old></d_old> | 331 | </f_translation> |
481 | <e_new></e_new> | 332 | </string> |
482 | <f_old_trans></f_old_trans> | 333 | <string> |
483 | <f_translation></f_translation> | 334 | <a_file>floater_report_abuse.xml</a_file> |
484 | </string><string><a_file>floater_env_settings.xml</a_file> | 335 | <b_path>/floater_report_abuse/category_combo/Disclosure__First_Life_information</b_path> |
485 | <b_path>/Environment Editor Floater/EnvTimeSlider</b_path> | 336 | <c_attribute/> |
486 | <c_attribute>label</c_attribute> | 337 | <d_old/> |
487 | <d_old></d_old> | 338 | <e_new> |
488 | <e_new></e_new> | 339 | Disclosure > First life information |
489 | <f_old_trans></f_old_trans> | 340 | </e_new> |
490 | <f_translation></f_translation> | 341 | <f_old_trans/> |
491 | </string><string><a_file>floater_env_settings.xml</a_file> | 342 | <f_translation> |
492 | <b_path>/Environment Editor Floater/EnvCloudSlider</b_path> | 343 | 開示>1st Lifeの情報 |
493 | <c_attribute>label</c_attribute> | 344 | </f_translation> |
494 | <d_old></d_old> | 345 | </string> |
495 | <e_new></e_new> | 346 | <string> |
496 | <f_old_trans></f_old_trans> | 347 | <a_file>floater_report_abuse.xml</a_file> |
497 | <f_translation></f_translation> | 348 | <b_path>/floater_report_abuse/category_combo/Disclosure__Remotely_monitoring chat</b_path> |
498 | </string><string><a_file>floater_env_settings.xml</a_file> | 349 | <c_attribute/> |
499 | <b_path>/Environment Editor Floater/EnvWaterFogSlider</b_path> | 350 | <d_old/> |
500 | <c_attribute>label</c_attribute> | 351 | <e_new> |
501 | <d_old></d_old> | 352 | Disclosure > Remotely monitoring chat |
502 | <e_new></e_new> | 353 | </e_new> |
503 | <f_old_trans></f_old_trans> | 354 | <f_old_trans/> |
504 | <f_translation></f_translation> | 355 | <f_translation> |
505 | </string><string><a_file>floater_groups.xml</a_file> | 356 | 開示>離れたところからチャットをモニターしている |
506 | <b_path>/groups/group list/name</b_path> | 357 | </f_translation> |
507 | <c_attribute>label</c_attribute> | 358 | </string> |
508 | <d_old></d_old> | 359 | <string> |
509 | <e_new></e_new> | 360 | <a_file>floater_report_abuse.xml</a_file> |
510 | <f_old_trans></f_old_trans> | 361 | <b_path>/floater_report_abuse/category_combo/Disclosure__Second_Life_information_chat_IMs</b_path> |
511 | <f_translation></f_translation> | 362 | <c_attribute/> |
512 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 363 | <d_old/> |
513 | <b_path>/Hardware Settings Floater/Antialiasing:</b_path> | 364 | <e_new> |
514 | <c_attribute></c_attribute> | 365 | Disclosure > Second Life information/chat/IMs |
515 | <d_old></d_old> | 366 | </e_new> |
516 | <e_new> | 367 | <f_old_trans/> |
517 | Antialiasing: | 368 | <f_translation> |
518 | </e_new> | 369 | 開示>Second Lifeの情報/チャット/IM |
519 | <f_old_trans></f_old_trans> | 370 | </f_translation> |
520 | <f_translation> | 371 | </string> |
521 | アンチエイリアシング: | 372 | <string> |
522 | </f_translation> | 373 | <a_file>floater_report_abuse.xml</a_file> |
523 | </string><string><a_file>floater_hardware_settings.xml</a_file> | 374 | <b_path>/floater_report_abuse/category_combo/Disturbing_the_peace__Unfair_use_of_region_resources</b_path> |
524 | <b_path>/Hardware Settings Floater/fsaa</b_path> | 375 | <c_attribute/> |
525 | <c_attribute>label</c_attribute> | 376 | <d_old/> |
526 | <d_old></d_old> | ||
527 | <e_new>Antialiasing</e_new> | ||
528 | <f_old_trans></f_old_trans> | ||
529 | <f_translation>アンチエイリアシング</f_translation> | ||
530 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
531 | <b_path>/Hardware Settings Floater/fsaa/FSAADisabled</b_path> | ||
532 | <c_attribute></c_attribute> | ||
533 | <d_old></d_old> | ||
534 | <e_new> | ||
535 | Disabled | ||
536 | </e_new> | ||
537 | <f_old_trans></f_old_trans> | ||
538 | <f_translation> | ||
539 | 無効 | ||
540 | </f_translation> | ||
541 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
542 | <b_path>/Hardware Settings Floater/fsaa/2x</b_path> | ||
543 | <c_attribute></c_attribute> | ||
544 | <d_old></d_old> | ||
545 | <e_new> | ||
546 | 2x | ||
547 | </e_new> | ||
548 | <f_old_trans></f_old_trans> | ||
549 | <f_translation> | ||
550 | 2x | ||
551 | </f_translation> | ||
552 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
553 | <b_path>/Hardware Settings Floater/fsaa/4x</b_path> | ||
554 | <c_attribute></c_attribute> | ||
555 | <d_old></d_old> | ||
556 | <e_new> | ||
557 | 4x | ||
558 | </e_new> | ||
559 | <f_old_trans></f_old_trans> | ||
560 | <f_translation> | ||
561 | 4x | ||
562 | </f_translation> | ||
563 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
564 | <b_path>/Hardware Settings Floater/fsaa/8x</b_path> | ||
565 | <c_attribute></c_attribute> | ||
566 | <d_old></d_old> | ||
567 | <e_new> | ||
568 | 8x | ||
569 | </e_new> | ||
570 | <f_old_trans></f_old_trans> | ||
571 | <f_translation> | ||
572 | 8x | ||
573 | </f_translation> | ||
574 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
575 | <b_path>/Hardware Settings Floater/fsaa/16x</b_path> | ||
576 | <c_attribute></c_attribute> | ||
577 | <d_old></d_old> | ||
578 | <e_new> | 377 | <e_new> |
579 | 16x | 378 | |
580 | </e_new> | 379 | Disturbing the peace > Unfair use of region resources |
581 | <f_old_trans></f_old_trans> | 380 | </e_new> |
582 | <f_translation> | 381 | <f_old_trans/> |
583 | 16x | ||
584 | </f_translation> | ||
585 | </string><string><a_file>floater_hud.xml</a_file> | ||
586 | <b_path>/floater_hud</b_path> | ||
587 | <c_attribute>title</c_attribute> | ||
588 | <d_old></d_old> | ||
589 | <e_new>Tutorial</e_new> | ||
590 | <f_old_trans></f_old_trans> | ||
591 | <f_translation>チュートリアル</f_translation> | ||
592 | </string><string><a_file>floater_joystick.xml</a_file> | ||
593 | <b_path>/Joystick</b_path> | ||
594 | <c_attribute>title</c_attribute> | ||
595 | <d_old></d_old> | ||
596 | <e_new>Joystick Configuration</e_new> | ||
597 | <f_old_trans></f_old_trans> | ||
598 | <f_translation>ジョイスティックの設定</f_translation> | ||
599 | </string><string><a_file>floater_joystick.xml</a_file> | ||
600 | <b_path>/Joystick/JoystickAxis1</b_path> | ||
601 | <c_attribute>label</c_attribute> | ||
602 | <d_old></d_old> | ||
603 | <e_new>X Axis Mapping</e_new> | ||
604 | <f_old_trans></f_old_trans> | ||
605 | <f_translation>X軸マッピング</f_translation> | ||
606 | </string><string><a_file>floater_joystick.xml</a_file> | ||
607 | <b_path>/Joystick/JoystickAxis2</b_path> | ||
608 | <c_attribute>label</c_attribute> | ||
609 | <d_old></d_old> | ||
610 | <e_new>Y Axis Mapping</e_new> | ||
611 | <f_old_trans></f_old_trans> | ||
612 | <f_translation>Y軸マッピング</f_translation> | ||
613 | </string><string><a_file>floater_joystick.xml</a_file> | ||
614 | <b_path>/Joystick/JoystickAxis0</b_path> | ||
615 | <c_attribute>label</c_attribute> | ||
616 | <d_old></d_old> | ||
617 | <e_new>Z Axis Mapping</e_new> | ||
618 | <f_old_trans></f_old_trans> | ||
619 | <f_translation>Z軸マッピング</f_translation> | ||
620 | </string><string><a_file>floater_joystick.xml</a_file> | ||
621 | <b_path>/Joystick/JoystickAxis4</b_path> | ||
622 | <c_attribute>label</c_attribute> | ||
623 | <d_old></d_old> | ||
624 | <e_new>Pitch Mapping</e_new> | ||
625 | <f_old_trans></f_old_trans> | ||
626 | <f_translation>ピッチ・マッピング</f_translation> | ||
627 | </string><string><a_file>floater_joystick.xml</a_file> | ||
628 | <b_path>/Joystick/JoystickAxis5</b_path> | ||
629 | <c_attribute>label</c_attribute> | ||
630 | <d_old></d_old> | ||
631 | <e_new>Yaw Mapping</e_new> | ||
632 | <f_old_trans></f_old_trans> | ||
633 | <f_translation>ヨー・マッピング</f_translation> | ||
634 | </string><string><a_file>floater_joystick.xml</a_file> | ||
635 | <b_path>/Joystick/JoystickAxis3</b_path> | ||
636 | <c_attribute>label</c_attribute> | ||
637 | <d_old></d_old> | ||
638 | <e_new>Roll Mapping</e_new> | ||
639 | <f_old_trans></f_old_trans> | ||
640 | <f_translation>ロール・マッピング</f_translation> | ||
641 | </string><string><a_file>floater_joystick.xml</a_file> | ||
642 | <b_path>/Joystick/JoystickAxis6</b_path> | ||
643 | <c_attribute>label</c_attribute> | ||
644 | <d_old></d_old> | ||
645 | <e_new>Zoom Mapping</e_new> | ||
646 | <f_old_trans></f_old_trans> | ||
647 | <f_translation>ズーム・マッピング</f_translation> | ||
648 | </string><string><a_file>floater_joystick.xml</a_file> | ||
649 | <b_path>/Joystick/ZoomDirect</b_path> | ||
650 | <c_attribute>label</c_attribute> | ||
651 | <d_old></d_old> | ||
652 | <e_new>Direct Zoom</e_new> | ||
653 | <f_old_trans></f_old_trans> | ||
654 | <f_translation>直接ズーム</f_translation> | ||
655 | </string><string><a_file>floater_joystick.xml</a_file> | ||
656 | <b_path>/Joystick/Cursor3D</b_path> | ||
657 | <c_attribute>label</c_attribute> | ||
658 | <d_old></d_old> | ||
659 | <e_new>3D Cursor</e_new> | ||
660 | <f_old_trans></f_old_trans> | ||
661 | <f_translation>3Dカーソル</f_translation> | ||
662 | </string><string><a_file>floater_joystick.xml</a_file> | ||
663 | <b_path>/Joystick/AutoLeveling</b_path> | ||
664 | <c_attribute>label</c_attribute> | ||
665 | <d_old></d_old> | ||
666 | <e_new>Auto Level</e_new> | ||
667 | <f_old_trans></f_old_trans> | ||
668 | <f_translation>自動レベル</f_translation> | ||
669 | </string><string><a_file>floater_joystick.xml</a_file> | ||
670 | <b_path>/Joystick/Control Modes:</b_path> | ||
671 | <c_attribute></c_attribute> | ||
672 | <d_old></d_old> | ||
673 | <e_new> | ||
674 | Control Modes: | ||
675 | </e_new> | ||
676 | <f_old_trans></f_old_trans> | ||
677 | <f_translation> | ||
678 | 制御モード: | ||
679 | </f_translation> | ||
680 | </string><string><a_file>floater_joystick.xml</a_file> | ||
681 | <b_path>/Joystick/XScale</b_path> | ||
682 | <c_attribute></c_attribute> | ||
683 | <d_old></d_old> | ||
684 | <e_new>X Scale</e_new> | ||
685 | <f_old_trans></f_old_trans> | ||
686 | <f_translation>Xスケール</f_translation> | ||
687 | </string><string><a_file>floater_joystick.xml</a_file> | ||
688 | <b_path>/Joystick/YScale</b_path> | ||
689 | <c_attribute></c_attribute> | ||
690 | <d_old></d_old> | ||
691 | <e_new>Y Scale</e_new> | ||
692 | <f_old_trans></f_old_trans> | ||
693 | <f_translation>Yスケール</f_translation> | ||
694 | </string><string><a_file>floater_joystick.xml</a_file> | ||
695 | <b_path>/Joystick/ZScale</b_path> | ||
696 | <c_attribute></c_attribute> | ||
697 | <d_old></d_old> | ||
698 | <e_new>Z Scale</e_new> | ||
699 | <f_old_trans></f_old_trans> | ||
700 | <f_translation>Zスケール</f_translation> | ||
701 | </string><string><a_file>floater_joystick.xml</a_file> | ||
702 | <b_path>/Joystick/PitchScale</b_path> | ||
703 | <c_attribute></c_attribute> | ||
704 | <d_old></d_old> | ||
705 | <e_new>Pitch Scale</e_new> | ||
706 | <f_old_trans></f_old_trans> | ||
707 | <f_translation>ピッチ・スケール</f_translation> | ||
708 | </string><string><a_file>floater_joystick.xml</a_file> | ||
709 | <b_path>/Joystick/YawScale</b_path> | ||
710 | <c_attribute></c_attribute> | ||
711 | <d_old></d_old> | ||
712 | <e_new>Yaw Scale</e_new> | ||
713 | <f_old_trans></f_old_trans> | ||
714 | <f_translation>ヨー・スケール</f_translation> | ||
715 | </string><string><a_file>floater_joystick.xml</a_file> | ||
716 | <b_path>/Joystick/RollScale</b_path> | ||
717 | <c_attribute></c_attribute> | ||
718 | <d_old></d_old> | ||
719 | <e_new>Roll Scale</e_new> | ||
720 | <f_old_trans></f_old_trans> | ||
721 | <f_translation>ロール・スケール</f_translation> | ||
722 | </string><string><a_file>floater_joystick.xml</a_file> | ||
723 | <b_path>/Joystick/XDeadZone</b_path> | ||
724 | <c_attribute></c_attribute> | ||
725 | <d_old></d_old> | ||
726 | <e_new>X Dead Zone</e_new> | ||
727 | <f_old_trans></f_old_trans> | ||
728 | <f_translation>Xデッド・ゾーン</f_translation> | ||
729 | </string><string><a_file>floater_joystick.xml</a_file> | ||
730 | <b_path>/Joystick/YDeadZone</b_path> | ||
731 | <c_attribute></c_attribute> | ||
732 | <d_old></d_old> | ||
733 | <e_new>Y Dead Zone</e_new> | ||
734 | <f_old_trans></f_old_trans> | ||
735 | <f_translation>Yデッド・ゾーン</f_translation> | ||
736 | </string><string><a_file>floater_joystick.xml</a_file> | ||
737 | <b_path>/Joystick/ZDeadZone</b_path> | ||
738 | <c_attribute></c_attribute> | ||
739 | <d_old></d_old> | ||
740 | <e_new>Z Dead Zone</e_new> | ||
741 | <f_old_trans></f_old_trans> | ||
742 | <f_translation>Zデッド・ゾーン</f_translation> | ||
743 | </string><string><a_file>floater_joystick.xml</a_file> | ||
744 | <b_path>/Joystick/PitchDeadZone</b_path> | ||
745 | <c_attribute></c_attribute> | ||
746 | <d_old></d_old> | ||
747 | <e_new>Pitch Dead Zone</e_new> | ||
748 | <f_old_trans></f_old_trans> | ||
749 | <f_translation>ピッチ・デッド・ゾーン</f_translation> | ||
750 | </string><string><a_file>floater_joystick.xml</a_file> | ||
751 | <b_path>/Joystick/YawDeadZone</b_path> | ||
752 | <c_attribute></c_attribute> | ||
753 | <d_old></d_old> | ||
754 | <e_new>Yaw Dead Zone</e_new> | ||
755 | <f_old_trans></f_old_trans> | ||
756 | <f_translation>ヨー・デッド・ゾーン</f_translation> | ||
757 | </string><string><a_file>floater_joystick.xml</a_file> | ||
758 | <b_path>/Joystick/RollDeadZone</b_path> | ||
759 | <c_attribute></c_attribute> | ||
760 | <d_old></d_old> | ||
761 | <e_new>Roll Dead Zone</e_new> | ||
762 | <f_old_trans></f_old_trans> | ||
763 | <f_translation>ロール・デッド・ゾーン</f_translation> | ||
764 | </string><string><a_file>floater_joystick.xml</a_file> | ||
765 | <b_path>/Joystick/Feathering</b_path> | ||
766 | <c_attribute></c_attribute> | ||
767 | <d_old></d_old> | ||
768 | <e_new>Feathering</e_new> | ||
769 | <f_old_trans></f_old_trans> | ||
770 | <f_translation>羽毛</f_translation> | ||
771 | </string><string><a_file>floater_joystick.xml</a_file> | ||
772 | <b_path>/Joystick/AvatarFeathering</b_path> | ||
773 | <c_attribute>label</c_attribute> | ||
774 | <d_old></d_old> | ||
775 | <e_new></e_new> | ||
776 | <f_old_trans></f_old_trans> | ||
777 | <f_translation></f_translation> | ||
778 | </string><string><a_file>floater_joystick.xml</a_file> | ||
779 | <b_path>/Joystick/BuildFeathering</b_path> | ||
780 | <c_attribute>label</c_attribute> | ||
781 | <d_old></d_old> | ||
782 | <e_new></e_new> | ||
783 | <f_old_trans></f_old_trans> | ||
784 | <f_translation></f_translation> | ||
785 | </string><string><a_file>floater_joystick.xml</a_file> | ||
786 | <b_path>/Joystick/FlycamFeathering</b_path> | ||
787 | <c_attribute>label</c_attribute> | ||
788 | <d_old></d_old> | ||
789 | <e_new></e_new> | ||
790 | <f_old_trans></f_old_trans> | ||
791 | <f_translation></f_translation> | ||
792 | </string><string><a_file>floater_joystick.xml</a_file> | ||
793 | <b_path>/Joystick/ZoomScale2</b_path> | ||
794 | <c_attribute></c_attribute> | ||
795 | <d_old></d_old> | ||
796 | <e_new>Zoom Scale</e_new> | ||
797 | <f_old_trans></f_old_trans> | ||
798 | <f_translation>ズーム・スケール</f_translation> | ||
799 | </string><string><a_file>floater_joystick.xml</a_file> | ||
800 | <b_path>/Joystick/FlycamAxisScale6</b_path> | ||
801 | <c_attribute>label</c_attribute> | ||
802 | <d_old></d_old> | ||
803 | <e_new></e_new> | ||
804 | <f_old_trans></f_old_trans> | ||
805 | <f_translation></f_translation> | ||
806 | </string><string><a_file>floater_joystick.xml</a_file> | ||
807 | <b_path>/Joystick/ZoomDeadZone</b_path> | ||
808 | <c_attribute></c_attribute> | ||
809 | <d_old></d_old> | ||
810 | <e_new>Zoom Dead Zone</e_new> | ||
811 | <f_old_trans></f_old_trans> | ||
812 | <f_translation>ズーム・デッド・ゾーン</f_translation> | ||
813 | </string><string><a_file>floater_joystick.xml</a_file> | ||
814 | <b_path>/Joystick/FlycamAxisDeadZone6</b_path> | ||
815 | <c_attribute>label</c_attribute> | ||
816 | <d_old></d_old> | ||
817 | <e_new></e_new> | ||
818 | <f_old_trans></f_old_trans> | ||
819 | <f_translation></f_translation> | ||
820 | </string><string><a_file>floater_joystick.xml</a_file> | ||
821 | <b_path>/Joystick/SpaceNavigatorDefaults</b_path> | ||
822 | <c_attribute>label</c_attribute> | ||
823 | <d_old></d_old> | ||
824 | <e_new>SpaceNavigator Defaults</e_new> | ||
825 | <f_old_trans></f_old_trans> | ||
826 | <f_translation>SpaceNavigatorのデフォルト設定</f_translation> | ||
827 | </string><string><a_file>floater_joystick.xml</a_file> | ||
828 | <b_path>/Joystick/JoystickMonitor</b_path> | ||
829 | <c_attribute></c_attribute> | ||
830 | <d_old></d_old> | ||
831 | <e_new>Joystick Monitor</e_new> | ||
832 | <f_old_trans></f_old_trans> | ||
833 | <f_translation>ジョイスティック・モニター</f_translation> | ||
834 | </string><string><a_file>floater_joystick.xml</a_file> | ||
835 | <b_path>/Joystick/Axis</b_path> | ||
836 | <c_attribute></c_attribute> | ||
837 | <d_old></d_old> | ||
838 | <e_new>Axis [NUM]</e_new> | ||
839 | <f_old_trans></f_old_trans> | ||
840 | <f_translation>軸 [NUM]</f_translation> | ||
841 | </string><string><a_file>floater_joystick.xml</a_file> | ||
842 | <b_path>/Joystick/NoDevice</b_path> | ||
843 | <c_attribute></c_attribute> | ||
844 | <d_old></d_old> | ||
845 | <e_new>no device detected</e_new> | ||
846 | <f_old_trans></f_old_trans> | ||
847 | <f_translation>デバイスは検出されませんでした</f_translation> | ||
848 | </string><string><a_file>floater_post_process.xml</a_file> | ||
849 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBrightness</b_path> | ||
850 | <c_attribute>label</c_attribute> | ||
851 | <d_old></d_old> | ||
852 | <e_new></e_new> | ||
853 | <f_old_trans></f_old_trans> | ||
854 | <f_translation></f_translation> | ||
855 | </string><string><a_file>floater_post_process.xml</a_file> | ||
856 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterSaturation</b_path> | ||
857 | <c_attribute>label</c_attribute> | ||
858 | <d_old></d_old> | ||
859 | <e_new></e_new> | ||
860 | <f_old_trans></f_old_trans> | ||
861 | <f_translation></f_translation> | ||
862 | </string><string><a_file>floater_post_process.xml</a_file> | ||
863 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterContrast</b_path> | ||
864 | <c_attribute>label</c_attribute> | ||
865 | <d_old></d_old> | ||
866 | <e_new></e_new> | ||
867 | <f_old_trans></f_old_trans> | ||
868 | <f_translation></f_translation> | ||
869 | </string><string><a_file>floater_post_process.xml</a_file> | ||
870 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionBrightMult</b_path> | ||
871 | <c_attribute>label</c_attribute> | ||
872 | <d_old></d_old> | ||
873 | <e_new></e_new> | ||
874 | <f_old_trans></f_old_trans> | ||
875 | <f_translation></f_translation> | ||
876 | </string><string><a_file>floater_post_process.xml</a_file> | ||
877 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseSize</b_path> | ||
878 | <c_attribute>label</c_attribute> | ||
879 | <d_old></d_old> | ||
880 | <e_new></e_new> | ||
881 | <f_old_trans></f_old_trans> | ||
882 | <f_translation></f_translation> | ||
883 | </string><string><a_file>floater_post_process.xml</a_file> | ||
884 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseStrength</b_path> | ||
885 | <c_attribute>label</c_attribute> | ||
886 | <d_old></d_old> | ||
887 | <e_new></e_new> | ||
888 | <f_old_trans></f_old_trans> | ||
889 | <f_translation></f_translation> | ||
890 | </string><string><a_file>floater_post_process.xml</a_file> | ||
891 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomExtract</b_path> | ||
892 | <c_attribute>label</c_attribute> | ||
893 | <d_old></d_old> | ||
894 | <e_new></e_new> | ||
895 | <f_old_trans></f_old_trans> | ||
896 | <f_translation></f_translation> | ||
897 | </string><string><a_file>floater_post_process.xml</a_file> | ||
898 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomSize</b_path> | ||
899 | <c_attribute>label</c_attribute> | ||
900 | <d_old></d_old> | ||
901 | <e_new></e_new> | ||
902 | <f_old_trans></f_old_trans> | ||
903 | <f_translation></f_translation> | ||
904 | </string><string><a_file>floater_post_process.xml</a_file> | ||
905 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomStrength</b_path> | ||
906 | <c_attribute>label</c_attribute> | ||
907 | <d_old></d_old> | ||
908 | <e_new></e_new> | ||
909 | <f_old_trans></f_old_trans> | ||
910 | <f_translation></f_translation> | ||
911 | </string><string><a_file>floater_preview_classified.xml</a_file> | ||
912 | <b_path>/classified_preview</b_path> | ||
913 | <c_attribute>title</c_attribute> | ||
914 | <d_old></d_old> | ||
915 | <e_new>Classified Information</e_new> | ||
916 | <f_old_trans></f_old_trans> | ||
917 | <f_translation>クラシファイド広告情報</f_translation> | ||
918 | </string><string><a_file>floater_preview_event.xml</a_file> | ||
919 | <b_path>/event_preview</b_path> | ||
920 | <c_attribute>title</c_attribute> | ||
921 | <d_old></d_old> | ||
922 | <e_new>Event Information</e_new> | ||
923 | <f_old_trans></f_old_trans> | ||
924 | <f_translation>イベント情報</f_translation> | ||
925 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
926 | <b_path>/gesture_preview/library_label</b_path> | ||
927 | <c_attribute></c_attribute> | ||
928 | <d_old></d_old> | ||
929 | <e_new> | ||
930 | Library: | ||
931 | </e_new> | ||
932 | <f_old_trans></f_old_trans> | ||
933 | <f_translation> | 382 | <f_translation> |
934 | ライブラリ: | 383 | 平穏を乱す行為>地域リソースの使用が不公平 |
935 | </f_translation> | 384 | </f_translation> |
936 | </string><string><a_file>floater_preview_gesture.xml</a_file> | 385 | </string> |
937 | <b_path>/gesture_preview/steps_label</b_path> | 386 | <string> |
938 | <c_attribute></c_attribute> | 387 | <a_file>floater_report_abuse.xml</a_file> |
939 | <d_old></d_old> | 388 | <b_path>/floater_report_abuse/category_combo/Disturbing_the_peace__Excessive_scripted_objects</b_path> |
389 | <c_attribute/> | ||
390 | <d_old/> | ||
940 | <e_new> | 391 | <e_new> |
941 | Steps: | 392 | |
942 | </e_new> | 393 | Disturbing the peace > Excessive scripted objects |
943 | <f_old_trans></f_old_trans> | 394 | </e_new> |
395 | <f_old_trans/> | ||
944 | <f_translation> | 396 | <f_translation> |
945 | 手順: | 397 | 平穏を乱す行為>スクリプト・オブジェクトの乱用 |
946 | </f_translation> | 398 | </f_translation> |
947 | </string><string><a_file>floater_preview_gesture.xml</a_file> | 399 | </string> |
948 | <b_path>/gesture_preview/animation_trigger_type/start</b_path> | 400 | <string> |
949 | <c_attribute></c_attribute> | 401 | <a_file>floater_report_abuse.xml</a_file> |
950 | <d_old></d_old> | 402 | <b_path>/floater_report_abuse/category_combo/Disturbing_the_peace__Object_littering</b_path> |
403 | <c_attribute/> | ||
404 | <d_old/> | ||
405 | <e_new> | ||
406 | Disturbing the peace > Object littering | ||
407 | </e_new> | ||
408 | <f_old_trans/> | ||
409 | <f_translation> | ||
410 | 平穏を乱す行為>オブジェクトの捨て置き | ||
411 | </f_translation> | ||
412 | </string> | ||
413 | <string> | ||
414 | <a_file>floater_report_abuse.xml</a_file> | ||
415 | <b_path>/floater_report_abuse/category_combo/Disturbing_the_peace__Repetitive_spam</b_path> | ||
416 | <c_attribute/> | ||
417 | <d_old/> | ||
418 | <e_new> | ||
419 | Disturbing the peace > Repetitive spam | ||
420 | </e_new> | ||
421 | <f_old_trans/> | ||
422 | <f_translation> | ||
423 | 平穏を乱す行為>繰り返しスパム | ||
424 | </f_translation> | ||
425 | </string> | ||
426 | <string> | ||
427 | <a_file>floater_report_abuse.xml</a_file> | ||
428 | <b_path>/floater_report_abuse/category_combo/Disturbing_the_peace__Unwanted_advert_spam</b_path> | ||
429 | <c_attribute/> | ||
430 | <d_old/> | ||
431 | <e_new> | ||
432 | Disturbing the peace > Unwanted advert spam | ||
433 | </e_new> | ||
434 | <f_old_trans/> | ||
435 | <f_translation> | ||
436 | 平穏を乱す行為>不要な広告スパム | ||
437 | </f_translation> | ||
438 | </string> | ||
439 | <string> | ||
440 | <a_file>floater_report_abuse.xml</a_file> | ||
441 | <b_path>/floater_report_abuse/category_combo/Fraud__L$</b_path> | ||
442 | <c_attribute/> | ||
443 | <d_old/> | ||
444 | <e_new> | ||
445 | Fraud > L$ | ||
446 | </e_new> | ||
447 | <f_old_trans/> | ||
448 | <f_translation> | ||
449 | 詐欺> L$ | ||
450 | </f_translation> | ||
451 | </string> | ||
452 | <string> | ||
453 | <a_file>floater_report_abuse.xml</a_file> | ||
454 | <b_path>/floater_report_abuse/category_combo/Fraud__Land</b_path> | ||
455 | <c_attribute/> | ||
456 | <d_old/> | ||
457 | <e_new> | ||
458 | Fraud > Land | ||
459 | </e_new> | ||
460 | <f_old_trans/> | ||
461 | <f_translation> | ||
462 | 詐欺>土地 | ||
463 | </f_translation> | ||
464 | </string> | ||
465 | <string> | ||
466 | <a_file>floater_report_abuse.xml</a_file> | ||
467 | <b_path>/floater_report_abuse/category_combo/Fraud__Pyramid_scheme_or_chain_letter</b_path> | ||
468 | <c_attribute/> | ||
469 | <d_old/> | ||
470 | <e_new> | ||
471 | Fraud > Pyramid scheme or chain letter | ||
472 | </e_new> | ||
473 | <f_old_trans/> | ||
474 | <f_translation> | ||
475 | 詐欺>マルチ商法またはチェーン・メール | ||
476 | </f_translation> | ||
477 | </string> | ||
478 | <string> | ||
479 | <a_file>floater_report_abuse.xml</a_file> | ||
480 | <b_path>/floater_report_abuse/category_combo/Fraud__US$</b_path> | ||
481 | <c_attribute/> | ||
482 | <d_old/> | ||
483 | <e_new> | ||
484 | Fraud > US$ | ||
485 | </e_new> | ||
486 | <f_old_trans/> | ||
487 | <f_translation> | ||
488 | 詐欺> US$ | ||
489 | </f_translation> | ||
490 | </string> | ||
491 | <string> | ||
492 | <a_file>floater_report_abuse.xml</a_file> | ||
493 | <b_path>/floater_report_abuse/category_combo/Harassment__Advert_farms___visual_spam</b_path> | ||
494 | <c_attribute/> | ||
495 | <d_old/> | ||
496 | <e_new> | ||
497 | Harassment > Advert farms / visual spam | ||
498 | </e_new> | ||
499 | <f_old_trans/> | ||
500 | <f_translation> | ||
501 | 嫌がらせ>広告委託/視覚的なスパム | ||
502 | </f_translation> | ||
503 | </string> | ||
504 | <string> | ||
505 | <a_file>floater_report_abuse.xml</a_file> | ||
506 | <b_path>/floater_report_abuse/category_combo/Harassment__Defaming_individuals_or_groups</b_path> | ||
507 | <c_attribute/> | ||
508 | <d_old/> | ||
509 | <e_new> | ||
510 | Harassment > Defaming individuals or groups | ||
511 | </e_new> | ||
512 | <f_old_trans/> | ||
513 | <f_translation> | ||
514 | 嫌がらせ>個人またはグループの中傷 | ||
515 | </f_translation> | ||
516 | </string> | ||
517 | <string> | ||
518 | <a_file>floater_report_abuse.xml</a_file> | ||
519 | <b_path>/floater_report_abuse/category_combo/Harassment__Impeding_movement</b_path> | ||
520 | <c_attribute/> | ||
521 | <d_old/> | ||
522 | <e_new> | ||
523 | Harassment > Impeding movement | ||
524 | </e_new> | ||
525 | <f_old_trans/> | ||
526 | <f_translation> | ||
527 | 嫌がらせ>移動の妨害 | ||
528 | </f_translation> | ||
529 | </string> | ||
530 | <string> | ||
531 | <a_file>floater_report_abuse.xml</a_file> | ||
532 | <b_path>/floater_report_abuse/category_combo/Harassment__Sexual_harassment</b_path> | ||
533 | <c_attribute/> | ||
534 | <d_old/> | ||
535 | <e_new> | ||
536 | Harassment > Sexual harassment | ||
537 | </e_new> | ||
538 | <f_old_trans/> | ||
539 | <f_translation> | ||
540 | 嫌がらせ>性的な嫌がらせ | ||
541 | </f_translation> | ||
542 | </string> | ||
543 | <string> | ||
544 | <a_file>floater_report_abuse.xml</a_file> | ||
545 | <b_path>/floater_report_abuse/category_combo/Harassment__Solicting_inciting_others_to_violate_ToS</b_path> | ||
546 | <c_attribute/> | ||
547 | <d_old/> | ||
951 | <e_new> | 548 | <e_new> |
952 | Start | 549 | |
953 | </e_new> | 550 | Harassment > Solicting/inciting others to violate ToS |
954 | <f_old_trans></f_old_trans> | 551 | </e_new> |
552 | <f_old_trans/> | ||
955 | <f_translation> | 553 | <f_translation> |
956 | 開始 | 554 | 嫌がらせ>利用規約(ToS)に違反する行為を行うよう他者を勧誘/扇動 |
957 | </f_translation> | 555 | </f_translation> |
958 | </string><string><a_file>floater_preview_gesture.xml</a_file> | 556 | </string> |
959 | <b_path>/gesture_preview/animation_trigger_type/stop</b_path> | 557 | <string> |
960 | <c_attribute></c_attribute> | 558 | <a_file>floater_report_abuse.xml</a_file> |
961 | <d_old></d_old> | 559 | <b_path>/floater_report_abuse/category_combo/Harassment__Verbal_abuse</b_path> |
560 | <c_attribute/> | ||
561 | <d_old/> | ||
562 | <e_new> | ||
563 | Harassment > Verbal abuse | ||
564 | </e_new> | ||
565 | <f_old_trans/> | ||
566 | <f_translation> | ||
567 | 嫌がらせ>暴言 | ||
568 | </f_translation> | ||
569 | </string> | ||
570 | <string> | ||
571 | <a_file>floater_report_abuse.xml</a_file> | ||
572 | <b_path>/floater_report_abuse/category_combo/Indecency__Broadly_offensive_content_or_conduct</b_path> | ||
573 | <c_attribute/> | ||
574 | <d_old/> | ||
575 | <e_new> | ||
576 | Indecency > Broadly offensive content or conduct | ||
577 | </e_new> | ||
578 | <f_old_trans/> | ||
579 | <f_translation> | ||
580 | わいせつ>著しく不快であると見なされるコンテンツまたは行為 | ||
581 | </f_translation> | ||
582 | </string> | ||
583 | <string> | ||
584 | <a_file>floater_report_abuse.xml</a_file> | ||
585 | <b_path>/floater_report_abuse/category_combo/Indecency__Broadly_visible_mature_content</b_path> | ||
586 | <c_attribute/> | ||
587 | <d_old/> | ||
588 | <e_new> | ||
589 | Indecency > Broadly visible mature content | ||
590 | </e_new> | ||
591 | <f_old_trans/> | ||
592 | <f_translation> | ||
593 | わいせつ>あからさまに見せつけられる成人向けと見なされるコンテンツ | ||
594 | </f_translation> | ||
595 | </string> | ||
596 | <string> | ||
597 | <a_file>floater_report_abuse.xml</a_file> | ||
598 | <b_path>/floater_report_abuse/category_combo/Indecency__Inappropriate_avatar_name</b_path> | ||
599 | <c_attribute/> | ||
600 | <d_old/> | ||
601 | <e_new> | ||
602 | Indecency > Inappropriate avatar name | ||
603 | </e_new> | ||
604 | <f_old_trans/> | ||
605 | <f_translation> | ||
606 | わいせつ>不適切なアバター名 | ||
607 | </f_translation> | ||
608 | </string> | ||
609 | <string> | ||
610 | <a_file>floater_report_abuse.xml</a_file> | ||
611 | <b_path>/floater_report_abuse/category_combo/Indecency__Mature_content_in_PG_region</b_path> | ||
612 | <c_attribute/> | ||
613 | <d_old/> | ||
614 | <e_new> | ||
615 | Indecency > Mature content in PG region | ||
616 | </e_new> | ||
617 | <f_old_trans/> | ||
618 | <f_translation> | ||
619 | わいせつ>PG地域で成人向けと見なされるコンテンツ | ||
620 | </f_translation> | ||
621 | </string> | ||
622 | <string> | ||
623 | <a_file>floater_report_abuse.xml</a_file> | ||
624 | <b_path>/floater_report_abuse/category_combo/Land__Abuse_of_sandbox_resources</b_path> | ||
625 | <c_attribute/> | ||
626 | <d_old/> | ||
627 | <e_new> | ||
628 | Land > Abuse of sandbox resources | ||
629 | </e_new> | ||
630 | <f_old_trans/> | ||
631 | <f_translation> | ||
632 | 土地>サンドボックス・リソースの乱用 | ||
633 | </f_translation> | ||
634 | </string> | ||
635 | <string> | ||
636 | <a_file>floater_report_abuse.xml</a_file> | ||
637 | <b_path>/floater_report_abuse/category_combo/Land__Encroachment__Objects_textures</b_path> | ||
638 | <c_attribute/> | ||
639 | <d_old/> | ||
640 | <e_new> | ||
641 | Land > Encroachment > Objects/textures | ||
642 | </e_new> | ||
643 | <f_old_trans/> | ||
644 | <f_translation> | ||
645 | 土地>不法侵入>オブジェクト/テクスチャー | ||
646 | </f_translation> | ||
647 | </string> | ||
648 | <string> | ||
649 | <a_file>floater_report_abuse.xml</a_file> | ||
650 | <b_path>/floater_report_abuse/category_combo/Land__Encroachment__Particles</b_path> | ||
651 | <c_attribute/> | ||
652 | <d_old/> | ||
653 | <e_new> | ||
654 | Land > Encroachment > Particles | ||
655 | </e_new> | ||
656 | <f_old_trans/> | ||
657 | <f_translation> | ||
658 | 土地>不法侵入>パーティクル | ||
659 | </f_translation> | ||
660 | </string> | ||
661 | <string> | ||
662 | <a_file>floater_report_abuse.xml</a_file> | ||
663 | <b_path>/floater_report_abuse/category_combo/Land__Encroachment__Trees_plants</b_path> | ||
664 | <c_attribute/> | ||
665 | <d_old/> | ||
666 | <e_new> | ||
667 | Land > Encroachment > Trees/plants | ||
668 | </e_new> | ||
669 | <f_old_trans/> | ||
670 | <f_translation> | ||
671 | 土地>不法侵入>樹木/植物 | ||
672 | </f_translation> | ||
673 | </string> | ||
674 | <string> | ||
675 | <a_file>floater_report_abuse.xml</a_file> | ||
676 | <b_path>/floater_report_abuse/category_combo/Trademark_violation</b_path> | ||
677 | <c_attribute/> | ||
678 | <d_old/> | ||
679 | <e_new> | ||
680 | Trademark violation | ||
681 | </e_new> | ||
682 | <f_old_trans/> | ||
683 | <f_translation> | ||
684 | 商標権の侵害 | ||
685 | </f_translation> | ||
686 | </string> | ||
687 | <string> | ||
688 | <a_file>floater_report_abuse.xml</a_file> | ||
689 | <b_path>/floater_report_abuse/category_combo/Wagering_gambling</b_path> | ||
690 | <c_attribute/> | ||
691 | <d_old/> | ||
692 | <e_new> | ||
693 | Wagering/gambling | ||
694 | </e_new> | ||
695 | <f_old_trans/> | ||
696 | <f_translation> | ||
697 | 賭け/ギャンブル | ||
698 | </f_translation> | ||
699 | </string> | ||
700 | <string> | ||
701 | <a_file>floater_report_abuse.xml</a_file> | ||
702 | <b_path>/floater_report_abuse/omit_abuser_name</b_path> | ||
703 | <c_attribute>label</c_attribute> | ||
704 | <d_old/> | ||
705 | <e_new>Don't know abuser's name</e_new> | ||
706 | <f_old_trans/> | ||
707 | <f_translation>嫌がらせをした人の名前が不明</f_translation> | ||
708 | </string> | ||
709 | <string> | ||
710 | <a_file>floater_report_abuse.xml</a_file> | ||
711 | <b_path>/floater_report_abuse/omit_abuser_name</b_path> | ||
712 | <c_attribute>tool_tip</c_attribute> | ||
713 | <d_old/> | ||
962 | <e_new> | 714 | <e_new> |
963 | Stop | 715 | Check this if you are unable to provide the abuser's name |
964 | </e_new> | 716 | </e_new> |
965 | <f_old_trans></f_old_trans> | 717 | <f_old_trans/> |
966 | <f_translation> | 718 | <f_translation>嫌がらせをした人の名前を提供できないかについて、これを確認</f_translation> |
967 | 停止 | 719 | </string> |
968 | </f_translation> | 720 | <string> |
969 | </string><string><a_file>floater_preview_notecard_keep_discard.xml</a_file> | 721 | <a_file>floater_skin_preview_template.xml</a_file> |
970 | <b_path>/preview_notecard/not_allowed</b_path> | 722 | <b_path>/floater_chatterbox</b_path> |
971 | <c_attribute></c_attribute> | ||
972 | <d_old></d_old> | ||
973 | <e_new>You are not allowed to view this note.</e_new> | ||
974 | <f_old_trans></f_old_trans> | ||
975 | <f_translation>あなたはこのノートを見ることができません。</f_translation> | ||
976 | </string><string><a_file>floater_preview_url.xml</a_file> | ||
977 | <b_path>/url_preview</b_path> | ||
978 | <c_attribute>title</c_attribute> | ||
979 | <d_old></d_old> | ||
980 | <e_new>Place Information</e_new> | ||
981 | <f_old_trans></f_old_trans> | ||
982 | <f_translation>場所の情報</f_translation> | ||
983 | </string><string><a_file>floater_region_info.xml</a_file> | ||
984 | <b_path>/regioninfo</b_path> | ||
985 | <c_attribute>title</c_attribute> | 723 | <c_attribute>title</c_attribute> |
986 | <d_old></d_old> | 724 | <d_old/> |
987 | <e_new>Region/Estate</e_new> | 725 | <e_new/> |
988 | <f_old_trans></f_old_trans> | 726 | <f_old_trans/> |
989 | <f_translation>地域/不動産</f_translation> | 727 | <f_translation/> |
990 | </string><string><a_file>floater_tools.xml</a_file> | 728 | </string> |
991 | <b_path>/toolbox floater/ToolCube</b_path> | 729 | <string> |
992 | <c_attribute>tool_tip</c_attribute> | 730 | <a_file>floater_skin_preview_template.xml</a_file> |
993 | <d_old></d_old> | 731 | <b_path>/floater_chatterbox//chat_btn</b_path> |
994 | <e_new>Cube</e_new> | 732 | <c_attribute>label</c_attribute> |
995 | <f_old_trans></f_old_trans> | 733 | <d_old/> |
996 | <f_translation>キューブ</f_translation> | 734 | <e_new/> |
997 | </string><string><a_file>floater_tools.xml</a_file> | 735 | <f_old_trans/> |
998 | <b_path>/toolbox floater/ToolPrism</b_path> | 736 | <f_translation/> |
999 | <c_attribute>tool_tip</c_attribute> | 737 | </string> |
1000 | <d_old></d_old> | 738 | <string> |
1001 | <e_new>Prism</e_new> | 739 | <a_file>floater_skin_preview_template.xml</a_file> |
1002 | <f_old_trans></f_old_trans> | 740 | <b_path>/floater_chatterbox//chat_btn</b_path> |
1003 | <f_translation>プリズム</f_translation> | ||
1004 | </string><string><a_file>floater_tools.xml</a_file> | ||
1005 | <b_path>/toolbox floater/ToolPyramid</b_path> | ||
1006 | <c_attribute>tool_tip</c_attribute> | ||
1007 | <d_old></d_old> | ||
1008 | <e_new>Pyramid</e_new> | ||
1009 | <f_old_trans></f_old_trans> | ||
1010 | <f_translation>ピラミッド</f_translation> | ||
1011 | </string><string><a_file>floater_tools.xml</a_file> | ||
1012 | <b_path>/toolbox floater/ToolTetrahedron</b_path> | ||
1013 | <c_attribute>tool_tip</c_attribute> | ||
1014 | <d_old></d_old> | ||
1015 | <e_new>Tetrahedron</e_new> | ||
1016 | <f_old_trans></f_old_trans> | ||
1017 | <f_translation>4面体</f_translation> | ||
1018 | </string><string><a_file>floater_tools.xml</a_file> | ||
1019 | <b_path>/toolbox floater/ToolCylinder</b_path> | ||
1020 | <c_attribute>tool_tip</c_attribute> | ||
1021 | <d_old></d_old> | ||
1022 | <e_new>Cylinder</e_new> | ||
1023 | <f_old_trans></f_old_trans> | ||
1024 | <f_translation>シリンダー</f_translation> | ||
1025 | </string><string><a_file>floater_tools.xml</a_file> | ||
1026 | <b_path>/toolbox floater/ToolHemiCylinder</b_path> | ||
1027 | <c_attribute>tool_tip</c_attribute> | ||
1028 | <d_old></d_old> | ||
1029 | <e_new>Hemicylinder</e_new> | ||
1030 | <f_old_trans></f_old_trans> | ||
1031 | <f_translation>半円柱</f_translation> | ||
1032 | </string><string><a_file>floater_tools.xml</a_file> | ||
1033 | <b_path>/toolbox floater/ToolCone</b_path> | ||
1034 | <c_attribute>tool_tip</c_attribute> | ||
1035 | <d_old></d_old> | ||
1036 | <e_new>Cone</e_new> | ||
1037 | <f_old_trans></f_old_trans> | ||
1038 | <f_translation>円錐</f_translation> | ||
1039 | </string><string><a_file>floater_tools.xml</a_file> | ||
1040 | <b_path>/toolbox floater/ToolHemiCone</b_path> | ||
1041 | <c_attribute>tool_tip</c_attribute> | ||
1042 | <d_old></d_old> | ||
1043 | <e_new>Hemicone</e_new> | ||
1044 | <f_old_trans></f_old_trans> | ||
1045 | <f_translation>半円錐</f_translation> | ||
1046 | </string><string><a_file>floater_tools.xml</a_file> | ||
1047 | <b_path>/toolbox floater/ToolSphere</b_path> | ||
1048 | <c_attribute>tool_tip</c_attribute> | ||
1049 | <d_old></d_old> | ||
1050 | <e_new>Sphere</e_new> | ||
1051 | <f_old_trans></f_old_trans> | ||
1052 | <f_translation>球形</f_translation> | ||
1053 | </string><string><a_file>floater_tools.xml</a_file> | ||
1054 | <b_path>/toolbox floater/ToolHemiSphere</b_path> | ||
1055 | <c_attribute>tool_tip</c_attribute> | ||
1056 | <d_old></d_old> | ||
1057 | <e_new>Hemisphere</e_new> | ||
1058 | <f_old_trans></f_old_trans> | ||
1059 | <f_translation>半球</f_translation> | ||
1060 | </string><string><a_file>floater_tools.xml</a_file> | ||
1061 | <b_path>/toolbox floater/ToolTorus</b_path> | ||
1062 | <c_attribute>tool_tip</c_attribute> | ||
1063 | <d_old></d_old> | ||
1064 | <e_new>Torus</e_new> | ||
1065 | <f_old_trans></f_old_trans> | ||
1066 | <f_translation>トーラス</f_translation> | ||
1067 | </string><string><a_file>floater_tools.xml</a_file> | ||
1068 | <b_path>/toolbox floater/ToolTube</b_path> | ||
1069 | <c_attribute>tool_tip</c_attribute> | ||
1070 | <d_old></d_old> | ||
1071 | <e_new>Tube</e_new> | ||
1072 | <f_old_trans></f_old_trans> | ||
1073 | <f_translation>チューブ</f_translation> | ||
1074 | </string><string><a_file>floater_tools.xml</a_file> | ||
1075 | <b_path>/toolbox floater/ToolRing</b_path> | ||
1076 | <c_attribute>tool_tip</c_attribute> | 741 | <c_attribute>tool_tip</c_attribute> |
1077 | <d_old></d_old> | 742 | <d_old/> |
1078 | <e_new>Ring</e_new> | 743 | <e_new>Show Chat Bar. (Enter)</e_new> |
1079 | <f_old_trans></f_old_trans> | 744 | <f_old_trans/> |
1080 | <f_translation>リング</f_translation> | 745 | <f_translation>チャット・バーを表示 (エンター・キー)</f_translation> |
1081 | </string><string><a_file>floater_tools.xml</a_file> | 746 | </string> |
1082 | <b_path>/toolbox floater/ToolTree</b_path> | 747 | <string> |
748 | <a_file>floater_skin_preview_template.xml</a_file> | ||
749 | <b_path>/floater_chatterbox//communicate_btn</b_path> | ||
750 | <c_attribute>label</c_attribute> | ||
751 | <d_old/> | ||
752 | <e_new>Communicate</e_new> | ||
753 | <f_old_trans/> | ||
754 | <f_translation>コミュニケーション</f_translation> | ||
755 | </string> | ||
756 | <string> | ||
757 | <a_file>floater_skin_preview_template.xml</a_file> | ||
758 | <b_path>/floater_chatterbox//communicate_btn</b_path> | ||
1083 | <c_attribute>tool_tip</c_attribute> | 759 | <c_attribute>tool_tip</c_attribute> |
1084 | <d_old></d_old> | 760 | <d_old/> |
1085 | <e_new>Tree</e_new> | 761 | <e_new>Communicate with your Friends and Groups.</e_new> |
1086 | <f_old_trans></f_old_trans> | 762 | <f_old_trans/> |
1087 | <f_translation>樹木</f_translation> | 763 | <f_translation>フレンドやグループとコミュニケーション</f_translation> |
1088 | </string><string><a_file>floater_tools.xml</a_file> | 764 | </string> |
1089 | <b_path>/toolbox floater/ToolGrass</b_path> | 765 | <string> |
766 | <a_file>floater_skin_preview_template.xml</a_file> | ||
767 | <b_path>/floater_chatterbox//fly_btn</b_path> | ||
768 | <c_attribute>label</c_attribute> | ||
769 | <d_old/> | ||
770 | <e_new>Fly</e_new> | ||
771 | <f_old_trans/> | ||
772 | <f_translation>飛行</f_translation> | ||
773 | </string> | ||
774 | <string> | ||
775 | <a_file>floater_skin_preview_template.xml</a_file> | ||
776 | <b_path>/floater_chatterbox//fly_btn</b_path> | ||
777 | <c_attribute>label_selected</c_attribute> | ||
778 | <d_old/> | ||
779 | <e_new>Stop Flying</e_new> | ||
780 | <f_old_trans/> | ||
781 | <f_translation>飛行を停止</f_translation> | ||
782 | </string> | ||
783 | <string> | ||
784 | <a_file>floater_skin_preview_template.xml</a_file> | ||
785 | <b_path>/floater_chatterbox//fly_btn</b_path> | ||
1090 | <c_attribute>tool_tip</c_attribute> | 786 | <c_attribute>tool_tip</c_attribute> |
1091 | <d_old></d_old> | 787 | <d_old/> |
1092 | <e_new>Grass</e_new> | ||
1093 | <f_old_trans></f_old_trans> | ||
1094 | <f_translation>草地</f_translation> | ||
1095 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1096 | <b_path>/Main Menu/View/Joystick Flycam</b_path> | ||
1097 | <c_attribute>label</c_attribute> | ||
1098 | <d_old></d_old> | ||
1099 | <e_new>Joystick Flycam</e_new> | ||
1100 | <f_old_trans></f_old_trans> | ||
1101 | <f_translation>ジョイスティック・フライカム</f_translation> | ||
1102 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1103 | <b_path>/Main Menu/Help/Tutorial</b_path> | ||
1104 | <c_attribute>label</c_attribute> | ||
1105 | <d_old></d_old> | ||
1106 | <e_new>Tutorial</e_new> | ||
1107 | <f_old_trans></f_old_trans> | ||
1108 | <f_translation>チュートリアル</f_translation> | ||
1109 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1110 | <b_path>/Main Menu/Help/separator7</b_path> | ||
1111 | <c_attribute>label</c_attribute> | ||
1112 | <d_old></d_old> | ||
1113 | <e_new>-----------</e_new> | ||
1114 | <f_old_trans></f_old_trans> | ||
1115 | <f_translation>-----------</f_translation> | ||
1116 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1117 | <b_path>/Main Menu/Help/Bug Reporting/separator9</b_path> | ||
1118 | <c_attribute>label</c_attribute> | ||
1119 | <d_old></d_old> | ||
1120 | <e_new>-----------</e_new> | ||
1121 | <f_old_trans></f_old_trans> | ||
1122 | <f_translation>-----------</f_translation> | ||
1123 | </string><string><a_file>mime_types.xml</a_file> | ||
1124 | <b_path>/default/web/</b_path> | ||
1125 | <c_attribute></c_attribute> | ||
1126 | <d_old></d_old> | ||
1127 | <e_new> | ||
1128 | Web Content | ||
1129 | </e_new> | ||
1130 | <f_old_trans></f_old_trans> | ||
1131 | <f_translation> | ||
1132 | ウェブ・コンテンツ | ||
1133 | </f_translation> | ||
1134 | </string><string><a_file>mime_types.xml</a_file> | ||
1135 | <b_path>/default/web/</b_path> | ||
1136 | <c_attribute></c_attribute> | ||
1137 | <d_old></d_old> | ||
1138 | <e_new> | ||
1139 | This location has Web content | ||
1140 | </e_new> | ||
1141 | <f_old_trans></f_old_trans> | ||
1142 | <f_translation> | ||
1143 | ここにウェブ・コンテンツがあります。 | ||
1144 | </f_translation> | ||
1145 | </string><string><a_file>mime_types.xml</a_file> | ||
1146 | <b_path>/default/web/</b_path> | ||
1147 | <c_attribute></c_attribute> | ||
1148 | <d_old></d_old> | ||
1149 | <e_new> | ||
1150 | Show Web content | ||
1151 | </e_new> | ||
1152 | <f_old_trans></f_old_trans> | ||
1153 | <f_translation> | ||
1154 | ウェブ・コンテンツを表示 | ||
1155 | </f_translation> | ||
1156 | </string><string><a_file>mime_types.xml</a_file> | ||
1157 | <b_path>/default/movie/</b_path> | ||
1158 | <c_attribute></c_attribute> | ||
1159 | <d_old></d_old> | ||
1160 | <e_new> | ||
1161 | Movie | ||
1162 | </e_new> | ||
1163 | <f_old_trans></f_old_trans> | ||
1164 | <f_translation> | ||
1165 | ムービー | ||
1166 | </f_translation> | ||
1167 | </string><string><a_file>mime_types.xml</a_file> | ||
1168 | <b_path>/default/movie/</b_path> | ||
1169 | <c_attribute></c_attribute> | ||
1170 | <d_old></d_old> | ||
1171 | <e_new> | ||
1172 | There is a movie to play here | ||
1173 | </e_new> | ||
1174 | <f_old_trans></f_old_trans> | ||
1175 | <f_translation> | ||
1176 | ここにはムービーがあります | ||
1177 | </f_translation> | ||
1178 | </string><string><a_file>mime_types.xml</a_file> | ||
1179 | <b_path>/default/movie/</b_path> | ||
1180 | <c_attribute></c_attribute> | ||
1181 | <d_old></d_old> | ||
1182 | <e_new> | ||
1183 | Play movie | ||
1184 | </e_new> | ||
1185 | <f_old_trans></f_old_trans> | ||
1186 | <f_translation> | ||
1187 | ムービー再生 | ||
1188 | </f_translation> | ||
1189 | </string><string><a_file>mime_types.xml</a_file> | ||
1190 | <b_path>/default/none/</b_path> | ||
1191 | <c_attribute></c_attribute> | ||
1192 | <d_old></d_old> | ||
1193 | <e_new> | ||
1194 | No Content | ||
1195 | </e_new> | ||
1196 | <f_old_trans></f_old_trans> | ||
1197 | <f_translation> | ||
1198 | コンテンツなし | ||
1199 | </f_translation> | ||
1200 | </string><string><a_file>mime_types.xml</a_file> | ||
1201 | <b_path>/default/none/</b_path> | ||
1202 | <c_attribute></c_attribute> | ||
1203 | <d_old></d_old> | ||
1204 | <e_new> | ||
1205 | No media here | ||
1206 | </e_new> | ||
1207 | <f_old_trans></f_old_trans> | ||
1208 | <f_translation> | ||
1209 | メディアなし | ||
1210 | </f_translation> | ||
1211 | </string><string><a_file>mime_types.xml</a_file> | ||
1212 | <b_path>/default/image/</b_path> | ||
1213 | <c_attribute></c_attribute> | ||
1214 | <d_old></d_old> | ||
1215 | <e_new> | ||
1216 | Image | ||
1217 | </e_new> | ||
1218 | <f_old_trans></f_old_trans> | ||
1219 | <f_translation> | ||
1220 | 画像 | ||
1221 | </f_translation> | ||
1222 | </string><string><a_file>mime_types.xml</a_file> | ||
1223 | <b_path>/default/image/</b_path> | ||
1224 | <c_attribute></c_attribute> | ||
1225 | <d_old></d_old> | ||
1226 | <e_new> | ||
1227 | There is an image at this location | ||
1228 | </e_new> | ||
1229 | <f_old_trans></f_old_trans> | ||
1230 | <f_translation> | ||
1231 | ここには画像があります | ||
1232 | </f_translation> | ||
1233 | </string><string><a_file>mime_types.xml</a_file> | ||
1234 | <b_path>/default/image/</b_path> | ||
1235 | <c_attribute></c_attribute> | ||
1236 | <d_old></d_old> | ||
1237 | <e_new> | ||
1238 | View this location's image | ||
1239 | </e_new> | ||
1240 | <f_old_trans></f_old_trans> | ||
1241 | <f_translation> | ||
1242 | ここの画像を表示 | ||
1243 | </f_translation> | ||
1244 | </string><string><a_file>mime_types.xml</a_file> | ||
1245 | <b_path>/default/audio/</b_path> | ||
1246 | <c_attribute></c_attribute> | ||
1247 | <d_old></d_old> | ||
1248 | <e_new> | ||
1249 | Audio | ||
1250 | </e_new> | ||
1251 | <f_old_trans></f_old_trans> | ||
1252 | <f_translation> | ||
1253 | オーディオ | ||
1254 | </f_translation> | ||
1255 | </string><string><a_file>mime_types.xml</a_file> | ||
1256 | <b_path>/default/audio/</b_path> | ||
1257 | <c_attribute></c_attribute> | ||
1258 | <d_old></d_old> | ||
1259 | <e_new> | ||
1260 | There is audio at this location | ||
1261 | </e_new> | ||
1262 | <f_old_trans></f_old_trans> | ||
1263 | <f_translation> | ||
1264 | ここではオーディオが聞けます | ||
1265 | </f_translation> | ||
1266 | </string><string><a_file>mime_types.xml</a_file> | ||
1267 | <b_path>/default/audio/</b_path> | ||
1268 | <c_attribute></c_attribute> | ||
1269 | <d_old></d_old> | ||
1270 | <e_new> | ||
1271 | View this location's audio | ||
1272 | </e_new> | ||
1273 | <f_old_trans></f_old_trans> | ||
1274 | <f_translation> | ||
1275 | ここのオーディオを再生する | ||
1276 | </f_translation> | ||
1277 | </string><string><a_file>mime_types.xml</a_file> | ||
1278 | <b_path>/default/rtsp/</b_path> | ||
1279 | <c_attribute></c_attribute> | ||
1280 | <d_old></d_old> | ||
1281 | <e_new> | ||
1282 | Real Time Streaming | ||
1283 | </e_new> | ||
1284 | <f_old_trans></f_old_trans> | ||
1285 | <f_translation> | ||
1286 | リアルタイム・ストリーミング | ||
1287 | </f_translation> | ||
1288 | </string><string><a_file>mime_types.xml</a_file> | ||
1289 | <b_path>/default/blank/</b_path> | ||
1290 | <c_attribute></c_attribute> | ||
1291 | <d_old></d_old> | ||
1292 | <e_new> | ||
1293 | - None - | ||
1294 | </e_new> | ||
1295 | <f_old_trans></f_old_trans> | ||
1296 | <f_translation> | ||
1297 | -- なし -- | ||
1298 | </f_translation> | ||
1299 | </string><string><a_file>mime_types.xml</a_file> | ||
1300 | <b_path>/default/"none/none"/</b_path> | ||
1301 | <c_attribute></c_attribute> | ||
1302 | <d_old></d_old> | ||
1303 | <e_new> | ||
1304 | - None - | ||
1305 | </e_new> | ||
1306 | <f_old_trans></f_old_trans> | ||
1307 | <f_translation> | ||
1308 | -- なし -- | ||
1309 | </f_translation> | ||
1310 | </string><string><a_file>mime_types.xml</a_file> | ||
1311 | <b_path>/default/"audio/*"/</b_path> | ||
1312 | <c_attribute></c_attribute> | ||
1313 | <d_old></d_old> | ||
1314 | <e_new> | ||
1315 | Audio | ||
1316 | </e_new> | ||
1317 | <f_old_trans></f_old_trans> | ||
1318 | <f_translation> | ||
1319 | オーディオ | ||
1320 | </f_translation> | ||
1321 | </string><string><a_file>mime_types.xml</a_file> | ||
1322 | <b_path>/default/"video/*"/</b_path> | ||
1323 | <c_attribute></c_attribute> | ||
1324 | <d_old></d_old> | ||
1325 | <e_new> | ||
1326 | Video | ||
1327 | </e_new> | ||
1328 | <f_old_trans></f_old_trans> | ||
1329 | <f_translation> | ||
1330 | ビデオ | ||
1331 | </f_translation> | ||
1332 | </string><string><a_file>mime_types.xml</a_file> | ||
1333 | <b_path>/default/"image/*"/</b_path> | ||
1334 | <c_attribute></c_attribute> | ||
1335 | <d_old></d_old> | ||
1336 | <e_new> | ||
1337 | Image | ||
1338 | </e_new> | ||
1339 | <f_old_trans></f_old_trans> | ||
1340 | <f_translation> | ||
1341 | 画像 | ||
1342 | </f_translation> | ||
1343 | </string><string><a_file>mime_types.xml</a_file> | ||
1344 | <b_path>/default/"video/vnd.secondlife.qt.legacy"/</b_path> | ||
1345 | <c_attribute></c_attribute> | ||
1346 | <d_old></d_old> | ||
1347 | <e_new> | ||
1348 | Movie (QuickTime) | ||
1349 | </e_new> | ||
1350 | <f_old_trans></f_old_trans> | ||
1351 | <f_translation> | ||
1352 | ムービー (QuickTime) | ||
1353 | </f_translation> | ||
1354 | </string><string><a_file>mime_types.xml</a_file> | ||
1355 | <b_path>/default/"application/javascript"/</b_path> | ||
1356 | <c_attribute></c_attribute> | ||
1357 | <d_old></d_old> | ||
1358 | <e_new> | ||
1359 | Javascript | ||
1360 | </e_new> | ||
1361 | <f_old_trans></f_old_trans> | ||
1362 | <f_translation> | ||
1363 | Javascript | ||
1364 | </f_translation> | ||
1365 | </string><string><a_file>mime_types.xml</a_file> | ||
1366 | <b_path>/default/"application/ogg"/</b_path> | ||
1367 | <c_attribute></c_attribute> | ||
1368 | <d_old></d_old> | ||
1369 | <e_new> | ||
1370 | Ogg Audio/Video | ||
1371 | </e_new> | ||
1372 | <f_old_trans></f_old_trans> | ||
1373 | <f_translation> | ||
1374 | Oggオーディオ/ビデオ | ||
1375 | </f_translation> | ||
1376 | </string><string><a_file>mime_types.xml</a_file> | ||
1377 | <b_path>/default/"application/pdf"/</b_path> | ||
1378 | <c_attribute></c_attribute> | ||
1379 | <d_old></d_old> | ||
1380 | <e_new> | ||
1381 | PDF Document | ||
1382 | </e_new> | ||
1383 | <f_old_trans></f_old_trans> | ||
1384 | <f_translation> | ||
1385 | PDFドキュメント | ||
1386 | </f_translation> | ||
1387 | </string><string><a_file>mime_types.xml</a_file> | ||
1388 | <b_path>/default/"application/postscript"/</b_path> | ||
1389 | <c_attribute></c_attribute> | ||
1390 | <d_old></d_old> | ||
1391 | <e_new> | ||
1392 | Postscript Document | ||
1393 | </e_new> | ||
1394 | <f_old_trans></f_old_trans> | ||
1395 | <f_translation> | ||
1396 | Postscriptドキュメント | ||
1397 | </f_translation> | ||
1398 | </string><string><a_file>mime_types.xml</a_file> | ||
1399 | <b_path>/default/"application/rtf"/</b_path> | ||
1400 | <c_attribute></c_attribute> | ||
1401 | <d_old></d_old> | ||
1402 | <e_new> | ||
1403 | Rich Text (RTF) | ||
1404 | </e_new> | ||
1405 | <f_old_trans></f_old_trans> | ||
1406 | <f_translation> | ||
1407 | リッチ・テキスト (RTF) | ||
1408 | </f_translation> | ||
1409 | </string><string><a_file>mime_types.xml</a_file> | ||
1410 | <b_path>/default/"application/xhtml+xml"/</b_path> | ||
1411 | <c_attribute></c_attribute> | ||
1412 | <d_old></d_old> | ||
1413 | <e_new> | ||
1414 | Web Page (XHTML) | ||
1415 | </e_new> | ||
1416 | <f_old_trans></f_old_trans> | ||
1417 | <f_translation> | ||
1418 | ウェブ・ページ (XHTML) | ||
1419 | </f_translation> | ||
1420 | </string><string><a_file>mime_types.xml</a_file> | ||
1421 | <b_path>/default/"application/x-director"/</b_path> | ||
1422 | <c_attribute></c_attribute> | ||
1423 | <d_old></d_old> | ||
1424 | <e_new> | ||
1425 | Macromedia Director | ||
1426 | </e_new> | ||
1427 | <f_old_trans></f_old_trans> | ||
1428 | <f_translation> | ||
1429 | Macromedia Director | ||
1430 | </f_translation> | ||
1431 | </string><string><a_file>mime_types.xml</a_file> | ||
1432 | <b_path>/default/"application/x-shockwave-flash"/</b_path> | ||
1433 | <c_attribute></c_attribute> | ||
1434 | <d_old></d_old> | ||
1435 | <e_new> | ||
1436 | Flash | ||
1437 | </e_new> | ||
1438 | <f_old_trans></f_old_trans> | ||
1439 | <f_translation> | ||
1440 | Flash | ||
1441 | </f_translation> | ||
1442 | </string><string><a_file>mime_types.xml</a_file> | ||
1443 | <b_path>/default/"audio/mid"/</b_path> | ||
1444 | <c_attribute></c_attribute> | ||
1445 | <d_old></d_old> | ||
1446 | <e_new> | ||
1447 | Audio (MIDI) | ||
1448 | </e_new> | ||
1449 | <f_old_trans></f_old_trans> | ||
1450 | <f_translation> | ||
1451 | オーディオ (MIDI) | ||
1452 | </f_translation> | ||
1453 | </string><string><a_file>mime_types.xml</a_file> | ||
1454 | <b_path>/default/"audio/mpeg"/</b_path> | ||
1455 | <c_attribute></c_attribute> | ||
1456 | <d_old></d_old> | ||
1457 | <e_new> | ||
1458 | Audio (MP3) | ||
1459 | </e_new> | ||
1460 | <f_old_trans></f_old_trans> | ||
1461 | <f_translation> | ||
1462 | オーディオ (MP3) | ||
1463 | </f_translation> | ||
1464 | </string><string><a_file>mime_types.xml</a_file> | ||
1465 | <b_path>/default/"audio/x-aiff"/</b_path> | ||
1466 | <c_attribute></c_attribute> | ||
1467 | <d_old></d_old> | ||
1468 | <e_new> | ||
1469 | Audio (AIFF) | ||
1470 | </e_new> | ||
1471 | <f_old_trans></f_old_trans> | ||
1472 | <f_translation> | ||
1473 | オーディオ (AIFF) | ||
1474 | </f_translation> | ||
1475 | </string><string><a_file>mime_types.xml</a_file> | ||
1476 | <b_path>/default/"audio/x-wav"/</b_path> | ||
1477 | <c_attribute></c_attribute> | ||
1478 | <d_old></d_old> | ||
1479 | <e_new> | ||
1480 | Audio (WAV) | ||
1481 | </e_new> | ||
1482 | <f_old_trans></f_old_trans> | ||
1483 | <f_translation> | ||
1484 | オーディオ (WAV) | ||
1485 | </f_translation> | ||
1486 | </string><string><a_file>mime_types.xml</a_file> | ||
1487 | <b_path>/default/"image/bmp"/</b_path> | ||
1488 | <c_attribute></c_attribute> | ||
1489 | <d_old></d_old> | ||
1490 | <e_new> | ||
1491 | Image (BMP) | ||
1492 | </e_new> | ||
1493 | <f_old_trans></f_old_trans> | ||
1494 | <f_translation> | ||
1495 | 画像 (BMP) | ||
1496 | </f_translation> | ||
1497 | </string><string><a_file>mime_types.xml</a_file> | ||
1498 | <b_path>/default/"image/gif"/</b_path> | ||
1499 | <c_attribute></c_attribute> | ||
1500 | <d_old></d_old> | ||
1501 | <e_new> | 788 | <e_new> |
1502 | Image (GIF) | 789 | Start flying. Use E/C or PgUp/PgDn to fly up and down. |
1503 | </e_new> | 790 | </e_new> |
1504 | <f_old_trans></f_old_trans> | 791 | <f_old_trans/> |
1505 | <f_translation> | 792 | <f_translation>飛行開始: EキーまたはPageUpキーで上昇、CキーまたはPageDownキーで下降</f_translation> |
1506 | 画像 (GIF) | 793 | </string> |
1507 | </f_translation> | 794 | <string> |
1508 | </string><string><a_file>mime_types.xml</a_file> | 795 | <a_file>floater_skin_preview_template.xml</a_file> |
1509 | <b_path>/default/"image/jpeg"/</b_path> | 796 | <b_path>/floater_chatterbox/panel_unfocused_floater/titlebar_focused</b_path> |
1510 | <c_attribute></c_attribute> | 797 | <c_attribute/> |
1511 | <d_old></d_old> | 798 | <d_old/> |
1512 | <e_new> | 799 | <e_new>Unfocused</e_new> |
1513 | Image (JPEG) | 800 | <f_old_trans/> |
1514 | </e_new> | 801 | <f_translation>アンフォーカス</f_translation> |
1515 | <f_old_trans></f_old_trans> | 802 | </string> |
1516 | <f_translation> | 803 | <string> |
1517 | 画像 (JPEG) | 804 | <a_file>floater_skin_preview_template.xml</a_file> |
1518 | </f_translation> | 805 | <b_path>/floater_chatterbox/panel_unfocused_floater/combo_box_1</b_path> |
1519 | </string><string><a_file>mime_types.xml</a_file> | 806 | <c_attribute>label</c_attribute> |
1520 | <b_path>/default/"image/png"/</b_path> | 807 | <d_old/> |
1521 | <c_attribute></c_attribute> | 808 | <e_new>Combo Box</e_new> |
1522 | <d_old></d_old> | 809 | <f_old_trans/> |
1523 | <e_new> | 810 | <f_translation>コンボ・ボックス</f_translation> |
1524 | Image (PNG) | 811 | </string> |
1525 | </e_new> | 812 | <string> |
1526 | <f_old_trans></f_old_trans> | 813 | <a_file>floater_skin_preview_template.xml</a_file> |
1527 | <f_translation> | 814 | <b_path>/floater_chatterbox/panel_unfocused_floater/Chat History Editor</b_path> |
1528 | 画像 (PNG) | 815 | <c_attribute/> |
1529 | </f_translation> | 816 | <d_old/> |
1530 | </string><string><a_file>mime_types.xml</a_file> | 817 | <e_new>Text</e_new> |
1531 | <b_path>/default/"image/svg+xml"/</b_path> | 818 | <f_old_trans/> |
1532 | <c_attribute></c_attribute> | 819 | <f_translation>テキスト</f_translation> |
1533 | <d_old></d_old> | 820 | </string> |
1534 | <e_new> | 821 | <string> |
1535 | Image (SVG) | 822 | <a_file>floater_skin_preview_template.xml</a_file> |
1536 | </e_new> | 823 | <b_path>/floater_chatterbox/panel_focused_floater/titlebar_focused</b_path> |
1537 | <f_old_trans></f_old_trans> | 824 | <c_attribute/> |
1538 | <f_translation> | 825 | <d_old/> |
1539 | 画像 (SVG) | 826 | <e_new>Focused</e_new> |
1540 | </f_translation> | 827 | <f_old_trans/> |
1541 | </string><string><a_file>mime_types.xml</a_file> | 828 | <f_translation>フォーカス</f_translation> |
1542 | <b_path>/default/"image/tiff"/</b_path> | 829 | </string> |
1543 | <c_attribute></c_attribute> | 830 | <string> |
1544 | <d_old></d_old> | 831 | <a_file>floater_skin_preview_template.xml</a_file> |
1545 | <e_new> | 832 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_1</b_path> |
1546 | Image (TIFF) | 833 | <c_attribute>label</c_attribute> |
1547 | </e_new> | 834 | <d_old/> |
1548 | <f_old_trans></f_old_trans> | 835 | <e_new>Focused</e_new> |
1549 | <f_translation> | 836 | <f_old_trans/> |
1550 | 画像 (TIFF) | 837 | <f_translation>フォーカス</f_translation> |
1551 | </f_translation> | 838 | </string> |
1552 | </string><string><a_file>mime_types.xml</a_file> | 839 | <string> |
1553 | <b_path>/default/"text/html"/</b_path> | 840 | <a_file>floater_skin_preview_template.xml</a_file> |
1554 | <c_attribute></c_attribute> | 841 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_1/SliderTestName</b_path> |
1555 | <d_old></d_old> | 842 | <c_attribute>label</c_attribute> |
1556 | <e_new> | 843 | <d_old/> |
1557 | Web Page | 844 | <e_new>Slider</e_new> |
1558 | </e_new> | 845 | <f_old_trans/> |
1559 | <f_old_trans></f_old_trans> | 846 | <f_translation>スライダー</f_translation> |
1560 | <f_translation> | 847 | </string> |
1561 | ウェブ・ページ | 848 | <string> |
1562 | </f_translation> | 849 | <a_file>floater_skin_preview_template.xml</a_file> |
1563 | </string><string><a_file>mime_types.xml</a_file> | 850 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_1/check_box_test_1</b_path> |
1564 | <b_path>/default/"text/plain"/</b_path> | 851 | <c_attribute>label</c_attribute> |
1565 | <c_attribute></c_attribute> | 852 | <d_old/> |
1566 | <d_old></d_old> | 853 | <e_new>True</e_new> |
1567 | <e_new> | 854 | <f_old_trans/> |
1568 | Text | 855 | <f_translation>正</f_translation> |
1569 | </e_new> | 856 | </string> |
1570 | <f_old_trans></f_old_trans> | 857 | <string> |
1571 | <f_translation> | 858 | <a_file>floater_skin_preview_template.xml</a_file> |
1572 | テキスト | 859 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_1/check_box_test_2</b_path> |
1573 | </f_translation> | 860 | <c_attribute>label</c_attribute> |
1574 | </string><string><a_file>mime_types.xml</a_file> | 861 | <d_old/> |
1575 | <b_path>/default/"text/xml"/</b_path> | 862 | <e_new>False</e_new> |
1576 | <c_attribute></c_attribute> | 863 | <f_old_trans/> |
1577 | <d_old></d_old> | 864 | <f_translation>不</f_translation> |
1578 | <e_new> | 865 | </string> |
1579 | XML | 866 | <string> |
1580 | </e_new> | 867 | <a_file>floater_skin_preview_template.xml</a_file> |
1581 | <f_old_trans></f_old_trans> | 868 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_1/Chat History Editor</b_path> |
1582 | <f_translation> | 869 | <c_attribute/> |
1583 | XML | 870 | <d_old/> |
1584 | </f_translation> | 871 | <e_new>Chat Text</e_new> |
1585 | </string><string><a_file>mime_types.xml</a_file> | 872 | <f_old_trans/> |
1586 | <b_path>/default/"video/mpeg"/</b_path> | 873 | <f_translation>チャット・テキスト</f_translation> |
1587 | <c_attribute></c_attribute> | 874 | </string> |
1588 | <d_old></d_old> | 875 | <string> |
1589 | <e_new> | 876 | <a_file>floater_skin_preview_template.xml</a_file> |
1590 | Movie (MPEG) | 877 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_2</b_path> |
1591 | </e_new> | 878 | <c_attribute>label</c_attribute> |
1592 | <f_old_trans></f_old_trans> | 879 | <d_old/> |
1593 | <f_translation> | 880 | <e_new>Unfocused</e_new> |
1594 | ムービー (MPEG) | 881 | <f_old_trans/> |
1595 | </f_translation> | 882 | <f_translation>アンフォーカス</f_translation> |
1596 | </string><string><a_file>mime_types.xml</a_file> | 883 | </string> |
1597 | <b_path>/default/"video/mp4"/</b_path> | 884 | <string> |
1598 | <c_attribute></c_attribute> | 885 | <a_file>floater_snapshot.xml</a_file> |
1599 | <d_old></d_old> | 886 | <b_path>/Snapshot/save_btn</b_path> |
1600 | <e_new> | 887 | <c_attribute>tool_tip</c_attribute> |
1601 | Movie (MP4) | 888 | <d_old/> |
1602 | </e_new> | 889 | <e_new>Save image to a file</e_new> |
1603 | <f_old_trans></f_old_trans> | 890 | <f_old_trans/> |
1604 | <f_translation> | 891 | <f_translation>画像をファイルに保存</f_translation> |
1605 | ムービー (MP4) | 892 | </string> |
1606 | </f_translation> | 893 | <string> |
1607 | </string><string><a_file>mime_types.xml</a_file> | 894 | <a_file>floater_snapshot.xml</a_file> |
1608 | <b_path>/default/"video/quicktime"/</b_path> | 895 | <b_path>/Snapshot/format_label</b_path> |
1609 | <c_attribute></c_attribute> | 896 | <c_attribute/> |
1610 | <d_old></d_old> | 897 | <d_old/> |
1611 | <e_new> | ||
1612 | Movie (QuickTime) | ||
1613 | </e_new> | ||
1614 | <f_old_trans></f_old_trans> | ||
1615 | <f_translation> | ||
1616 | ムービー (QuickTime) | ||
1617 | </f_translation> | ||
1618 | </string><string><a_file>mime_types.xml</a_file> | ||
1619 | <b_path>/default/"video/x-ms-asf"/</b_path> | ||
1620 | <c_attribute></c_attribute> | ||
1621 | <d_old></d_old> | ||
1622 | <e_new> | 898 | <e_new> |
1623 | Movie (Windows Media ASF) | 899 | Format |
1624 | </e_new> | 900 | </e_new> |
1625 | <f_old_trans></f_old_trans> | 901 | <f_old_trans/> |
1626 | <f_translation> | 902 | <f_translation> |
1627 | ムービー (Windows Media ASF) | 903 | フォーマット |
1628 | </f_translation> | 904 | </f_translation> |
1629 | </string><string><a_file>mime_types.xml</a_file> | 905 | </string> |
1630 | <b_path>/default/"video/x-ms-wmv"/</b_path> | 906 | <string> |
1631 | <c_attribute></c_attribute> | 907 | <a_file>floater_snapshot.xml</a_file> |
1632 | <d_old></d_old> | 908 | <b_path>/Snapshot/local_format_combo</b_path> |
909 | <c_attribute>label</c_attribute> | ||
910 | <d_old/> | ||
911 | <e_new>Format</e_new> | ||
912 | <f_old_trans/> | ||
913 | <f_translation>フォーマット</f_translation> | ||
914 | </string> | ||
915 | <string> | ||
916 | <a_file>floater_snapshot.xml</a_file> | ||
917 | <b_path>/Snapshot/local_format_combo/PNG</b_path> | ||
918 | <c_attribute/> | ||
919 | <d_old/> | ||
1633 | <e_new> | 920 | <e_new> |
1634 | Movie (Windows Media WMV) | 921 | PNG |
1635 | </e_new> | 922 | </e_new> |
1636 | <f_old_trans></f_old_trans> | 923 | <f_old_trans/> |
1637 | <f_translation> | 924 | <f_translation> |
1638 | ムービー (Windows Media WMV) | 925 | PNG |
1639 | </f_translation> | 926 | </f_translation> |
1640 | </string><string><a_file>mime_types.xml</a_file> | 927 | </string> |
1641 | <b_path>/default/"video/x-msvideo"/</b_path> | 928 | <string> |
1642 | <c_attribute></c_attribute> | 929 | <a_file>floater_snapshot.xml</a_file> |
1643 | <d_old></d_old> | 930 | <b_path>/Snapshot/local_format_combo/JPEG</b_path> |
931 | <c_attribute/> | ||
932 | <d_old/> | ||
1644 | <e_new> | 933 | <e_new> |
1645 | Movie (AVI) | 934 | JPEG |
1646 | </e_new> | 935 | </e_new> |
1647 | <f_old_trans></f_old_trans> | 936 | <f_old_trans/> |
1648 | <f_translation> | 937 | <f_translation> |
1649 | ムービー (AVI) | 938 | JPEG |
1650 | </f_translation> | 939 | </f_translation> |
1651 | </string><string><a_file>notify.xml</a_file> | 940 | </string> |
1652 | <b_path>//RezItemNoPermissions/message</b_path> | 941 | <string> |
1653 | <c_attribute></c_attribute> | 942 | <a_file>floater_snapshot.xml</a_file> |
1654 | <d_old></d_old> | 943 | <b_path>/Snapshot/local_format_combo/BMP</b_path> |
944 | <c_attribute/> | ||
945 | <d_old/> | ||
1655 | <e_new> | 946 | <e_new> |
1656 | Insufficient permissions to rez object. | 947 | BMP |
1657 | </e_new> | 948 | </e_new> |
1658 | <f_old_trans></f_old_trans> | 949 | <f_old_trans/> |
1659 | <f_translation> | 950 | <f_translation> |
1660 | オブジェクトをrezするにはパーミッション(承認)が不足してます。 | 951 | BMP |
1661 | </f_translation> | 952 | </f_translation> |
1662 | </string><string><a_file>panel_audio.xml</a_file> | 953 | </string> |
1663 | <b_path>/Media panel/mute_audio</b_path> | 954 | <string> |
1664 | <c_attribute>label</c_attribute> | 955 | <a_file>floater_tools.xml</a_file> |
1665 | <d_old></d_old> | 956 | <b_path>/toolbox floater/Strength:</b_path> |
1666 | <e_new></e_new> | 957 | <c_attribute/> |
1667 | <f_old_trans></f_old_trans> | 958 | <d_old/> |
1668 | <f_translation></f_translation> | ||
1669 | <f_old_trans></f_old_trans> | ||
1670 | </string><string><a_file>panel_audio.xml</a_file> | ||
1671 | <b_path>/Media panel/mute_music</b_path> | ||
1672 | <c_attribute>label</c_attribute> | ||
1673 | <d_old></d_old> | ||
1674 | <e_new></e_new> | ||
1675 | <f_old_trans></f_old_trans> | ||
1676 | <f_translation></f_translation> | ||
1677 | </string><string><a_file>panel_audio.xml</a_file> | ||
1678 | <b_path>/Media panel/mute_media</b_path> | ||
1679 | <c_attribute>label</c_attribute> | ||
1680 | <d_old></d_old> | ||
1681 | <e_new></e_new> | ||
1682 | <f_old_trans></f_old_trans> | ||
1683 | <f_translation></f_translation> | ||
1684 | </string><string><a_file>panel_audio.xml</a_file> | ||
1685 | <b_path>/Media panel/mute_voice</b_path> | ||
1686 | <c_attribute>label</c_attribute> | ||
1687 | <d_old></d_old> | ||
1688 | <e_new></e_new> | ||
1689 | <f_old_trans></f_old_trans> | ||
1690 | <f_translation></f_translation> | ||
1691 | </string><string><a_file>panel_audio.xml</a_file> | ||
1692 | <b_path>/Media panel/mute_sfx</b_path> | ||
1693 | <c_attribute>label</c_attribute> | ||
1694 | <d_old></d_old> | ||
1695 | <e_new></e_new> | ||
1696 | <f_old_trans></f_old_trans> | ||
1697 | <f_translation></f_translation> | ||
1698 | </string><string><a_file>panel_audio.xml</a_file> | ||
1699 | <b_path>/Media panel/mute_wind</b_path> | ||
1700 | <c_attribute>label</c_attribute> | ||
1701 | <d_old></d_old> | ||
1702 | <e_new></e_new> | ||
1703 | <f_old_trans></f_old_trans> | ||
1704 | <f_translation></f_translation> | ||
1705 | </string><string><a_file>panel_audio.xml</a_file> | ||
1706 | <b_path>/Media panel/mute_ui</b_path> | ||
1707 | <c_attribute>label</c_attribute> | ||
1708 | <d_old></d_old> | ||
1709 | <e_new></e_new> | ||
1710 | <f_old_trans></f_old_trans> | ||
1711 | <f_translation></f_translation> | ||
1712 | </string><string><a_file>panel_groups.xml</a_file> | ||
1713 | <b_path>/groups/group list/name</b_path> | ||
1714 | <c_attribute>label</c_attribute> | ||
1715 | <d_old></d_old> | ||
1716 | <e_new></e_new> | ||
1717 | <f_old_trans></f_old_trans> | ||
1718 | <f_translation></f_translation> | ||
1719 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
1720 | <b_path>/invite_panel/help_text</b_path> | ||
1721 | <c_attribute></c_attribute> | ||
1722 | <d_old></d_old> | ||
1723 | <e_new> | ||
1724 | You can select multiple residents to | ||
1725 | invite to your group. Click 'Open | ||
1726 | Person Chooser' to start. | ||
1727 | </e_new> | ||
1728 | <f_old_trans></f_old_trans> | ||
1729 | <f_translation> | ||
1730 | あなたのグループに、一度に複数の人を招待することができます。[リストから人を選ぶ]をクリックしてください。 | ||
1731 | </f_translation> | ||
1732 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
1733 | <b_path>/invite_panel/role_text</b_path> | ||
1734 | <c_attribute></c_attribute> | ||
1735 | <d_old></d_old> | ||
1736 | <e_new> | ||
1737 | Choose what Role to assign them to: | ||
1738 | </e_new> | ||
1739 | <f_old_trans></f_old_trans> | ||
1740 | <f_translation> | ||
1741 | 割り当て先の役割を選択: | ||
1742 | </f_translation> | ||
1743 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
1744 | <b_path>/invite_panel/confirm_invite_owner_str</b_path> | ||
1745 | <c_attribute></c_attribute> | ||
1746 | <d_old></d_old> | ||
1747 | <e_new> | ||
1748 | Are you sure you want to invite new owner(s)? This action is permanent! | ||
1749 | </e_new> | ||
1750 | <f_old_trans></f_old_trans> | ||
1751 | <f_translation> | ||
1752 | 本当に新しい所有者を招待しますか?この操作は取り消しできません。 | ||
1753 | </f_translation> | ||
1754 | </string><string><a_file>panel_master_volume.xml</a_file> | ||
1755 | <b_path>/master_volume/mute_master</b_path> | ||
1756 | <c_attribute>label</c_attribute> | ||
1757 | <d_old></d_old> | ||
1758 | <e_new></e_new> | ||
1759 | <f_old_trans></f_old_trans> | ||
1760 | <f_translation></f_translation> | ||
1761 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1762 | <b_path>/media_remote/play_label</b_path> | ||
1763 | <c_attribute></c_attribute> | ||
1764 | <d_old></d_old> | ||
1765 | <e_new> | ||
1766 | Play | ||
1767 | </e_new> | ||
1768 | <f_old_trans></f_old_trans> | ||
1769 | <f_translation> | ||
1770 | 再生 | ||
1771 | </f_translation> | ||
1772 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1773 | <b_path>/media_remote/stop_label</b_path> | ||
1774 | <c_attribute></c_attribute> | ||
1775 | <d_old></d_old> | ||
1776 | <e_new> | ||
1777 | Stop | ||
1778 | </e_new> | ||
1779 | <f_old_trans></f_old_trans> | ||
1780 | <f_translation> | ||
1781 | 停止 | ||
1782 | </f_translation> | ||
1783 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1784 | <b_path>/media_remote/pause_label</b_path> | ||
1785 | <c_attribute></c_attribute> | ||
1786 | <d_old></d_old> | ||
1787 | <e_new> | ||
1788 | Pause | ||
1789 | </e_new> | ||
1790 | <f_old_trans></f_old_trans> | ||
1791 | <f_translation> | ||
1792 | 一時停止 | ||
1793 | </f_translation> | ||
1794 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1795 | <b_path>/media_remote/default_tooltip_label</b_path> | ||
1796 | <c_attribute></c_attribute> | ||
1797 | <d_old></d_old> | ||
1798 | <e_new> | ||
1799 | No Media Specified | ||
1800 | </e_new> | ||
1801 | <f_old_trans></f_old_trans> | ||
1802 | <f_translation> | ||
1803 | メディアが指定されていません | ||
1804 | </f_translation> | ||
1805 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1806 | <b_path>/media_remote/media_hidden_label</b_path> | ||
1807 | <c_attribute></c_attribute> | ||
1808 | <d_old></d_old> | ||
1809 | <e_new> | ||
1810 | (URL hidden by parcel owner) | ||
1811 | </e_new> | ||
1812 | <f_old_trans></f_old_trans> | ||
1813 | <f_translation> | ||
1814 | (区画オーナーが URL を非表示に設定) | ||
1815 | </f_translation> | ||
1816 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1817 | <b_path>/media_remote/media_icon_tooltip_web</b_path> | ||
1818 | <c_attribute></c_attribute> | ||
1819 | <d_old></d_old> | ||
1820 | <e_new> | ||
1821 | This location displays content from the World Wide Web. Click the Play button to display Web content. | ||
1822 | </e_new> | ||
1823 | <f_old_trans></f_old_trans> | ||
1824 | <f_translation> | ||
1825 | このロケーションではワールド・ワイド・ウェブの内容が表示されます。ウェブ・コンテンツを表示するには[再生]ボタンをクリックしてください。 | ||
1826 | </f_translation> | ||
1827 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1828 | <b_path>/media_remote/media_icon_tooltip_movie</b_path> | ||
1829 | <c_attribute></c_attribute> | ||
1830 | <d_old></d_old> | ||
1831 | <e_new> | 959 | <e_new> |
1832 | This location displays Video content. Click the Play button to play the video. | 960 | Strength: |
1833 | </e_new> | 961 | </e_new> |
1834 | <f_old_trans></f_old_trans> | 962 | <f_old_trans/> |
1835 | <f_translation> | 963 | <f_translation> |
1836 | このロケーションではビデオ・コンテンツが表示されます。ビデオを再生するには[再生]ボタンをクリックしてください。 | 964 | 強度: |
1837 | </f_translation> | 965 | </f_translation> |
1838 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | 966 | </string> |
1839 | <b_path>/media_remote/media_play_tooltip</b_path> | 967 | <string> |
1840 | <c_attribute></c_attribute> | 968 | <a_file>floater_tools.xml</a_file> |
1841 | <d_old></d_old> | 969 | <b_path>/toolbox floater/Object Info Tabs/General/Cost</b_path> |
970 | <c_attribute/> | ||
971 | <d_old/> | ||
1842 | <e_new> | 972 | <e_new> |
1843 | Display Web content at this location. | 973 | Price: L$ |
1844 | </e_new> | 974 | </e_new> |
1845 | <f_old_trans></f_old_trans> | 975 | <f_old_trans/> |
1846 | <f_translation> | 976 | <f_translation> |
1847 | このロケーションでウェブ・コンテンツを表示します。 | 977 | 価格: L$ |
1848 | </f_translation> | 978 | </f_translation> |
1849 | </string><string><a_file>panel_place.xml</a_file> | 979 | </string> |
1850 | <b_path>/Place/name_label</b_path> | 980 | <string> |
1851 | <c_attribute></c_attribute> | 981 | <a_file>floater_tools.xml</a_file> |
1852 | <d_old></d_old> | 982 | <b_path>/toolbox floater/Object Info Tabs/General/Cost Default</b_path> |
983 | <c_attribute/> | ||
984 | <d_old/> | ||
1853 | <e_new> | 985 | <e_new> |
1854 | Name: | 986 | Price: L$ |
1855 | </e_new> | 987 | </e_new> |
1856 | <f_old_trans></f_old_trans> | 988 | <f_old_trans/> |
1857 | <f_translation> | 989 | <f_translation> |
1858 | 名前: | 990 | 価格: L$ |
1859 | </f_translation> | 991 | </f_translation> |
1860 | </string><string><a_file>panel_place.xml</a_file> | 992 | </string> |
1861 | <b_path>/Place/description_label</b_path> | 993 | <string> |
1862 | <c_attribute></c_attribute> | 994 | <a_file>floater_tools.xml</a_file> |
1863 | <d_old></d_old> | 995 | <b_path>/toolbox floater/Object Info Tabs/General/Cost Total</b_path> |
996 | <c_attribute/> | ||
997 | <d_old/> | ||
1864 | <e_new> | 998 | <e_new> |
1865 | Description: | 999 | Total Price: L$ |
1866 | </e_new> | 1000 | </e_new> |
1867 | <f_old_trans></f_old_trans> | 1001 | <f_old_trans/> |
1868 | <f_translation> | 1002 | <f_translation> |
1869 | 説明: | 1003 | 合計価格: L$ |
1870 | </f_translation> | 1004 | </f_translation> |
1871 | </string><string><a_file>panel_place.xml</a_file> | 1005 | </string> |
1872 | <b_path>/Place/information_label</b_path> | 1006 | <string> |
1873 | <c_attribute></c_attribute> | 1007 | <a_file>floater_tools.xml</a_file> |
1874 | <d_old></d_old> | 1008 | <b_path>/toolbox floater/Object Info Tabs/General/Cost Per Unit</b_path> |
1009 | <c_attribute/> | ||
1010 | <d_old/> | ||
1875 | <e_new> | 1011 | <e_new> |
1876 | Information: | 1012 | Price Per: L$ |
1877 | </e_new> | 1013 | </e_new> |
1878 | <f_old_trans></f_old_trans> | 1014 | <f_old_trans/> |
1879 | <f_translation> | 1015 | <f_translation> |
1880 | 情報: | 1016 | 単価: L$ |
1881 | </f_translation> | 1017 | </f_translation> |
1882 | </string><string><a_file>panel_place.xml</a_file> | 1018 | </string> |
1883 | <b_path>/Place/location_label</b_path> | 1019 | <string> |
1884 | <c_attribute></c_attribute> | 1020 | <a_file>floater_tools.xml</a_file> |
1885 | <d_old></d_old> | 1021 | <b_path>/toolbox floater/Object Info Tabs/General/Cost Mixed</b_path> |
1022 | <c_attribute/> | ||
1023 | <d_old/> | ||
1886 | <e_new> | 1024 | <e_new> |
1887 | Location: | 1025 | Mixed Price |
1888 | </e_new> | 1026 | </e_new> |
1889 | <f_old_trans></f_old_trans> | 1027 | <f_old_trans/> |
1890 | <f_translation> | 1028 | <f_translation> |
1891 | ロケーション: | 1029 | 混合価格 |
1892 | </f_translation> | 1030 | </f_translation> |
1893 | </string><string><a_file>panel_place_small.xml</a_file> | 1031 | </string> |
1894 | <b_path>/Place/name_label</b_path> | 1032 | <string> |
1895 | <c_attribute></c_attribute> | 1033 | <a_file>floater_tools.xml</a_file> |
1896 | <d_old></d_old> | 1034 | <b_path>/toolbox floater/Object Info Tabs/General/Sale Mixed</b_path> |
1035 | <c_attribute/> | ||
1036 | <d_old/> | ||
1897 | <e_new> | 1037 | <e_new> |
1898 | Name: | 1038 | Mixed Sale |
1899 | </e_new> | 1039 | </e_new> |
1900 | <f_old_trans></f_old_trans> | 1040 | <f_old_trans/> |
1901 | <f_translation> | 1041 | <f_translation> |
1902 | 名前: | 1042 | 混合販売 |
1903 | </f_translation> | 1043 | </f_translation> |
1904 | </string><string><a_file>panel_place_small.xml</a_file> | 1044 | </string> |
1905 | <b_path>/Place/description_label</b_path> | 1045 | <string> |
1906 | <c_attribute></c_attribute> | 1046 | <a_file>floater_tools.xml</a_file> |
1907 | <d_old></d_old> | 1047 | <b_path>/toolbox floater/Object Info Tabs/Object/sculpt mirror control</b_path> |
1048 | <c_attribute>label</c_attribute> | ||
1049 | <d_old/> | ||
1050 | <e_new>Mirror</e_new> | ||
1051 | <f_old_trans/> | ||
1052 | <f_translation>ミラー</f_translation> | ||
1053 | </string> | ||
1054 | <string> | ||
1055 | <a_file>floater_tools.xml</a_file> | ||
1056 | <b_path>/toolbox floater/Object Info Tabs/Object/sculpt mirror control</b_path> | ||
1057 | <c_attribute>tool_tip</c_attribute> | ||
1058 | <d_old/> | ||
1059 | <e_new>Flips sculpted prim along the X axis.</e_new> | ||
1060 | <f_old_trans/> | ||
1061 | <f_translation>スカルプトされたプリムをX軸上で反転</f_translation> | ||
1062 | </string> | ||
1063 | <string> | ||
1064 | <a_file>floater_tools.xml</a_file> | ||
1065 | <b_path>/toolbox floater/Object Info Tabs/Object/sculpt invert control</b_path> | ||
1066 | <c_attribute>label</c_attribute> | ||
1067 | <d_old/> | ||
1068 | <e_new>Inside-out</e_new> | ||
1069 | <f_old_trans/> | ||
1070 | <f_translation>裏返し</f_translation> | ||
1071 | </string> | ||
1072 | <string> | ||
1073 | <a_file>floater_tools.xml</a_file> | ||
1074 | <b_path>/toolbox floater/Object Info Tabs/Object/sculpt invert control</b_path> | ||
1075 | <c_attribute>tool_tip</c_attribute> | ||
1076 | <d_old/> | ||
1908 | <e_new> | 1077 | <e_new> |
1909 | Description: | 1078 | Inverts the sculpted prims normals, making it appear inside-out. |
1910 | </e_new> | 1079 | </e_new> |
1911 | <f_old_trans></f_old_trans> | 1080 | <f_old_trans/> |
1912 | <f_translation> | 1081 | <f_translation>スカルプトされたプリムのノーマルを逆転させ、裏返しに表示</f_translation> |
1913 | 説明: | 1082 | </string> |
1914 | </f_translation> | 1083 | <string> |
1915 | </string><string><a_file>panel_place_small.xml</a_file> | 1084 | <a_file>floater_top_objects.xml</a_file> |
1916 | <b_path>/Place/information_label</b_path> | 1085 | <b_path>/top_objects/objects_list/time</b_path> |
1917 | <c_attribute></c_attribute> | 1086 | <c_attribute>label</c_attribute> |
1918 | <d_old></d_old> | 1087 | <d_old/> |
1088 | <e_new>Time</e_new> | ||
1089 | <f_old_trans/> | ||
1090 | <f_translation>時間</f_translation> | ||
1091 | </string> | ||
1092 | <string> | ||
1093 | <a_file>floater_tos.xml</a_file> | ||
1094 | <b_path>/modal container/agree_chk</b_path> | ||
1095 | <c_attribute>label</c_attribute> | ||
1096 | <d_old/> | ||
1097 | <e_new>I Agree to the Terms of Service</e_new> | ||
1098 | <f_old_trans/> | ||
1099 | <f_translation>利用規約に同意します</f_translation> | ||
1100 | </string> | ||
1101 | <string> | ||
1102 | <a_file>menu_viewer.xml</a_file> | ||
1103 | <b_path>/Main Menu/World/Release Keys</b_path> | ||
1104 | <c_attribute>label</c_attribute> | ||
1105 | <d_old/> | ||
1106 | <e_new>Release Keys</e_new> | ||
1107 | <f_old_trans/> | ||
1108 | <f_translation>キーを解除</f_translation> | ||
1109 | </string> | ||
1110 | <string> | ||
1111 | <a_file>menu_viewer.xml</a_file> | ||
1112 | <b_path>/Main Menu/Tools/Recompile Scripts in Selection/Mono</b_path> | ||
1113 | <c_attribute>label</c_attribute> | ||
1114 | <d_old/> | ||
1115 | <e_new>Mono</e_new> | ||
1116 | <f_old_trans/> | ||
1117 | <f_translation>モノ</f_translation> | ||
1118 | </string> | ||
1119 | <string> | ||
1120 | <a_file>menu_viewer.xml</a_file> | ||
1121 | <b_path>/Main Menu/Tools/Recompile Scripts in Selection/LSL</b_path> | ||
1122 | <c_attribute>label</c_attribute> | ||
1123 | <d_old/> | ||
1124 | <e_new>LSL</e_new> | ||
1125 | <f_old_trans/> | ||
1126 | <f_translation>LSL</f_translation> | ||
1127 | </string> | ||
1128 | <string> | ||
1129 | <a_file>mime_types.xml</a_file> | ||
1130 | <b_path>/default/"application/smil"/"application/smil_label"</b_path> | ||
1131 | <c_attribute/> | ||
1132 | <d_old/> | ||
1919 | <e_new> | 1133 | <e_new> |
1920 | Information: | 1134 | |
1921 | </e_new> | 1135 | Synchronized Multimedia Integration Language (SMIL) |
1922 | <f_old_trans></f_old_trans> | 1136 | |
1137 | </e_new> | ||
1138 | <f_old_trans/> | ||
1923 | <f_translation> | 1139 | <f_translation> |
1924 | 情報: | 1140 | 同期マルチメディア統合言語(SMIL) |
1925 | </f_translation> | 1141 | </f_translation> |
1926 | </string><string><a_file>panel_place_small.xml</a_file> | 1142 | </string> |
1927 | <b_path>/Place/location_label</b_path> | 1143 | <string> |
1928 | <c_attribute></c_attribute> | 1144 | <a_file>notify.xml</a_file> |
1929 | <d_old></d_old> | 1145 | <b_path>//OfferFriendshipNoMessage/message</b_path> |
1146 | <c_attribute/> | ||
1147 | <d_old/> | ||
1930 | <e_new> | 1148 | <e_new> |
1931 | Location: | 1149 | |
1932 | </e_new> | 1150 | [NAME] is offering friendship. |
1933 | <f_old_trans></f_old_trans> | 1151 | |
1934 | <f_translation> | 1152 | (By default, you will be able to |
1935 | ロケーション: | 1153 | see each other's online status.) |
1936 | </f_translation> | 1154 | |
1937 | </string><string><a_file>panel_preferences_chat.xml</a_file> | 1155 | </e_new> |
1938 | <b_path>/chat/im</b_path> | 1156 | <f_old_trans/> |
1939 | <c_attribute>label</c_attribute> | ||
1940 | <d_old></d_old> | ||
1941 | <e_new>IM</e_new> | ||
1942 | <f_old_trans></f_old_trans> | ||
1943 | <f_translation>IM</f_translation> | ||
1944 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1945 | <b_path>/general_panel/fade_out_combobox/Never</b_path> | ||
1946 | <c_attribute></c_attribute> | ||
1947 | <d_old></d_old> | ||
1948 | <e_new> | ||
1949 | Never | ||
1950 | </e_new> | ||
1951 | <f_old_trans></f_old_trans> | ||
1952 | <f_translation> | 1157 | <f_translation> |
1953 | なし | 1158 | |
1954 | </f_translation> | 1159 | [NAME]は、フレンドシップを贈っています。 |
1955 | </string><string><a_file>panel_preferences_general.xml</a_file> | 1160 | |
1956 | <b_path>/general_panel/fade_out_combobox/Show Temporarily</b_path> | 1161 | (デフォルトでお互いのオンライン・ステータスを見ることができるようになります。) |
1957 | <c_attribute></c_attribute> | 1162 | |
1958 | <d_old></d_old> | 1163 | </f_translation> |
1164 | </string> | ||
1165 | <string> | ||
1166 | <a_file>notify.xml</a_file> | ||
1167 | <b_path>//OfferFriendshipNoMessage/Accept</b_path> | ||
1168 | <c_attribute/> | ||
1169 | <d_old/> | ||
1959 | <e_new> | 1170 | <e_new> |
1960 | Show Temporarily | 1171 | Accept |
1961 | </e_new> | 1172 | </e_new> |
1962 | <f_old_trans></f_old_trans> | 1173 | <f_old_trans/> |
1963 | <f_translation> | 1174 | <f_translation> |
1964 | 一時的表示 | 1175 | 受入れる |
1965 | </f_translation> | 1176 | </f_translation> |
1966 | </string><string><a_file>panel_preferences_general.xml</a_file> | 1177 | </string> |
1967 | <b_path>/general_panel/fade_out_combobox/Always</b_path> | 1178 | <string> |
1968 | <c_attribute></c_attribute> | 1179 | <a_file>notify.xml</a_file> |
1969 | <d_old></d_old> | 1180 | <b_path>//OfferFriendshipNoMessage/Decline</b_path> |
1181 | <c_attribute/> | ||
1182 | <d_old/> | ||
1970 | <e_new> | 1183 | <e_new> |
1971 | Always | 1184 | Decline |
1972 | </e_new> | 1185 | </e_new> |
1973 | <f_old_trans></f_old_trans> | 1186 | <f_old_trans/> |
1974 | <f_translation> | 1187 | <f_translation> |
1975 | いつも | 1188 | 拒否 |
1976 | </f_translation> | 1189 | </f_translation> |
1977 | </string><string><a_file>panel_preferences_general.xml</a_file> | 1190 | </string> |
1978 | <b_path>/general_panel/group_titles_textbox</b_path> | 1191 | <string> |
1979 | <c_attribute></c_attribute> | 1192 | <a_file>panel_login.xml</a_file> |
1980 | <d_old></d_old> | 1193 | <b_path>/panel_login/create_new_account_text</b_path> |
1981 | <e_new> | 1194 | <c_attribute/> |
1982 | Group Titles: | 1195 | <d_old/> |
1983 | </e_new> | 1196 | <e_new>Create new account. |
1984 | <f_old_trans></f_old_trans> | ||
1985 | <f_translation> | ||
1986 | グループ・タイトル: | ||
1987 | </f_translation> | ||
1988 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1989 | <b_path>/general_panel/show_all_title_checkbox</b_path> | ||
1990 | <c_attribute>label</c_attribute> | ||
1991 | <d_old></d_old> | ||
1992 | <e_new>Hide All Group Titles</e_new> | ||
1993 | <f_old_trans></f_old_trans> | ||
1994 | <f_translation>グループ・タイトルをすべて非表示</f_translation> | ||
1995 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
1996 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | ||
1997 | <c_attribute>label</c_attribute> | ||
1998 | <d_old></d_old> | ||
1999 | <e_new></e_new> | ||
2000 | <f_old_trans></f_old_trans> | ||
2001 | <f_translation></f_translation> | ||
2002 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2003 | <b_path>/Input panel/Camera Follow Distance:</b_path> | ||
2004 | <c_attribute></c_attribute> | ||
2005 | <d_old></d_old> | ||
2006 | <e_new> | ||
2007 | Camera Follow Distance: | ||
2008 | </e_new> | ||
2009 | <f_old_trans></f_old_trans> | ||
2010 | <f_translation> | ||
2011 | カメラ追従距離: | ||
2012 | </f_translation> | ||
2013 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2014 | <b_path>/Input panel/Camera Transition Time:</b_path> | ||
2015 | <c_attribute></c_attribute> | ||
2016 | <d_old></d_old> | ||
2017 | <e_new> | ||
2018 | Camera Transition Time: | ||
2019 | </e_new> | ||
2020 | <f_old_trans></f_old_trans> | ||
2021 | <f_translation> | ||
2022 | カメラ移動時間: | ||
2023 | </f_translation> | ||
2024 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2025 | <b_path>/Input panel/Camera Smoothing:</b_path> | ||
2026 | <c_attribute></c_attribute> | ||
2027 | <d_old></d_old> | ||
2028 | <e_new> | ||
2029 | Camera Smoothing: | ||
2030 | </e_new> | ||
2031 | <f_old_trans></f_old_trans> | ||
2032 | <f_translation> | ||
2033 | カメラ・スムージング: | ||
2034 | </f_translation> | ||
2035 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2036 | <b_path>/Input panel/joystic_setup_button</b_path> | ||
2037 | <c_attribute>label</c_attribute> | ||
2038 | <d_old></d_old> | ||
2039 | <e_new>Joystick Setup</e_new> | ||
2040 | <f_old_trans></f_old_trans> | ||
2041 | <f_translation>ジョイスティック設定</f_translation> | ||
2042 | </string><string><a_file>panel_preferences_popups.xml</a_file> | ||
2043 | <b_path>/popups/dont_show_label</b_path> | ||
2044 | <c_attribute></c_attribute> | ||
2045 | <d_old></d_old> | ||
2046 | <e_new> | ||
2047 | Do not show popups: | ||
2048 | </e_new> | 1197 | </e_new> |
2049 | <f_old_trans></f_old_trans> | 1198 | <f_old_trans/> |
2050 | <f_translation> | 1199 | <f_translation>新しいアカウントを作成します。 |
2051 | ポップアップを表示しない: | ||
2052 | </f_translation> | 1200 | </f_translation> |
2053 | </string><string><a_file>panel_preferences_popups.xml</a_file> | 1201 | </string> |
2054 | <b_path>/popups/show_label</b_path> | 1202 | <string> |
2055 | <c_attribute></c_attribute> | 1203 | <a_file>panel_preferences_chat.xml</a_file> |
2056 | <d_old></d_old> | 1204 | <b_path>/chat/user</b_path> |
1205 | <c_attribute>label</c_attribute> | ||
1206 | <d_old/> | ||
1207 | <e_new>You</e_new> | ||
1208 | <f_old_trans/> | ||
1209 | <f_translation>貴方</f_translation> | ||
1210 | </string> | ||
1211 | <string> | ||
1212 | <a_file>panel_preferences_chat.xml</a_file> | ||
1213 | <b_path>/chat/agent</b_path> | ||
1214 | <c_attribute>label</c_attribute> | ||
1215 | <d_old/> | ||
1216 | <e_new>Others</e_new> | ||
1217 | <f_old_trans/> | ||
1218 | <f_translation>その他</f_translation> | ||
1219 | </string> | ||
1220 | <string> | ||
1221 | <a_file>panel_preferences_chat.xml</a_file> | ||
1222 | <b_path>/chat/play_typing_animation</b_path> | ||
1223 | <c_attribute>label</c_attribute> | ||
1224 | <d_old/> | ||
1225 | <e_new>Play typing animation</e_new> | ||
1226 | <f_old_trans/> | ||
1227 | <f_translation>タイピング動作のアニメーションを再生</f_translation> | ||
1228 | </string> | ||
1229 | <string> | ||
1230 | <a_file>panel_preferences_general.xml</a_file> | ||
1231 | <b_path>/general_panel/language_is_public</b_path> | ||
1232 | <c_attribute>label</c_attribute> | ||
1233 | <d_old/> | ||
1234 | <e_new>Share language with objects</e_new> | ||
1235 | <f_old_trans/> | ||
1236 | <f_translation>言語をオブジェクトと共有</f_translation> | ||
1237 | </string> | ||
1238 | <string> | ||
1239 | <a_file>panel_preferences_general.xml</a_file> | ||
1240 | <b_path>/general_panel/language_is_public</b_path> | ||
1241 | <c_attribute>tool_tip</c_attribute> | ||
1242 | <d_old/> | ||
2057 | <e_new> | 1243 | <e_new> |
2058 | Show popups: | 1244 | This lets in-world objects know your preferred language. |
2059 | </e_new> | 1245 | </e_new> |
2060 | <f_old_trans></f_old_trans> | 1246 | <f_old_trans/> |
2061 | <f_translation> | 1247 | <f_translation>優先言語をインワールドのオブジェクトが認識する</f_translation> |
2062 | ポップアップを表示: | 1248 | </string> |
2063 | </f_translation> | 1249 | <string> |
2064 | </string><string><a_file>panel_speaker_controls.xml</a_file> | 1250 | <a_file>panel_preferences_graphics1.xml</a_file> |
2065 | <b_path>/active_speakers_panel/panels/moderation_mode_panel/moderation_mode/OpenVoice</b_path> | 1251 | <b_path>/Display panel/QualityPerformanceSelection</b_path> |
2066 | <c_attribute></c_attribute> | ||
2067 | <d_old></d_old> | ||
2068 | <e_new> | ||
2069 | Open Voice (default) | ||
2070 | </e_new> | ||
2071 | <f_old_trans></f_old_trans> | ||
2072 | <f_translation> | ||
2073 | ボイスを開く(デフォルト) | ||
2074 | </f_translation> | ||
2075 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2076 | <b_path>/active_speakers_panel/panels/moderation_mode_panel/moderation_mode/ModeratedVoice</b_path> | ||
2077 | <c_attribute></c_attribute> | ||
2078 | <d_old></d_old> | ||
2079 | <e_new> | ||
2080 | Moderated Voice | ||
2081 | </e_new> | ||
2082 | <f_old_trans></f_old_trans> | ||
2083 | <f_translation> | ||
2084 | モデレート済みボイス | ||
2085 | </f_translation> | ||
2086 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2087 | <b_path>/active_speakers_panel/panels/moderate_chat_panel/speakers_list/speaking_status</b_path> | ||
2088 | <c_attribute>label</c_attribute> | ||
2089 | <d_old></d_old> | ||
2090 | <e_new></e_new> | ||
2091 | <f_old_trans></f_old_trans> | ||
2092 | <f_translation></f_translation> | ||
2093 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2094 | <b_path>/active_speakers_panel/panels/moderate_chat_panel/speaker_controls/profile_btn</b_path> | ||
2095 | <c_attribute>label</c_attribute> | ||
2096 | <d_old></d_old> | ||
2097 | <e_new></e_new> | ||
2098 | <f_old_trans></f_old_trans> | ||
2099 | <f_translation></f_translation> | ||
2100 | </string><string><a_file>panel_status_bar.xml</a_file> | ||
2101 | <b_path>/status/menubar_search_bevel_bg</b_path> | ||
2102 | <c_attribute>label</c_attribute> | ||
2103 | <d_old></d_old> | ||
2104 | <e_new></e_new> | ||
2105 | <f_old_trans></f_old_trans> | ||
2106 | <f_translation></f_translation> | ||
2107 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | ||
2108 | <b_path>/voice_remote/voice_channel_bg</b_path> | ||
2109 | <c_attribute>label</c_attribute> | ||
2110 | <d_old></d_old> | ||
2111 | <e_new></e_new> | ||
2112 | <f_old_trans></f_old_trans> | ||
2113 | <f_translation></f_translation> | ||
2114 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | ||
2115 | <b_path>/voice_remote/voice_channel_icon</b_path> | ||
2116 | <c_attribute>label</c_attribute> | 1252 | <c_attribute>label</c_attribute> |
2117 | <d_old></d_old> | 1253 | <d_old/> |
2118 | <e_new></e_new> | 1254 | <e_new/> |
2119 | <f_old_trans></f_old_trans> | 1255 | <f_old_trans/> |
2120 | <f_translation></f_translation> | 1256 | <f_translation/> |
2121 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 1257 | </string> |
2122 | <b_path>/voice_remote/channel_label</b_path> | 1258 | <string> |
1259 | <a_file>panel_preferences_im.xml</a_file> | ||
1260 | <b_path>/im/friends_online_notify_checkbox</b_path> | ||
1261 | <c_attribute>label</c_attribute> | ||
1262 | <d_old/> | ||
1263 | <e_new>Show Online Friend Notifications</e_new> | ||
1264 | <f_old_trans/> | ||
1265 | <f_translation>オンライン・フレンド通知を表示</f_translation> | ||
1266 | </string> | ||
1267 | <string> | ||
1268 | <a_file>panel_preferences_popups.xml</a_file> | ||
1269 | <b_path>/popups/show_in_inventory</b_path> | ||
2123 | <c_attribute>label</c_attribute> | 1270 | <c_attribute>label</c_attribute> |
2124 | <d_old></d_old> | 1271 | <d_old/> |
2125 | <e_new></e_new> | ||
2126 | <f_old_trans></f_old_trans> | ||
2127 | <f_translation></f_translation> | ||
2128 | </string><string><a_file>alerts.xml</a_file> | ||
2129 | <b_path>//UnsupportedHardware/ignore</b_path> | ||
2130 | <c_attribute></c_attribute> | ||
2131 | <d_old></d_old> | ||
2132 | <e_new> | ||
2133 | Ignore unsupported hardware | ||
2134 | </e_new> | ||
2135 | <f_old_trans></f_old_trans> | ||
2136 | <f_translation> | ||
2137 | サポート外のハードウェアを無視する | ||
2138 | </f_translation> | ||
2139 | </string><string><a_file>alerts.xml</a_file> | ||
2140 | <b_path>//UnknownGPU/message</b_path> | ||
2141 | <c_attribute></c_attribute> | ||
2142 | <d_old></d_old> | ||
2143 | <e_new> | ||
2144 | Your system contains a graphics card that is unknown to us at this time. | ||
2145 | This is often the case with new hardware we haven't had a chance to | ||
2146 | test. Second Life will most likely run properly, but you may need to | ||
2147 | adjust your graphics settings to something more appropriate. | ||
2148 | (Edit > Preferences > Graphics). | ||
2149 | </e_new> | ||
2150 | <f_old_trans></f_old_trans> | ||
2151 | <f_translation> | ||
2152 | お使いのシステムには、現時点では不明なグラフィック・カードが搭載されています。 | ||
2153 | これは、当社による動作テストが行われていない新しいハードウェアが使用されている場合がほとんどです。 Second Lifeはほぼ間違いなく正常に動作しますが、必要に応じたグラフィック設定の調整が必要になる場合があります。 | ||
2154 | ([編集]>[環境設定]>[グラフィック])。 | ||
2155 | </f_translation> | ||
2156 | </string><string><a_file>alerts.xml</a_file> | ||
2157 | <b_path>//UnknownGPU/ignore</b_path> | ||
2158 | <c_attribute></c_attribute> | ||
2159 | <d_old></d_old> | ||
2160 | <e_new> | ||
2161 | Ignore unknown graphics card | ||
2162 | </e_new> | ||
2163 | <f_old_trans></f_old_trans> | ||
2164 | <f_translation> | ||
2165 | 不明なグラフィック・カードを無視する | ||
2166 | </f_translation> | ||
2167 | </string><string><a_file>alerts.xml</a_file> | ||
2168 | <b_path>//ClothingLoading/ignore</b_path> | ||
2169 | <c_attribute></c_attribute> | ||
2170 | <d_old></d_old> | ||
2171 | <e_new> | ||
2172 | When clothing is taking a long time to download | ||
2173 | </e_new> | ||
2174 | <f_old_trans></f_old_trans> | ||
2175 | <f_translation> | ||
2176 | 服のダウンロードに長い時間がかかる場合 | ||
2177 | </f_translation> | ||
2178 | </string><string><a_file>alerts.xml</a_file> | ||
2179 | <b_path>//SetClassifiedMature/message</b_path> | ||
2180 | <c_attribute></c_attribute> | ||
2181 | <d_old></d_old> | ||
2182 | <e_new> | ||
2183 | Does this classified contain Mature content? | ||
2184 | </e_new> | ||
2185 | <f_old_trans></f_old_trans> | ||
2186 | <f_translation> | ||
2187 | このクラシファイド広告には、成人向けコンテンツが含まれていますか? | ||
2188 | </f_translation> | ||
2189 | </string><string><a_file>alerts.xml</a_file> | ||
2190 | <b_path>//SetClassifiedMature/Mature</b_path> | ||
2191 | <c_attribute></c_attribute> | ||
2192 | <d_old></d_old> | ||
2193 | <e_new> | ||
2194 | Yes | ||
2195 | </e_new> | ||
2196 | <f_old_trans></f_old_trans> | ||
2197 | <f_translation> | ||
2198 | はい | ||
2199 | </f_translation> | ||
2200 | </string><string><a_file>alerts.xml</a_file> | ||
2201 | <b_path>//SetClassifiedMature/Not Mature</b_path> | ||
2202 | <c_attribute></c_attribute> | ||
2203 | <d_old></d_old> | ||
2204 | <e_new> | ||
2205 | No | ||
2206 | </e_new> | ||
2207 | <f_old_trans></f_old_trans> | ||
2208 | <f_translation> | ||
2209 | いいえ | ||
2210 | </f_translation> | ||
2211 | </string><string><a_file>alerts.xml</a_file> | ||
2212 | <b_path>//SetClassifiedMature/Cancel</b_path> | ||
2213 | <c_attribute></c_attribute> | ||
2214 | <d_old></d_old> | ||
2215 | <e_new> | ||
2216 | Cancel | ||
2217 | </e_new> | ||
2218 | <f_old_trans></f_old_trans> | ||
2219 | <f_translation> | ||
2220 | キャンセル | ||
2221 | </f_translation> | ||
2222 | </string><string><a_file>alerts.xml</a_file> | ||
2223 | <b_path>//SetGroupMature/message</b_path> | ||
2224 | <c_attribute></c_attribute> | ||
2225 | <d_old></d_old> | ||
2226 | <e_new> | ||
2227 | Does this group contain Mature content? | ||
2228 | </e_new> | ||
2229 | <f_old_trans></f_old_trans> | ||
2230 | <f_translation> | ||
2231 | このグループには、成人向けコンテンツが含まれていますか? | ||
2232 | </f_translation> | ||
2233 | </string><string><a_file>alerts.xml</a_file> | ||
2234 | <b_path>//SetGroupMature/Mature</b_path> | ||
2235 | <c_attribute></c_attribute> | ||
2236 | <d_old></d_old> | ||
2237 | <e_new> | ||
2238 | Yes | ||
2239 | </e_new> | ||
2240 | <f_old_trans></f_old_trans> | ||
2241 | <f_translation> | ||
2242 | はい | ||
2243 | </f_translation> | ||
2244 | </string><string><a_file>alerts.xml</a_file> | ||
2245 | <b_path>//SetGroupMature/Not Mature</b_path> | ||
2246 | <c_attribute></c_attribute> | ||
2247 | <d_old></d_old> | ||
2248 | <e_new> | 1272 | <e_new> |
2249 | No | 1273 | Automatically show newly accepted objects in inventory |
2250 | </e_new> | 1274 | </e_new> |
2251 | <f_old_trans></f_old_trans> | 1275 | <f_old_trans/> |
2252 | <f_translation> | 1276 | <f_translation>新たに受け取ったオブジェクトを持ち物に自動的に表示</f_translation> |
2253 | いいえ | 1277 | </string> |
2254 | </f_translation> | 1278 | <string> |
2255 | </string><string><a_file>alerts.xml</a_file> | 1279 | <a_file>panel_preferences_skins.xml</a_file> |
2256 | <b_path>//SetGroupMature/Cancel</b_path> | 1280 | <b_path>/Skins panel/classic_preview</b_path> |
2257 | <c_attribute></c_attribute> | 1281 | <c_attribute>label</c_attribute> |
2258 | <d_old></d_old> | 1282 | <d_old/> |
1283 | <e_new/> | ||
1284 | <f_old_trans/> | ||
1285 | <f_translation/> | ||
1286 | </string> | ||
1287 | <string> | ||
1288 | <a_file>panel_preferences_skins.xml</a_file> | ||
1289 | <b_path>/Skins panel/silver_preview</b_path> | ||
1290 | <c_attribute>label</c_attribute> | ||
1291 | <d_old/> | ||
1292 | <e_new/> | ||
1293 | <f_old_trans/> | ||
1294 | <f_translation/> | ||
1295 | </string> | ||
1296 | <string> | ||
1297 | <a_file>panel_region_debug.xml</a_file> | ||
1298 | <b_path>/Debug/target_avatar_name</b_path> | ||
1299 | <c_attribute/> | ||
1300 | <d_old/> | ||
2259 | <e_new> | 1301 | <e_new> |
2260 | Cancel | 1302 | (none) |
2261 | </e_new> | 1303 | </e_new> |
2262 | <f_old_trans></f_old_trans> | 1304 | <f_old_trans/> |
2263 | <f_translation> | 1305 | <f_translation> |
2264 | ンセル | 1306 | () |
2265 | </f_translation> | 1307 | </f_translation> |
2266 | </string><string><a_file>alerts.xml</a_file> | 1308 | </string> |
2267 | <b_path>//MissingString/message</b_path> | 1309 | <string> |
2268 | <c_attribute></c_attribute> | 1310 | <a_file>panel_region_debug.xml</a_file> |
2269 | <d_old></d_old> | 1311 | <b_path>/Debug/return_scripts</b_path> |
2270 | <e_new> | 1312 | <c_attribute>label</c_attribute> |
2271 | The string [STRING_NAME] is missing from strings.xml | 1313 | <d_old/> |
2272 | </e_new> | 1314 | <e_new>Return only those objects with scripts</e_new> |
2273 | <f_old_trans></f_old_trans> | 1315 | <f_old_trans/> |
2274 | <f_translation> | 1316 | <f_translation>スクリプトのあるオブジェクトのみを返却</f_translation> |
2275 | 文字列[STRING_NAME]がstrings.xmlに含まれていません | 1317 | </string> |
2276 | </f_translation> | 1318 | <string> |
2277 | </string><string><a_file>floater_active_speakers.xml</a_file> | 1319 | <a_file>panel_region_debug.xml</a_file> |
2278 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> | 1320 | <b_path>/Debug/return_scripts</b_path> |
2279 | <c_attribute>label</c_attribute> | ||
2280 | <d_old></d_old> | ||
2281 | <e_new></e_new> | ||
2282 | <f_old_trans></f_old_trans> | ||
2283 | <f_translation></f_translation> | ||
2284 | </string><string><a_file>floater_directory.xml</a_file> | ||
2285 | <b_path>/directory/Directory Tabs/showcase_panel</b_path> | ||
2286 | <c_attribute>label</c_attribute> | ||
2287 | <d_old></d_old> | ||
2288 | <e_new>Showcase</e_new> | ||
2289 | <f_old_trans></f_old_trans> | ||
2290 | <f_translation>ショーケース</f_translation> | ||
2291 | </string><string><a_file>floater_directory.xml</a_file> | ||
2292 | <b_path>/directory/Directory Tabs/showcase_panel/searching_text</b_path> | ||
2293 | <c_attribute></c_attribute> | ||
2294 | <d_old></d_old> | ||
2295 | <e_new>Searching...</e_new> | ||
2296 | <f_old_trans></f_old_trans> | ||
2297 | <f_translation>検索中...</f_translation> | ||
2298 | </string><string><a_file>floater_directory.xml</a_file> | ||
2299 | <b_path>/directory/Directory Tabs/showcase_panel/not_found_text</b_path> | ||
2300 | <c_attribute></c_attribute> | ||
2301 | <d_old></d_old> | ||
2302 | <e_new>None Found.</e_new> | ||
2303 | <f_old_trans></f_old_trans> | ||
2304 | <f_translation>何も見つかりませんでした。</f_translation> | ||
2305 | </string><string><a_file>floater_directory.xml</a_file> | ||
2306 | <b_path>/directory/Directory Tabs/showcase_panel/back_btn</b_path> | ||
2307 | <c_attribute>label</c_attribute> | ||
2308 | <d_old></d_old> | ||
2309 | <e_new>Back</e_new> | ||
2310 | <f_old_trans></f_old_trans> | ||
2311 | <f_translation>戻る</f_translation> | ||
2312 | </string><string><a_file>floater_directory.xml</a_file> | ||
2313 | <b_path>/directory/Directory Tabs/showcase_panel/forward_btn</b_path> | ||
2314 | <c_attribute>label</c_attribute> | ||
2315 | <d_old></d_old> | ||
2316 | <e_new>Forward</e_new> | ||
2317 | <f_old_trans></f_old_trans> | ||
2318 | <f_translation>転送</f_translation> | ||
2319 | </string><string><a_file>floater_directory.xml</a_file> | ||
2320 | <b_path>/directory/Directory Tabs/showcase_panel/loading_text</b_path> | ||
2321 | <c_attribute></c_attribute> | ||
2322 | <d_old></d_old> | ||
2323 | <e_new>Loading...</e_new> | ||
2324 | <f_old_trans></f_old_trans> | ||
2325 | <f_translation>ロード中...</f_translation> | ||
2326 | </string><string><a_file>floater_directory.xml</a_file> | ||
2327 | <b_path>/directory/Directory Tabs/showcase_panel/done_text</b_path> | ||
2328 | <c_attribute></c_attribute> | ||
2329 | <d_old></d_old> | ||
2330 | <e_new>Done</e_new> | ||
2331 | <f_old_trans></f_old_trans> | ||
2332 | <f_translation>完了</f_translation> | ||
2333 | </string><string><a_file>floater_directory.xml</a_file> | ||
2334 | <b_path>/directory/Directory Tabs/groups_panel/back_btn</b_path> | ||
2335 | <c_attribute>label</c_attribute> | ||
2336 | <d_old></d_old> | ||
2337 | <e_new>Back</e_new> | ||
2338 | <f_old_trans></f_old_trans> | ||
2339 | <f_translation>戻る</f_translation> | ||
2340 | </string><string><a_file>floater_directory.xml</a_file> | ||
2341 | <b_path>/directory/Directory Tabs/groups_panel/forward_btn</b_path> | ||
2342 | <c_attribute>label</c_attribute> | ||
2343 | <d_old></d_old> | ||
2344 | <e_new>Forward</e_new> | ||
2345 | <f_old_trans></f_old_trans> | ||
2346 | <f_translation>転送</f_translation> | ||
2347 | </string><string><a_file>floater_directory.xml</a_file> | ||
2348 | <b_path>/directory/Directory Tabs/groups_panel/search_editor</b_path> | ||
2349 | <c_attribute>label</c_attribute> | ||
2350 | <d_old></d_old> | ||
2351 | <e_new>Search</e_new> | ||
2352 | <f_old_trans></f_old_trans> | ||
2353 | <f_translation>検索</f_translation> | ||
2354 | </string><string><a_file>floater_directory.xml</a_file> | ||
2355 | <b_path>/directory/Directory Tabs/groups_panel/search_editor</b_path> | ||
2356 | <c_attribute>tool_tip</c_attribute> | 1321 | <c_attribute>tool_tip</c_attribute> |
2357 | <d_old></d_old> | 1322 | <d_old/> |
2358 | <e_new>Search Second Life</e_new> | 1323 | <e_new>Return only objects which have scripts.</e_new> |
2359 | <f_old_trans></f_old_trans> | 1324 | <f_old_trans/> |
2360 | <f_translation>Second Lifeを検索</f_translation> | 1325 | <f_translation>スクリプトがあるオブジェクトのみを返却</f_translation> |
2361 | </string><string><a_file>floater_directory.xml</a_file> | 1326 | </string> |
2362 | <b_path>/directory/Directory Tabs/groups_panel/search_btn</b_path> | 1327 | <string> |
2363 | <c_attribute>label</c_attribute> | 1328 | <a_file>panel_region_debug.xml</a_file> |
2364 | <d_old></d_old> | 1329 | <b_path>/Debug/return_other_land</b_path> |
2365 | <e_new>Search</e_new> | 1330 | <c_attribute>label</c_attribute> |
2366 | <f_old_trans></f_old_trans> | 1331 | <d_old/> |
2367 | <f_translation>検索</f_translation> | 1332 | <e_new>Return only those objects on someone else's land</e_new> |
2368 | </string><string><a_file>floater_directory.xml</a_file> | 1333 | <f_old_trans/> |
2369 | <b_path>/directory/Directory Tabs/groups_panel/mature_check</b_path> | 1334 | <f_translation>他人の土地にあるオブジェクトのみを返却</f_translation> |
2370 | <c_attribute>label</c_attribute> | 1335 | </string> |
2371 | <d_old></d_old> | 1336 | <string> |
2372 | <e_new>Include Mature content</e_new> | 1337 | <a_file>panel_region_debug.xml</a_file> |
2373 | <f_old_trans></f_old_trans> | 1338 | <b_path>/Debug/return_other_land</b_path> |
2374 | <f_translation>成人向けコンテンツを含める</f_translation> | ||
2375 | </string><string><a_file>floater_directory.xml</a_file> | ||
2376 | <b_path>/directory/Directory Tabs/groups_panel/loading_text</b_path> | ||
2377 | <c_attribute></c_attribute> | ||
2378 | <d_old></d_old> | ||
2379 | <e_new>Loading...</e_new> | ||
2380 | <f_old_trans></f_old_trans> | ||
2381 | <f_translation>ロード中...</f_translation> | ||
2382 | </string><string><a_file>floater_directory.xml</a_file> | ||
2383 | <b_path>/directory/Directory Tabs/groups_panel/done_text</b_path> | ||
2384 | <c_attribute></c_attribute> | ||
2385 | <d_old></d_old> | ||
2386 | <e_new>Done</e_new> | ||
2387 | <f_old_trans></f_old_trans> | ||
2388 | <f_translation>完了</f_translation> | ||
2389 | </string><string><a_file>floater_im.xml</a_file> | ||
2390 | <b_path>/im_floater/muted_message</b_path> | ||
2391 | <c_attribute></c_attribute> | ||
2392 | <d_old></d_old> | ||
2393 | <e_new> | ||
2394 | [FIRST] [LAST] is muted. | ||
2395 | </e_new> | ||
2396 | <f_old_trans></f_old_trans> | ||
2397 | <f_translation> | ||
2398 | [FIRST] [LAST]はミュートされています。 | ||
2399 | </f_translation> | ||
2400 | </string><string><a_file>notify.xml</a_file> | ||
2401 | <b_path>//AutoUnmuteByIM/message</b_path> | ||
2402 | <c_attribute></c_attribute> | ||
2403 | <d_old></d_old> | ||
2404 | <e_new> | ||
2405 | [FIRST] [LAST] was sent an instant message and has been automatically unmuted. | ||
2406 | </e_new> | ||
2407 | <f_old_trans></f_old_trans> | ||
2408 | <f_translation> | ||
2409 | [FIRST] [LAST]にインスタント・メッセージが送信され、ミュートが自動的に解除されました。 | ||
2410 | </f_translation> | ||
2411 | </string><string><a_file>notify.xml</a_file> | ||
2412 | <b_path>//AutoUnmuteByMoney/message</b_path> | ||
2413 | <c_attribute></c_attribute> | ||
2414 | <d_old></d_old> | ||
2415 | <e_new> | ||
2416 | [FIRST] [LAST] was given money and has been automatically unmuted. | ||
2417 | </e_new> | ||
2418 | <f_old_trans></f_old_trans> | ||
2419 | <f_translation> | ||
2420 | [FIRST] [LAST]にお金が与えられ、ミュートが自動的に解除されました。 | ||
2421 | </f_translation> | ||
2422 | </string><string><a_file>notify.xml</a_file> | ||
2423 | <b_path>//AutoUnmuteByInventory/message</b_path> | ||
2424 | <c_attribute></c_attribute> | ||
2425 | <d_old></d_old> | ||
2426 | <e_new> | ||
2427 | [FIRST] [LAST] was offered inventory and has been automatically unmuted. | ||
2428 | </e_new> | ||
2429 | <f_old_trans></f_old_trans> | ||
2430 | <f_translation> | ||
2431 | [FIRST] [LAST]に持ち物が与えられ、ミュートが自動的に解除されました。 | ||
2432 | </f_translation> | ||
2433 | </string><string><a_file>panel_avatar_classified.xml</a_file> | ||
2434 | <b_path>/Classified/classified_mature_check/select_mature</b_path> | ||
2435 | <c_attribute></c_attribute> | ||
2436 | <d_old></d_old> | ||
2437 | <e_new> | ||
2438 | - Select Mature - | ||
2439 | </e_new> | ||
2440 | <f_old_trans></f_old_trans> | ||
2441 | <f_translation> | ||
2442 | -成熟度を選択- | ||
2443 | </f_translation> | ||
2444 | </string><string><a_file>panel_avatar_classified.xml</a_file> | ||
2445 | <b_path>/Classified/classified_mature_check/mature</b_path> | ||
2446 | <c_attribute></c_attribute> | ||
2447 | <d_old></d_old> | ||
2448 | <e_new> | ||
2449 | Mature Content | ||
2450 | </e_new> | ||
2451 | <f_old_trans></f_old_trans> | ||
2452 | <f_translation> | ||
2453 | 成人向けコンテンツ | ||
2454 | </f_translation> | ||
2455 | </string><string><a_file>panel_avatar_classified.xml</a_file> | ||
2456 | <b_path>/Classified/classified_mature_check/not_mature</b_path> | ||
2457 | <c_attribute></c_attribute> | ||
2458 | <d_old></d_old> | ||
2459 | <e_new> | ||
2460 | Not Mature Content | ||
2461 | </e_new> | ||
2462 | <f_old_trans></f_old_trans> | ||
2463 | <f_translation> | ||
2464 | 非成人向けコンテンツ | ||
2465 | </f_translation> | ||
2466 | </string><string><a_file>panel_classified.xml</a_file> | ||
2467 | <b_path>/Classified/classified_mature_check/select_mature</b_path> | ||
2468 | <c_attribute></c_attribute> | ||
2469 | <d_old></d_old> | ||
2470 | <e_new> | ||
2471 | - Select Mature - | ||
2472 | </e_new> | ||
2473 | <f_old_trans></f_old_trans> | ||
2474 | <f_translation> | ||
2475 | -成熟度を選択- | ||
2476 | </f_translation> | ||
2477 | </string><string><a_file>panel_classified.xml</a_file> | ||
2478 | <b_path>/Classified/classified_mature_check/mature</b_path> | ||
2479 | <c_attribute></c_attribute> | ||
2480 | <d_old></d_old> | ||
2481 | <e_new> | ||
2482 | Mature Content | ||
2483 | </e_new> | ||
2484 | <f_old_trans></f_old_trans> | ||
2485 | <f_translation> | ||
2486 | 成人向けコンテンツ | ||
2487 | </f_translation> | ||
2488 | </string><string><a_file>panel_classified.xml</a_file> | ||
2489 | <b_path>/Classified/classified_mature_check/not_mature</b_path> | ||
2490 | <c_attribute></c_attribute> | ||
2491 | <d_old></d_old> | ||
2492 | <e_new> | ||
2493 | Not Mature Content | ||
2494 | </e_new> | ||
2495 | <f_old_trans></f_old_trans> | ||
2496 | <f_translation> | ||
2497 | 非成人向けコンテンツ | ||
2498 | </f_translation> | ||
2499 | </string><string><a_file>panel_groups.xml</a_file> | ||
2500 | <b_path>/groups/group list/name</b_path> | ||
2501 | <c_attribute>label</c_attribute> | ||
2502 | <d_old></d_old> | ||
2503 | <e_new></e_new> | ||
2504 | <f_old_trans></f_old_trans> | ||
2505 | <f_translation></f_translation> | ||
2506 | </string><string><a_file>panel_group_general.xml</a_file> | ||
2507 | <b_path>/general_tab/preferences_container/group_mature_check</b_path> | ||
2508 | <c_attribute>tool_tip</c_attribute> | 1339 | <c_attribute>tool_tip</c_attribute> |
2509 | <d_old></d_old> | 1340 | <d_old/> |
2510 | <e_new>Sets whether your group information is considered mature.</e_new> | ||
2511 | <f_old_trans></f_old_trans> | ||
2512 | <f_translation>あなたのグループ情報が成人向けとみなされるかどうかを指定します。</f_translation> | ||
2513 | </string><string><a_file>panel_group_general.xml</a_file> | ||
2514 | <b_path>/general_tab/preferences_container/group_mature_check/select_mature</b_path> | ||
2515 | <c_attribute></c_attribute> | ||
2516 | <d_old></d_old> | ||
2517 | <e_new> | ||
2518 | - Select Mature - | ||
2519 | </e_new> | ||
2520 | <f_old_trans></f_old_trans> | ||
2521 | <f_translation> | ||
2522 | -成熟度を選択- | ||
2523 | </f_translation> | ||
2524 | </string><string><a_file>panel_group_general.xml</a_file> | ||
2525 | <b_path>/general_tab/preferences_container/group_mature_check/mature</b_path> | ||
2526 | <c_attribute></c_attribute> | ||
2527 | <d_old></d_old> | ||
2528 | <e_new> | 1341 | <e_new> |
2529 | Mature Content | 1342 | Return only objects which are on land belonging to someone else |
2530 | </e_new> | 1343 | </e_new> |
2531 | <f_old_trans></f_old_trans> | 1344 | <f_old_trans/> |
2532 | <f_translation> | 1345 | <f_translation>他人に属する土地にあるオブジェクトのみを返却</f_translation> |
2533 | 成人向けコンテンツ | 1346 | </string> |
2534 | </f_translation> | 1347 | <string> |
2535 | </string><string><a_file>panel_group_general.xml</a_file> | 1348 | <a_file>panel_region_debug.xml</a_file> |
2536 | <b_path>/general_tab/preferences_container/group_mature_check/not_mature</b_path> | 1349 | <b_path>/Debug/return_estate_wide</b_path> |
2537 | <c_attribute></c_attribute> | 1350 | <c_attribute>label</c_attribute> |
2538 | <d_old></d_old> | 1351 | <d_old/> |
2539 | <e_new> | 1352 | <e_new>Return objects in every region of this estate</e_new> |
2540 | Not Mature Content | 1353 | <f_old_trans/> |
2541 | </e_new> | 1354 | <f_translation>この不動産の各地域のオブジェクトを返却</f_translation> |
2542 | <f_old_trans></f_old_trans> | 1355 | </string> |
2543 | <f_translation> | 1356 | <string> |
2544 | 非成人向けコンテンツ | 1357 | <a_file>panel_region_debug.xml</a_file> |
2545 | </f_translation> | 1358 | <b_path>/Debug/return_estate_wide</b_path> |
2546 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
2547 | <b_path>/Display panel/WindowSizeLabel</b_path> | ||
2548 | <c_attribute></c_attribute> | ||
2549 | <d_old></d_old> | ||
2550 | <e_new> | ||
2551 | Window Size: | ||
2552 | </e_new> | ||
2553 | <f_old_trans></f_old_trans> | ||
2554 | <f_translation> | ||
2555 | ウィンドウ・サイズ: | ||
2556 | </f_translation> | ||
2557 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
2558 | <b_path>/Display panel/windowsize combo/640x480</b_path> | ||
2559 | <c_attribute></c_attribute> | ||
2560 | <d_old></d_old> | ||
2561 | <e_new> | ||
2562 | 640x480 | ||
2563 | </e_new> | ||
2564 | <f_old_trans></f_old_trans> | ||
2565 | <f_translation> | ||
2566 | 640x480 | ||
2567 | </f_translation> | ||
2568 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
2569 | <b_path>/Display panel/windowsize combo/800x600</b_path> | ||
2570 | <c_attribute></c_attribute> | ||
2571 | <d_old></d_old> | ||
2572 | <e_new> | ||
2573 | 800x600 | ||
2574 | </e_new> | ||
2575 | <f_old_trans></f_old_trans> | ||
2576 | <f_translation> | ||
2577 | 800x600 | ||
2578 | </f_translation> | ||
2579 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
2580 | <b_path>/Display panel/windowsize combo/720x480</b_path> | ||
2581 | <c_attribute></c_attribute> | ||
2582 | <d_old></d_old> | ||
2583 | <e_new> | ||
2584 | 720x480 (NTSC) | ||
2585 | </e_new> | ||
2586 | <f_old_trans></f_old_trans> | ||
2587 | <f_translation> | ||
2588 | 720x480 (NTSC) | ||
2589 | </f_translation> | ||
2590 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
2591 | <b_path>/Display panel/windowsize combo/768x576</b_path> | ||
2592 | <c_attribute></c_attribute> | ||
2593 | <d_old></d_old> | ||
2594 | <e_new> | ||
2595 | 768x576 (PAL) | ||
2596 | </e_new> | ||
2597 | <f_old_trans></f_old_trans> | ||
2598 | <f_translation> | ||
2599 | 768x576 (PAL) | ||
2600 | </f_translation> | ||
2601 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
2602 | <b_path>/Display panel/windowsize combo/1024x768</b_path> | ||
2603 | <c_attribute></c_attribute> | ||
2604 | <d_old></d_old> | ||
2605 | <e_new> | ||
2606 | 1024x768 | ||
2607 | </e_new> | ||
2608 | <f_old_trans></f_old_trans> | ||
2609 | <f_translation> | ||
2610 | 1024x768 | ||
2611 | </f_translation> | ||
2612 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
2613 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | ||
2614 | <c_attribute>label</c_attribute> | ||
2615 | <d_old></d_old> | ||
2616 | <e_new></e_new> | ||
2617 | <f_old_trans></f_old_trans> | ||
2618 | <f_translation></f_translation> | ||
2619 | </string><string><a_file>panel_preferences_web.xml</a_file> | ||
2620 | <b_path>/web/use_external_browser/internal</b_path> | ||
2621 | <c_attribute>tool_tip</c_attribute> | 1359 | <c_attribute>tool_tip</c_attribute> |
2622 | <d_old></d_old> | 1360 | <d_old/> |
2623 | <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> | 1361 | <e_new> |
2624 | <f_old_trans></f_old_trans> | 1362 | Return objects in all of the regions that make up this estate |
2625 | <f_translation>ヘルプやWebリンクに埋め込みWebブラウザを使用します。ブラウザはSecond Lifeの新しいウィンドウとして開きます。</f_translation> | 1363 | </e_new> |
2626 | </string><string><a_file>panel_region_general.xml</a_file> | 1364 | <f_old_trans/> |
2627 | <b_path>/General/version_channel_text_lbl</b_path> | 1365 | <f_translation>この不動産に含まれているすべての地域のオブジェクトを返却</f_translation> |
2628 | <c_attribute></c_attribute> | 1366 | </string> |
2629 | <d_old></d_old> | 1367 | <string> |
2630 | <e_new> | 1368 | <a_file>panel_region_debug.xml</a_file> |
2631 | Version: | 1369 | <b_path>/Debug/return_btn</b_path> |
2632 | </e_new> | 1370 | <c_attribute>label</c_attribute> |
2633 | <f_old_trans></f_old_trans> | 1371 | <d_old/> |
2634 | <f_translation> | 1372 | <e_new>Return</e_new> |
2635 | バージョン: | 1373 | <f_old_trans/> |
2636 | </f_translation> | 1374 | <f_translation>返却</f_translation> |
2637 | </string><string><a_file>panel_region_general.xml</a_file> | 1375 | </string> |
2638 | <b_path>/General/version_channel_text</b_path> | 1376 | <string> |
2639 | <c_attribute></c_attribute> | 1377 | <a_file>panel_region_estate.xml</a_file> |
2640 | <d_old></d_old> | 1378 | <b_path>/Estate/abuse_email_text</b_path> |
1379 | <c_attribute/> | ||
1380 | <d_old/> | ||
2641 | <e_new> | 1381 | <e_new> |
2642 | unknown | 1382 | Abuse email address: |
2643 | </e_new> | 1383 | </e_new> |
2644 | <f_old_trans></f_old_trans> | 1384 | <f_old_trans/> |
2645 | <f_translation> | 1385 | <f_translation> |
2646 | 不明 | 1386 | 嫌がらせに関するメール先: |
2647 | </f_translation> | 1387 | </f_translation> |
2648 | </string><string><a_file>strings.xml</a_file> | 1388 | </string> |
2649 | <b_path>//LoginInProgress</b_path> | 1389 | <string> |
2650 | <c_attribute></c_attribute> | 1390 | <a_file>panel_region_estate.xml</a_file> |
2651 | <d_old></d_old> | 1391 | <b_path>/Estate/email_unsupported</b_path> |
2652 | <e_new>Logging in. [APP_NAME] may appear frozen. Please wait.</e_new> | 1392 | <c_attribute/> |
2653 | <f_old_trans></f_old_trans> | 1393 | <d_old/> |
2654 | <f_translation>ログイン中です。[APP_NAME]の表示がフリーズする場合があります。 しばらくお待ちください。</f_translation> | 1394 | <e_new>Feature unsupported</e_new> |
2655 | </string><string><a_file>strings.xml</a_file> | 1395 | <f_old_trans/> |
2656 | <b_path>//LoginAuthenticating</b_path> | 1396 | <f_translation>サポートされていない機能</f_translation> |
2657 | <c_attribute></c_attribute> | 1397 | </string> |
2658 | <d_old></d_old> | 1398 | <string> |
2659 | <e_new>Authenticating</e_new> | 1399 | <a_file>role_actions.xml</a_file> |
2660 | <f_old_trans></f_old_trans> | 1400 | <b_path>//Chat</b_path> |
2661 | <f_translation>認証しています...</f_translation> | 1401 | <c_attribute>description</c_attribute> |
2662 | </string><string><a_file>strings.xml</a_file> | 1402 | <d_old/> |
2663 | <b_path>//LoginMaintenance</b_path> | 1403 | <e_new> |
2664 | <c_attribute></c_attribute> | 1404 | These Abilities include powers to allow or restrict access to group chat sessions and group voice chat. |
2665 | <d_old></d_old> | 1405 | </e_new> |
2666 | <e_new>Performing account maintenance...</e_new> | 1406 | <f_old_trans/> |
2667 | <f_old_trans></f_old_trans> | 1407 | <f_translation> |
2668 | <f_translation>アカウント・メンテナンスを実行しています...</f_translation> | 1408 | これらのアビリティには、グループ・チャット・セッションやグループ・ボイス・チャットへのアクセスの許可や制限の権限が含まれます。 |
2669 | </string><string><a_file>strings.xml</a_file> | 1409 | </f_translation> |
2670 | <b_path>//LoginAttempt</b_path> | 1410 | </string> |
2671 | <c_attribute></c_attribute> | 1411 | <string> |
2672 | <d_old></d_old> | 1412 | <a_file>role_actions.xml</a_file> |
2673 | <e_new>Previous login attempt failed. Logging in, attempt [NUMBER]</e_new> | 1413 | <b_path>//Chat/join group chat</b_path> |
2674 | <f_old_trans></f_old_trans> | 1414 | <c_attribute>description</c_attribute> |
2675 | <f_translation>前回のログインに失敗しました。 ログイン中です([NUMBER]回目)</f_translation> | 1415 | <d_old/> |
2676 | </string><string><a_file>strings.xml</a_file> | 1416 | <e_new>Join Group Chat</e_new> |
2677 | <b_path>//LoginPrecaching</b_path> | 1417 | <f_old_trans/> |
2678 | <c_attribute></c_attribute> | 1418 | <f_translation>グループ・チャットに参加する</f_translation> |
2679 | <d_old></d_old> | 1419 | </string> |
2680 | <e_new>Loading world...</e_new> | 1420 | <string> |
2681 | <f_old_trans></f_old_trans> | 1421 | <a_file>role_actions.xml</a_file> |
2682 | <f_translation>ワールドをロードしています...</f_translation> | 1422 | <b_path>//Chat/join group chat</b_path> |
2683 | </string><string><a_file>strings.xml</a_file> | 1423 | <c_attribute>longdescription</c_attribute> |
2684 | <b_path>//LoginInitializingBrowser</b_path> | 1424 | <d_old/> |
2685 | <c_attribute></c_attribute> | 1425 | <e_new> |
2686 | <d_old></d_old> | 1426 | Members in a Role with this Ability can join group chat sessions, for text and voice. |
2687 | <e_new>Initializing embedded web browser...</e_new> | 1427 | </e_new> |
2688 | <f_old_trans></f_old_trans> | 1428 | <f_old_trans/> |
2689 | <f_translation>埋め込みWebブラウザを初期化しています...</f_translation> | 1429 | <f_translation> |
2690 | </string><string><a_file>strings.xml</a_file> | 1430 | このアビリティを持つ役割のメンバーは、グループ・チャット・セッションにテキストおよびボイスで参加できます。 |
2691 | <b_path>//LoginVerifyingCache</b_path> | 1431 | </f_translation> |
2692 | <c_attribute></c_attribute> | 1432 | </string> |
2693 | <d_old></d_old> | 1433 | <string> |
2694 | <e_new>Verifying cache files (can take 60-90 seconds)...</e_new> | 1434 | <a_file>role_actions.xml</a_file> |
2695 | <f_old_trans></f_old_trans> | 1435 | <b_path>//Chat/join voice chat</b_path> |
2696 | <f_translation>キャッシュ・ファイルを検証しています(所要時間は60~90秒)...</f_translation> | 1436 | <c_attribute>description</c_attribute> |
2697 | </string><string><a_file>strings.xml</a_file> | 1437 | <d_old/> |
2698 | <b_path>//LoginProcessingResponse</b_path> | 1438 | <e_new>Join Group Voice Chat</e_new> |
2699 | <c_attribute></c_attribute> | 1439 | <f_old_trans/> |
2700 | <d_old></d_old> | 1440 | <f_translation>グループ・ボイス・チャットに参加する</f_translation> |
2701 | <e_new>Processing Response...</e_new> | 1441 | </string> |
2702 | <f_old_trans></f_old_trans> | 1442 | <string> |
2703 | <f_translation>応答を処理しています...</f_translation> | 1443 | <a_file>role_actions.xml</a_file> |
2704 | </string><string><a_file>strings.xml</a_file> | 1444 | <b_path>//Chat/join voice chat</b_path> |
2705 | <b_path>//LoginInitializingWorld</b_path> | 1445 | <c_attribute>longdescription</c_attribute> |
2706 | <c_attribute></c_attribute> | 1446 | <d_old/> |
2707 | <d_old></d_old> | 1447 | <e_new> |
2708 | <e_new>Initializing World...</e_new> | 1448 | Members in a Role with this Ability can join group voice chat sessions. NOTE: The Join Group Chat ability is required to access the voice chat session. |
2709 | <f_old_trans></f_old_trans> | 1449 | </e_new> |
2710 | <f_translation>ワールドを初期化しています...</f_translation> | 1450 | <f_old_trans/> |
2711 | </string><string><a_file>strings.xml</a_file> | 1451 | <f_translation> |
2712 | <b_path>//LoginDecodingImages</b_path> | 1452 | このアビリティを持つ役割のメンバーは、グループ・ボイス・チャット・セッションに参加できます。 注: ボイス・チャット・セッションにアクセスするには、グループ・チャットに参加するアビリティが必要です。 |
2713 | <c_attribute></c_attribute> | 1453 | </f_translation> |
2714 | <d_old></d_old> | 1454 | </string> |
2715 | <e_new>Decoding images...</e_new> | 1455 | <string> |
2716 | <f_old_trans></f_old_trans> | 1456 | <a_file>role_actions.xml</a_file> |
2717 | <f_translation>画像をデコードしています...</f_translation> | 1457 | <b_path>//Chat/moderate group chat</b_path> |
2718 | </string><string><a_file>strings.xml</a_file> | 1458 | <c_attribute>description</c_attribute> |
2719 | <b_path>//LoginInitializingQuicktime</b_path> | 1459 | <d_old/> |
2720 | <c_attribute></c_attribute> | 1460 | <e_new>Moderate Group Chat</e_new> |
2721 | <d_old></d_old> | 1461 | <f_old_trans/> |
2722 | <e_new>Initializing QuickTime...</e_new> | 1462 | <f_translation>グループ・チャットを管理する</f_translation> |
2723 | <f_old_trans></f_old_trans> | 1463 | </string> |
2724 | <f_translation>QuickTimeを初期化しています...</f_translation> | 1464 | <string> |
2725 | </string><string><a_file>strings.xml</a_file> | 1465 | <a_file>role_actions.xml</a_file> |
2726 | <b_path>//LoginQuicktimeNotFound</b_path> | 1466 | <b_path>//Chat/moderate group chat</b_path> |
2727 | <c_attribute></c_attribute> | 1467 | <c_attribute>longdescription</c_attribute> |
2728 | <d_old></d_old> | 1468 | <d_old/> |
2729 | <e_new>QuickTime not found - unable to initialize.</e_new> | 1469 | <e_new> |
2730 | <f_old_trans></f_old_trans> | 1470 | Members in a Role with this Ability can control access and participation in group voice and text chat sessions. |
2731 | <f_translation>QuickTimeが見つかりません。初期化に失敗しました。</f_translation> | 1471 | </e_new> |
2732 | </string><string><a_file>strings.xml</a_file> | 1472 | <f_old_trans/> |
2733 | <b_path>//LoginQuicktimeOK</b_path> | 1473 | <f_translation> |
2734 | <c_attribute></c_attribute> | 1474 | このアビリティを持つ役割のメンバーは、グループ・ボイス・チャット・セッションおよびグループ・テキスト・チャット・セッションへのアクセスや参加をコントロールすることができます。 |
2735 | <d_old></d_old> | 1475 | </f_translation> |
2736 | <e_new>QuickTime initialized successfully.</e_new> | 1476 | </string> |
2737 | <f_old_trans></f_old_trans> | 1477 | <string> |
2738 | <f_translation>QuickTimeが正常に初期化されました。</f_translation> | 1478 | <a_file>strings.xml</a_file> |
2739 | </string><string><a_file>strings.xml</a_file> | 1479 | <b_path>//LoginInitializingMultimedia</b_path> |
2740 | <b_path>//LoginWaitingForRegionHandshake</b_path> | 1480 | <c_attribute/> |
2741 | <c_attribute></c_attribute> | 1481 | <d_old/> |
2742 | <d_old></d_old> | 1482 | <e_new>Initializing multimedia...</e_new> |
2743 | <e_new>Waiting for region handshake...</e_new> | 1483 | <f_old_trans/> |
2744 | <f_old_trans></f_old_trans> | 1484 | <f_translation>マルチメディアを初期化しています...</f_translation> |
2745 | <f_translation>地域のハンドシェイクを待っています...</f_translation> | 1485 | </string> |
2746 | </string><string><a_file>strings.xml</a_file> | 1486 | <string> |
2747 | <b_path>//LoginConnectingToRegion</b_path> | 1487 | <a_file>strings.xml</a_file> |
2748 | <c_attribute></c_attribute> | 1488 | <b_path>//AgentLostConnection</b_path> |
2749 | <d_old></d_old> | 1489 | <c_attribute/> |
2750 | <e_new>Connecting to region...</e_new> | 1490 | <d_old/> |
2751 | <f_old_trans></f_old_trans> | 1491 | <e_new> |
2752 | <f_translation>地域に接続しています...</f_translation> | 1492 | This region may be experiencing trouble. Please check your connection to the Internet. |
2753 | </string><string><a_file>strings.xml</a_file> | 1493 | </e_new> |
2754 | <b_path>//LoginDownloadingClothing</b_path> | 1494 | <f_old_trans/> |
2755 | <c_attribute></c_attribute> | 1495 | <f_translation>この地域には、問題が発生している可能性があります。 インターネット接続を確認してください。</f_translation> |
2756 | <d_old></d_old> | 1496 | </string> |
2757 | <e_new>Downloading clothing...</e_new> | 1497 | <string> |
2758 | <f_old_trans></f_old_trans> | 1498 | <a_file>strings.xml</a_file> |
2759 | <f_translation>服をダウンロードしています...</f_translation> | 1499 | <b_path>//TooltipMustSingleDrop</b_path> |
2760 | </string><string><a_file>strings.xml</a_file> | 1500 | <c_attribute/> |
2761 | <b_path>//TooltipPerson</b_path> | 1501 | <d_old/> |
2762 | <c_attribute></c_attribute> | 1502 | <e_new>Only a single item can be dragged here</e_new> |
2763 | <d_old></d_old> | 1503 | <f_old_trans/> |
2764 | <e_new>Person</e_new> | 1504 | <f_translation>1つのアイテムのみをここにドラッグできます</f_translation> |
2765 | <f_old_trans></f_old_trans> | 1505 | </string> |
2766 | <f_translation>人</f_translation> | 1506 | <string> |
2767 | </string><string><a_file>strings.xml</a_file> | 1507 | <a_file>strings.xml</a_file> |
2768 | <b_path>//TooltipNoName</b_path> | 1508 | <b_path>//ReleaseNotes</b_path> |
2769 | <c_attribute></c_attribute> | 1509 | <c_attribute/> |
2770 | <d_old></d_old> | 1510 | <d_old/> |
2771 | <e_new>(no name)</e_new> | 1511 | <e_new>Release Notes</e_new> |
2772 | <f_old_trans></f_old_trans> | 1512 | <f_old_trans/> |
2773 | <f_translation>(名前なし)</f_translation> | 1513 | <f_translation>リリースノート</f_translation> |
2774 | </string><string><a_file>strings.xml</a_file> | 1514 | </string> |
2775 | <b_path>//TooltipOwner</b_path> | 1515 | <string> |
2776 | <c_attribute></c_attribute> | 1516 | <a_file>strings.xml</a_file> |
2777 | <d_old></d_old> | 1517 | <b_path>//texture_loading</b_path> |
2778 | <e_new>Owner:</e_new> | 1518 | <c_attribute/> |
2779 | <f_old_trans></f_old_trans> | 1519 | <d_old/> |
2780 | <f_translation>オーナー:</f_translation> | ||
2781 | </string><string><a_file>strings.xml</a_file> | ||
2782 | <b_path>//TooltipPublic</b_path> | ||
2783 | <c_attribute></c_attribute> | ||
2784 | <d_old></d_old> | ||
2785 | <e_new>Public</e_new> | ||
2786 | <f_old_trans></f_old_trans> | ||
2787 | <f_translation>公共</f_translation> | ||
2788 | </string><string><a_file>strings.xml</a_file> | ||
2789 | <b_path>//TooltipIsGroup</b_path> | ||
2790 | <c_attribute></c_attribute> | ||
2791 | <d_old></d_old> | ||
2792 | <e_new>(Group)</e_new> | ||
2793 | <f_old_trans></f_old_trans> | ||
2794 | <f_translation>(グループ)</f_translation> | ||
2795 | </string><string><a_file>strings.xml</a_file> | ||
2796 | <b_path>//TooltipFlagScript</b_path> | ||
2797 | <c_attribute></c_attribute> | ||
2798 | <d_old></d_old> | ||
2799 | <e_new>Script</e_new> | ||
2800 | <f_old_trans></f_old_trans> | ||
2801 | <f_translation>スクリプト</f_translation> | ||
2802 | </string><string><a_file>strings.xml</a_file> | ||
2803 | <b_path>//TooltipFlagPhysics</b_path> | ||
2804 | <c_attribute></c_attribute> | ||
2805 | <d_old></d_old> | ||
2806 | <e_new>Physics</e_new> | ||
2807 | <f_old_trans></f_old_trans> | ||
2808 | <f_translation>物理作用</f_translation> | ||
2809 | </string><string><a_file>strings.xml</a_file> | ||
2810 | <b_path>//TooltipFlagTouch</b_path> | ||
2811 | <c_attribute></c_attribute> | ||
2812 | <d_old></d_old> | ||
2813 | <e_new>Touch</e_new> | ||
2814 | <f_old_trans></f_old_trans> | ||
2815 | <f_translation>触る</f_translation> | ||
2816 | </string><string><a_file>strings.xml</a_file> | ||
2817 | <b_path>//TooltipFlagL$</b_path> | ||
2818 | <c_attribute></c_attribute> | ||
2819 | <d_old></d_old> | ||
2820 | <e_new>L$</e_new> | ||
2821 | <f_old_trans></f_old_trans> | ||
2822 | <f_translation>L$</f_translation> | ||
2823 | </string><string><a_file>strings.xml</a_file> | ||
2824 | <b_path>//TooltipFlagDropInventory</b_path> | ||
2825 | <c_attribute></c_attribute> | ||
2826 | <d_old></d_old> | ||
2827 | <e_new>Drop Inventory</e_new> | ||
2828 | <f_old_trans></f_old_trans> | ||
2829 | <f_translation>持ち物をドロップする</f_translation> | ||
2830 | </string><string><a_file>strings.xml</a_file> | ||
2831 | <b_path>//TooltipFlagPhantom</b_path> | ||
2832 | <c_attribute></c_attribute> | ||
2833 | <d_old></d_old> | ||
2834 | <e_new>Phantom</e_new> | ||
2835 | <f_old_trans></f_old_trans> | ||
2836 | <f_translation>ファントム</f_translation> | ||
2837 | </string><string><a_file>strings.xml</a_file> | ||
2838 | <b_path>//TooltipFlagTemporary</b_path> | ||
2839 | <c_attribute></c_attribute> | ||
2840 | <d_old></d_old> | ||
2841 | <e_new>Temporary</e_new> | ||
2842 | <f_old_trans></f_old_trans> | ||
2843 | <f_translation>一時的</f_translation> | ||
2844 | </string><string><a_file>strings.xml</a_file> | ||
2845 | <b_path>//TooltipFlagRightClickMenu</b_path> | ||
2846 | <c_attribute></c_attribute> | ||
2847 | <d_old></d_old> | ||
2848 | <e_new>(Right-click for menu)</e_new> | ||
2849 | <f_old_trans></f_old_trans> | ||
2850 | <f_translation>(右クリックでメニューを表示)</f_translation> | ||
2851 | </string><string><a_file>strings.xml</a_file> | ||
2852 | <b_path>//TooltipFreeToCopy</b_path> | ||
2853 | <c_attribute></c_attribute> | ||
2854 | <d_old></d_old> | ||
2855 | <e_new>Free to copy</e_new> | ||
2856 | <f_old_trans></f_old_trans> | ||
2857 | <f_translation>コピー可能</f_translation> | ||
2858 | </string><string><a_file>strings.xml</a_file> | ||
2859 | <b_path>//TooltipForSaleL$</b_path> | ||
2860 | <c_attribute></c_attribute> | ||
2861 | <d_old></d_old> | ||
2862 | <e_new>For Sale: L$[AMOUNT]</e_new> | ||
2863 | <f_old_trans></f_old_trans> | ||
2864 | <f_translation>売り出し中:L$[AMOUNT]</f_translation> | ||
2865 | </string><string><a_file>strings.xml</a_file> | ||
2866 | <b_path>//TooltipForSaleMsg</b_path> | ||
2867 | <c_attribute></c_attribute> | ||
2868 | <d_old></d_old> | ||
2869 | <e_new>For Sale: [MESSAGE]</e_new> | ||
2870 | <f_old_trans></f_old_trans> | ||
2871 | <f_translation>売り出し中: [MESSAGE]</f_translation> | ||
2872 | </string><string><a_file>strings.xml</a_file> | ||
2873 | <b_path>//TooltipFlagGroupBuild</b_path> | ||
2874 | <c_attribute></c_attribute> | ||
2875 | <d_old></d_old> | ||
2876 | <e_new>Group Build</e_new> | ||
2877 | <f_old_trans></f_old_trans> | ||
2878 | <f_translation>グループ作成</f_translation> | ||
2879 | </string><string><a_file>strings.xml</a_file> | ||
2880 | <b_path>//TooltipFlagNoBuild</b_path> | ||
2881 | <c_attribute></c_attribute> | ||
2882 | <d_old></d_old> | ||
2883 | <e_new>No Build</e_new> | ||
2884 | <f_old_trans></f_old_trans> | ||
2885 | <f_translation>作成禁止</f_translation> | ||
2886 | </string><string><a_file>strings.xml</a_file> | ||
2887 | <b_path>//TooltipFlagNoEdit</b_path> | ||
2888 | <c_attribute></c_attribute> | ||
2889 | <d_old></d_old> | ||
2890 | <e_new>Group Build</e_new> | ||
2891 | <f_old_trans></f_old_trans> | ||
2892 | <f_translation>グループ作成</f_translation> | ||
2893 | </string><string><a_file>strings.xml</a_file> | ||
2894 | <b_path>//TooltipFlagNotSafe</b_path> | ||
2895 | <c_attribute></c_attribute> | ||
2896 | <d_old></d_old> | ||
2897 | <e_new>Not Safe</e_new> | ||
2898 | <f_old_trans></f_old_trans> | ||
2899 | <f_translation>危険</f_translation> | ||
2900 | </string><string><a_file>strings.xml</a_file> | ||
2901 | <b_path>//TooltipFlagNoFly</b_path> | ||
2902 | <c_attribute></c_attribute> | ||
2903 | <d_old></d_old> | ||
2904 | <e_new>No Fly</e_new> | ||
2905 | <f_old_trans></f_old_trans> | ||
2906 | <f_translation>飛行禁止</f_translation> | ||
2907 | </string><string><a_file>strings.xml</a_file> | ||
2908 | <b_path>//TooltipFlagGroupScripts</b_path> | ||
2909 | <c_attribute></c_attribute> | ||
2910 | <d_old></d_old> | ||
2911 | <e_new>Group Scripts</e_new> | ||
2912 | <f_old_trans></f_old_trans> | ||
2913 | <f_translation>グループ・スクリプト</f_translation> | ||
2914 | </string><string><a_file>strings.xml</a_file> | ||
2915 | <b_path>//TooltipFlagNoScripts</b_path> | ||
2916 | <c_attribute></c_attribute> | ||
2917 | <d_old></d_old> | ||
2918 | <e_new>No Scripts</e_new> | ||
2919 | <f_old_trans></f_old_trans> | ||
2920 | <f_translation>スクリプトなし</f_translation> | ||
2921 | </string><string><a_file>strings.xml</a_file> | ||
2922 | <b_path>//TooltipLand</b_path> | ||
2923 | <c_attribute></c_attribute> | ||
2924 | <d_old></d_old> | ||
2925 | <e_new>Land:</e_new> | ||
2926 | <f_old_trans></f_old_trans> | ||
2927 | <f_translation>土地:</f_translation> | ||
2928 | </string><string><a_file>strings.xml</a_file> | ||
2929 | <b_path>//RetrievingData</b_path> | ||
2930 | <c_attribute></c_attribute> | ||
2931 | <d_old></d_old> | ||
2932 | <e_new>Retrieving...</e_new> | ||
2933 | <f_old_trans></f_old_trans> | ||
2934 | <f_translation>検索中...</f_translation> | ||
2935 | </string><string><a_file>strings.xml</a_file> | ||
2936 | <b_path>//LoadingData</b_path> | ||
2937 | <c_attribute></c_attribute> | ||
2938 | <d_old></d_old> | ||
2939 | <e_new>Loading...</e_new> | 1520 | <e_new>Loading...</e_new> |
2940 | <f_old_trans></f_old_trans> | 1521 | <f_old_trans/> |
2941 | <f_translation>ロード中...</f_translation> | 1522 | <f_translation>ロード中...</f_translation> |
2942 | </string><string><a_file>strings.xml</a_file> | 1523 | </string> |
2943 | <b_path>//AvatarNameNobody</b_path> | 1524 | <string> |
2944 | <c_attribute></c_attribute> | 1525 | <a_file>strings.xml</a_file> |
2945 | <d_old></d_old> | 1526 | <b_path>//worldmap_offline</b_path> |
2946 | <e_new>(nobody)</e_new> | 1527 | <c_attribute/> |
2947 | <f_old_trans></f_old_trans> | 1528 | <d_old/> |
2948 | <f_translation>(無人)</f_translation> | 1529 | <e_new>Offline</e_new> |
2949 | </string><string><a_file>strings.xml</a_file> | 1530 | <f_old_trans/> |
2950 | <b_path>//AvatarNameWaiting</b_path> | 1531 | <f_translation>オフライン</f_translation> |
2951 | <c_attribute></c_attribute> | 1532 | </string> |
2952 | <d_old></d_old> | 1533 | <string> |
2953 | <e_new>(waiting)</e_new> | 1534 | <a_file>strings.xml</a_file> |
2954 | <f_old_trans></f_old_trans> | 1535 | <b_path>//whisper</b_path> |
2955 | <f_translation>(待機中)</f_translation> | 1536 | <c_attribute/> |
2956 | </string><string><a_file>strings.xml</a_file> | 1537 | <d_old/> |
2957 | <b_path>//AvatarNameHippos</b_path> | 1538 | <e_new>whispers:</e_new> |
2958 | <c_attribute></c_attribute> | 1539 | <f_old_trans/> |
2959 | <d_old></d_old> | 1540 | <f_translation>ささやく:</f_translation> |
2960 | <e_new>(hippos)</e_new> | 1541 | </string> |
2961 | <f_old_trans></f_old_trans> | 1542 | <string> |
2962 | <f_translation>(カバ)</f_translation> | 1543 | <a_file>strings.xml</a_file> |
2963 | </string><string><a_file>strings.xml</a_file> | 1544 | <b_path>//shout</b_path> |
2964 | <b_path>//GroupNameNone</b_path> | 1545 | <c_attribute/> |
2965 | <c_attribute></c_attribute> | 1546 | <d_old/> |
2966 | <d_old></d_old> | 1547 | <e_new>shouts:</e_new> |
2967 | <e_new>(none)</e_new> | 1548 | <f_old_trans/> |
2968 | <f_old_trans></f_old_trans> | 1549 | <f_translation>叫ぶ:</f_translation> |
2969 | <f_translation>(なし)</f_translation> | 1550 | </string> |
2970 | </string><string><a_file>strings.xml</a_file> | ||
2971 | <b_path>//AssetErrorNone</b_path> | ||
2972 | <c_attribute></c_attribute> | ||
2973 | <d_old></d_old> | ||
2974 | <e_new>No error</e_new> | ||
2975 | <f_old_trans></f_old_trans> | ||
2976 | <f_translation>エラーなし</f_translation> | ||
2977 | </string><string><a_file>strings.xml</a_file> | ||
2978 | <b_path>//AssetErrorRequestFailed</b_path> | ||
2979 | <c_attribute></c_attribute> | ||
2980 | <d_old></d_old> | ||
2981 | <e_new>Asset request: failed</e_new> | ||
2982 | <f_old_trans></f_old_trans> | ||
2983 | <f_translation>資産の要求: 失敗</f_translation> | ||
2984 | </string><string><a_file>strings.xml</a_file> | ||
2985 | <b_path>//AssetErrorNonexistentFile</b_path> | ||
2986 | <c_attribute></c_attribute> | ||
2987 | <d_old></d_old> | ||
2988 | <e_new>Asset request: non-existent file</e_new> | ||
2989 | <f_old_trans></f_old_trans> | ||
2990 | <f_translation>資産の要求: 存在しないファイル</f_translation> | ||
2991 | </string><string><a_file>strings.xml</a_file> | ||
2992 | <b_path>//AssetErrorNotInDatabase</b_path> | ||
2993 | <c_attribute></c_attribute> | ||
2994 | <d_old></d_old> | ||
2995 | <e_new>Asset request: asset not found in database</e_new> | ||
2996 | <f_old_trans></f_old_trans> | ||
2997 | <f_translation>資産の要求: データベースでは見つからない資産</f_translation> | ||
2998 | </string><string><a_file>strings.xml</a_file> | ||
2999 | <b_path>//AssetErrorEOF</b_path> | ||
3000 | <c_attribute></c_attribute> | ||
3001 | <d_old></d_old> | ||
3002 | <e_new>End of file</e_new> | ||
3003 | <f_old_trans></f_old_trans> | ||
3004 | <f_translation>ファイルの終わり</f_translation> | ||
3005 | </string><string><a_file>strings.xml</a_file> | ||
3006 | <b_path>//AssetErrorCannotOpenFile</b_path> | ||
3007 | <c_attribute></c_attribute> | ||
3008 | <d_old></d_old> | ||
3009 | <e_new>Cannot open file</e_new> | ||
3010 | <f_old_trans></f_old_trans> | ||
3011 | <f_translation>ファイルを開くことができません</f_translation> | ||
3012 | </string><string><a_file>strings.xml</a_file> | ||
3013 | <b_path>//AssetErrorFileNotFound</b_path> | ||
3014 | <c_attribute></c_attribute> | ||
3015 | <d_old></d_old> | ||
3016 | <e_new>File not found</e_new> | ||
3017 | <f_old_trans></f_old_trans> | ||
3018 | <f_translation>ファイルが見つかりません</f_translation> | ||
3019 | </string><string><a_file>strings.xml</a_file> | ||
3020 | <b_path>//AssetErrorTCPTimeout</b_path> | ||
3021 | <c_attribute></c_attribute> | ||
3022 | <d_old></d_old> | ||
3023 | <e_new>File transfer timeout</e_new> | ||
3024 | <f_old_trans></f_old_trans> | ||
3025 | <f_translation>ファイル転送タイムアウトです</f_translation> | ||
3026 | </string><string><a_file>strings.xml</a_file> | ||
3027 | <b_path>//AssetErrorCircuitGone</b_path> | ||
3028 | <c_attribute></c_attribute> | ||
3029 | <d_old></d_old> | ||
3030 | <e_new>Circuit gone</e_new> | ||
3031 | <f_old_trans></f_old_trans> | ||
3032 | <f_translation>接続が解除されました</f_translation> | ||
3033 | </string><string><a_file>strings.xml</a_file> | ||
3034 | <b_path>//AssetErrorUnknownStatus</b_path> | ||
3035 | <c_attribute></c_attribute> | ||
3036 | <d_old></d_old> | ||
3037 | <e_new>Unknown status</e_new> | ||
3038 | <f_old_trans></f_old_trans> | ||
3039 | <f_translation>ステータスが不明です</f_translation> | ||
3040 | </string><string><a_file>strings.xml</a_file> | ||
3041 | <b_path>//AvatarEditingApparance</b_path> | ||
3042 | <c_attribute></c_attribute> | ||
3043 | <d_old></d_old> | ||
3044 | <e_new>(Editing Appearance)</e_new> | ||
3045 | <f_old_trans></f_old_trans> | ||
3046 | <f_translation>(容姿の編集)</f_translation> | ||
3047 | </string><string><a_file>strings.xml</a_file> | ||
3048 | <b_path>//AvatarAway</b_path> | ||
3049 | <c_attribute></c_attribute> | ||
3050 | <d_old></d_old> | ||
3051 | <e_new>Away</e_new> | ||
3052 | <f_old_trans></f_old_trans> | ||
3053 | <f_translation>退席中</f_translation> | ||
3054 | </string><string><a_file>strings.xml</a_file> | ||
3055 | <b_path>//AvatarBusy</b_path> | ||
3056 | <c_attribute></c_attribute> | ||
3057 | <d_old></d_old> | ||
3058 | <e_new>Busy</e_new> | ||
3059 | <f_old_trans></f_old_trans> | ||
3060 | <f_translation>取り込み中</f_translation> | ||
3061 | </string><string><a_file>strings.xml</a_file> | ||
3062 | <b_path>//AvatarMuted</b_path> | ||
3063 | <c_attribute></c_attribute> | ||
3064 | <d_old></d_old> | ||
3065 | <e_new>Muted</e_new> | ||
3066 | <f_old_trans></f_old_trans> | ||
3067 | <f_translation>ミュート</f_translation> | ||
3068 | </string><string><a_file>strings.xml</a_file> | ||
3069 | <b_path>//anim_express_afraid</b_path> | ||
3070 | <c_attribute></c_attribute> | ||
3071 | <d_old></d_old> | ||
3072 | <e_new>Afraid</e_new> | ||
3073 | <f_old_trans></f_old_trans> | ||
3074 | <f_translation>怖れ</f_translation> | ||
3075 | </string><string><a_file>strings.xml</a_file> | ||
3076 | <b_path>//anim_express_anger</b_path> | ||
3077 | <c_attribute></c_attribute> | ||
3078 | <d_old></d_old> | ||
3079 | <e_new>Angry</e_new> | ||
3080 | <f_old_trans></f_old_trans> | ||
3081 | <f_translation>怒り</f_translation> | ||
3082 | </string><string><a_file>strings.xml</a_file> | ||
3083 | <b_path>//anim_away</b_path> | ||
3084 | <c_attribute></c_attribute> | ||
3085 | <d_old></d_old> | ||
3086 | <e_new>Away</e_new> | ||
3087 | <f_old_trans></f_old_trans> | ||
3088 | <f_translation>退席中</f_translation> | ||
3089 | </string><string><a_file>strings.xml</a_file> | ||
3090 | <b_path>//anim_backflip</b_path> | ||
3091 | <c_attribute></c_attribute> | ||
3092 | <d_old></d_old> | ||
3093 | <e_new>Backflip</e_new> | ||
3094 | <f_old_trans></f_old_trans> | ||
3095 | <f_translation>後ろ宙返り</f_translation> | ||
3096 | </string><string><a_file>strings.xml</a_file> | ||
3097 | <b_path>//anim_express_laugh</b_path> | ||
3098 | <c_attribute></c_attribute> | ||
3099 | <d_old></d_old> | ||
3100 | <e_new>Belly Laugh</e_new> | ||
3101 | <f_old_trans></f_old_trans> | ||
3102 | <f_translation>大笑い</f_translation> | ||
3103 | </string><string><a_file>strings.xml</a_file> | ||
3104 | <b_path>//anim_express_toothsmile</b_path> | ||
3105 | <c_attribute></c_attribute> | ||
3106 | <d_old></d_old> | ||
3107 | <e_new>BigSmile</e_new> | ||
3108 | <f_old_trans></f_old_trans> | ||
3109 | <f_translation>満面の笑顔</f_translation> | ||
3110 | </string><string><a_file>strings.xml</a_file> | ||
3111 | <b_path>//anim_blowkiss</b_path> | ||
3112 | <c_attribute></c_attribute> | ||
3113 | <d_old></d_old> | ||
3114 | <e_new>Blow Kiss</e_new> | ||
3115 | <f_old_trans></f_old_trans> | ||
3116 | <f_translation>投げキッス</f_translation> | ||
3117 | </string><string><a_file>strings.xml</a_file> | ||
3118 | <b_path>//anim_express_bored</b_path> | ||
3119 | <c_attribute></c_attribute> | ||
3120 | <d_old></d_old> | ||
3121 | <e_new>Bored</e_new> | ||
3122 | <f_old_trans></f_old_trans> | ||
3123 | <f_translation>退屈</f_translation> | ||
3124 | </string><string><a_file>strings.xml</a_file> | ||
3125 | <b_path>//anim_bow</b_path> | ||
3126 | <c_attribute></c_attribute> | ||
3127 | <d_old></d_old> | ||
3128 | <e_new>Bow</e_new> | ||
3129 | <f_old_trans></f_old_trans> | ||
3130 | <f_translation>おじぎ</f_translation> | ||
3131 | </string><string><a_file>strings.xml</a_file> | ||
3132 | <b_path>//anim_clap</b_path> | ||
3133 | <c_attribute></c_attribute> | ||
3134 | <d_old></d_old> | ||
3135 | <e_new>Clap</e_new> | ||
3136 | <f_old_trans></f_old_trans> | ||
3137 | <f_translation>拍手</f_translation> | ||
3138 | </string><string><a_file>strings.xml</a_file> | ||
3139 | <b_path>//anim_courtbow</b_path> | ||
3140 | <c_attribute></c_attribute> | ||
3141 | <d_old></d_old> | ||
3142 | <e_new>Court Bow</e_new> | ||
3143 | <f_old_trans></f_old_trans> | ||
3144 | <f_translation>深いおじぎ</f_translation> | ||
3145 | </string><string><a_file>strings.xml</a_file> | ||
3146 | <b_path>//anim_express_cry</b_path> | ||
3147 | <c_attribute></c_attribute> | ||
3148 | <d_old></d_old> | ||
3149 | <e_new>Cry</e_new> | ||
3150 | <f_old_trans></f_old_trans> | ||
3151 | <f_translation>泣く</f_translation> | ||
3152 | </string><string><a_file>strings.xml</a_file> | ||
3153 | <b_path>//anim_dance1</b_path> | ||
3154 | <c_attribute></c_attribute> | ||
3155 | <d_old></d_old> | ||
3156 | <e_new>Dance 1</e_new> | ||
3157 | <f_old_trans></f_old_trans> | ||
3158 | <f_translation>ダンス1</f_translation> | ||
3159 | </string><string><a_file>strings.xml</a_file> | ||
3160 | <b_path>//anim_dance2</b_path> | ||
3161 | <c_attribute></c_attribute> | ||
3162 | <d_old></d_old> | ||
3163 | <e_new>Dance 2</e_new> | ||
3164 | <f_old_trans></f_old_trans> | ||
3165 | <f_translation>ダンス2</f_translation> | ||
3166 | </string><string><a_file>strings.xml</a_file> | ||
3167 | <b_path>//anim_dance3</b_path> | ||
3168 | <c_attribute></c_attribute> | ||
3169 | <d_old></d_old> | ||
3170 | <e_new>Dance 3</e_new> | ||
3171 | <f_old_trans></f_old_trans> | ||
3172 | <f_translation>ダンス3</f_translation> | ||
3173 | </string><string><a_file>strings.xml</a_file> | ||
3174 | <b_path>//anim_dance4</b_path> | ||
3175 | <c_attribute></c_attribute> | ||
3176 | <d_old></d_old> | ||
3177 | <e_new>Dance 4</e_new> | ||
3178 | <f_old_trans></f_old_trans> | ||
3179 | <f_translation>ダンス4</f_translation> | ||
3180 | </string><string><a_file>strings.xml</a_file> | ||
3181 | <b_path>//anim_dance5</b_path> | ||
3182 | <c_attribute></c_attribute> | ||
3183 | <d_old></d_old> | ||
3184 | <e_new>Dance 5</e_new> | ||
3185 | <f_old_trans></f_old_trans> | ||
3186 | <f_translation>ダンス5</f_translation> | ||
3187 | </string><string><a_file>strings.xml</a_file> | ||
3188 | <b_path>//anim_dance6</b_path> | ||
3189 | <c_attribute></c_attribute> | ||
3190 | <d_old></d_old> | ||
3191 | <e_new>Dance 6</e_new> | ||
3192 | <f_old_trans></f_old_trans> | ||
3193 | <f_translation>ダンス6</f_translation> | ||
3194 | </string><string><a_file>strings.xml</a_file> | ||
3195 | <b_path>//anim_dance7</b_path> | ||
3196 | <c_attribute></c_attribute> | ||
3197 | <d_old></d_old> | ||
3198 | <e_new>Dance 7</e_new> | ||
3199 | <f_old_trans></f_old_trans> | ||
3200 | <f_translation>ダンス7</f_translation> | ||
3201 | </string><string><a_file>strings.xml</a_file> | ||
3202 | <b_path>//anim_dance8</b_path> | ||
3203 | <c_attribute></c_attribute> | ||
3204 | <d_old></d_old> | ||
3205 | <e_new>Dance 8</e_new> | ||
3206 | <f_old_trans></f_old_trans> | ||
3207 | <f_translation>ダンス8</f_translation> | ||
3208 | </string><string><a_file>strings.xml</a_file> | ||
3209 | <b_path>//anim_express_disdain</b_path> | ||
3210 | <c_attribute></c_attribute> | ||
3211 | <d_old></d_old> | ||
3212 | <e_new>Disdain</e_new> | ||
3213 | <f_old_trans></f_old_trans> | ||
3214 | <f_translation>侮蔑</f_translation> | ||
3215 | </string><string><a_file>strings.xml</a_file> | ||
3216 | <b_path>//anim_drink</b_path> | ||
3217 | <c_attribute></c_attribute> | ||
3218 | <d_old></d_old> | ||
3219 | <e_new>Drink</e_new> | ||
3220 | <f_old_trans></f_old_trans> | ||
3221 | <f_translation>酔っぱらう</f_translation> | ||
3222 | </string><string><a_file>strings.xml</a_file> | ||
3223 | <b_path>//anim_express_embarrased</b_path> | ||
3224 | <c_attribute></c_attribute> | ||
3225 | <d_old></d_old> | ||
3226 | <e_new>Embarrassed</e_new> | ||
3227 | <f_old_trans></f_old_trans> | ||
3228 | <f_translation>困惑</f_translation> | ||
3229 | </string><string><a_file>strings.xml</a_file> | ||
3230 | <b_path>//anim_angry_fingerwag</b_path> | ||
3231 | <c_attribute></c_attribute> | ||
3232 | <d_old></d_old> | ||
3233 | <e_new>Finger Wag</e_new> | ||
3234 | <f_old_trans></f_old_trans> | ||
3235 | <f_translation>指を振る</f_translation> | ||
3236 | </string><string><a_file>strings.xml</a_file> | ||
3237 | <b_path>//anim_fist_pump</b_path> | ||
3238 | <c_attribute></c_attribute> | ||
3239 | <d_old></d_old> | ||
3240 | <e_new>Fist Pump</e_new> | ||
3241 | <f_old_trans></f_old_trans> | ||
3242 | <f_translation>ガッツポーズ</f_translation> | ||
3243 | </string><string><a_file>strings.xml</a_file> | ||
3244 | <b_path>//anim_yoga_float</b_path> | ||
3245 | <c_attribute></c_attribute> | ||
3246 | <d_old></d_old> | ||
3247 | <e_new>Floating Yoga</e_new> | ||
3248 | <f_old_trans></f_old_trans> | ||
3249 | <f_translation>ヨガ浮遊</f_translation> | ||
3250 | </string><string><a_file>strings.xml</a_file> | ||
3251 | <b_path>//anim_express_frown</b_path> | ||
3252 | <c_attribute></c_attribute> | ||
3253 | <d_old></d_old> | ||
3254 | <e_new>Frown</e_new> | ||
3255 | <f_old_trans></f_old_trans> | ||
3256 | <f_translation>しかめっ面</f_translation> | ||
3257 | </string><string><a_file>strings.xml</a_file> | ||
3258 | <b_path>//anim_impatient</b_path> | ||
3259 | <c_attribute></c_attribute> | ||
3260 | <d_old></d_old> | ||
3261 | <e_new>Impatient</e_new> | ||
3262 | <f_old_trans></f_old_trans> | ||
3263 | <f_translation>いらいらする</f_translation> | ||
3264 | </string><string><a_file>strings.xml</a_file> | ||
3265 | <b_path>//anim_jumpforjoy</b_path> | ||
3266 | <c_attribute></c_attribute> | ||
3267 | <d_old></d_old> | ||
3268 | <e_new>Jump For Joy</e_new> | ||
3269 | <f_old_trans></f_old_trans> | ||
3270 | <f_translation>飛び上がって喜ぶ</f_translation> | ||
3271 | </string><string><a_file>strings.xml</a_file> | ||
3272 | <b_path>//anim_kissmybutt</b_path> | ||
3273 | <c_attribute></c_attribute> | ||
3274 | <d_old></d_old> | ||
3275 | <e_new>Kiss My Butt</e_new> | ||
3276 | <f_old_trans></f_old_trans> | ||
3277 | <f_translation>挑発ポーズ</f_translation> | ||
3278 | </string><string><a_file>strings.xml</a_file> | ||
3279 | <b_path>//anim_express_kiss</b_path> | ||
3280 | <c_attribute></c_attribute> | ||
3281 | <d_old></d_old> | ||
3282 | <e_new>Kiss</e_new> | ||
3283 | <f_old_trans></f_old_trans> | ||
3284 | <f_translation>キス</f_translation> | ||
3285 | </string><string><a_file>strings.xml</a_file> | ||
3286 | <b_path>//anim_laugh_short</b_path> | ||
3287 | <c_attribute></c_attribute> | ||
3288 | <d_old></d_old> | ||
3289 | <e_new>Laugh</e_new> | ||
3290 | <f_old_trans></f_old_trans> | ||
3291 | <f_translation>笑う</f_translation> | ||
3292 | </string><string><a_file>strings.xml</a_file> | ||
3293 | <b_path>//anim_musclebeach</b_path> | ||
3294 | <c_attribute></c_attribute> | ||
3295 | <d_old></d_old> | ||
3296 | <e_new>Muscle Beach</e_new> | ||
3297 | <f_old_trans></f_old_trans> | ||
3298 | <f_translation>力こぶを見せる</f_translation> | ||
3299 | </string><string><a_file>strings.xml</a_file> | ||
3300 | <b_path>//anim_no_unhappy</b_path> | ||
3301 | <c_attribute></c_attribute> | ||
3302 | <d_old></d_old> | ||
3303 | <e_new>No (Unhappy)</e_new> | ||
3304 | <f_old_trans></f_old_trans> | ||
3305 | <f_translation>不満げに否定する</f_translation> | ||
3306 | </string><string><a_file>strings.xml</a_file> | ||
3307 | <b_path>//anim_no_head</b_path> | ||
3308 | <c_attribute></c_attribute> | ||
3309 | <d_old></d_old> | ||
3310 | <e_new>No</e_new> | ||
3311 | <f_old_trans></f_old_trans> | ||
3312 | <f_translation>否定する</f_translation> | ||
3313 | </string><string><a_file>strings.xml</a_file> | ||
3314 | <b_path>//anim_nyanya</b_path> | ||
3315 | <c_attribute></c_attribute> | ||
3316 | <d_old></d_old> | ||
3317 | <e_new>Nya-nya-nya</e_new> | ||
3318 | <f_old_trans></f_old_trans> | ||
3319 | <f_translation>冷やかす</f_translation> | ||
3320 | </string><string><a_file>strings.xml</a_file> | ||
3321 | <b_path>//anim_punch_onetwo</b_path> | ||
3322 | <c_attribute></c_attribute> | ||
3323 | <d_old></d_old> | ||
3324 | <e_new>One-Two Punch</e_new> | ||
3325 | <f_old_trans></f_old_trans> | ||
3326 | <f_translation>ワンツー・パンチ</f_translation> | ||
3327 | </string><string><a_file>strings.xml</a_file> | ||
3328 | <b_path>//anim_express_open_mouth</b_path> | ||
3329 | <c_attribute></c_attribute> | ||
3330 | <d_old></d_old> | ||
3331 | <e_new>Open Mouth</e_new> | ||
3332 | <f_old_trans></f_old_trans> | ||
3333 | <f_translation>口を開けて驚く</f_translation> | ||
3334 | </string><string><a_file>strings.xml</a_file> | ||
3335 | <b_path>//anim_peace</b_path> | ||
3336 | <c_attribute></c_attribute> | ||
3337 | <d_old></d_old> | ||
3338 | <e_new>Peace</e_new> | ||
3339 | <f_old_trans></f_old_trans> | ||
3340 | <f_translation>ピース・サイン</f_translation> | ||
3341 | </string><string><a_file>strings.xml</a_file> | ||
3342 | <b_path>//anim_point_you</b_path> | ||
3343 | <c_attribute></c_attribute> | ||
3344 | <d_old></d_old> | ||
3345 | <e_new>Point at Other</e_new> | ||
3346 | <f_old_trans></f_old_trans> | ||
3347 | <f_translation>他人を指差す</f_translation> | ||
3348 | </string><string><a_file>strings.xml</a_file> | ||
3349 | <b_path>//anim_point_me</b_path> | ||
3350 | <c_attribute></c_attribute> | ||
3351 | <d_old></d_old> | ||
3352 | <e_new>Point at Self</e_new> | ||
3353 | <f_old_trans></f_old_trans> | ||
3354 | <f_translation>自分を指差す</f_translation> | ||
3355 | </string><string><a_file>strings.xml</a_file> | ||
3356 | <b_path>//anim_punch_l</b_path> | ||
3357 | <c_attribute></c_attribute> | ||
3358 | <d_old></d_old> | ||
3359 | <e_new>Punch Left</e_new> | ||
3360 | <f_old_trans></f_old_trans> | ||
3361 | <f_translation>左パンチ</f_translation> | ||
3362 | </string><string><a_file>strings.xml</a_file> | ||
3363 | <b_path>//anim_punch_r</b_path> | ||
3364 | <c_attribute></c_attribute> | ||
3365 | <d_old></d_old> | ||
3366 | <e_new>Punch Right</e_new> | ||
3367 | <f_old_trans></f_old_trans> | ||
3368 | <f_translation>右パンチ</f_translation> | ||
3369 | </string><string><a_file>strings.xml</a_file> | ||
3370 | <b_path>//anim_rps_countdown</b_path> | ||
3371 | <c_attribute></c_attribute> | ||
3372 | <d_old></d_old> | ||
3373 | <e_new>RPS count</e_new> | ||
3374 | <f_old_trans></f_old_trans> | ||
3375 | <f_translation>じゃんけんポーズ</f_translation> | ||
3376 | </string><string><a_file>strings.xml</a_file> | ||
3377 | <b_path>//anim_rps_paper</b_path> | ||
3378 | <c_attribute></c_attribute> | ||
3379 | <d_old></d_old> | ||
3380 | <e_new>RPS paper</e_new> | ||
3381 | <f_old_trans></f_old_trans> | ||
3382 | <f_translation>パー</f_translation> | ||
3383 | </string><string><a_file>strings.xml</a_file> | ||
3384 | <b_path>//anim_rps_rock</b_path> | ||
3385 | <c_attribute></c_attribute> | ||
3386 | <d_old></d_old> | ||
3387 | <e_new>RPS rock</e_new> | ||
3388 | <f_old_trans></f_old_trans> | ||
3389 | <f_translation>グー</f_translation> | ||
3390 | </string><string><a_file>strings.xml</a_file> | ||
3391 | <b_path>//anim_rps_scissors</b_path> | ||
3392 | <c_attribute></c_attribute> | ||
3393 | <d_old></d_old> | ||
3394 | <e_new>RPS scissors</e_new> | ||
3395 | <f_old_trans></f_old_trans> | ||
3396 | <f_translation>チョキ</f_translation> | ||
3397 | </string><string><a_file>strings.xml</a_file> | ||
3398 | <b_path>//anim_express_repulsed</b_path> | ||
3399 | <c_attribute></c_attribute> | ||
3400 | <d_old></d_old> | ||
3401 | <e_new>Repulsed</e_new> | ||
3402 | <f_old_trans></f_old_trans> | ||
3403 | <f_translation>嫌悪感</f_translation> | ||
3404 | </string><string><a_file>strings.xml</a_file> | ||
3405 | <b_path>//anim_kick_roundhouse_r</b_path> | ||
3406 | <c_attribute></c_attribute> | ||
3407 | <d_old></d_old> | ||
3408 | <e_new>Roundhouse Kick</e_new> | ||
3409 | <f_old_trans></f_old_trans> | ||
3410 | <f_translation>まわし蹴り</f_translation> | ||
3411 | </string><string><a_file>strings.xml</a_file> | ||
3412 | <b_path>//anim_express_sad</b_path> | ||
3413 | <c_attribute></c_attribute> | ||
3414 | <d_old></d_old> | ||
3415 | <e_new>Sad</e_new> | ||
3416 | <f_old_trans></f_old_trans> | ||
3417 | <f_translation>悲しむ</f_translation> | ||
3418 | </string><string><a_file>strings.xml</a_file> | ||
3419 | <b_path>//anim_salute</b_path> | ||
3420 | <c_attribute></c_attribute> | ||
3421 | <d_old></d_old> | ||
3422 | <e_new>Salute</e_new> | ||
3423 | <f_old_trans></f_old_trans> | ||
3424 | <f_translation>敬礼する</f_translation> | ||
3425 | </string><string><a_file>strings.xml</a_file> | ||
3426 | <b_path>//anim_shout</b_path> | ||
3427 | <c_attribute></c_attribute> | ||
3428 | <d_old></d_old> | ||
3429 | <e_new>Shout</e_new> | ||
3430 | <f_old_trans></f_old_trans> | ||
3431 | <f_translation>叫ぶ</f_translation> | ||
3432 | </string><string><a_file>strings.xml</a_file> | ||
3433 | <b_path>//anim_express_shrug</b_path> | ||
3434 | <c_attribute></c_attribute> | ||
3435 | <d_old></d_old> | ||
3436 | <e_new>Shrug</e_new> | ||
3437 | <f_old_trans></f_old_trans> | ||
3438 | <f_translation>肩をすくめる</f_translation> | ||
3439 | </string><string><a_file>strings.xml</a_file> | ||
3440 | <b_path>//anim_express_smile</b_path> | ||
3441 | <c_attribute></c_attribute> | ||
3442 | <d_old></d_old> | ||
3443 | <e_new>Smile</e_new> | ||
3444 | <f_old_trans></f_old_trans> | ||
3445 | <f_translation>微笑む</f_translation> | ||
3446 | </string><string><a_file>strings.xml</a_file> | ||
3447 | <b_path>//anim_smoke_idle</b_path> | ||
3448 | <c_attribute></c_attribute> | ||
3449 | <d_old></d_old> | ||
3450 | <e_new>Smoke Idle</e_new> | ||
3451 | <f_old_trans></f_old_trans> | ||
3452 | <f_translation>たばこをくゆらす</f_translation> | ||
3453 | </string><string><a_file>strings.xml</a_file> | ||
3454 | <b_path>//anim_smoke_inhale</b_path> | ||
3455 | <c_attribute></c_attribute> | ||
3456 | <d_old></d_old> | ||
3457 | <e_new>Smoke Inhale</e_new> | ||
3458 | <f_old_trans></f_old_trans> | ||
3459 | <f_translation>たばこを吸う</f_translation> | ||
3460 | </string><string><a_file>strings.xml</a_file> | ||
3461 | <b_path>//anim_smoke_throw_down</b_path> | ||
3462 | <c_attribute></c_attribute> | ||
3463 | <d_old></d_old> | ||
3464 | <e_new>Smoke Throw Down</e_new> | ||
3465 | <f_old_trans></f_old_trans> | ||
3466 | <f_translation>たばこを捨てる</f_translation> | ||
3467 | </string><string><a_file>strings.xml</a_file> | ||
3468 | <b_path>//anim_express_surprise</b_path> | ||
3469 | <c_attribute></c_attribute> | ||
3470 | <d_old></d_old> | ||
3471 | <e_new>Surprise</e_new> | ||
3472 | <f_old_trans></f_old_trans> | ||
3473 | <f_translation>驚く</f_translation> | ||
3474 | </string><string><a_file>strings.xml</a_file> | ||
3475 | <b_path>//anim_sword_strike_r</b_path> | ||
3476 | <c_attribute></c_attribute> | ||
3477 | <d_old></d_old> | ||
3478 | <e_new>Sword Strike</e_new> | ||
3479 | <f_old_trans></f_old_trans> | ||
3480 | <f_translation>剣で斬りつける</f_translation> | ||
3481 | </string><string><a_file>strings.xml</a_file> | ||
3482 | <b_path>//anim_angry_tantrum</b_path> | ||
3483 | <c_attribute></c_attribute> | ||
3484 | <d_old></d_old> | ||
3485 | <e_new>Tantrum</e_new> | ||
3486 | <f_old_trans></f_old_trans> | ||
3487 | <f_translation>じだんだを踏む</f_translation> | ||
3488 | </string><string><a_file>strings.xml</a_file> | ||
3489 | <b_path>//anim_express_tongue_out</b_path> | ||
3490 | <c_attribute></c_attribute> | ||
3491 | <d_old></d_old> | ||
3492 | <e_new>TongueOut</e_new> | ||
3493 | <f_old_trans></f_old_trans> | ||
3494 | <f_translation>舌を出す</f_translation> | ||
3495 | </string><string><a_file>strings.xml</a_file> | ||
3496 | <b_path>//anim_hello</b_path> | ||
3497 | <c_attribute></c_attribute> | ||
3498 | <d_old></d_old> | ||
3499 | <e_new>Wave</e_new> | ||
3500 | <f_old_trans></f_old_trans> | ||
3501 | <f_translation>手を振る</f_translation> | ||
3502 | </string><string><a_file>strings.xml</a_file> | ||
3503 | <b_path>//anim_whisper</b_path> | ||
3504 | <c_attribute></c_attribute> | ||
3505 | <d_old></d_old> | ||
3506 | <e_new>Whisper</e_new> | ||
3507 | <f_old_trans></f_old_trans> | ||
3508 | <f_translation>小声で話す</f_translation> | ||
3509 | </string><string><a_file>strings.xml</a_file> | ||
3510 | <b_path>//anim_whistle</b_path> | ||
3511 | <c_attribute></c_attribute> | ||
3512 | <d_old></d_old> | ||
3513 | <e_new>Whistle</e_new> | ||
3514 | <f_old_trans></f_old_trans> | ||
3515 | <f_translation>口笛を吹く</f_translation> | ||
3516 | </string><string><a_file>strings.xml</a_file> | ||
3517 | <b_path>//anim_express_wink</b_path> | ||
3518 | <c_attribute></c_attribute> | ||
3519 | <d_old></d_old> | ||
3520 | <e_new>Wink</e_new> | ||
3521 | <f_old_trans></f_old_trans> | ||
3522 | <f_translation>ウィンク</f_translation> | ||
3523 | </string><string><a_file>strings.xml</a_file> | ||
3524 | <b_path>//anim_wink_hollywood</b_path> | ||
3525 | <c_attribute></c_attribute> | ||
3526 | <d_old></d_old> | ||
3527 | <e_new>Wink (Hollywood)</e_new> | ||
3528 | <f_old_trans></f_old_trans> | ||
3529 | <f_translation>ウィンク(ハリウッド)</f_translation> | ||
3530 | </string><string><a_file>strings.xml</a_file> | ||
3531 | <b_path>//anim_express_worry</b_path> | ||
3532 | <c_attribute></c_attribute> | ||
3533 | <d_old></d_old> | ||
3534 | <e_new>Worry</e_new> | ||
3535 | <f_old_trans></f_old_trans> | ||
3536 | <f_translation>心配する</f_translation> | ||
3537 | </string><string><a_file>strings.xml</a_file> | ||
3538 | <b_path>//anim_yes_happy</b_path> | ||
3539 | <c_attribute></c_attribute> | ||
3540 | <d_old></d_old> | ||
3541 | <e_new>Yes (Happy)</e_new> | ||
3542 | <f_old_trans></f_old_trans> | ||
3543 | <f_translation>笑顔で頷く</f_translation> | ||
3544 | </string><string><a_file>strings.xml</a_file> | ||
3545 | <b_path>//anim_yes_head</b_path> | ||
3546 | <c_attribute></c_attribute> | ||
3547 | <d_old></d_old> | ||
3548 | <e_new>Yes</e_new> | ||
3549 | <f_old_trans></f_old_trans> | ||
3550 | <f_translation>頷く</f_translation> | ||
3551 | </string> | ||
3552 | <string><a_file>alerts.xml</a_file> | ||
3553 | <b_path>//ChangeSkin/message</b_path> | ||
3554 | <c_attribute></c_attribute> | ||
3555 | <d_old></d_old> | ||
3556 | <e_new> | ||
3557 | The new skin will appear after you restart [SECOND_LIFE]. | ||
3558 | </e_new> | ||
3559 | <f_old_trans></f_old_trans> | ||
3560 | <f_translation> | ||
3561 | 新しいスキンは[SECOND_LIFE]を再起動すると現れます | ||
3562 | </f_translation></string><string><a_file>floater_joystick.xml</a_file> | ||
3563 | <b_path>/Joystick/enable_joystick</b_path> | ||
3564 | <c_attribute></c_attribute> | ||
3565 | <d_old></d_old> | ||
3566 | <e_new>Enable Joystick:</e_new> | ||
3567 | <f_old_trans></f_old_trans> | ||
3568 | <f_translation>ジョイスティックを使う:</f_translation></string><string><a_file>notify.xml</a_file> | ||
3569 | <b_path>//UnableToOpenCommandURL/message</b_path> | ||
3570 | <c_attribute></c_attribute> | ||
3571 | <d_old></d_old> | ||
3572 | <e_new> | ||
3573 | The URL you clicked cannot be opened from this web browser. | ||
3574 | </e_new> | ||
3575 | <f_old_trans></f_old_trans> | ||
3576 | <f_translation> | ||
3577 | クリックしたURLはこのウェブブラウザでは開けません | ||
3578 | </f_translation></string><string><a_file>panel_preferences_skins.xml</a_file> | ||
3579 | <b_path>/Skins panel</b_path> | ||
3580 | <c_attribute>label</c_attribute> | ||
3581 | <d_old></d_old> | ||
3582 | <e_new>Skins</e_new> | ||
3583 | <f_old_trans></f_old_trans> | ||
3584 | <f_translation>スキン</f_translation></string><string><a_file>panel_preferences_skins.xml</a_file> | ||
3585 | <b_path>/Skins panel/muting_text</b_path> | ||
3586 | <c_attribute></c_attribute> | ||
3587 | <d_old></d_old> | ||
3588 | <e_new> | ||
3589 | Select a skin (requires restart): | ||
3590 | </e_new> | ||
3591 | <f_old_trans></f_old_trans> | ||
3592 | <f_translation> | ||
3593 | スキンを選択(要アプリの再起動): | ||
3594 | </f_translation></string><string><a_file>panel_preferences_skins.xml</a_file> | ||
3595 | <b_path>/Skins panel/skin_selection/default</b_path> | ||
3596 | <c_attribute></c_attribute> | ||
3597 | <d_old></d_old> | ||
3598 | <e_new> | ||
3599 | Classic | ||
3600 | </e_new> | ||
3601 | <f_old_trans></f_old_trans> | ||
3602 | <f_translation> | ||
3603 | クラシック | ||
3604 | </f_translation></string><string><a_file>panel_preferences_skins.xml</a_file> | ||
3605 | <b_path>/Skins panel/skin_selection/silver</b_path> | ||
3606 | <c_attribute></c_attribute> | ||
3607 | <d_old></d_old> | ||
3608 | <e_new> | ||
3609 | Silver | ||
3610 | </e_new> | ||
3611 | <f_old_trans></f_old_trans> | ||
3612 | <f_translation> | ||
3613 | シルバー | ||
3614 | </f_translation></string><string><a_file>panel_speaker_controls.xml</a_file> | ||
3615 | <b_path>/active_speakers_panel/panels/moderator_controls/moderator_allow_voice</b_path> | ||
3616 | <c_attribute></c_attribute> | ||
3617 | <d_old></d_old> | ||
3618 | <e_new> | ||
3619 | Allow voice chat | ||
3620 | </e_new> | ||
3621 | <f_old_trans></f_old_trans> | ||
3622 | <f_translation> | ||
3623 | ボイスチャットを許可 | ||
3624 | </f_translation></string> | ||
3625 | </strings> | 1551 | </strings> |
diff --git a/linden/indra/newview/skins/default/xui/ja/need_to_update.xml b/linden/indra/newview/skins/default/xui/ja/need_to_update.xml index 4489411..e7ad3f0 100644 --- a/linden/indra/newview/skins/default/xui/ja/need_to_update.xml +++ b/linden/indra/newview/skins/default/xui/ja/need_to_update.xml | |||
@@ -1,513 +1,759 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>alerts.xml</a_file> | 4 | <string> |
5 | <b_path>//GrantModifyRights/message</b_path> | 5 | <a_file>alerts.xml</a_file> |
6 | <c_attribute></c_attribute> | 6 | <b_path>//ClickPublishHelpAvatar/message</b_path> |
7 | <c_attribute/> | ||
7 | <d_old> | 8 | <d_old> |
8 | Granting modify rights to another resident allows them to change | 9 | |
9 | ANY objects you may have in-world. Be VERY careful when handing | 10 | Selecting "Show in Search" will show: |
10 | out this permission. | 11 | - my profile in search results |
11 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | 12 | - a link to my profile in public group pages |
12 | </d_old> | 13 | |
14 | </d_old> | ||
13 | <e_new> | 15 | <e_new> |
14 | Granting modify rights to another resident allows them to change, | 16 | |
15 | delete or take ANY objects you may have in-world. Be VERY careful | 17 | Selecting "Show in Search" will show: |
16 | when handing out this permission. | 18 | - my profile in search results |
17 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | 19 | - a link to my profile in public group pages |
18 | </e_new> | 20 | |
21 | </e_new> | ||
19 | <f_translation> | 22 | <f_translation> |
20 | 他の住人に変更権限を与えると、その人はあなたが所有している | 23 | |
21 | すべてのオブジェクトを変更、削除、または取得することができるようになります。この許可を与えるときは細心の注意を払ってください。 | 24 | [検索に表示]を選択すると表示: |
22 | [FIRST_NAME][LAST_NAME]に対して変更権限を与えますか? | 25 | - 検索結果における自分のプロフィール |
26 | - パブリック・グループ・ページにおける自分のプロフィールへのリンク | ||
27 | |||
28 | </f_translation> | ||
29 | <f_old_trans> | ||
30 | |||
31 | 「検索に表示」を選択すると表示: | ||
32 | - 検索結果における自分のプロフィール | ||
33 | - パブリックグループページにおける自分のプロフィールへのリンク | ||
34 | |||
35 | </f_old_trans> | ||
36 | </string> | ||
37 | <string> | ||
38 | <a_file>alerts.xml</a_file> | ||
39 | <b_path>//PromptMissingSubjMsg/message</b_path> | ||
40 | <c_attribute/> | ||
41 | <d_old> | ||
42 | |||
43 | Send postcard with the default subject or message? | ||
44 | |||
45 | </d_old> | ||
46 | <e_new> | ||
47 | |||
48 | Email snapshot with the default subject or message? | ||
49 | |||
50 | </e_new> | ||
51 | <f_translation> | ||
52 | デフォルトの件名またはメッセージを付けて、スナップショットを送信しますか? | ||
23 | </f_translation> | 53 | </f_translation> |
24 | <f_old_trans> | 54 | <f_old_trans> |
25 | 他の住人に変更権限を与えると、その人はあなたが所有している | 55 | デフォルトの件名またはメッセージを付けて、ポストカードを送信しますか? |
26 | すべてのオブジェクトを変更できるようになります。 この許可を与えるときには細心の注意を払ってください。 | ||
27 | [FIRST_NAME] [LAST_NAME]に変更権限を与えますか? | ||
28 | </f_old_trans> | 56 | </f_old_trans> |
29 | </string><string><a_file>alerts.xml</a_file> | 57 | </string> |
30 | <b_path>//CannotBuyLandNoRegion/message</b_path> | 58 | <string> |
31 | <c_attribute></c_attribute> | 59 | <a_file>alerts.xml</a_file> |
60 | <b_path>//ErrorUploadingPostcard/message</b_path> | ||
61 | <c_attribute/> | ||
32 | <d_old> | 62 | <d_old> |
33 | Unable to buy land: | 63 | |
34 | Cannot find the region this land is in. | 64 | There was a problem uploading a postcard due to the following reason: [REASON] |
35 | </d_old> | 65 | |
66 | </d_old> | ||
36 | <e_new> | 67 | <e_new> |
37 | Unable to buy land: | 68 | |
38 | Cannot find the region this land is in. | 69 | There was a problem sending a snapshot due to the following reason: [REASON] |
39 | </e_new> | 70 | |
71 | </e_new> | ||
40 | <f_translation> | 72 | <f_translation> |
41 | 土地を購入できません: | 73 | 次の理由で、スナップショットの送信時に問題が起こりました: [REASON] |
42 | この土地がある地域を見つけることができません。 | ||
43 | </f_translation> | 74 | </f_translation> |
44 | <f_old_trans> | 75 | <f_old_trans> |
45 | 土地を購入できません: | 76 | 次の理由で、ポストカードのアップロード時に問題が起こりました。 [REASON] |
46 | この土地がある地域が見つかりません。 | ||
47 | </f_old_trans> | 77 | </f_old_trans> |
48 | </string><string><a_file>alerts.xml</a_file> | 78 | </string> |
49 | <b_path>//ParcelCanPlayMedia/message</b_path> | 79 | <string> |
50 | <c_attribute></c_attribute> | 80 | <a_file>alerts.xml</a_file> |
81 | <b_path>//MustHaveAccountToLogIn/message</b_path> | ||
82 | <c_attribute/> | ||
51 | <d_old> | 83 | <d_old> |
52 | This location can play streaming video. | 84 | |
53 | Streaming video requires a 768 kbps or | 85 | You must have an account to connect to [SECOND_LIFE]. |
54 | faster Internet connection. | 86 | Go to www.secondlife.com to create an account? |
55 | 87 | ||
56 | Play streaming video when available? | 88 | </d_old> |
57 | (You can change this option later under | 89 | <e_new> |
58 | Preferences > Audio & Video.) | 90 | |
91 | Oops! Something was left blank. | ||
92 | You need to enter both the First and Last name of your avatar. | ||
93 | |||
94 | You need an account to enter [SECOND_LIFE]. Would you like to create one now? | ||
95 | </e_new> | ||
96 | <f_translation> | ||
97 | |||
98 | おっと! 記入漏れがありますよ。 | ||
99 | アバターのファーストネームとラストネームの両方を入力する必要があります。 | ||
100 | |||
101 | [SECOND_LIFE]に入るには、アカウントが必要です。 アカウントを作成しますか? | ||
102 | </f_translation> | ||
103 | <f_old_trans> | ||
104 | |||
105 | [SECOND_LIFE]に接続するにはアカウントが必要です。 | ||
106 | アカウントを作成するためにwww.secondlife.comを開きますか? | ||
107 | |||
108 | </f_old_trans> | ||
109 | </string> | ||
110 | <string> | ||
111 | <a_file>alerts.xml</a_file> | ||
112 | <b_path>//MustHaveAccountToLogIn/OK</b_path> | ||
113 | <c_attribute/> | ||
114 | <d_old> | ||
115 | OK | ||
59 | </d_old> | 116 | </d_old> |
60 | <e_new> | 117 | <e_new> |
61 | This location can play streaming media. | 118 | Create a new account |
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> | 119 | </e_new> |
68 | <f_translation> | 120 | <f_translation> |
69 | ここではストリーミング・メディア再生が可能です。 | 121 | 新しいアカウントを作成 |
70 | メディアのストリーミングには、高速なインターネット接続環境が必要です。 | ||
71 | |||
72 | 利用可能になったら再生しますか? | ||
73 | (このオプションは、[環境設定]>[オーディオ&ビデオ]で後からでも変更できます) | ||
74 | </f_translation> | 122 | </f_translation> |
75 | <f_old_trans> | 123 | <f_old_trans> |
76 | ここではストリーミング・ビデオ再生が可能です。 | 124 | OK |
77 | ビデオの再生には768 kbpsより速い | ||
78 | 接続環境が必要です。 | ||
79 | |||
80 | 利用可能になったら再生しますか? | ||
81 | (このオプションは、 | ||
82 | [環境設定]>[音声とビデオ]を通じて後からでも変更できます) | ||
83 | </f_old_trans> | 125 | </f_old_trans> |
84 | </string><string><a_file>alerts.xml</a_file> | 126 | </string> |
85 | <b_path>//ConfirmClearBrowserCache/message</b_path> | 127 | <string> |
86 | <c_attribute></c_attribute> | 128 | <a_file>alerts.xml</a_file> |
129 | <b_path>//MustHaveAccountToLogIn/Cancel</b_path> | ||
130 | <c_attribute/> | ||
87 | <d_old> | 131 | <d_old> |
88 | Are you sure you want to clear your | 132 | Cancel |
89 | browser cache? | ||
90 | </d_old> | 133 | </d_old> |
91 | <e_new> | 134 | <e_new> |
92 | Are you sure you want to clear your browser cache? | 135 | Try again |
93 | </e_new> | 136 | </e_new> |
94 | <f_translation> | 137 | <f_translation> |
95 | 本当ブラャッシュをクリアまか? | 138 | も一度試す |
96 | </f_translation> | 139 | </f_translation> |
97 | <f_old_trans> | 140 | <f_old_trans> |
98 | 本当にブラウザのキャッシュを | 141 | 取り消し |
99 | クリアしますか? | ||
100 | </f_old_trans> | 142 | </f_old_trans> |
101 | </string><string><a_file>alerts.xml</a_file> | 143 | </string> |
102 | <b_path>//HelpWaterNormalMap/message</b_path> | 144 | <string> |
103 | <c_attribute></c_attribute> | 145 | <a_file>alerts.xml</a_file> |
146 | <b_path>//ChangeSkin/message</b_path> | ||
147 | <c_attribute/> | ||
104 | <d_old> | 148 | <d_old> |
105 | Controls what normal map is layered across the water | 149 | |
106 | to determine reflections/refractions. | 150 | New skin will appear after you restart [SECOND_LIFE]. |
107 | </d_old> | 151 | |
152 | </d_old> | ||
108 | <e_new> | 153 | <e_new> |
109 | Controls what normal map is layered across the water to determine reflections/refractions. | 154 | |
110 | </e_new> | 155 | The new skin will appear after you restart [SECOND_LIFE]. |
156 | |||
157 | </e_new> | ||
158 | <f_translation> | ||
159 | 新しいスキンは[SECOND_LIFE]を再起動すると現れます | ||
160 | </f_translation> | ||
161 | <f_old_trans> | ||
162 | 新しいスキンは[SECOND_LIFE]を再起動すると現れます | ||
163 | </f_old_trans> | ||
164 | </string> | ||
165 | <string> | ||
166 | <a_file>alerts.xml</a_file> | ||
167 | <b_path>//CannotGiveCategory/message</b_path> | ||
168 | <c_attribute/> | ||
169 | <d_old> | ||
170 | |||
171 | You do not have permission to transfer | ||
172 | the selected folder. | ||
173 | |||
174 | </d_old> | ||
175 | <e_new> | ||
176 | |||
177 | You do not have permission to transfer | ||
178 | the selected folder. | ||
179 | |||
180 | </e_new> | ||
111 | <f_translation> | 181 | <f_translation> |
112 | 反射や屈折を決定するために水に重ねられるノーマル・マップを制御します。 | 182 | 選択したフォルダを譲渡できる権限 |
183 | がありません | ||
113 | </f_translation> | 184 | </f_translation> |
114 | <f_old_trans> | 185 | <f_old_trans> |
115 | 反射や屈折を決定するために水に重ねられるノーマル・マップを制御します。 | 186 | 選択したフォルダを譲渡できる権限 |
187 | がありません。 | ||
116 | </f_old_trans> | 188 | </f_old_trans> |
117 | </string><string><a_file>alerts.xml</a_file> | 189 | </string> |
118 | <b_path>//HelpWaterWave1/message</b_path> | 190 | <string> |
119 | <c_attribute></c_attribute> | 191 | <a_file>alerts.xml</a_file> |
192 | <b_path>//CannotBuyLandNoRegion/message</b_path> | ||
193 | <c_attribute/> | ||
120 | <d_old> | 194 | <d_old> |
121 | Controls where and how fast the large scaled version of the normal | 195 | |
122 | map moves in the X and Y direction. | 196 | Unable to buy land: |
123 | </d_old> | 197 | Cannot find the region this land is in. |
198 | |||
199 | </d_old> | ||
124 | <e_new> | 200 | <e_new> |
125 | Controls where and how fast the large scaled version of the normal map moves in the X and Y direction. | 201 | |
126 | </e_new> | 202 | Unable to buy land: |
203 | Cannot find the region this land is in. | ||
204 | |||
205 | </e_new> | ||
127 | <f_translation> | 206 | <f_translation> |
128 | 拡大されたノーマル・マップが移動する方向(X 軸と Y 軸で表現)と速度を制御します。 | 207 | 土地を購入できません: |
208 | この土地がある地域を見つけることができません | ||
129 | </f_translation> | 209 | </f_translation> |
130 | <f_old_trans> | 210 | <f_old_trans> |
131 | き伸たノーマル・マップがX と Y で方向して | 211 | 入で: |
132 | の速移動る制御ま。 | 212 | の土地域をるき |
133 | </f_old_trans> | 213 | </f_old_trans> |
134 | </string><string><a_file>alerts.xml</a_file> | 214 | </string> |
135 | <b_path>//HelpWaterWave2/message</b_path> | 215 | <string> |
136 | <c_attribute></c_attribute> | 216 | <a_file>alerts.xml</a_file> |
217 | <b_path>//YouHaveBeenLoggedOut/message</b_path> | ||
218 | <c_attribute/> | ||
137 | <d_old> | 219 | <d_old> |
138 | Controls where and how fast the the small scaled version of the | 220 | |
139 | normal map moves in the X and Y direction. | 221 | You have been logged out of [SECOND_LIFE]: |
222 | [MESSAGE] | ||
223 | |||
224 | Click Continue to look at existing IM and chat. | ||
225 | You will not be able to perform any other operations. | ||
226 | Click Quit to exit [SECOND_LIFE] immediately. | ||
227 | |||
228 | </d_old> | ||
229 | <e_new> | ||
230 | You have been logged out of [SECOND_LIFE]: | ||
231 | [MESSAGE] | ||
232 | You can still look at existing IM and chat by clicking 'View IM & Chat'. Otherwise, click 'Quit' to exit [SECOND_LIFE] immediately. | ||
233 | </e_new> | ||
234 | <f_translation> | ||
235 | |||
236 | あなたは[SECOND_LIFE]からログアウトされました。 | ||
237 | [MESSAGE] | ||
238 | [IMとチャットを表示]をクリックすると、現在あるIMとチャットを確認できます。 確認しない場合は、[終了]をクリックして、すぐに[SECOND_LIFE]を終了してください。 | ||
239 | |||
240 | </f_translation> | ||
241 | <f_old_trans> | ||
242 | |||
243 | あなたは[SECOND_LIFE]からログアウトされました: | ||
244 | [MESSAGE] | ||
245 | |||
246 | [続行]をクリックすると現在あるIMとチャットを確認できます。 | ||
247 | これ以外の操作はできません。 | ||
248 | [終了]をクリックして、すぐに[SECOND_LIFE]を終了してください。 | ||
249 | |||
250 | </f_old_trans> | ||
251 | </string> | ||
252 | <string> | ||
253 | <a_file>alerts.xml</a_file> | ||
254 | <b_path>//YouHaveBeenLoggedOut/Continue</b_path> | ||
255 | <c_attribute/> | ||
256 | <d_old> | ||
257 | Continue | ||
140 | </d_old> | 258 | </d_old> |
141 | <e_new> | 259 | <e_new> |
142 | Controls where and how fast the the small scaled version of the normal map moves in the X and Y direction. | 260 | View IM & Chat |
143 | </e_new> | 261 | </e_new> |
144 | <f_translation> | 262 | <f_translation> |
145 | 縮小されたノーマル・マップが移動する方向(X 軸と Y 軸で表現)と速度を制御します。 | 263 | IMとチャットを表示 |
146 | </f_translation> | 264 | </f_translation> |
147 | <f_old_trans> | 265 | <f_old_trans> |
148 | 縮められたノーマル・マップがX と Y 軸でどの方向にそしてどのくらいの速度で移動するかを制御します。 | 266 | 続行 |
149 | </f_old_trans> | 267 | </f_old_trans> |
150 | </string><string><a_file>floater_buy_land.xml</a_file> | 268 | </string> |
151 | <b_path>/buy land/land_use_reason</b_path> | 269 | <string> |
152 | <c_attribute></c_attribute> | 270 | <a_file>alerts.xml</a_file> |
271 | <b_path>//AddFriend/message</b_path> | ||
272 | <c_attribute/> | ||
153 | <d_old> | 273 | <d_old> |
154 | You hold 1,309 square meters of land. | 274 | |
155 | This parcel is 512 square meters of land. | 275 | Friends can give permissions to |
156 | </d_old> | 276 | track each other on the map and |
277 | receive online status updates. | ||
278 | |||
279 | Offer friendship to [NAME]? | ||
280 | |||
281 | </d_old> | ||
157 | <e_new> | 282 | <e_new> |
158 | You hold 1,309 square meters of land. | 283 | |
159 | This parcel is 512 square meters of land. | 284 | Friends can give permissions to track each |
160 | </e_new> | 285 | other on the map and receive online status updates. |
286 | |||
287 | Offer friendship to [NAME]? | ||
288 | |||
289 | </e_new> | ||
161 | <f_translation> | 290 | <f_translation> |
162 | あなたは1,309平方メートルの土地を所有しています。 | 291 | |
163 | この区画は512平方メートルです。 | 292 | フレンド同士は、地図上でお互いを追跡し、 |
164 | </f_translation> | 293 | オンライン・ステータスの更新情報を受信する権限を与え合うことができます。 |
294 | |||
295 | [NAME]とフレンド登録をしますか? | ||
296 | |||
297 | </f_translation> | ||
165 | <f_old_trans> | 298 | <f_old_trans> |
166 | あなたには1,309平方メートルの土地があります。 | 299 | |
167 | この区画は 512平方メートルです。 | 300 | フレンド同士は、地図上で互いを追跡し、 |
168 | </f_old_trans> | 301 | オンライン・ステータスの更新情報を受信する |
169 | </string><string><a_file>floater_buy_land.xml</a_file> | 302 | 権限を与え合うことができます。 |
170 | <b_path>/buy land/multiple_parcels_selected</b_path> | 303 | |
171 | <c_attribute></c_attribute> | 304 | [NAME]とフレンド登録をしますか? |
305 | |||
306 | </f_old_trans> | ||
307 | </string> | ||
308 | <string> | ||
309 | <a_file>alerts.xml</a_file> | ||
310 | <b_path>//ConfirmClearCookies/message</b_path> | ||
311 | <c_attribute/> | ||
172 | <d_old> | 312 | <d_old> |
173 | Multiple different parcels selected. | 313 | |
174 | Try selecting a smaller area. | 314 | Are you sure you want to clear |
175 | </d_old> | 315 | your cookies? |
316 | |||
317 | </d_old> | ||
176 | <e_new> | 318 | <e_new> |
177 | Multiple different parcels selected. | 319 | |
178 | Try selecting a smaller area. | 320 | Are you sure you want to clear your cookies? |
179 | </e_new> | 321 | |
322 | </e_new> | ||
180 | <f_translation> | 323 | <f_translation> |
181 | 複数の異なった区画を選択しました。 | 324 | 本当にクッキーをクリアしますか? |
182 | これより小さなエリアを選択してください。 | 325 | </f_translation> |
183 | </f_translation> | ||
184 | <f_old_trans> | 326 | <f_old_trans> |
185 | 複数の区域が選択されています。 | 327 | 本当にクッキーを |
186 | 選択領域を狭めてみてください。 | 328 | クリアしますか? |
187 | </f_old_trans> | 329 | </f_old_trans> |
188 | </string><string><a_file>floater_buy_land.xml</a_file> | 330 | </string> |
189 | <b_path>/buy land/not_owned_by_you</b_path> | 331 | <string> |
190 | <c_attribute></c_attribute> | 332 | <a_file>alerts.xml</a_file> |
333 | <b_path>//Cannot_Purchase_an_Attachment/message</b_path> | ||
334 | <c_attribute/> | ||
191 | <d_old> | 335 | <d_old> |
192 | Land owned by another user is selected. | 336 | |
193 | Try selecting a smaller area. | 337 | Items may not be purchased while |
194 | </d_old> | 338 | they are part of an attachment. |
339 | |||
340 | </d_old> | ||
195 | <e_new> | 341 | <e_new> |
196 | Land owned by another user is selected. | 342 | |
197 | Try selecting a smaller area. | 343 | Items may not be purchased while |
198 | </e_new> | 344 | they are part of an attachment. |
345 | |||
346 | </e_new> | ||
199 | <f_translation> | 347 | <f_translation> |
200 | 他使用者所有さ土地が選 | 348 | 付物一部間 |
201 | 小さなエを選択 | 349 | を購入。 |
202 | </f_translation> | 350 | </f_translation> |
203 | <f_old_trans> | 351 | <f_old_trans> |
204 | 選択した土地は、他のユーザーが所有しています。 | 352 | アイテムが添付物の一部である間は、 |
205 | 選択領域を狭めてみてください。 | 353 | アイテムを購入できません。 |
206 | </f_old_trans> | 354 | </f_old_trans> |
207 | </string><string><a_file>floater_buy_land.xml</a_file> | 355 | </string> |
208 | <b_path>/buy land/for_first_time_group</b_path> | 356 | <string> |
209 | <c_attribute></c_attribute> | 357 | <a_file>floater_about_land.xml</a_file> |
358 | <b_path>/floaterland/landtab/land_access_panel/estate_override</b_path> | ||
359 | <c_attribute/> | ||
210 | <d_old> | 360 | <d_old> |
211 | This land is reserved for first time buyers. | 361 | |
212 | You cannot buy it for a group. | 362 | One ore more of these options is set at the estate level |
213 | </d_old> | 363 | |
364 | </d_old> | ||
214 | <e_new> | 365 | <e_new> |
215 | This land is reserved for first time buyers. | 366 | |
216 | You cannot buy it for a group. | 367 | One or more of these options is set at the estate level |
217 | </e_new> | 368 | |
369 | </e_new> | ||
218 | <f_translation> | 370 | <f_translation> |
219 | 本土地は初めて土地購入をする人のために確保されています。 | 371 | 1つ以上のオプションが、不動産レベルで設定されています。 |
220 | グループのために購入することはできません。 | 372 | </f_translation> |
221 | </f_translation> | ||
222 | <f_old_trans> | 373 | <f_old_trans> |
223 | これは初めて土地を購入する人用の土地です。 | 374 | 1つ以上のオプションが、不動産レベルで設定されています。 |
224 | グループ用には購入できません。 | 375 | </f_old_trans> |
225 | </f_old_trans> | 376 | </string> |
226 | </string><string><a_file>floater_buy_land.xml</a_file> | 377 | <string> |
227 | <b_path>/buy land/for_first_time</b_path> | 378 | <a_file>floater_im.xml</a_file> |
228 | <c_attribute></c_attribute> | 379 | <b_path>/im_floater/muted_message</b_path> |
380 | <c_attribute/> | ||
229 | <d_old> | 381 | <d_old> |
230 | This land is reserved for first time buyers. | 382 | [FIRST] [LAST] is muted. |
231 | You already own land. | ||
232 | </d_old> | 383 | </d_old> |
233 | <e_new> | 384 | <e_new> |
234 | This land is reserved for first time buyers. | 385 | |
235 | You already own land. | 386 | You have muted this resident. Sending a message will automatically unmute them. |
236 | </e_new> | 387 | |
388 | </e_new> | ||
237 | <f_translation> | 389 | <f_translation> |
238 | 本土地は初めて土地購入をする人のために確保されています。 | 390 | |
239 | あなたは、すでに土地を所有しています。 | 391 | あなたはこの住人をミュートしています。 メッセージを送信すると、ミュートは自動的に解除されます。 |
240 | </f_translation> | 392 | |
393 | </f_translation> | ||
241 | <f_old_trans> | 394 | <f_old_trans> |
242 | これは初めて土地を購入する人用の土地です。 | 395 | 住人はミュートされています。 |
243 | あなたはすでに土地を持っています。 | ||
244 | </f_old_trans> | 396 | </f_old_trans> |
245 | </string><string><a_file>floater_gesture.xml</a_file> | 397 | </string> |
246 | <b_path>/gestures/help_label</b_path> | 398 | <string> |
247 | <c_attribute></c_attribute> | 399 | <a_file>floater_postcard.xml</a_file> |
400 | <b_path>/Postcard</b_path> | ||
401 | <c_attribute>title</c_attribute> | ||
402 | <d_old>Send Postcard</d_old> | ||
403 | <e_new>Email Snapshot</e_new> | ||
404 | <f_translation>スナップショットを電子メールで送信</f_translation> | ||
405 | <f_old_trans>ポストカードを送る</f_old_trans> | ||
406 | </string> | ||
407 | <string> | ||
408 | <a_file>floater_postcard.xml</a_file> | ||
409 | <b_path>/Postcard/fine_print</b_path> | ||
410 | <c_attribute/> | ||
248 | <d_old> | 411 | <d_old> |
249 | Click a gesture or press a key to play animations and sounds. | 412 | |
250 | </d_old> | 413 | If your postcard recipient joins SL, you'll get a referral bonus. |
414 | |||
415 | </d_old> | ||
251 | <e_new> | 416 | <e_new> |
252 | Double-click a gesture to play animations and sounds. | 417 | |
253 | </e_new> | 418 | If your recipient joins SL, you'll get a referral bonus. |
419 | |||
420 | </e_new> | ||
254 | <f_translation> | 421 | <f_translation> |
255 | スをーとンド生 | 422 | 受信SL加、たは紹ーを取ます |
256 | </f_translation> | 423 | </f_translation> |
257 | <f_old_trans> | 424 | <f_old_trans> |
258 | ジェスチャーをクリックするか、キーを押してアニメーションとサウンドを再生。 | 425 | あなたのポストカードの受信者がSLに参加すると、あなたは紹介ボーナスを受 |
426 | け取ります。 | ||
259 | </f_old_trans> | 427 | </f_old_trans> |
260 | </string><string><a_file>floater_joystick.xml</a_file> | 428 | </string> |
261 | <b_path>/Joystick</b_path> | 429 | <string> |
262 | <c_attribute>title</c_attribute> | 430 | <a_file>floater_report_abuse.xml</a_file> |
263 | <d_old>Flycam Options</d_old> | 431 | <b_path>/floater_report_abuse/category_combo/Intolerance</b_path> |
264 | <e_new>Joystick Configuration</e_new> | 432 | <c_attribute/> |
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> | 433 | <d_old> |
270 | Unable to find object containing this note.: | 434 | Intolerance |
271 | </d_old> | 435 | </d_old> |
272 | <e_new>Unable to find object containing this note.:</e_new> | 436 | <e_new> |
273 | <f_translation>このノートを含んだオブジェクトが見つかりません:</f_translation> | 437 | Intolerance |
438 | </e_new> | ||
439 | <f_translation> | ||
440 | 不寛容 | ||
441 | </f_translation> | ||
274 | <f_old_trans> | 442 | <f_old_trans> |
275 | このノートを含んだオブジェクトが見つかりません: | 443 | 非許容 |
276 | </f_old_trans> | 444 | </f_old_trans> |
277 | </string><string><a_file>panel_friends.xml</a_file> | 445 | </string> |
278 | <b_path>/friends/friend_list/icon_edit_mine</b_path> | 446 | <string> |
279 | <c_attribute>tool_tip</c_attribute> | 447 | <a_file>floater_report_abuse.xml</a_file> |
280 | <d_old>Friend can edit your objects</d_old> | 448 | <b_path>/floater_report_abuse/category_combo/Other</b_path> |
281 | <e_new>Friend can edit, delete or take objects</e_new> | 449 | <c_attribute/> |
282 | <f_translation>フレンドは、オブジェクトを編集、削除、または取得することができます。</f_translation> | ||
283 | <f_old_trans>フレンドは、あなたのオブジェクトを編集することができます。</f_old_trans> | ||
284 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
285 | <b_path>/invite_panel/invitee_list</b_path> | ||
286 | <c_attribute>tool_tip</c_attribute> | ||
287 | <d_old>Hold the Ctrl key and click resident names to multi-select.</d_old> | ||
288 | <e_new>Hold the Ctrl key and click resident names to multi-select.</e_new> | ||
289 | <f_translation>複数の住人を選択するには、Ctrlキーを押しながら住人名をクリックします。</f_translation> | ||
290 | <f_old_trans>複数の住人を選択するには、Ctrlキーを押しながら住人名をクリックします。</f_old_trans> | ||
291 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
292 | <b_path>/invite_panel/role_name</b_path> | ||
293 | <c_attribute>tool_tip</c_attribute> | ||
294 | <d_old>Choose from the list of Roles you are allowed to assign members to.</d_old> | ||
295 | <e_new>Choose from the list of Roles you are allowed to assign members to.</e_new> | ||
296 | <f_translation>メンバーに割り当て可能な役割をリストから選択。</f_translation> | ||
297 | <f_old_trans>Choose from the list of Roles you are allowed to assign members to.</f_old_trans> | ||
298 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
299 | <b_path>/invite_panel/loading</b_path> | ||
300 | <c_attribute></c_attribute> | ||
301 | <d_old> | 450 | <d_old> |
302 | (loading...) | 451 | Other |
303 | </d_old> | 452 | </d_old> |
304 | <e_new>(loading...)</e_new> | 453 | <e_new> |
305 | <f_translation>(ローディング...)</f_translation> | 454 | Other |
455 | </e_new> | ||
456 | <f_translation> | ||
457 | その他 | ||
458 | </f_translation> | ||
306 | <f_old_trans> | 459 | <f_old_trans> |
307 | (ローディング...) | 460 | その他 |
308 | </f_old_trans> | 461 | </f_old_trans> |
309 | </string><string><a_file>panel_preferences_chat.xml</a_file> | 462 | </string> |
310 | <b_path>/chat/users</b_path> | 463 | <string> |
311 | <c_attribute>label</c_attribute> | 464 | <a_file>floater_snapshot.xml</a_file> |
312 | <d_old>Users</d_old> | 465 | <b_path>/Snapshot/type_label</b_path> |
313 | <e_new>Chat</e_new> | 466 | <c_attribute/> |
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> | 467 | <d_old> |
320 | NOTE: Running the Device Settings or Voice Chat Setup will temporarily disconnect you from Voice Chat. | 468 | What would you like to do? |
321 | </d_old> | 469 | </d_old> |
322 | <e_new> | 470 | <e_new> |
323 | NOTE: Running the Device Settings will temporarily disconnect you from Voice Chat. | 471 | Snapshot destination |
324 | </e_new> | 472 | </e_new> |
325 | <f_translation> | 473 | <f_translation> |
326 | 注意:「機器の設定」を実行すると、一時的にボイス・チャットから切断されます。 | 474 | スナップショットの送り先 |
327 | </f_translation> | 475 | </f_translation> |
328 | <f_old_trans> | 476 | <f_old_trans> |
329 | メモ: 「機器の設定」または「ボイス・チャットの設定」を実行すると、一時的にボイス・チャットから切断されます。 | 477 | 何をしたいですか? |
330 | </f_old_trans> | 478 | </f_old_trans> |
331 | </string><string><a_file>panel_toolbar.xml</a_file> | 479 | </string> |
332 | <b_path>/toolbar/Redock Windows</b_path> | 480 | <string> |
333 | <c_attribute></c_attribute> | 481 | <a_file>floater_snapshot.xml</a_file> |
334 | <d_old> | 482 | <b_path>/Snapshot/snapshot_type_radio/postcard</b_path> |
335 | Redock Windows | 483 | <c_attribute/> |
336 | </d_old> | ||
337 | <e_new>Redock Windows</e_new> | ||
338 | <f_translation>ウィンドウを再置する</f_translation> | ||
339 | <f_old_trans>ウィンドウを再置する</f_old_trans> | ||
340 | </string><string><a_file>alerts.xml</a_file> | ||
341 | <b_path>//ClothingLoading/message</b_path> | ||
342 | <c_attribute></c_attribute> | ||
343 | <d_old> | 484 | <d_old> |
344 | Your clothing is still downloading. | 485 | Send a postcard |
345 | You can use the world normally, and other users | ||
346 | will see you correctly. | ||
347 | </d_old> | 486 | </d_old> |
348 | <e_new> | 487 | <e_new> |
349 | Your clothing is still downloading. | 488 | Send via email |
350 | You can use [SECOND_LIFE] normally and other users will see you correctly. | ||
351 | </e_new> | 489 | </e_new> |
352 | <f_translation> | 490 | <f_translation> |
353 | あなたの服を、ダウンロード中です。 | 491 | 電子メールで送信 |
354 | 通常どおりに[SECOND_LIFE]を使え、他のユーザーもあなたを正常に見ることができます。 | ||
355 | </f_translation> | 492 | </f_translation> |
356 | <f_old_trans> | 493 | <f_old_trans> |
357 | あなたの服をダウンロード中です。 | 494 | ポストカード送信 |
358 | 通常どおりに世界を使え、他のユーザーもあなたを | ||
359 | 正常に見ることができます。 | ||
360 | </f_old_trans> | 495 | </f_old_trans> |
361 | </string><string><a_file>floater_directory.xml</a_file> | 496 | </string> |
362 | <b_path>/directory/Directory Tabs/places_panel/searching_text</b_path> | 497 | <string> |
363 | <c_attribute></c_attribute> | 498 | <a_file>floater_snapshot.xml</a_file> |
499 | <b_path>/Snapshot/snapshot_type_radio/texture</b_path> | ||
500 | <c_attribute/> | ||
364 | <d_old> | 501 | <d_old> |
365 | Searching... | 502 | Upload a snapshot |
366 | </d_old> | 503 | </d_old> |
367 | <e_new>Searching...</e_new> | 504 | <e_new> |
368 | <f_translation>検索中...</f_translation> | 505 | Save to your inventory (L$10) |
506 | </e_new> | ||
507 | <f_translation> | ||
508 | 持ち物に保存(L$10) | ||
509 | </f_translation> | ||
369 | <f_old_trans> | 510 | <f_old_trans> |
370 | 検索中... | 511 | アップロード |
371 | </f_old_trans> | 512 | </f_old_trans> |
372 | </string><string><a_file>floater_directory.xml</a_file> | 513 | </string> |
373 | <b_path>/directory/Directory Tabs/places_panel/not_found_text</b_path> | 514 | <string> |
374 | <c_attribute></c_attribute> | 515 | <a_file>floater_snapshot.xml</a_file> |
516 | <b_path>/Snapshot/snapshot_type_radio/local</b_path> | ||
517 | <c_attribute/> | ||
375 | <d_old> | 518 | <d_old> |
376 | None Found. | 519 | Save snapshot to hard drive |
377 | </d_old> | 520 | </d_old> |
378 | <e_new>None Found.</e_new> | 521 | <e_new> |
379 | <f_translation>何も見つかりませんでした。</f_translation> | 522 | Save to your hard drive |
523 | </e_new> | ||
524 | <f_translation> | ||
525 | ハードディスクに保存 | ||
526 | </f_translation> | ||
380 | <f_old_trans> | 527 | <f_old_trans> |
381 | 何も見つかりませんでした | 528 | ハード・ドライブに保存 |
382 | </f_old_trans> | 529 | </f_old_trans> |
383 | </string><string><a_file>floater_directory.xml</a_file> | 530 | </string> |
384 | <b_path>/directory/Directory Tabs/people_panel/find</b_path> | 531 | <string> |
385 | <c_attribute></c_attribute> | 532 | <a_file>floater_snapshot.xml</a_file> |
533 | <b_path>/Snapshot/upload_btn</b_path> | ||
534 | <c_attribute>label</c_attribute> | ||
535 | <d_old>Upload (L$10)</d_old> | ||
536 | <e_new>Save (L$10)</e_new> | ||
537 | <f_translation>保存(L$10)</f_translation> | ||
538 | <f_old_trans>アップロードL$10</f_old_trans> | ||
539 | </string> | ||
540 | <string> | ||
541 | <a_file>floater_snapshot.xml</a_file> | ||
542 | <b_path>/Snapshot/type_label2</b_path> | ||
543 | <c_attribute/> | ||
386 | <d_old> | 544 | <d_old> |
387 | Find: | 545 | What size image do you need? |
388 | </d_old> | 546 | </d_old> |
389 | <e_new> | 547 | <e_new> |
390 | Find: | 548 | Size |
391 | </e_new> | 549 | </e_new> |
392 | <f_translation> | 550 | <f_translation> |
393 | 索: | 551 | サズ |
394 | </f_translation> | 552 | </f_translation> |
395 | <f_old_trans> | 553 | <f_old_trans> |
396 | 検索: | 554 | どんな大きさの画像が必要ですか? |
397 | </f_old_trans> | 555 | </f_old_trans> |
398 | </string><string><a_file>floater_directory.xml</a_file> | 556 | </string> |
399 | <b_path>/directory/Directory Tabs/groups_panel/searching_text</b_path> | 557 | <string> |
400 | <c_attribute></c_attribute> | 558 | <a_file>floater_snapshot.xml</a_file> |
559 | <b_path>/Snapshot/auto_snapshot_check</b_path> | ||
560 | <c_attribute>label</c_attribute> | ||
561 | <d_old>Auto-snapshot</d_old> | ||
562 | <e_new>Auto-refresh</e_new> | ||
563 | <f_translation>自動更新</f_translation> | ||
564 | <f_old_trans>自動スナップショット</f_old_trans> | ||
565 | </string> | ||
566 | <string> | ||
567 | <a_file>menu_pie_avatar.xml</a_file> | ||
568 | <b_path>/Avatar Pie/Add Friend</b_path> | ||
569 | <c_attribute>label</c_attribute> | ||
570 | <d_old>Add Friend</d_old> | ||
571 | <e_new>Add Friend...</e_new> | ||
572 | <f_translation>フレンドを追加...</f_translation> | ||
573 | <f_old_trans>フレンドを追加</f_old_trans> | ||
574 | </string> | ||
575 | <string> | ||
576 | <a_file>notify.xml</a_file> | ||
577 | <b_path>//OfferFriendship/message</b_path> | ||
578 | <c_attribute/> | ||
401 | <d_old> | 579 | <d_old> |
402 | Searching... | 580 | |
403 | </d_old> | 581 | [NAME] is offering friendship. |
404 | <e_new>Searching...</e_new> | 582 | |
405 | <f_translation>検索中...</f_translation> | 583 | By default, you will be able to |
584 | see each other's online status. | ||
585 | |||
586 | </d_old> | ||
587 | <e_new> | ||
588 | |||
589 | [NAME] is offering friendship. | ||
590 | |||
591 | [MESSAGE] | ||
592 | |||
593 | (By default, you will be able to see each other's online status.) | ||
594 | |||
595 | </e_new> | ||
596 | <f_translation> | ||
597 | |||
598 | [NAME]は、フレンドを贈っています。 | ||
599 | |||
600 | [MESSAGE] | ||
601 | |||
602 | (デフォルトでお互いのオンライン・ステータスを見ることができるようになります。) | ||
603 | |||
604 | </f_translation> | ||
406 | <f_old_trans> | 605 | <f_old_trans> |
407 | 検索中... | 606 | |
408 | </f_old_trans> | 607 | [NAME] は、フレンドシップを贈っています。 |
409 | </string><string><a_file>floater_directory.xml</a_file> | 608 | |
410 | <b_path>/directory/Directory Tabs/groups_panel/not_found_text</b_path> | 609 | デフォルトでお互いのオンライン・ステータスを見ることができるようになります。 |
411 | <c_attribute></c_attribute> | 610 | |
611 | </f_old_trans> | ||
612 | </string> | ||
613 | <string> | ||
614 | <a_file>notify.xml</a_file> | ||
615 | <b_path>//FailedToLoadWearableUnnamed/message</b_path> | ||
616 | <c_attribute/> | ||
412 | <d_old> | 617 | <d_old> |
413 | None Found. | 618 | |
414 | </d_old> | 619 | Failed to load [TYPE]. |
415 | <e_new>None Found.</e_new> | 620 | Please notify the vendor from whom you purchased this item. |
416 | <f_translation>何も見つかりませんでした。</f_translation> | 621 | |
622 | </d_old> | ||
623 | <e_new> | ||
624 | |||
625 | Oops! | ||
626 | You tried to wear a [TYPE] and it did not load. | ||
627 | |||
628 | Don't panic. | ||
629 | Try again in a minute to give things a chance to settle down. | ||
630 | |||
631 | </e_new> | ||
632 | <f_translation> | ||
633 | |||
634 | おっと! | ||
635 | まだ読み込まれていないため、[TYPE]を装着できません。 | ||
636 | |||
637 | すこし時間がたてば状況が改善されるはずですので、しばらくしてからもう一度試してみてください | ||
638 | |||
639 | </f_translation> | ||
417 | <f_old_trans> | 640 | <f_old_trans> |
418 | 何も見つかりませんでした | 641 | |
419 | </f_old_trans> | 642 | [TYPE]をロードできませんでした。 |
420 | </string><string><a_file>floater_script_debug.xml</a_file> | 643 | このアイテムを購入した販売者に通知してください。 |
421 | <b_path>/script debug floater</b_path> | 644 | |
422 | <c_attribute>title</c_attribute> | 645 | </f_old_trans> |
423 | <d_old>Script Errors/Warning</d_old> | 646 | </string> |
424 | <e_new>Script Warning/Error</e_new> | 647 | <string> |
425 | <f_translation>スクリプト警告/エラー</f_translation> | 648 | <a_file>notify.xml</a_file> |
426 | <f_old_trans>スクリプト・エラー/警告</f_old_trans> | 649 | <b_path>//FailedToLoadWearable/message</b_path> |
427 | </string><string><a_file>floater_world_map.xml</a_file> | 650 | <c_attribute/> |
428 | <b_path>/worldmap/friend combo</b_path> | ||
429 | <c_attribute>label</c_attribute> | ||
430 | <d_old>My Friends</d_old> | ||
431 | <e_new>Online Friends</e_new> | ||
432 | <f_translation>オンラインのフレンド</f_translation> | ||
433 | <f_old_trans>自分のフレンド</f_old_trans> | ||
434 | </string><string><a_file>floater_world_map.xml</a_file> | ||
435 | <b_path>/worldmap/friend combo/none_selected</b_path> | ||
436 | <c_attribute></c_attribute> | ||
437 | <d_old> | 651 | <d_old> |
438 | My Friends | 652 | |
439 | </d_old> | 653 | Failed to load [TYPE] named [DESC]. |
654 | Please notify the vendor from whom you purchased this item. | ||
655 | |||
656 | </d_old> | ||
440 | <e_new> | 657 | <e_new> |
441 | Online Friends | 658 | |
442 | </e_new> | 659 | Oops! |
660 | You tried to wear [TYPE] named [DESC] and it did not load. | ||
661 | |||
662 | Don't panic. | ||
663 | Try again in a minute to give things a chance to settle down. | ||
664 | |||
665 | </e_new> | ||
443 | <f_translation> | 666 | <f_translation> |
444 | オンラインのフレンド | 667 | |
445 | </f_translation> | 668 | おっと! |
669 | まだ読み込まれていないため、[DESC]という名前の[TYPE]を装着できません。 | ||
670 | |||
671 | すこし時間がたてば状況が改善されるはずですので、しばらくしてからもう一度試してみてください | ||
672 | |||
673 | </f_translation> | ||
446 | <f_old_trans> | 674 | <f_old_trans> |
447 | 自分のフレンド | 675 | |
448 | </f_old_trans> | 676 | [DESC]という名前の[TYPE]をロードできませんでした。 |
449 | </string><string><a_file>floater_world_map.xml</a_file> | 677 | 本アイテムを購入した販売者に通知してください。 |
450 | <b_path>/worldmap/landmark combo</b_path> | 678 | |
451 | <c_attribute>label</c_attribute> | 679 | </f_old_trans> |
452 | <d_old>My Landmarks</d_old> | 680 | </string> |
453 | <e_new>Landmarks</e_new> | 681 | <string> |
454 | <f_translation>ランドマーク</f_translation> | 682 | <a_file>notify.xml</a_file> |
455 | <f_old_trans>自分のランドマーク</f_old_trans> | 683 | <b_path>//FirstTeleport/message</b_path> |
456 | </string><string><a_file>floater_world_map.xml</a_file> | 684 | <c_attribute/> |
457 | <b_path>/worldmap/landmark combo/none_selected</b_path> | ||
458 | <c_attribute></c_attribute> | ||
459 | <d_old> | 685 | <d_old> |
460 | My Landmarks | 686 | |
461 | </d_old> | 687 | You have just teleported. |
688 | You are at the Infohub nearest your destination. | ||
689 | Your destination is marked with a tall red beacon. | ||
690 | |||
691 | </d_old> | ||
462 | <e_new> | 692 | <e_new> |
463 | Landmarks | 693 | |
464 | </e_new> | 694 | This region doesn't allow point-to-point teleports, so you've been transported to the nearest telehub. |
695 | Your destination is marked with a tall beacon. | ||
696 | Follow the red arrow to the beacon, or click the arrow to dismiss the beacon. | ||
697 | |||
698 | </e_new> | ||
465 | <f_translation> | 699 | <f_translation> |
466 | ランドマーク | 700 | |
467 | </f_translation> | 701 | この地域では、ポイント間のテレポートが認められていませんので、最も近いテレハブ周辺に移動しました。 |
702 | あなたの目的地は、大きなビーコンで標されています。赤い矢印に続いて進むとビーコンへ辿り着きます。 | ||
703 | 矢印をクリックするとビーコンを消せます | ||
704 | |||
705 | </f_translation> | ||
468 | <f_old_trans> | 706 | <f_old_trans> |
469 | 自分のランドマーク | 707 | |
470 | </f_old_trans> | 708 | あなたはたった今、テレポートしました。 |
471 | </string><string><a_file>panel_avatar_classified.xml</a_file> | 709 | あなたの目的地に一番近いインフォハブにいます。 |
472 | <b_path>/Classified/classified_mature_check</b_path> | 710 | 目的地は、背の高い赤い標識で示されています。 |
711 | |||
712 | </f_old_trans> | ||
713 | </string> | ||
714 | <string> | ||
715 | <a_file>panel_login.xml</a_file> | ||
716 | <b_path>/panel_login/connect_btn</b_path> | ||
473 | <c_attribute>label</c_attribute> | 717 | <c_attribute>label</c_attribute> |
474 | <d_old>Mature</d_old> | 718 | <d_old>Connect</d_old> |
475 | <e_new></e_new> | 719 | <e_new>Enter Second Life</e_new> |
476 | <f_translation></f_translation> | 720 | <f_translation>Second Lifeに入る</f_translation> |
477 | <f_old_trans>成人</f_old_trans> | 721 | <f_old_trans>接続</f_old_trans> |
478 | </string><string><a_file>panel_group_notices.xml</a_file> | 722 | </string> |
479 | <b_path>/notices_tab/lbl2</b_path> | 723 | <string> |
480 | <c_attribute></c_attribute> | 724 | <a_file>panel_preferences_chat.xml</a_file> |
725 | <b_path>/chat/script_error</b_path> | ||
726 | <c_attribute>label</c_attribute> | ||
727 | <d_old>Color</d_old> | ||
728 | <e_new>Errors</e_new> | ||
729 | <f_translation>エラー</f_translation> | ||
730 | <f_old_trans>色</f_old_trans> | ||
731 | </string> | ||
732 | <string> | ||
733 | <a_file>panel_preferences_skins.xml</a_file> | ||
734 | <b_path>/Skins panel/skin_selection/default</b_path> | ||
735 | <c_attribute/> | ||
481 | <d_old> | 736 | <d_old> |
482 | Notices are kept for 30 days. Click the notice below you wish to view. | 737 | Classic |
483 | Click the 'Refresh' button to check if new notices have been received. | 738 | </d_old> |
484 | </d_old> | ||
485 | <e_new> | 739 | <e_new> |
486 | Notices are kept for 14 days. Click the notice below you wish to view. | 740 | Default |
487 | Click the 'Refresh' button to check if new notices have been received. | 741 | </e_new> |
488 | Notice lists are limited to 200 notices per group on a daily basis. | ||
489 | </e_new> | ||
490 | <f_translation> | 742 | <f_translation> |
491 | 通知は、14日間保存されます。閲覧したい通知をクリックしてください。 | 743 | デフォルト |
492 | 新着の通知をチェックするには、[更新]ボタンをクリックします。 | 744 | </f_translation> |
493 | ただし、各グループの通知リストは1日あたり200通に制限されます。 | ||
494 | </f_translation> | ||
495 | <f_old_trans> | ||
496 | 通知は、14日間保存されます。 閲覧したい通知をクリックしてください。 | ||
497 | 新着の通知をチェックするには、[更新]ボタンをクリックします。 | ||
498 | </f_old_trans> | ||
499 | </string><string><a_file>panel_login.xml</a_file> | ||
500 | <b_path>/panel_login/forgot_password_text</b_path> | ||
501 | <c_attribute></c_attribute> | ||
502 | <d_old> | ||
503 | Forgot your password? | ||
504 | </d_old> | ||
505 | <e_new>Forgot your name or password? | ||
506 | </e_new> | ||
507 | <f_translation>名前またはパスワードをお忘れですか? | ||
508 | </f_translation> | ||
509 | <f_old_trans> | 745 | <f_old_trans> |
510 | 忘ですか? | 746 | ク |
511 | </f_old_trans> | 747 | </f_old_trans> |
512 | </string> | 748 | </string> |
749 | <string> | ||
750 | <a_file>panel_region_debug.xml</a_file> | ||
751 | <b_path>/Debug/choose_avatar_btn</b_path> | ||
752 | <c_attribute>label</c_attribute> | ||
753 | <d_old>Choose Avatar...</d_old> | ||
754 | <e_new>Choose...</e_new> | ||
755 | <f_translation>選択...</f_translation> | ||
756 | <f_old_trans>アバターを選択...</f_old_trans> | ||
757 | </string> | ||
758 | |||
513 | </strings> | 759 | </strings> |
diff --git a/linden/indra/newview/skins/default/xui/ja/notify.xml b/linden/indra/newview/skins/default/xui/ja/notify.xml index 97a56cc..862a8a1 100644 --- a/linden/indra/newview/skins/default/xui/ja/notify.xml +++ b/linden/indra/newview/skins/default/xui/ja/notify.xml | |||
@@ -575,9 +575,11 @@ | |||
575 | </notify> | 575 | </notify> |
576 | <notify name="OfferFriendship"> | 576 | <notify name="OfferFriendship"> |
577 | <message name="message"> | 577 | <message name="message"> |
578 | [NAME] は、フレンドシップを贈っています。 | 578 | [NAME]は、フレンドを贈っています。 |
579 | 579 | ||
580 | デフォルトでお互いのオンライン・ステータスを見ることができるようになります。 | 580 | [MESSAGE] |
581 | |||
582 | (デフォルトでお互いのオンライン・ステータスを見ることができるようになります。) | ||
581 | </message> | 583 | </message> |
582 | <option name="Accept"> | 584 | <option name="Accept"> |
583 | 受け入れる | 585 | 受け入れる |
@@ -586,6 +588,19 @@ | |||
586 | 辞退 | 588 | 辞退 |
587 | </option> | 589 | </option> |
588 | </notify> | 590 | </notify> |
591 | <notify name="OfferFriendshipNoMessage"> | ||
592 | <message name="message"> | ||
593 | [NAME]は、フレンドシップを贈っています。 | ||
594 | |||
595 | (デフォルトでお互いのオンライン・ステータスを見ることができるようになります。) | ||
596 | </message> | ||
597 | <option name="Accept"> | ||
598 | 受け入れる | ||
599 | </option> | ||
600 | <option name="Decline"> | ||
601 | 拒否 | ||
602 | </option> | ||
603 | </notify> | ||
589 | <notify name="FriendshipAccepted"> | 604 | <notify name="FriendshipAccepted"> |
590 | <message name="message"> | 605 | <message name="message"> |
591 | [NAME]は、フレンドシップを受け入れました。 | 606 | [NAME]は、フレンドシップを受け入れました。 |
@@ -638,14 +653,18 @@ | |||
638 | </notify> | 653 | </notify> |
639 | <notify name="FailedToLoadWearableUnnamed"> | 654 | <notify name="FailedToLoadWearableUnnamed"> |
640 | <message name="message"> | 655 | <message name="message"> |
641 | [TYPE]をロードできませんでした。 | 656 | おっと! |
642 | このアイテムを購入した販売者に通知してください。 | 657 | まだ読み込まれていないため、[TYPE]を装着できません。 |
658 | |||
659 | すこし時間がたてば状況が改善されるはずですので、しばらくしてからもう一度試してみてください | ||
643 | </message> | 660 | </message> |
644 | </notify> | 661 | </notify> |
645 | <notify name="FailedToLoadWearable"> | 662 | <notify name="FailedToLoadWearable"> |
646 | <message name="message"> | 663 | <message name="message"> |
647 | [DESC]という名前の[TYPE]をロードできませんでした。 | 664 | おっと! |
648 | 本アイテムを購入した販売者に通知してください。 | 665 | まだ読み込まれていないため、[DESC]という名前の[TYPE]を装着できません。 |
666 | |||
667 | すこし時間がたてば状況が改善されるはずですので、しばらくしてからもう一度試してみてください | ||
649 | </message> | 668 | </message> |
650 | </notify> | 669 | </notify> |
651 | <notify name="FailedToFindWearableUnnamed"> | 670 | <notify name="FailedToFindWearableUnnamed"> |
@@ -830,9 +849,9 @@ | |||
830 | </notify> | 849 | </notify> |
831 | <notify name="FirstTeleport"> | 850 | <notify name="FirstTeleport"> |
832 | <message name="message"> | 851 | <message name="message"> |
833 | あなたはたった今、テレポートしました。 | 852 | この地域では、ポイント間のテレポートが認められていませんので、最も近いテレハブ周辺に移動しました。 |
834 | あなたの目的地に一番近いインフォハブにいます。 | 853 | あなたの目的地は、大きなビーコンで標されています。赤い矢印に続いて進むとビーコンへ辿り着きます。 |
835 | 的高赤識示ます。 | 854 | すー消ます |
836 | </message> | 855 | </message> |
837 | </notify> | 856 | </notify> |
838 | <notify name="FirstOverrideKeys"> | 857 | <notify name="FirstOverrideKeys"> |
diff --git a/linden/indra/newview/skins/default/xui/ja/panel_login.xml b/linden/indra/newview/skins/default/xui/ja/panel_login.xml index f908a1f..c3b95f6 100644 --- a/linden/indra/newview/skins/default/xui/ja/panel_login.xml +++ b/linden/indra/newview/skins/default/xui/ja/panel_login.xml | |||
@@ -30,11 +30,14 @@ | |||
30 | <button label="新規アカウント..." label_selected="新規アカウント..." | 30 | <button label="新規アカウント..." label_selected="新規アカウント..." |
31 | name="new_account_btn" /> | 31 | name="new_account_btn" /> |
32 | <button label="環境設定..." label_selected="環境設定..." name="preferences_btn" /> | 32 | <button label="環境設定..." label_selected="環境設定..." name="preferences_btn" /> |
33 | <button label="続" label_selected="接続" name="connect_btn" /> | 33 | <button label="Second Lifeにる" label_selected="接続" name="connect_btn" /> |
34 | <button label="終了" label_selected="終了" name="quit_btn" /> | 34 | <button label="終了" label_selected="終了" name="quit_btn" /> |
35 | <text name="version_text"> | 35 | <text name="version_text"> |
36 | 1.23.4 (5) | 36 | 1.23.4 (5) |
37 | </text> | 37 | </text> |
38 | <text name="create_new_account_text"> | ||
39 | 新しいアカウントを作成します。 | ||
40 | </text> | ||
38 | <text name="channel_text"> | 41 | <text name="channel_text"> |
39 | [Viewer Channel Name] | 42 | [Viewer Channel Name] |
40 | </text> | 43 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/ja/panel_preferences_chat.xml b/linden/indra/newview/skins/default/xui/ja/panel_preferences_chat.xml index 12f009f..d4f5a6b 100644 --- a/linden/indra/newview/skins/default/xui/ja/panel_preferences_chat.xml +++ b/linden/indra/newview/skins/default/xui/ja/panel_preferences_chat.xml | |||
@@ -17,6 +17,8 @@ | |||
17 | <text type="string" length="1" name="text_box2"> | 17 | <text type="string" length="1" name="text_box2"> |
18 | チャット・カラー: | 18 | チャット・カラー: |
19 | </text> | 19 | </text> |
20 | <color_swatch label="貴方" name="user" /> | ||
21 | <color_swatch label="その他" name="agent" /> | ||
20 | <color_swatch label="IM" name="im" /> | 22 | <color_swatch label="IM" name="im" /> |
21 | <color_swatch label="システム" name="system" /> | 23 | <color_swatch label="システム" name="system" /> |
22 | <color_swatch label="チャット" name="users" /> | 24 | <color_swatch label="チャット" name="users" /> |
@@ -47,6 +49,8 @@ | |||
47 | name="arrow_keys_move_avatar_check" /> | 49 | name="arrow_keys_move_avatar_check" /> |
48 | <check_box label="チャットにタイムスタンプを表示" | 50 | <check_box label="チャットにタイムスタンプを表示" |
49 | name="show_timestamps_check" /> | 51 | name="show_timestamps_check" /> |
52 | <check_box label="タイピング動作のアニメーションを再生" | ||
53 | name="play_typing_animation" /> | ||
50 | <text type="string" length="1" name="text_box7"> | 54 | <text type="string" length="1" name="text_box7"> |
51 | チャットの吹き出し: | 55 | チャットの吹き出し: |
52 | </text> | 56 | </text> |
@@ -57,5 +61,5 @@ | |||
57 | </text> | 61 | </text> |
58 | <check_box label="スクリプト・エラーと警告をチャット同様に表示" | 62 | <check_box label="スクリプト・エラーと警告をチャット同様に表示" |
59 | name="script_errors_as_chat" /> | 63 | name="script_errors_as_chat" /> |
60 | <color_swatch label="色" name="script_error" /> | 64 | <color_swatch label="エラー" name="script_error" /> |
61 | </panel> | 65 | </panel> |
diff --git a/linden/indra/newview/skins/default/xui/ja/panel_preferences_general.xml b/linden/indra/newview/skins/default/xui/ja/panel_preferences_general.xml index 213d1ed..afa74af 100644 --- a/linden/indra/newview/skins/default/xui/ja/panel_preferences_general.xml +++ b/linden/indra/newview/skins/default/xui/ja/panel_preferences_general.xml | |||
@@ -126,4 +126,6 @@ | |||
126 | Español (スペイン語) – ベータ | 126 | Español (スペイン語) – ベータ |
127 | </combo_item> | 127 | </combo_item> |
128 | </combo_box> | 128 | </combo_box> |
129 | <check_box label="言語をオブジェクトと共有" name="language_is_public" | ||
130 | tool_tip="優先言語をインワールドのオブジェクトが認識する" /> | ||
129 | </panel> | 131 | </panel> |
diff --git a/linden/indra/newview/skins/default/xui/ja/panel_preferences_im.xml b/linden/indra/newview/skins/default/xui/ja/panel_preferences_im.xml index 4c79ae2..b5352cf 100644 --- a/linden/indra/newview/skins/default/xui/ja/panel_preferences_im.xml +++ b/linden/indra/newview/skins/default/xui/ja/panel_preferences_im.xml | |||
@@ -15,6 +15,8 @@ | |||
15 | <check_box label="IMを電子メール([EMAIL])へ送信" name="send_im_to_email" /> | 15 | <check_box label="IMを電子メール([EMAIL])へ送信" name="send_im_to_email" /> |
16 | <check_box label="チャット履歴にIMを含める" name="include_im_in_chat_history" /> | 16 | <check_box label="チャット履歴にIMを含める" name="include_im_in_chat_history" /> |
17 | <check_box label="IMにタイムスタンプを表示" name="show_timestamps_check" /> | 17 | <check_box label="IMにタイムスタンプを表示" name="show_timestamps_check" /> |
18 | <check_box label="オンライン・フレンド通知を表示" | ||
19 | name="friends_online_notify_checkbox" /> | ||
18 | <text name="text_box4"> | 20 | <text name="text_box4"> |
19 | 記録オプション: | 21 | 記録オプション: |
20 | </text> | 22 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/ja/panel_preferences_popups.xml b/linden/indra/newview/skins/default/xui/ja/panel_preferences_popups.xml index 667582b..9cfd29e 100644 --- a/linden/indra/newview/skins/default/xui/ja/panel_preferences_popups.xml +++ b/linden/indra/newview/skins/default/xui/ja/panel_preferences_popups.xml | |||
@@ -23,4 +23,7 @@ | |||
23 | <button label="「次に見せる」ダイアログ全てを省略..." | 23 | <button label="「次に見せる」ダイアログ全てを省略..." |
24 | name="skip_dialogs_btn" | 24 | name="skip_dialogs_btn" |
25 | tool_tip="全てのオプショナルポップアップと「初回使用」通知を無効にしてください。" /> | 25 | tool_tip="全てのオプショナルポップアップと「初回使用」通知を無効にしてください。" /> |
26 | <check_box | ||
27 | label="新たに受け取ったオブジェクトを持ち物に自動的に表示" | ||
28 | name="show_in_inventory" /> | ||
26 | </panel> | 29 | </panel> |
diff --git a/linden/indra/newview/skins/default/xui/ja/panel_preferences_skins.xml b/linden/indra/newview/skins/default/xui/ja/panel_preferences_skins.xml index 5742cc6..63ab827 100644 --- a/linden/indra/newview/skins/default/xui/ja/panel_preferences_skins.xml +++ b/linden/indra/newview/skins/default/xui/ja/panel_preferences_skins.xml | |||
@@ -5,7 +5,7 @@ | |||
5 | </text> | 5 | </text> |
6 | <radio_group name="skin_selection"> | 6 | <radio_group name="skin_selection"> |
7 | <radio_item name="default"> | 7 | <radio_item name="default"> |
8 | 8 | ||
9 | </radio_item> | 9 | </radio_item> |
10 | <radio_item name="silver"> | 10 | <radio_item name="silver"> |
11 | シルバー | 11 | シルバー |
diff --git a/linden/indra/newview/skins/default/xui/ja/panel_region_debug.xml b/linden/indra/newview/skins/default/xui/ja/panel_region_debug.xml index 321c261..5a3a334 100644 --- a/linden/indra/newview/skins/default/xui/ja/panel_region_debug.xml +++ b/linden/indra/newview/skins/default/xui/ja/panel_region_debug.xml | |||
@@ -16,12 +16,25 @@ | |||
16 | tool_tip="この地域の物理作用をすべて無効化" /> | 16 | tool_tip="この地域の物理作用をすべて無効化" /> |
17 | <button label="?" name="disable_physics_help" /> | 17 | <button label="?" name="disable_physics_help" /> |
18 | <button label="適用" name="apply_btn" /> | 18 | <button label="適用" name="apply_btn" /> |
19 | <button label="アバターを選択..." name="choose_avatar_btn" /> | 19 | <line_editor name="target_avatar_name"> |
20 | (なし) | ||
21 | </line_editor> | ||
22 | <button label="選択..." name="choose_avatar_btn" /> | ||
20 | <button | 23 | <button |
21 | label="人の土地のアバター・スクリプト・オブジェクトを返却" | 24 | label="人の土地のアバター・スクリプト・オブジェクトを返却" |
22 | name="return_scripted_other_land_btn" /> | 25 | name="return_scripted_other_land_btn" /> |
23 | <button label="アバターのスクリプト・オブジェクトをすべて返却" | 26 | <button label="アバターのスクリプト・オブジェクトをすべて返却" |
24 | name="return_scripted_all_btn" /> | 27 | name="return_scripted_all_btn" /> |
28 | <check_box label="スクリプトのあるオブジェクトのみを返却" | ||
29 | name="return_scripts" | ||
30 | tool_tip="スクリプトがあるオブジェクトのみを返却" /> | ||
31 | <check_box label="他人の土地にあるオブジェクトのみを返却" | ||
32 | name="return_other_land" | ||
33 | tool_tip="他人に属する土地にあるオブジェクトのみを返却" /> | ||
34 | <check_box label="この不動産の各地域のオブジェクトを返却" | ||
35 | name="return_estate_wide" | ||
36 | tool_tip="この不動産に含まれているすべての地域のオブジェクトを返却" /> | ||
37 | <button label="返却" name="return_btn" /> | ||
25 | <button label="上部コライダー取得" name="top_colliders_btn" | 38 | <button label="上部コライダー取得" name="top_colliders_btn" |
26 | tool_tip="衝突する可能性が最も高いオブジェクトのリスト" /> | 39 | tool_tip="衝突する可能性が最も高いオブジェクトのリスト" /> |
27 | <button label="?" name="top_colliders_help" /> | 40 | <button label="?" name="top_colliders_help" /> |
diff --git a/linden/indra/newview/skins/default/xui/ja/panel_region_estate.xml b/linden/indra/newview/skins/default/xui/ja/panel_region_estate.xml index d2fd70e..26b3432 100644 --- a/linden/indra/newview/skins/default/xui/ja/panel_region_estate.xml +++ b/linden/indra/newview/skins/default/xui/ja/panel_region_estate.xml | |||
@@ -24,6 +24,12 @@ | |||
24 | tool_tip="年齢確認を済ませていない住人を排除する詳細については、support.secondlife.comを参照してください。" /> | 24 | tool_tip="年齢確認を済ませていない住人を排除する詳細については、support.secondlife.comを参照してください。" /> |
25 | <check_box label="ボイスチャットを許可" name="voice_chat_check" /> | 25 | <check_box label="ボイスチャットを許可" name="voice_chat_check" /> |
26 | <button label="?" name="voice_chat_help" /> | 26 | <button label="?" name="voice_chat_help" /> |
27 | <text name="abuse_email_text"> | ||
28 | 嫌がらせに関するメール先: | ||
29 | </text> | ||
30 | <string name="email_unsupported"> | ||
31 | サポートされていない機能 | ||
32 | </string> | ||
27 | <button label="?" name="abuse_email_address_help" /> | 33 | <button label="?" name="abuse_email_address_help" /> |
28 | <text name="estate_manager_label"> | 34 | <text name="estate_manager_label"> |
29 | 不動産マネージャー: | 35 | 不動産マネージャー: |
diff --git a/linden/indra/newview/skins/default/xui/ja/role_actions.xml b/linden/indra/newview/skins/default/xui/ja/role_actions.xml index c0c98b3..2ad6607 100644 --- a/linden/indra/newview/skins/default/xui/ja/role_actions.xml +++ b/linden/indra/newview/skins/default/xui/ja/role_actions.xml | |||
@@ -5,13 +5,13 @@ | |||
5 | name="Membership"> | 5 | name="Membership"> |
6 | <action description="このグループに人を招待" | 6 | <action description="このグループに人を招待" |
7 | longdescription="グループに人を招待するには、[メンバーと役割]タブ>[メンバー]サブタブの[新しい人を招待...]ボタンを使います。" | 7 | longdescription="グループに人を招待するには、[メンバーと役割]タブ>[メンバー]サブタブの[新しい人を招待...]ボタンを使います。" |
8 | name="member invite" value="1" /> | 8 | name="member invite" value="1" /> |
9 | <action description="メンバーをこのグループから追放" | 9 | <action description="メンバーをこのグループから追放" |
10 | longdescription="メンバーをこのグループから追放するには、[メンバーと役割]タブ > [役割]サブタブの[グループから追放]を使います。 オーナーは、他のオーナー以外の任意のメンバーを追放できます。 オーナーでないユーザーがグループからメンバーを追放できるのは、そのメンバーが「全員」の役割にのみ所属しており、他の役割に所属していない場合だけです。 役割からメンバーを除外するには、「役割からメンバーを除外」能力を有している必要があります。" | 10 | longdescription="メンバーをこのグループから追放するには、[メンバーと役割]タブ > [役割]サブタブの[グループから追放]を使います。 オーナーは、他のオーナー以外の任意のメンバーを追放できます。 オーナーでないユーザーがグループからメンバーを追放できるのは、そのメンバーが「全員」の役割にのみ所属しており、他の役割に所属していない場合だけです。 役割からメンバーを除外するには、「役割からメンバーを除外」能力を有している必要があります。" |
11 | name="member eject" value="2" /> | 11 | name="member eject" value="2" /> |
12 | <action description="[会員募集]に切り替え、[入会費]を変更。" | 12 | <action description="[会員募集]に切り替え、[入会費]を変更。" |
13 | longdescription="招待状なしに新メンバーが加入できるように[会員募集]に切り替え、[一般]タブの[グループ環境設定]セクションから[入会費]を変更します。" | 13 | longdescription="招待状なしに新メンバーが加入できるように[会員募集]に切り替え、[一般]タブの[グループ環境設定]セクションから[入会費]を変更します。" |
14 | name="member options" value="3" /> | 14 | name="member options" value="3" /> |
15 | </action_set> | 15 | </action_set> |
16 | <action_set | 16 | <action_set |
17 | description="これらの能力には、グループ内の役割を追加、削除、変更し、役割にメンバーを追加、削除し、さらに役割へ能力を割り当てる権限が含まれます。" | 17 | description="これらの能力には、グループ内の役割を追加、削除、変更し、役割にメンバーを追加、削除し、さらに役割へ能力を割り当てる権限が含まれます。" |
@@ -181,4 +181,25 @@ | |||
181 | longdescription="この能力を持つ役割のメンバーは、グループ情報>提案タブで提案に投票することができます。" | 181 | longdescription="この能力を持つ役割のメンバーは、グループ情報>提案タブで提案に投票することができます。" |
182 | name="proposal vote" value="45" /> | 182 | name="proposal vote" value="45" /> |
183 | </action_set> | 183 | </action_set> |
184 | <action_set | ||
185 | description=" | ||
186 | これらのアビリティには、グループ・チャット・セッションやグループ・ボイス・チャットへのアクセスの許可や制限の権限が含まれます。 | ||
187 | " | ||
188 | name="Chat"> | ||
189 | <action description="グループ・チャットに参加する" | ||
190 | longdescription=" | ||
191 | このアビリティを持つ役割のメンバーは、グループ・チャット・セッションにテキストおよびボイスで参加できます。 | ||
192 | " | ||
193 | name="join group chat" /> | ||
194 | <action description="グループ・ボイス・チャットに参加する" | ||
195 | longdescription=" | ||
196 | このアビリティを持つ役割のメンバーは、グループ・ボイス・チャット・セッションに参加できます。 注: ボイス・チャット・セッションにアクセスするには、グループ・チャットに参加するアビリティが必要です。 | ||
197 | " | ||
198 | name="join voice chat" /> | ||
199 | <action description="グループ・チャットを管理する" | ||
200 | longdescription=" | ||
201 | このアビリティを持つ役割のメンバーは、グループ・ボイス・チャット・セッションおよびグループ・テキスト・チャット・セッションへのアクセスや参加をコントロールすることができます。 | ||
202 | " | ||
203 | name="moderate group chat" /> | ||
204 | </action_set> | ||
184 | </role_actions> | 205 | </role_actions> |
diff --git a/linden/indra/newview/skins/default/xui/ja/strings.xml b/linden/indra/newview/skins/default/xui/ja/strings.xml index 700f6bd..8ff9914 100644 --- a/linden/indra/newview/skins/default/xui/ja/strings.xml +++ b/linden/indra/newview/skins/default/xui/ja/strings.xml | |||
@@ -18,6 +18,9 @@ | |||
18 | <string name="LoginInitializingBrowser"> | 18 | <string name="LoginInitializingBrowser"> |
19 | 埋め込みWebブラウザを初期化しています... | 19 | 埋め込みWebブラウザを初期化しています... |
20 | </string> | 20 | </string> |
21 | <string name="LoginInitializingMultimedia"> | ||
22 | マルチメディアを初期化しています... | ||
23 | </string> | ||
21 | <string name="LoginVerifyingCache"> | 24 | <string name="LoginVerifyingCache"> |
22 | キャッシュ・ファイルを検証しています(所要時間は60~90秒)... | 25 | キャッシュ・ファイルを検証しています(所要時間は60~90秒)... |
23 | </string> | 26 | </string> |
@@ -48,6 +51,9 @@ | |||
48 | <string name="LoginDownloadingClothing"> | 51 | <string name="LoginDownloadingClothing"> |
49 | 服をダウンロードしています... | 52 | 服をダウンロードしています... |
50 | </string> | 53 | </string> |
54 | <string name="AgentLostConnection"> | ||
55 | この地域には、問題が発生している可能性があります。 インターネット接続を確認してください。 | ||
56 | </string> | ||
51 | <string name="TooltipPerson"> | 57 | <string name="TooltipPerson"> |
52 | 人 | 58 | 人 |
53 | </string> | 59 | </string> |
@@ -120,9 +126,15 @@ | |||
120 | <string name="TooltipLand"> | 126 | <string name="TooltipLand"> |
121 | 土地: | 127 | 土地: |
122 | </string> | 128 | </string> |
129 | <string name="TooltipMustSingleDrop"> | ||
130 | 1つのアイテムのみをここにドラッグできます | ||
131 | </string> | ||
123 | <string name="RetrievingData"> | 132 | <string name="RetrievingData"> |
124 | 検索中... | 133 | 検索中... |
125 | </string> | 134 | </string> |
135 | <string name="ReleaseNotes"> | ||
136 | リリースノート | ||
137 | </string> | ||
126 | <string name="LoadingData"> | 138 | <string name="LoadingData"> |
127 | ロード中... | 139 | ロード中... |
128 | </string> | 140 | </string> |
@@ -387,4 +399,16 @@ | |||
387 | <string name="anim_yes_head"> | 399 | <string name="anim_yes_head"> |
388 | 頷く | 400 | 頷く |
389 | </string> | 401 | </string> |
402 | <string name="texture_loading"> | ||
403 | ロード中... | ||
404 | </string> | ||
405 | <string name="worldmap_offline"> | ||
406 | オフライン | ||
407 | </string> | ||
408 | <string name="whisper"> | ||
409 | ささやく: | ||
410 | </string> | ||
411 | <string name="shout"> | ||
412 | 叫ぶ: | ||
413 | </string> | ||
390 | </strings> | 414 | </strings> |
diff --git a/linden/indra/newview/skins/default/xui/ko/alerts.xml b/linden/indra/newview/skins/default/xui/ko/alerts.xml index 67bc992..5fffd4b 100644 --- a/linden/indra/newview/skins/default/xui/ko/alerts.xml +++ b/linden/indra/newview/skins/default/xui/ko/alerts.xml | |||
@@ -410,12 +410,13 @@ | |||
410 | </alert> | 410 | </alert> |
411 | <alert name="ClickWebProfileHelpAvatar"> | 411 | <alert name="ClickWebProfileHelpAvatar"> |
412 | <message name="message"> | 412 | <message name="message"> |
413 | 웹 프로필 URL이 있으면 다음을 할 수 있음: | 413 | 이 주민이 웹 프로필 URL을 가지고 있으면 다음을 할 수 있습니다: |
414 | * 불러오기를 클릭하여 세컨드라이프 상의 웹 브라우저에서 웹프로필을 불러옵니다. | 414 | * "불러오기"를 클릭하여 웹 브라우저에서 페이지를 불러옵니다. |
415 | *열기를 클릭하여 외부 웹 브라우저에서 웹 프로필을 볼 수 있습니다. | 415 | * 불러오기->"외부 브라우저에서 열기"를 클릭하면 외부 웹 브라우저에서 웹 프로필을 볼 수 있습니다. |
416 | * 주민이 사이트를 탐색할 때 불러오기->"홈 URL"을 클릭하면 주민의 웹 프로필로 되돌아옵니다. | ||
416 | 417 | ||
417 | 내 프로필을 볼 때는 웹 프로필과 같이 URL을 입력할 수 있습니다. | 418 | 내 프로필을 볼 때는 웹 프로필과 같이 URL을 입력할 수 있으며, '확인'을 클릭해서 해당 URL을 설정할 수 있습니다. |
418 | 주민들이 내 프로필을 볼 경우내가 정한 URL 웹 을 볼 수 있습니다. | 419 | 다른 주민들이 내 프로필을 볼 경우, 주들은 가 정한 URL을 문 수 있습니다. |
419 | </message> | 420 | </message> |
420 | </alert> | 421 | </alert> |
421 | <alert name="ClickWebProfileNoWebHelpAvatar"> | 422 | <alert name="ClickWebProfileNoWebHelpAvatar"> |
@@ -697,7 +698,7 @@ L$0로 판매하는 경우, 팔 사람을 선택하십시오. | |||
697 | </alert> | 698 | </alert> |
698 | <alert name="PromptMissingSubjMsg"> | 699 | <alert name="PromptMissingSubjMsg"> |
699 | <message name="message"> | 700 | <message name="message"> |
700 | 들어진 제목과 메시지 로 보내시겠습니까? | 701 | 기 제목과 메시지 만들 스샷을 이메일 보내시겠습니까? |
701 | </message> | 702 | </message> |
702 | <option name="OK"> | 703 | <option name="OK"> |
703 | 확인 | 704 | 확인 |
@@ -738,7 +739,7 @@ L$0로 판매하는 경우, 팔 사람을 선택하십시오. | |||
738 | </alert> | 739 | </alert> |
739 | <alert name="ChangeSkin"> | 740 | <alert name="ChangeSkin"> |
740 | <message name="message"> | 741 | <message name="message"> |
741 | 새로운 스킨은 [SECOND_LIFE]를 재시동후 적용 됩니다. | 742 | 새로운 스킨은 [SECOND_LIFE]를 재시동 적용됩니다. |
742 | </message> | 743 | </message> |
743 | </alert> | 744 | </alert> |
744 | <alert name="UnsupportedGLRequirements"> | 745 | <alert name="UnsupportedGLRequirements"> |
@@ -818,7 +819,7 @@ L$0로 판매하는 경우, 팔 사람을 선택하십시오. | |||
818 | </alert> | 819 | </alert> |
819 | <alert name="ErrorUploadingPostcard"> | 820 | <alert name="ErrorUploadingPostcard"> |
820 | <message name="message"> | 821 | <message name="message"> |
821 | 다음의 이유로 인해 포스트카드를 업로드하는 데 문제가 발생했습니다: [REASON] | 822 | 다음의 이유로 인해 스냅샷을 보내는 데 문제가 발생했습니다: [REASON] |
822 | </message> | 823 | </message> |
823 | </alert> | 824 | </alert> |
824 | <alert name="ErrorUploadingReportScreenshot"> | 825 | <alert name="ErrorUploadingReportScreenshot"> |
@@ -860,14 +861,16 @@ L$0로 판매하는 경우, 팔 사람을 선택하십시오. | |||
860 | </alert> | 861 | </alert> |
861 | <alert name="MustHaveAccountToLogIn"> | 862 | <alert name="MustHaveAccountToLogIn"> |
862 | <message name="message"> | 863 | <message name="message"> |
863 | [SECOND_LIFE]에 연결하려면 계정을 갖고 있어야 합니다. | 864 | 죄송합니다. 일부 항목이 비어 있습니다. |
864 | www.secondlife.com으로 이동하여 새로운 계정을 만드시겠습니까? | 865 | 아바타의 성과 이름을 모두 입력해야 합니다. |
866 | |||
867 | [SECOND_LIFE]에 연결하려면 계정을 갖고 있어야 합니다. 지금 새로운 계정을 만드시겠습니까? | ||
865 | </message> | 868 | </message> |
866 | <option name="OK"> | 869 | <option name="OK"> |
867 | 확 | 870 | 계정 만들 |
868 | </option> | 871 | </option> |
869 | <option name="Cancel"> | 872 | <option name="Cancel"> |
870 | 873 | 다 도 | |
871 | </option> | 874 | </option> |
872 | </alert> | 875 | </alert> |
873 | <alert name="FreezeAvatarFullname"> | 876 | <alert name="FreezeAvatarFullname"> |
@@ -1384,6 +1387,17 @@ www.secondlife.com으로 돌아가 신규 계정을 만드시겠습니까? | |||
1384 | 여성 | 1387 | 여성 |
1385 | </option> | 1388 | </option> |
1386 | </alert> | 1389 | </alert> |
1390 | <alert name="EstateObjectReturn"> | ||
1391 | <message name="message"> | ||
1392 | [USER_NAME]이(가) 소유하는 오브젝트를 반환하시겠습니까? | ||
1393 | </message> | ||
1394 | <option name="Return"> | ||
1395 | 확인 | ||
1396 | </option> | ||
1397 | <option name="Cancel"> | ||
1398 | 취소 | ||
1399 | </option> | ||
1400 | </alert> | ||
1387 | <alert name="MaxAgentOnRegionBatch"> | 1401 | <alert name="MaxAgentOnRegionBatch"> |
1388 | <message name="message"> | 1402 | <message name="message"> |
1389 | [NUM_ADDED] 에이전트를 추가하는 데 실패했습니다: | 1403 | [NUM_ADDED] 에이전트를 추가하는 데 실패했습니다: |
@@ -1610,7 +1624,8 @@ www.secondlife.com으로 돌아가 신규 계정을 만드시겠습니까? | |||
1610 | </alert> | 1624 | </alert> |
1611 | <alert name="CannotGiveCategory"> | 1625 | <alert name="CannotGiveCategory"> |
1612 | <message name="message"> | 1626 | <message name="message"> |
1613 | 아이템 카테고리를 제공할 수 없습니다. | 1627 | 선택한 아이템을 전송할 수 있는 권한이 |
1628 | 없습니다. | ||
1614 | </message> | 1629 | </message> |
1615 | </alert> | 1630 | </alert> |
1616 | <alert name="FreezeAvatar"> | 1631 | <alert name="FreezeAvatar"> |
@@ -2006,7 +2021,7 @@ www.secondlife.com으로 돌아가 신규 계정을 만드시겠습니까? | |||
2006 | <alert name="CannotBuyLandNoRegion"> | 2021 | <alert name="CannotBuyLandNoRegion"> |
2007 | <message name="message"> | 2022 | <message name="message"> |
2008 | 토지를 구매하지 못했습니다: | 2023 | 토지를 구매하지 못했습니다: |
2009 | 이 토지가 소속된 지역을 찾을 수 없습니다. | 2024 | 이 토지가 소속된 지역을 찾을 수 없습니다. |
2010 | </message> | 2025 | </message> |
2011 | </alert> | 2026 | </alert> |
2012 | <alert name="CannotDeedLandNothingSelected"> | 2027 | <alert name="CannotDeedLandNothingSelected"> |
@@ -2390,14 +2405,11 @@ www.secondlife.com으로 돌아가 신규 계정을 만드시겠습니까? | |||
2390 | <alert name="YouHaveBeenLoggedOut"> | 2405 | <alert name="YouHaveBeenLoggedOut"> |
2391 | <message name="message"> | 2406 | <message name="message"> |
2392 | [SECOND_LIFE]에서 로그아웃하셨습니다: | 2407 | [SECOND_LIFE]에서 로그아웃하셨습니다: |
2393 | [MESSAGE] | 2408 | [MESSAGE] |
2394 | 2409 | 기존의 메신저와 채팅을 보려면 '메신저 및 채팅 보기'를 클릭하십시오. 그렇지 않고 [SECOND_LIFE]를 즉시 끝내려면 '종료'를 클릭하십시오. | |
2395 | 기존의 메신저와 채팅을 보려면 '계속'을 클릭하십시오. | ||
2396 | 다른 작업은 수행할 수 없습니다. | ||
2397 | [SECOND_LIFE]를 즉시 끝내려면 '종료'를 클릭하십시오. | ||
2398 | </message> | 2410 | </message> |
2399 | <option name="Continue"> | 2411 | <option name="Continue"> |
2400 | 계 | 2412 | 메저 및 채팅 보기 |
2401 | </option> | 2413 | </option> |
2402 | <option name="Quit"> | 2414 | <option name="Quit"> |
2403 | 종료 | 2415 | 종료 |
@@ -2420,9 +2432,8 @@ www.secondlife.com으로 돌아가 신규 계정을 만드시겠습니까? | |||
2420 | </alert> | 2432 | </alert> |
2421 | <alert name="AddFriend" title="친구 추가"> | 2433 | <alert name="AddFriend" title="친구 추가"> |
2422 | <message name="message"> | 2434 | <message name="message"> |
2423 | 친구들은 | 2435 | 친구들은 지도에서 서로의 위치를 |
2424 | 지도에서 서로의 위치를 추적할 수 있으며 | 2436 | 추적할 수 있으며 온라인 상태 업데이트도 받을 수 있습니다. |
2425 | 온라인 상태 업데이트도 받을 수 있습니다. | ||
2426 | 2437 | ||
2427 | [NAME]에게 친구 추가를 요청하시겠습니까? | 2438 | [NAME]에게 친구 추가를 요청하시겠습니까? |
2428 | </message> | 2439 | </message> |
@@ -2432,6 +2443,7 @@ www.secondlife.com으로 돌아가 신규 계정을 만드시겠습니까? | |||
2432 | <option name="Cancel"> | 2443 | <option name="Cancel"> |
2433 | 취소 | 2444 | 취소 |
2434 | </option> | 2445 | </option> |
2446 | 제 친구가 되시겠습니까? | ||
2435 | </alert> | 2447 | </alert> |
2436 | <alert name="RemoveFromFriends"> | 2448 | <alert name="RemoveFromFriends"> |
2437 | <message name="message"> | 2449 | <message name="message"> |
@@ -4550,17 +4562,17 @@ http://secondlife.com/community/support.php | |||
4550 | <alert name="HelpReportAbuseContainsCopyright"> | 4562 | <alert name="HelpReportAbuseContainsCopyright"> |
4551 | <message name="message"> | 4563 | <message name="message"> |
4552 | 주민 여러분께, | 4564 | 주민 여러분께, |
4553 | |||
4554 | 저작권 침해에 대한 신고는 http://secondlife.com/corporate/dmca.php의 | ||
4555 | 설명에 따라 제출해 주셔야 합니다. | ||
4556 | 4565 | ||
4557 | 저작권 침해에 대한 신고가 '악용 신고' | 4566 | 저작권 침해 사례를 신고하려면 다음 절차에 따라 올바른 방식으로 신고하시기 바랍니다: |
4558 | 기능을 통해 제출되는 경우 자동으로 | 4567 | |
4559 | 폐기됩니다. 신고하시는 내용이 저작권 침해와 관련이 없다면 | 4568 | (1) 악용 신고 절차. 특정 주민이 세컨드라이프의 권한을 부당하게 이용하는 것으로 판단되는 경우 악용 신고서를 제출할 수 있습니다. 예를 들면, CopyBot(무단복제)나 유사한 복제 도구를 사용해서 저작권을 침해하는 행위를 들 수 있습니다. 악용 신고 전담팀은 세컨드라이프 커뮤니티 규칙과 서비스 약관을 위반한 행위를 조사하고 적절한 징계 조치를 취할 것입니다. 하지만 악용 신고 전담팀에서는 해당 컨텐츠 삭제를 직접 취급하지 않습니다. |
4560 | 이 창을 닫아 신고를 종료하실 수 있습니다. | 4569 | |
4561 | 4570 | (2) DMCA 또는 컨텐츠 삭제 절차. 세컨드라이프에서 컨텐츠 삭제를 요청하려면 http://secondlife.com/corporate/dmca.php의 DMCA 정책에 명시된 대로 유효한 저작권 침해 통지서를 제출해야 합니다. | |
4571 | |||
4572 | 악용 신고 절차를 계속해서 진행하려면 이 창을 닫고 신고 제출을 완료하십시오. | ||
4573 | |||
4562 | 감사합니다. | 4574 | 감사합니다. |
4563 | 4575 | ||
4564 | 린든랩 드림 | 4576 | 린든랩 드림 |
4565 | </message> | 4577 | </message> |
4566 | </alert> | 4578 | </alert> |
@@ -4632,7 +4644,7 @@ http://secondlife.com/community/support.php | |||
4632 | </alert> | 4644 | </alert> |
4633 | <alert name="ConfirmClearCookies"> | 4645 | <alert name="ConfirmClearCookies"> |
4634 | <message name="message"> | 4646 | <message name="message"> |
4635 | 쿠키를 전부 삭제 하시겠습니까? | 4647 | 쿠키를 전부 삭제하시겠습니까? |
4636 | </message> | 4648 | </message> |
4637 | <option name="Yes"> | 4649 | <option name="Yes"> |
4638 | 확인 | 4650 | 확인 |
@@ -5110,7 +5122,8 @@ D 슬라이더를 사용해서는 구름의 농도를 | |||
5110 | </alert> | 5122 | </alert> |
5111 | <alert name="Cannot_Purchase_an_Attachment"> | 5123 | <alert name="Cannot_Purchase_an_Attachment"> |
5112 | <message name="message"> | 5124 | <message name="message"> |
5113 | 착용중인 아이템은 구매 불가능 합니다. | 5125 | 착용 중인 아이템은 |
5126 | 구매가 불가능합니다. | ||
5114 | </message> | 5127 | </message> |
5115 | </alert> | 5128 | </alert> |
5116 | <alert name="DebitPermissionDetails" title="직불 허용 요청에 관하여"> | 5129 | <alert name="DebitPermissionDetails" title="직불 허용 요청에 관하여"> |
diff --git a/linden/indra/newview/skins/default/xui/ko/floater_about.xml b/linden/indra/newview/skins/default/xui/ko/floater_about.xml index 987a1f9..dd94974 100644 --- a/linden/indra/newview/skins/default/xui/ko/floater_about.xml +++ b/linden/indra/newview/skins/default/xui/ko/floater_about.xml | |||
@@ -1,9 +1,9 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="floater_about" title="세컨드라이프 정보"> | 2 | <floater name="floater_about" title="세컨드라이프 정보"> |
3 | <text_editor name="credits_editor"> | 3 | <text_editor name="credits_editor"> |
4 | Second Life 제작자들: Philip, Tessa, Andrew, Cory, Ben, Bunny, Char, Charlie, Colin, Dan, Daniel, Doug, Eric, Hamlet, Haney, Hunter, Ian, Jeff, Jim, John, Lee, Mark, Peter, Phoenix, Richard, Robin, Xenon, Steve, Tanya, Eddie, Frank, Bruce, Aaron, Alice, Bob, Debra, Eileen, Helen, Janet, Louie, Leviathania, Stefan, Ray, Kevin, Tom, Mikeb, MikeT, Burgess, Elena, Tracy, BillTodd, Ryan, Zach, Sarah, Nova, Otakon, Tim, Stephanie, Michael, Evan, Nicolas, Catherine, Rachelle, Dave, Holly, Bub, Kelly, Magellan, Ramzi, Don, Sabin, Jill, Rheya, DanceStar, Jeska, Hungry, Torley, Kona, Callum, Charity, Ventrella, Jack, Uncle, Vektor, Iris, Chris, Nicole, Mick, Reuben, Blue, Babbage, Yedwab, Deana, Lauren, Brent, Pathfinder, Chadrick, Altruima, Jesse, Monroe, David, Tess, Lizzie, Patsy, Pony, Isaac, Lawrence, Cyn, Bo, Gia, Annette, Marius, Tbone, Jonathan, Karen, Ginsu, Yuko, Makiko, Thomas, Harry, Seth, Alexei, Brian, Guy, Runitai, Ethan, Data, Cornelius, Kenny, Swiss, Zero, Natria, Wendy, Stephen, Teeple, Thumper, Lucy, Dee, Mia, Liana, Warren, Branka, Aura, beez, Milo, Hermia, Red, Thrax, Joe, Sally, Magenta, Paul, Jose, Rejean, Henrik, Lexie, Amber, Logan, Xan, Nora, Morpheus, Donovan, Leyla, MichaelFrancis, Beast, Cube, Bucky, Joshua, Stryfe, Harmony, Teresa, Claudia, Walker, Glenn, Fritz, Fordak, June, Cleopetra, Jean, Ivy, Betsy, Roosevelt, Spike, Ken, Which, Tofu, Chiyo, Rob, Zee, dustin, George, Del, Matthew, Cat, Jacqui, Lightfoot, Adrian, Viola, Alfred, Noel, Irfan, Sunil, Yool, Rika, Jane, Xtreme, Frontier, a2, Neo, Siobhan, Yoz, Justin, Elle, Qarl, Benjamin, Isabel, Gulliver, Everett, Christopher, Izzy, Stephany, Garry, Sejong, Sean, Tobin, Iridium, Meta, Anthony, Jeremy, JP, Jake, Maurice, Madhavi, Leopard, Kyle, Joon, Kari, Bert, Belinda, Jon, Kristi, Bridie, Pramod, KJ, Socrates, Maria, Ivan, Aric, Yamasaki, Adreanne, Jay, MitchK, Ceren, Coco, Durl, Jenny, Periapse, Kartic, Storrs, Lotte, Sandy, Colossus, Zen, BigPapi, Brad, Pastrami, Kurz, Mani, Neuro, Jaime, MJ, Rowan, Sgt, Elvis, Gecko, Samuel, Sardonyx, Leo, Bryan, Niko, Soft, Poppy, Rachel, Aki, Angelo, Banzai, Alexa, Sue, CeeLo, Bender, CG, Gillian, Pelle, Nick, Echo, Zara, Christine, Shamiran, Emma, Blake, Keiko, Plexus, Joppa, Sidewinder, Erica, Ashlei, Twilight, Kristen, Brett, Q, Enus, Simon, Bevis, Kraft, Kip, Chandler, Ron, LauraP, Ram, KyleJM, Scouse, Prospero, Melissa, Marty, Nat, Hamilton, Kend, Lordan, Jimmy, Kosmo, Seraph, Green, Ekim, Wiggo, JT, Rome, Doris, Miz, Benoc, Whump, Trinity, Patch, Kate, TJ, Bao, Joohwan, Christy, Sofia, Matias, Cogsworth, Johan, Oreh, Cheah, Angela, Brandy, Mango, Lan, Aleks, Gloria, Heidy, Mitchell, Space, Colton, Bambers, Einstein, Maggie, Malbers, Rose, Winnie, Stella, Milton, Rothman, Niall, Marin, Allison, James, Katie, Dawn, Katt, Kalpana, Judy, Andrea, Ambroff, Infinity, Gail, Rico, Raymond, Yi, William, Christa, M, Teagan, Scout, Molly, Dante, Corr, Dynamike, Usi, Kaylee, Lil, Danica, Sascha, Kelv, Jacob, Nya, Rodney, Brandon, Elsie, Blondin, Grant, Katrin, Nyx, Gabriel, Locklainn, Claire, Devin, Minerva, Monty, Austin, Bradford, Si, Keira, H, Caitlin, Dita, Makai, Jenn, 그 외에 많은 분들이 수고해 주셨습니다. | 4 | 세컨드라이프 제작자들: Philip, Tessa, Andrew, Cory, Ben, Bunny, Char, Charlie, Colin, Dan, Daniel, Doug, Eric, Hamlet, Haney, Hunter, Ian, Jeff, Jim, John, Lee, Mark, Peter, Phoenix, Richard, Robin, Xenon, Steve, Tanya, Eddie, Frank, Bruce, Aaron, Alice, Bob, Debra, Eileen, Helen, Janet, Louie, Leviathania, Stefan, Ray, Kevin, Tom, Mikeb, MikeT, Burgess, Elena, Tracy, BillTodd, Ryan, Zach, Sarah, Nova, Otakon, Tim, Stephanie, Michael, Evan, Nicolas, Catherine, Rachelle, Dave, Holly, Bub, Kelly, Magellan, Ramzi, Don, Sabin, Jill, Rheya, DanceStar, Jeska, Hungry, Torley, Kona, Callum, Charity, Ventrella, Jack, Uncle, Vektor, Iris, Chris, Nicole, Mick, Reuben, Blue, Babbage, Yedwab, Deana, Lauren, Brent, Pathfinder, Chadrick, Altruima, Jesse, Monroe, David, Tess, Lizzie, Patsy, Pony, Isaac, Lawrence, Cyn, Bo, Gia, Annette, Marius, Tbone, Jonathan, Karen, Ginsu, Yuko, Makiko, Thomas, Harry, Seth, Alexei, Brian, Guy, Runitai, Ethan, Data, Cornelius, Kenny, Swiss, Zero, Natria, Wendy, Stephen, Teeple, Thumper, Lucy, Dee, Mia, Liana, Warren, Branka, Aura, beez, Milo, Hermia, Red, Thrax, Joe, Sally, Magenta, Paul, Jose, Rejean, Henrik, Lexie, Amber, Logan, Xan, Nora, Morpheus, Donovan, Leyla, MichaelFrancis, Beast, Cube, Bucky, Joshua, Stryfe, Harmony, Teresa, Claudia, Walker, Glenn, Fritz, Fordak, June, Cleopetra, Jean, Ivy, Betsy, Roosevelt, Spike, Ken, Which, Tofu, Chiyo, Rob, Zee, dustin, George, Del, Matthew, Cat, Jacqui, Lightfoot, Adrian, Viola, Alfred, Noel, Irfan, Sunil, Yool, Rika, Jane, Xtreme, Frontier, a2, Neo, Siobhan, Yoz, Justin, Elle, Qarl, Benjamin, Isabel, Gulliver, Everett, Christopher, Izzy, Stephany, Garry, Sejong, Sean, Tobin, Iridium, Meta, Anthony, Jeremy, JP, Jake, Maurice, Madhavi, Leopard, Kyle, Joon, Kari, Bert, Belinda, Jon, Kristi, Bridie, Pramod, KJ, Socrates, Maria, Ivan, Aric, Yamasaki, Adreanne, Jay, MitchK, Ceren, Coco, Durl, Jenny, Periapse, Kartic, Storrs, Lotte, Sandy, Colossus, Zen, BigPapi, Brad, Pastrami, Kurz, Mani, Neuro, Jaime, MJ, Rowan, Sgt, Elvis, Gecko, Samuel, Sardonyx, Leo, Bryan, Niko, Soft, Poppy, Rachel, Aki, Angelo, Banzai, Alexa, Sue, CeeLo, Bender, CG, Gillian, Pelle, Nick, Echo, Zara, Christine, Shamiran, Emma, Blake, Keiko, Plexus, Joppa, Sidewinder, Erica, Ashlei, Twilight, Kristen, Brett, Q, Enus, Simon, Bevis, Kraft, Kip, Chandler, Ron, LauraP, Ram, KyleJM, Scouse, Prospero, Melissa, Marty, Nat, Hamilton, Kend, Lordan, Jimmy, Kosmo, Seraph, Green, Ekim, Wiggo, JT, Rome, Doris, Miz, Benoc, Whump, Trinity, Patch, Kate, TJ, Bao, Joohwan, Christy, Sofia, Matias, Cogsworth, Johan, Oreh, Cheah, Angela, Brandy, Mango, Lan, Aleks, Gloria, Heidy, Mitchell, Space, Colton, Bambers, Einstein, Maggie, Malbers, Rose, Winnie, Stella, Milton, Rothman, Niall, Marin, Allison, James, Katie, Dawn, Katt, Kalpana, Judy, Andrea, Ambroff, Infinity, Gail, Rico, Raymond, Yi, William, Christa, M, Teagan, Scout, Molly, Dante, Corr, Dynamike, Usi, Kaylee, Lil, Danica, Sascha, Kelv, Jacob, Nya, Rodney, Brandon, Elsie, Blondin, Grant, Katrin, Nyx, Gabriel, Locklainn, Claire, Devin, Minerva, Monty, Austin, Bradford, Si, Keira, H, Caitlin, Dita, Makai, Jenn, 그 외에 많은 분들이 수고해 주셨습니다. |
5 | 5 | ||
6 | 현재 버전이 최상의 버전이 될 수 있도록 도와주신 게이머 여러분께 감사드립니다: aaron23 decuir, Abra Miles, absolute balderdash, adelle fitzgerald, Aeron Kohime, Aki Shichiroji, Alger Meads, Alissa Sabre, AlwaysIcey Mapholisto, Arawn Spitteler, Aren Mandala, Arianna Wrigglesworth, Bagushii Kohime, Balpien Hammerer, Blinking2342 Blinker, byakuya runo, Capucchy Streeter, Chandra Jun, Coyote Pace, Crusher Soderstrom, Cummere Mayo, cyberrosa Rossini, Dael Ra, danana dodonpa, Darek Deluca, Davec Horsforth, django yifu, draco crane, Dre Dagostino, Ephyu Reino, etan quan, Fenrix Murakami, Fledhyris Proudhon, Fred Wardhani, Frederich Courier, garth fairchang, Gellan Glenelg, Geraldine Giha, GOLAN Eilde, gonzo joubert, Hachiro Yokosuka, Hampton Hax, harleywood guru, Hevenz Vansant, imnotgoing sideways, Jaden Giles, Jeanette Janus, Karl Dorance, keaton Akina, Khashai Steinbeck, KiPSOFT Tuqiri, kirstenlee Cinquetti, Kitty Barnett, Laurent Vesta, Lazure Ryba, Lima Vesperia, Linzi Bingyi, Lisa Lowe, LuDon Ninetails, Mark Rosenbaum, McCabe Maxsted, Michi Lumin, Midi Aeon, ml0rtd kit, Mo Eriksen, Morice Flanagan, Mysterion Aeon, Nad Gough, norgan torok, Pygar Bu, Qie Niangao, rachel corleone, Rado Arado, roberto salubrius, Royer Pessoa, samia bechir, Sasha Nurmi, Sean Heying, Selkit Diller, Shadow Pidgeon, simon kline, Smokie Ember, Soap Clawtooth, Strife Onizuka, Tal Chernov, Talan Hyun, tangletwigs fairymeadow, Tanya Spinotti, Tayra Dagostino, Teebone Aeon, Theremes Langdon, Thraxis Epsilon, tucor Capalini, Vasko Hawker, VenusMari Zapedzki, Vex Streeter, Viktoria Dovgal, Vincent Nacon, Viridian Exonar, Vivienne Schell, WarKirby Magojiro, Wilton Lundquist, Yukinoroh Kamachi, Zyzzy Zarf | 6 | 현재 버전이 최상의 버전이 될 수 있도록 도와주신 여러분께 감사드립니다: aaron23 decuir, Abra Miles, absolute balderdash, adelle fitzgerald, Aeron Kohime, Aki Shichiroji, Alger Meads, Alissa Sabre, AlwaysIcey Mapholisto, Arawn Spitteler, Aren Mandala, Arianna Wrigglesworth, Bagushii Kohime, Balpien Hammerer, Blinking2342 Blinker, byakuya runo, Capucchy Streeter, Chandra Jun, Coyote Pace, Crusher Soderstrom, Cummere Mayo, cyberrosa Rossini, Dael Ra, danana dodonpa, Darek Deluca, Davec Horsforth, django yifu, draco crane, Dre Dagostino, Ephyu Reino, etan quan, Fenrix Murakami, Fledhyris Proudhon, Fred Wardhani, Frederich Courier, garth fairchang, Gellan Glenelg, Geraldine Giha, GOLAN Eilde, gonzo joubert, Hachiro Yokosuka, Hampton Hax, harleywood guru, Hevenz Vansant, imnotgoing sideways, Jaden Giles, Jeanette Janus, Karl Dorance, keaton Akina, Khashai Steinbeck, KiPSOFT Tuqiri, kirstenlee Cinquetti, Kitty Barnett, Laurent Vesta, Lazure Ryba, Lima Vesperia, Linzi Bingyi, Lisa Lowe, LuDon Ninetails, Mark Rosenbaum, McCabe Maxsted, Michi Lumin, Midi Aeon, ml0rtd kit, Mo Eriksen, Morice Flanagan, Mysterion Aeon, Nad Gough, norgan torok, Pygar Bu, Qie Niangao, rachel corleone, Rado Arado, roberto salubrius, Royer Pessoa, samia bechir, Sasha Nurmi, Sean Heying, Selkit Diller, Shadow Pidgeon, simon kline, Smokie Ember, Soap Clawtooth, Strife Onizuka, Tal Chernov, Talan Hyun, tangletwigs fairymeadow, Tanya Spinotti, Tayra Dagostino, Teebone Aeon, Theremes Langdon, Thraxis Epsilon, tucor Capalini, Vasko Hawker, VenusMari Zapedzki, Vex Streeter, Viktoria Dovgal, Vincent Nacon, Viridian Exonar, Vivienne Schell, WarKirby Magojiro, Wilton Lundquist, Yukinoroh Kamachi, Zyzzy Zarf |
7 | 7 | ||
8 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | 8 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion |
9 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 9 | APR Copyright (C) 2000-2004 The Apache Software Foundation |
@@ -26,7 +26,7 @@ | |||
26 | 음성 채팅 오디오 코딩: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 26 | 음성 채팅 오디오 코딩: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) |
27 | 27 | ||
28 | 28 | ||
29 | 행란 포한 강 한. -- Charles M. Schulz | 29 | 루진 엔 무 이 일어나? --Langston Hughes |
30 | </text_editor> | 30 | </text_editor> |
31 | <text name="you_are_at"> | 31 | <text name="you_are_at"> |
32 | [POSITION]에 있습니다. | 32 | [POSITION]에 있습니다. |
diff --git a/linden/indra/newview/skins/default/xui/ko/floater_about_land.xml b/linden/indra/newview/skins/default/xui/ko/floater_about_land.xml index 036b378..01b3072 100644 --- a/linden/indra/newview/skins/default/xui/ko/floater_about_land.xml +++ b/linden/indra/newview/skins/default/xui/ko/floater_about_land.xml | |||
@@ -113,6 +113,10 @@ | |||
113 | <text name="sale_pending_text"> | 113 | <text name="sale_pending_text"> |
114 | (판매 보류) | 114 | (판매 보류) |
115 | </text> | 115 | </text> |
116 | <string name="no_selection_text"> | ||
117 | 구획을 선택하지 않았습니다. | ||
118 | 세부 사항을 보려면 '월드 메뉴 > 토지 소개'를 선택 하시거나 다른 구획을 선택하십시오. | ||
119 | </string> | ||
116 | </panel> | 120 | </panel> |
117 | <panel label="시행 규칙" name="land_covenant_panel"> | 121 | <panel label="시행 규칙" name="land_covenant_panel"> |
118 | <text type="string" length="1" name="covenant_timestamp_text"> | 122 | <text type="string" length="1" name="covenant_timestamp_text"> |
diff --git a/linden/indra/newview/skins/default/xui/ko/floater_im.xml b/linden/indra/newview/skins/default/xui/ko/floater_im.xml index d828ec4..642f4da 100644 --- a/linden/indra/newview/skins/default/xui/ko/floater_im.xml +++ b/linden/indra/newview/skins/default/xui/ko/floater_im.xml | |||
@@ -7,7 +7,7 @@ | |||
7 | [FIRST] [LAST]님은 오프라인입니다. | 7 | [FIRST] [LAST]님은 오프라인입니다. |
8 | </text> | 8 | </text> |
9 | <string name="muted_message"> | 9 | <string name="muted_message"> |
10 | 주민님이 음소거되었습니다. | 10 | 이 주민이 음소거되었습니다. 이 주민에게 메시지를 보내면 음소거가 자동으로 해제됩니다. |
11 | </string> | 11 | </string> |
12 | <text name="generic_request_error"> | 12 | <text name="generic_request_error"> |
13 | 오류 보고 작성을 요청했으므로 나중에 다시 시도하십시오. | 13 | 오류 보고 작성을 요청했으므로 나중에 다시 시도하십시오. |
diff --git a/linden/indra/newview/skins/default/xui/ko/floater_instant_message.xml b/linden/indra/newview/skins/default/xui/ko/floater_instant_message.xml index 994f238..1ad7d69 100644 --- a/linden/indra/newview/skins/default/xui/ko/floater_instant_message.xml +++ b/linden/indra/newview/skins/default/xui/ko/floater_instant_message.xml | |||
@@ -12,6 +12,9 @@ | |||
12 | <string name="hang_up"> | 12 | <string name="hang_up"> |
13 | 연결종료 | 13 | 연결종료 |
14 | </string> | 14 | </string> |
15 | <string name="inventory_item_offered"> | ||
16 | 인벤토리 아이템이 제공되었습니다. | ||
17 | </string> | ||
15 | <string name="voice_icon"> | 18 | <string name="voice_icon"> |
16 | icn_voice-pvtfocus.tga | 19 | icn_voice-pvtfocus.tga |
17 | </string> | 20 | </string> |
diff --git a/linden/indra/newview/skins/default/xui/ko/floater_live_lsleditor.xml b/linden/indra/newview/skins/default/xui/ko/floater_live_lsleditor.xml index f4b5464..d2e8fc8 100644 --- a/linden/indra/newview/skins/default/xui/ko/floater_live_lsleditor.xml +++ b/linden/indra/newview/skins/default/xui/ko/floater_live_lsleditor.xml | |||
@@ -2,6 +2,7 @@ | |||
2 | <floater name="script ed float" title="스크립트: 새 스크립트"> | 2 | <floater name="script ed float" title="스크립트: 새 스크립트"> |
3 | <button label="초기화" label_selected="초기화" name="Reset" /> | 3 | <button label="초기화" label_selected="초기화" name="Reset" /> |
4 | <check_box label="실행 중" name="running" /> | 4 | <check_box label="실행 중" name="running" /> |
5 | <check_box label="모노" name="mono" /> | ||
5 | <text name="not_allowed"> | 6 | <text name="not_allowed"> |
6 | 이 스크립트를 볼 수 없습니다. | 7 | 이 스크립트를 볼 수 없습니다. |
7 | </text> | 8 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/ko/floater_mem_leaking.xml b/linden/indra/newview/skins/default/xui/ko/floater_mem_leaking.xml new file mode 100644 index 0000000..f493c9f --- /dev/null +++ b/linden/indra/newview/skins/default/xui/ko/floater_mem_leaking.xml | |||
@@ -0,0 +1,18 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="MemLeak" title="메모리 손실 시뮬레이션"> | ||
3 | <spinner label="손실 속도(프레임당 바이트 수):" name="leak_speed" /> | ||
4 | <spinner label="손실된 최대 메모리(MB):" name="max_leak" /> | ||
5 | <text name="total_leaked_label"> | ||
6 | 현재 손실된 메모리: [SIZE] KB | ||
7 | </text> | ||
8 | <text name="note_label_1"> | ||
9 | [NOTE1] | ||
10 | </text> | ||
11 | <text name="note_label_2"> | ||
12 | [NOTE2] | ||
13 | </text> | ||
14 | <button label="시작" name="start_btn" /> | ||
15 | <button label="중지" name="stop_btn" /> | ||
16 | <button label="해제" name="release_btn" /> | ||
17 | <button label="닫기" name="close_btn" /> | ||
18 | </floater> | ||
diff --git a/linden/indra/newview/skins/default/xui/ko/floater_postcard.xml b/linden/indra/newview/skins/default/xui/ko/floater_postcard.xml index 9bb7ecf..7778ebe 100644 --- a/linden/indra/newview/skins/default/xui/ko/floater_postcard.xml +++ b/linden/indra/newview/skins/default/xui/ko/floater_postcard.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 | <floater name="Postcard" title=" 보내기"> | 2 | <floater name="Postcard" title="메 스샷 내기"> |
3 | <text name="to_label"> | 3 | <text name="to_label"> |
4 | 수신인 이메일: | 4 | 수신인 이메일: |
5 | </text> | 5 | </text> |
@@ -25,7 +25,7 @@ | |||
25 | tool_tip="이 엽서에는 성인 전용 컨텐츠가 포함되어 있습니다." /> | 25 | tool_tip="이 엽서에는 성인 전용 컨텐츠가 포함되어 있습니다." /> |
26 | <button label="?" name="publish_help_btn" /> | 26 | <button label="?" name="publish_help_btn" /> |
27 | <text name="fine_print"> | 27 | <text name="fine_print"> |
28 | 서 령인이 세컨드라이프에 가입 경 천 보너스를 얻게 됩니다. | 28 | 수령인이 세컨드라이프에 가입을 면 추천 보너스를 얻게 됩니다. |
29 | </text> | 29 | </text> |
30 | <button label="취소" name="cancel_btn" /> | 30 | <button label="취소" name="cancel_btn" /> |
31 | <button label="보내기" name="send_btn" /> | 31 | <button label="보내기" name="send_btn" /> |
@@ -35,4 +35,7 @@ | |||
35 | <text name="default_message"> | 35 | <text name="default_message"> |
36 | 여기를 체크하여 주십시요. | 36 | 여기를 체크하여 주십시요. |
37 | </text> | 37 | </text> |
38 | <string name="upload_message"> | ||
39 | 보내는 중... | ||
40 | </string> | ||
38 | </floater> | 41 | </floater> |
diff --git a/linden/indra/newview/skins/default/xui/ko/floater_report_abuse.xml b/linden/indra/newview/skins/default/xui/ko/floater_report_abuse.xml index 970d987..8c805d6 100644 --- a/linden/indra/newview/skins/default/xui/ko/floater_report_abuse.xml +++ b/linden/indra/newview/skins/default/xui/ko/floater_report_abuse.xml | |||
@@ -42,8 +42,101 @@ | |||
42 | <combo_item name="Selectcategory"> | 42 | <combo_item name="Selectcategory"> |
43 | 카테고리 선택 | 43 | 카테고리 선택 |
44 | </combo_item> | 44 | </combo_item> |
45 | <combo_item name="Select_category"> | ||
46 | 카테고리 선택 | ||
47 | </combo_item> | ||
48 | <combo_item name="Age__Age_play"> | ||
49 | 연령관련 > 에이지 플레이 | ||
50 | </combo_item> | ||
51 | <combo_item name="Age__Adult_resident_on_Teen_Second_Life"> | ||
52 | 연령관련 > 틴 세컨드라이프내의 성인 주민 | ||
53 | </combo_item> | ||
54 | <combo_item name="Age__Underage_resident_on_Adult_Second_Life"> | ||
55 | 연령관련 > 세컨드라이프의 미성년자 주민 | ||
56 | </combo_item> | ||
57 | <combo_item name="Assault__Combat_sandbox___unsafe_area"> | ||
58 | 폭력관련 > 전투 샌드박스/위험 지대 | ||
59 | </combo_item> | ||
60 | <combo_item name="Assault__Safe_area"> | ||
61 | 폭력관련 > 안전 지대 | ||
62 | </combo_item> | ||
63 | <combo_item name="Assault__Weapons_testing_sandbox"> | ||
64 | 폭력관련 > 총기류 테스트 샌드박스 | ||
65 | </combo_item> | ||
66 | <combo_item name="Copyright_or_intellectual_property_violation"> | ||
67 | 저작권 또는 지적재산권 위반 관련 | ||
68 | </combo_item> | ||
69 | <combo_item name="Commerce__Failure_to_deliver_product_or_service"> | ||
70 | 쇼핑관련 > 제품 배달 또는 서비스 제공 실패 | ||
71 | </combo_item> | ||
72 | <combo_item name="Disclosure__First_Life_information"> | ||
73 | 개인정보 관련 > 오프라인 정보 | ||
74 | </combo_item> | ||
75 | <combo_item name="Disclosure__Remotely_monitoring chat"> | ||
76 | 개인정보 관련 > 원격 모니터링 채팅 | ||
77 | </combo_item> | ||
78 | <combo_item name="Disclosure__Second_Life_information_chat_IMs"> | ||
79 | 개인정보 관련 > 세컨드라이프 정보/채팅/메신저 | ||
80 | </combo_item> | ||
81 | <combo_item name="Disturbing_the_peace__Unfair_use_of_region_resources"> | ||
82 | 치안관련 > 지역 자원의 부당한 이용 | ||
83 | </combo_item> | ||
84 | <combo_item name="Disturbing_the_peace__Excessive_scripted_objects"> | ||
85 | 치안관련 > 초과 스크립트 오브젝트 | ||
86 | </combo_item> | ||
87 | <combo_item name="Disturbing_the_peace__Object_littering"> | ||
88 | 치안관련 > 오브젝트 혼란 방치 | ||
89 | </combo_item> | ||
90 | <combo_item name="Disturbing_the_peace__Repetitive_spam"> | ||
91 | 치안관련 > 반복적인 스팸 | ||
92 | </combo_item> | ||
93 | <combo_item name="Disturbing_the_peace__Unwanted_advert_spam"> | ||
94 | 치안관련 > 원치 않는 광고성 스팸 | ||
95 | </combo_item> | ||
96 | <combo_item name="Fraud__L$"> | ||
97 | 사기관련 > L$ | ||
98 | </combo_item> | ||
99 | <combo_item name="Fraud__Land"> | ||
100 | 사기관련 > 토지 | ||
101 | </combo_item> | ||
102 | <combo_item name="Fraud__Pyramid_scheme_or_chain_letter"> | ||
103 | 사기관련 > 피라미드 조직 또는 연쇄 편지 | ||
104 | </combo_item> | ||
105 | <combo_item name="Fraud__US$"> | ||
106 | 사기관련 > US$ | ||
107 | </combo_item> | ||
108 | <combo_item name="Harassment__Advert_farms___visual_spam"> | ||
109 | 괴롭힘 관련> 광고성 유료 사이트/비주얼 스팸 | ||
110 | </combo_item> | ||
111 | <combo_item name="Harassment__Defaming_individuals_or_groups"> | ||
112 | 괴롭힘 관련 > 개인 또는 집단 명예 훼손 | ||
113 | </combo_item> | ||
114 | <combo_item name="Harassment__Impeding_movement"> | ||
115 | 괴롭힘 관련 > 고의적인 방해 | ||
116 | </combo_item> | ||
117 | <combo_item name="Harassment__Sexual_harassment"> | ||
118 | 괴롭힘 관련 > 성희롱 | ||
119 | </combo_item> | ||
120 | <combo_item name="Harassment__Solicting_inciting_others_to_violate_ToS"> | ||
121 | 괴롭힘 관련 > TOS를 위반하도록 타인 유혹/조장 | ||
122 | </combo_item> | ||
123 | <combo_item name="Harassment__Verbal_abuse"> | ||
124 | 괴롭힘 관련 > 언어 폭력 | ||
125 | </combo_item> | ||
126 | <combo_item name="Indecency__Broadly_offensive_content_or_conduct"> | ||
127 | 외설 관련> 노골적으로 불쾌한 컨텐츠 또는 행동 | ||
128 | </combo_item> | ||
129 | <combo_item name="Indecency__Broadly_visible_mature_content"> | ||
130 | 외설 관련 > 노골적인 성인용 컨텐츠 | ||
131 | </combo_item> | ||
132 | <combo_item name="Indecency__Inappropriate_avatar_name"> | ||
133 | 외설 관련 > 부적절한 아바타 이름 | ||
134 | </combo_item> | ||
135 | <combo_item name="Indecency__Mature_content_in_PG_region"> | ||
136 | 외설 관련 > PG 지역에서 성인용 컨텐츠 사용 | ||
137 | </combo_item> | ||
45 | <combo_item name="Intolerance"> | 138 | <combo_item name="Intolerance"> |
46 | 굴 | 139 | 을 수 없는 행위 |
47 | </combo_item> | 140 | </combo_item> |
48 | <combo_item name="Harassment"> | 141 | <combo_item name="Harassment"> |
49 | 괴롭힘 | 142 | 괴롭힘 |
@@ -63,6 +156,24 @@ | |||
63 | <combo_item name="Parcel"> | 156 | <combo_item name="Parcel"> |
64 | 구획 | 157 | 구획 |
65 | </combo_item> | 158 | </combo_item> |
159 | <combo_item name="Land__Abuse_of_sandbox_resources"> | ||
160 | 토지 관련 > 샌드박스 리소스 남용 | ||
161 | </combo_item> | ||
162 | <combo_item name="Land__Encroachment__Objects_textures"> | ||
163 | 토지 관련 > 침략 > 오브젝트/텍스처 | ||
164 | </combo_item> | ||
165 | <combo_item name="Land__Encroachment__Particles"> | ||
166 | 토지 관련 > 침략 > 구획 | ||
167 | </combo_item> | ||
168 | <combo_item name="Land__Encroachment__Trees_plants"> | ||
169 | 토지 관련 > 침략 > 나무/식물 | ||
170 | </combo_item> | ||
171 | <combo_item name="Trademark_violation"> | ||
172 | 상표 위반 관련 | ||
173 | </combo_item> | ||
174 | <combo_item name="Wagering_gambling"> | ||
175 | 도박 관련 | ||
176 | </combo_item> | ||
66 | <combo_item name="Other"> | 177 | <combo_item name="Other"> |
67 | 기타 | 178 | 기타 |
68 | </combo_item> | 179 | </combo_item> |
@@ -72,6 +183,8 @@ | |||
72 | </text> | 183 | </text> |
73 | <button label="주민 선택" label_selected="" name="select_abuser" | 184 | <button label="주민 선택" label_selected="" name="select_abuser" |
74 | tool_tip="악용자의 이름을 목록에서 선택" /> | 185 | tool_tip="악용자의 이름을 목록에서 선택" /> |
186 | <check_box label="악용자의 이름 모름" name="omit_abuser_name" | ||
187 | tool_tip="악용자의 이름을 제공할 수 없는 경우 이 옵션을 선택하십시오." /> | ||
75 | <text name="abuser_name_title2"> | 188 | <text name="abuser_name_title2"> |
76 | 악용 위치: | 189 | 악용 위치: |
77 | </text> | 190 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/ko/floater_skin_preview_template.xml b/linden/indra/newview/skins/default/xui/ko/floater_skin_preview_template.xml new file mode 100644 index 0000000..672e289 --- /dev/null +++ b/linden/indra/newview/skins/default/xui/ko/floater_skin_preview_template.xml | |||
@@ -0,0 +1,30 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <multi_floater name="floater_chatterbox"> | ||
3 | <icon label="비행" label_selected="비행 중지" name="" | ||
4 | tool_tip="비행 시작. 위, 아래로 비행하려면 E/C 또는 PgUp/PgDn을 사용하십시오." /> | ||
5 | <panel name="panel_unfocused_floater"> | ||
6 | <text name="titlebar_focused"> | ||
7 | 초점이 맞지 않음 | ||
8 | </text> | ||
9 | <combo_box label="콤보 박스" name="combo_box_1" /> | ||
10 | <text_editor name="Chat History Editor"> | ||
11 | 텍스트 | ||
12 | </text_editor> | ||
13 | </panel> | ||
14 | <panel name="panel_focused_floater"> | ||
15 | <text name="titlebar_focused"> | ||
16 | 초점이 맞음 | ||
17 | </text> | ||
18 | <tab_container name="chatterbox_tabs"> | ||
19 | <panel label="초점이 맞음" name="test_1"> | ||
20 | <slider label="슬라이더" name="SliderTestName" /> | ||
21 | <check_box label="참" name="check_box_test_1" /> | ||
22 | <check_box label="거짓" name="check_box_test_2" /> | ||
23 | <text_editor name="Chat History Editor"> | ||
24 | 채팅 텍스트 | ||
25 | </text_editor> | ||
26 | </panel> | ||
27 | <panel label="초점이 맞지 않음" name="test_2" /> | ||
28 | </tab_container> | ||
29 | </panel> | ||
30 | </multi_floater> | ||
diff --git a/linden/indra/newview/skins/default/xui/ko/floater_snapshot.xml b/linden/indra/newview/skins/default/xui/ko/floater_snapshot.xml index 9afdd60..0277620 100644 --- a/linden/indra/newview/skins/default/xui/ko/floater_snapshot.xml +++ b/linden/indra/newview/skins/default/xui/ko/floater_snapshot.xml | |||
@@ -1,14 +1,14 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="Snapshot" title="스냅샷 미리보기"> | 2 | <floater name="Snapshot" title="스냅샷 미리보기"> |
3 | <text name="type_label"> | 3 | <text name="type_label"> |
4 | 스냅샷 용 | 4 | 스냅샷 상 |
5 | </text> | 5 | </text> |
6 | <radio_group label="스냅샷 유형" name="snapshot_type_radio"> | 6 | <radio_group label="스냅샷 유형" name="snapshot_type_radio"> |
7 | <radio_item name="postcard"> | 7 | <radio_item name="postcard"> |
8 | 보내기 | 8 | 메 보내기 |
9 | </radio_item> | 9 | </radio_item> |
10 | <radio_item name="texture"> | 10 | <radio_item name="texture"> |
11 | 인벤토리에 저장 | 11 | 인벤토리에 저장(L$10) |
12 | </radio_item> | 12 | </radio_item> |
13 | <radio_item name="local"> | 13 | <radio_item name="local"> |
14 | 하드 드라이브에 저장 | 14 | 하드 드라이브에 저장 |
@@ -17,7 +17,10 @@ | |||
17 | <button label="자세히 >>" name="more_btn" tool_tip="고급 옵션" /> | 17 | <button label="자세히 >>" name="more_btn" tool_tip="고급 옵션" /> |
18 | <button label="<< 축소" name="less_btn" tool_tip="고급 옵션" /> | 18 | <button label="<< 축소" name="less_btn" tool_tip="고급 옵션" /> |
19 | <text name="type_label2"> | 19 | <text name="type_label2"> |
20 | 이미지 크기 | 20 | 크기 |
21 | </text> | ||
22 | <text name="format_label"> | ||
23 | 파일 형식 | ||
21 | </text> | 24 | </text> |
22 | <combo_box label="해상도" name="postcard_size_combo"> | 25 | <combo_box label="해상도" name="postcard_size_combo"> |
23 | <combo_item name="640x480"> | 26 | <combo_item name="640x480"> |
@@ -79,6 +82,17 @@ | |||
79 | 사용자 크기 | 82 | 사용자 크기 |
80 | </combo_item> | 83 | </combo_item> |
81 | </combo_box> | 84 | </combo_box> |
85 | <combo_box label="파일 형식" name="local_format_combo"> | ||
86 | <combo_item name="PNG"> | ||
87 | PNG | ||
88 | </combo_item> | ||
89 | <combo_item name="JPEG"> | ||
90 | JPEG | ||
91 | </combo_item> | ||
92 | <combo_item name="BMP"> | ||
93 | BMP | ||
94 | </combo_item> | ||
95 | </combo_box> | ||
82 | <spinner label="폭" name="snapshot_width" /> | 96 | <spinner label="폭" name="snapshot_width" /> |
83 | <spinner label="높이" name="snapshot_height" /> | 97 | <spinner label="높이" name="snapshot_height" /> |
84 | <slider label="이미지 해상도" name="image_quality_slider" /> | 98 | <slider label="이미지 해상도" name="image_quality_slider" /> |
@@ -105,10 +119,10 @@ | |||
105 | <check_box label="화상비 유지하기" name="keep_aspect_check" /> | 119 | <check_box label="화상비 유지하기" name="keep_aspect_check" /> |
106 | <check_box label="전체 화면으로 미리보기" name="freeze_frame_check" /> | 120 | <check_box label="전체 화면으로 미리보기" name="freeze_frame_check" /> |
107 | <button label="새 스냅샷" name="new_snapshot_btn" /> | 121 | <button label="새 스냅샷" name="new_snapshot_btn" /> |
108 | <check_box label="자동 " name="auto_snapshot_check" /> | 122 | <check_box label="자동 로 고" name="auto_snapshot_check" /> |
109 | <button label="로드(L$10)" name="upload_btn" /> | 123 | <button label="장(L$10)" name="upload_btn" /> |
110 | <button label="보내기" name="send_btn" /> | 124 | <button label="보내기" name="send_btn" /> |
111 | <button label="저장" name="save_btn" /> | 125 | <button label="저장" name="save_btn" tool_tip="파일에 이미지 저장" /> |
112 | <button label="취소" name="discard_btn" /> | 126 | <button label="취소" name="discard_btn" /> |
113 | <text name="unknown"> | 127 | <text name="unknown"> |
114 | 알 수 없음 | 128 | 알 수 없음 |
diff --git a/linden/indra/newview/skins/default/xui/ko/floater_tools.xml b/linden/indra/newview/skins/default/xui/ko/floater_tools.xml index 0bc11f3..658f6bd 100644 --- a/linden/indra/newview/skins/default/xui/ko/floater_tools.xml +++ b/linden/indra/newview/skins/default/xui/ko/floater_tools.xml | |||
@@ -89,6 +89,9 @@ | |||
89 | 대 | 89 | 대 |
90 | </combo_item> | 90 | </combo_item> |
91 | </combo_box> | 91 | </combo_box> |
92 | <text name="Strength:"> | ||
93 | 강도: | ||
94 | </text> | ||
92 | <button label="선택 사항에 적용" label_selected="선택 사항에 적용" | 95 | <button label="선택 사항에 적용" label_selected="선택 사항에 적용" |
93 | name="button apply to selection" tool_tip="선택한 토지 수정" /> | 96 | name="button apply to selection" tool_tip="선택한 토지 수정" /> |
94 | <check_box label="소유주 표시" name="checkbox show owners" /> | 97 | <check_box label="소유주 표시" name="checkbox show owners" /> |
@@ -151,6 +154,9 @@ | |||
151 | <text name="Price: L$"> | 154 | <text name="Price: L$"> |
152 | 가격: L$ | 155 | 가격: L$ |
153 | </text> | 156 | </text> |
157 | <text name="Cost"> | ||
158 | 가격: L$ | ||
159 | </text> | ||
154 | <radio_group name="sale type"> | 160 | <radio_group name="sale type"> |
155 | <radio_item name="Original"> | 161 | <radio_item name="Original"> |
156 | 원본 | 162 | 원본 |
@@ -227,6 +233,21 @@ | |||
227 | <text name="text modify warning"> | 233 | <text name="text modify warning"> |
228 | 권한을 설정하려면 전체 오브젝트를 선택해야 합니다. | 234 | 권한을 설정하려면 전체 오브젝트를 선택해야 합니다. |
229 | </text> | 235 | </text> |
236 | <string name="Cost Default"> | ||
237 | 가격: L$ | ||
238 | </string> | ||
239 | <string name="Cost Total"> | ||
240 | 총 가격: L$ | ||
241 | </string> | ||
242 | <string name="Cost Per Unit"> | ||
243 | 단가: L$ | ||
244 | </string> | ||
245 | <string name="Cost Mixed"> | ||
246 | 혼합 가격 | ||
247 | </string> | ||
248 | <string name="Sale Mixed"> | ||
249 | 혼합 판매 | ||
250 | </string> | ||
230 | </panel> | 251 | </panel> |
231 | <panel label="오브젝트" name="Object"> | 252 | <panel label="오브젝트" name="Object"> |
232 | <text name="select_single"> | 253 | <text name="select_single"> |
@@ -382,6 +403,10 @@ | |||
382 | 회전 | 403 | 회전 |
383 | </text> | 404 | </text> |
384 | <texture_picker label="텍스처" name="sculpt texture control" tool_tip="이미지 선택" /> | 405 | <texture_picker label="텍스처" name="sculpt texture control" tool_tip="이미지 선택" /> |
406 | <check_box label="미러" name="sculpt mirror control" | ||
407 | tool_tip="X축을 따라 sculpted prim(조각 프림)을 뒤집습니다." /> | ||
408 | <check_box label="내부-외부" name="sculpt invert control" | ||
409 | tool_tip="Sculpted prim(조각 프림) 수직선을 반전하여 내/외부가 반전되어 나타나도록 합니다." /> | ||
385 | <text name="label sculpt type"> | 410 | <text name="label sculpt type"> |
386 | 스티칭 타입 | 411 | 스티칭 타입 |
387 | </text> | 412 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/ko/floater_top_objects.xml b/linden/indra/newview/skins/default/xui/ko/floater_top_objects.xml index 22c9f38..10f8060 100644 --- a/linden/indra/newview/skins/default/xui/ko/floater_top_objects.xml +++ b/linden/indra/newview/skins/default/xui/ko/floater_top_objects.xml | |||
@@ -8,6 +8,7 @@ | |||
8 | <column label="Name" name="name" /> | 8 | <column label="Name" name="name" /> |
9 | <column label="Owner" name="owner" /> | 9 | <column label="Owner" name="owner" /> |
10 | <column label="Location" name="location" /> | 10 | <column label="Location" name="location" /> |
11 | <column label="시간" name="time" /> | ||
11 | </scroll_list> | 12 | </scroll_list> |
12 | <text name="id_text"> | 13 | <text name="id_text"> |
13 | 오브젝트 ID: | 14 | 오브젝트 ID: |
diff --git a/linden/indra/newview/skins/default/xui/ko/floater_tos.xml b/linden/indra/newview/skins/default/xui/ko/floater_tos.xml index a5d0a47..85c7cd4 100644 --- a/linden/indra/newview/skins/default/xui/ko/floater_tos.xml +++ b/linden/indra/newview/skins/default/xui/ko/floater_tos.xml | |||
@@ -13,6 +13,7 @@ | |||
13 | <text name="tos_title"> | 13 | <text name="tos_title"> |
14 | 서비스 약관 | 14 | 서비스 약관 |
15 | </text> | 15 | </text> |
16 | <check_box label="서비스 약관에 동의합니다." name="agree_chk" /> | ||
16 | <text name="tos_heading"> | 17 | <text name="tos_heading"> |
17 | 다음 서비스 약관을 잘 읽으세요. 세컨드라이프에서 계속하여 로그인을 하려면, | 18 | 다음 서비스 약관을 잘 읽으세요. 세컨드라이프에서 계속하여 로그인을 하려면, |
18 | 사용 조건 동의를 수락해야 합니다. | 19 | 사용 조건 동의를 수락해야 합니다. |
diff --git a/linden/indra/newview/skins/default/xui/ko/menu_pie_avatar.xml b/linden/indra/newview/skins/default/xui/ko/menu_pie_avatar.xml index c1152ad..f1af081 100644 --- a/linden/indra/newview/skins/default/xui/ko/menu_pie_avatar.xml +++ b/linden/indra/newview/skins/default/xui/ko/menu_pie_avatar.xml | |||
@@ -4,7 +4,7 @@ | |||
4 | <menu_item_call label="차단" name="Avatar Mute" /> | 4 | <menu_item_call label="차단" name="Avatar Mute" /> |
5 | <menu_item_call label="이동 장소" name="Go To" /> | 5 | <menu_item_call label="이동 장소" name="Go To" /> |
6 | <menu_item_call label="평가" name="Rate" /> | 6 | <menu_item_call label="평가" name="Rate" /> |
7 | <menu_item_call label="친구 추가" name="Add Friend" /> | 7 | <menu_item_call label="친구 추가..." name="Add Friend" /> |
8 | <menu_item_call label="지불…" name="Pay..." /> | 8 | <menu_item_call label="지불…" name="Pay..." /> |
9 | <pie_menu label="더 보기>" name="More >"> | 9 | <pie_menu label="더 보기>" name="More >"> |
10 | <menu_item_call label="동결" name="Freeze..." /> | 10 | <menu_item_call label="동결" name="Freeze..." /> |
diff --git a/linden/indra/newview/skins/default/xui/ko/menu_viewer.xml b/linden/indra/newview/skins/default/xui/ko/menu_viewer.xml index 3abedaa..c48a850 100644 --- a/linden/indra/newview/skins/default/xui/ko/menu_viewer.xml +++ b/linden/indra/newview/skins/default/xui/ko/menu_viewer.xml | |||
@@ -142,6 +142,7 @@ | |||
142 | <menu_item_call label="자리비움 설정" name="Set Away" /> | 142 | <menu_item_call label="자리비움 설정" name="Set Away" /> |
143 | <menu_item_call label="다른 용무중 설정" name="Set Busy" /> | 143 | <menu_item_call label="다른 용무중 설정" name="Set Busy" /> |
144 | <menu_item_call label="모든 애니메이션 중지" name="Stop All Animations" /> | 144 | <menu_item_call label="모든 애니메이션 중지" name="Stop All Animations" /> |
145 | <menu_item_call label="키 해제" name="Release Keys" /> | ||
145 | <menu_item_separator label="-----------" name="separator4" /> | 146 | <menu_item_separator label="-----------" name="separator4" /> |
146 | <menu_item_call label="계정 기록" name="Account History..." /> | 147 | <menu_item_call label="계정 기록" name="Account History..." /> |
147 | <menu_item_call label="내 계정 관리" name="Manage My Account..." /> | 148 | <menu_item_call label="내 계정 관리" name="Manage My Account..." /> |
@@ -211,7 +212,10 @@ | |||
211 | <menu_item_call label="스크립트 경고/오류 창 표시" | 212 | <menu_item_call label="스크립트 경고/오류 창 표시" |
212 | name="Show Script Warning/Error Window" /> | 213 | name="Show Script Warning/Error Window" /> |
213 | <menu_item_call label="선택 사항에 스크립트 리컴파일" | 214 | <menu_item_call label="선택 사항에 스크립트 리컴파일" |
214 | name="Recompile Scripts in Selection" /> | 215 | name="Recompile Scripts in Selection"> |
216 | <menu_item_call label="모노" name="Mono" /> | ||
217 | <menu_item_call label="LSL" name="LSL" /> | ||
218 | </menu_item_call> | ||
215 | <menu_item_call label="선택 사항에 스크립트 초기화" | 219 | <menu_item_call label="선택 사항에 스크립트 초기화" |
216 | name="Reset Scripts in Selection" /> | 220 | name="Reset Scripts in Selection" /> |
217 | <menu_item_call label="선택 오브젝트에 스크립트 실행" | 221 | <menu_item_call label="선택 오브젝트에 스크립트 실행" |
diff --git a/linden/indra/newview/skins/default/xui/ko/mime_types.xml b/linden/indra/newview/skins/default/xui/ko/mime_types.xml index 9d2348c..3bdbf10 100644 --- a/linden/indra/newview/skins/default/xui/ko/mime_types.xml +++ b/linden/indra/newview/skins/default/xui/ko/mime_types.xml | |||
@@ -112,6 +112,11 @@ | |||
112 | 서식있는 텍스트(RTF) | 112 | 서식있는 텍스트(RTF) |
113 | </label> | 113 | </label> |
114 | </mimetype> | 114 | </mimetype> |
115 | <mimetype name="application/smil"> | ||
116 | <label name="application/smil_label"> | ||
117 | SMIL(동기식 멀티미디어 통합 언어) | ||
118 | </label> | ||
119 | </mimetype> | ||
115 | <mimetype name="application/xhtml+xml"> | 120 | <mimetype name="application/xhtml+xml"> |
116 | <label name="application/xhtml+xml_label"> | 121 | <label name="application/xhtml+xml_label"> |
117 | 웹 페이지(XHTML) | 122 | 웹 페이지(XHTML) |
@@ -222,4 +227,4 @@ | |||
222 | 동영상(AVI) | 227 | 동영상(AVI) |
223 | </label> | 228 | </label> |
224 | </mimetype> | 229 | </mimetype> |
225 | </mimetypes> \ No newline at end of file | 230 | </mimetypes> |
diff --git a/linden/indra/newview/skins/default/xui/ko/need_to_long.xml b/linden/indra/newview/skins/default/xui/ko/need_to_long.xml index d185c4d..804383d 100644 --- a/linden/indra/newview/skins/default/xui/ko/need_to_long.xml +++ b/linden/indra/newview/skins/default/xui/ko/need_to_long.xml | |||
@@ -1,86 +1,101 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>alerts.xml</a_file> | 4 | <string><a_file>alerts.xml</a_file> |
5 | <b_path>//HelpRegionObjectBonus/message</b_path> | 5 | <b_path>//HelpReportAbuseContainsCopyright/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 | Dear Resident, |
9 | parcel. The range allowed is 1 to 10. Set at '1', each 512m2 parcel | ||
10 | is allowed 117 objects. Set at '2', each 512m2 parcel is | ||
11 | allowed 234, or twice as many, and so on. The max number of objects | ||
12 | allowed per region remains 15,000 no matter what the | ||
13 | Object Bonus is. once set, be aware that lowering the Object Bonus may cause | ||
14 | objects to be returned or deleted. | ||
15 | 9 | ||
16 | Default: 1.0 | 10 | Reports about copyright infringement can only be submitted |
11 | as described at http://secondlife.com/corporate/dmca.php. | ||
12 | |||
13 | Reports concerning copyright infringement will automatically | ||
14 | be discarded if they are submitted through the 'Abuse Report' | ||
15 | feature. If your report does not relate to copyright infringement, | ||
16 | you may close this window and finish submitting your report. | ||
17 | |||
18 | Thank you, | ||
19 | |||
20 | Linden Lab | ||
17 | </d_old> | 21 | </d_old> |
18 | <e_new> | 22 | <e_new> |
19 | The Object Bonus is a multiplier for primitives allowed on any given | 23 | Dear Resident, |
20 | parcel. The range allowed is 1 to 10. Set at '1', each 512m2 parcel | 24 | |
21 | is allowed 117 objects. Set at '2', each 512m2 parcel is | 25 | If you are reporting intellectual property infringement, please make sure you are reporting it correctly: |
22 | allowed 234, or twice as many, and so on. The max number of objects | 26 | |
23 | allowed per region remains 15,000 no matter what the | 27 | (1) The Abuse Process. You may submit an abuse report if you believe a Resident is exploiting the Second Life permissions system, for example, by using CopyBot or similar copying tools, to infringe intellectual property rights. The Abuse Team investigates and issues appropriate disciplinary action for behavior that violates the Second Life Community Standards or Terms of Service. However, the Abuse Team does not handle and will not respond to requests to remove content from the Second Life world. |
24 | Object Bonus is. Once set, be aware that lowering the Object Bonus may cause objects to be returned or deleted. | 28 | |
25 | 29 | (2) The DMCA or Content Removal Process. To request removal of content from Second Life, you must submit a valid notification of infringement as provided in our DMCA Policy at http://secondlife.com/corporate/dmca.php. | |
26 | Default: 1.0 | 30 | |
27 | </e_new> | 31 | If you still wish to continue with the abuse process, please close this window and finish submitting your report. |
32 | |||
33 | Thank you, | ||
34 | |||
35 | Linden Lab</e_new> | ||
28 | <f_translation> | 36 | <f_translation> |
29 | 오브젝트 보너스는 특정 구획에 허락된 프림에 대해 배로 | 37 | 주민 여러분께, |
30 | 증가합니다. 허용 범위는 1에서 10입니다. '1'로 설정했을 때 각 512m2 구획에 | 38 | |
31 | 117 개 오브젝트가 허용됩니다. '2'로 설정하면 각 512m2 구획에 허용되는 | 39 | 저작권 침해 사례를 신고하려면 다음 절차에 따라 올바른 방식으로 신고하시기 바랍니다: |
32 | 오브젝트는 두 배인 234개로 됩니다. 지역당 허용되는 | 40 | |
33 | 최대 오브젝트 수는 오브젝트 보너스에 상관없이 15,000 개 | 41 | (1) 악용 신고 절차. 특정 주민이 세컨드라이프의 권한을 부당하게 이용하는 것으로 판단되는 경우 악용 신고서를 제출할 수 있습니다. 예를 들면, CopyBot(무단복제)나 유사한 복제 도구를 사용해서 저작권을 침해하는 행위를 들 수 있습니다. 악용 신고 전담팀은 세컨드라이프 커뮤니티 규칙과 서비스 약관을 위반한 행위를 조사하고 적절한 징계 조치를 취할 것입니다. 하지만 악용 신고 전담팀에서는 해당 컨텐츠 삭제를 직접 취급하지 않습니다. |
34 | 입니다. 일단 설정한 후 오브젝트 보너스를 낮추게 되면 오브젝트가반환되거나 삭제될 수 있는점을 알아 두십시오. | 42 | |
35 | 43 | (2) DMCA 또는 컨텐츠 삭제 절차. 세컨드라이프에서 컨텐츠 삭제를 요청하려면 http://secondlife.com/corporate/dmca.php의 DMCA 정책에 명시된 대로 유효한 저작권 침해 통지서를 제출해야 합니다. | |
36 | 기본 설정: 1.0 | 44 | |
37 | </f_translation> | 45 | 악용 신고 절차를 계속해서 진행하려면 이 창을 닫고 신고 제출을 완료하십시오. |
46 | |||
47 | 감사합니다. | ||
48 | |||
49 | 린든랩 드림</f_translation> | ||
38 | <f_old_trans> | 50 | <f_old_trans> |
39 | 오브젝트 보너스는 특정 구획에 허락된 프림에 대해 배로 | 51 | 주민 여러분께, |
40 | 증가합니다. 허용 범위는 1에서 10입니다. '1'로 설정했을 때 각 512m2 구획에 | 52 | |
41 | 허용되는 오브젝트는 117개입니다. '2'로 설정하면 각 512m2 구획에 허용되는 | 53 | 저작권 침해에 대한 신고는 http://secondlife.com/corporate/dmca.php의 |
42 | 오브젝트가 두 배인 234개로 됩니다. 지역당 허용되는 | 54 | 설명에 따라 제출해 주셔야 합니다. |
43 | 오브젝트의 최대 개수는 오브젝트 보너스에 대해 설정된 값과 상관없이 | 55 | |
44 | 15,000개입니다. 이 값을 설정한 후에는, 값 변경으로 인해 | 56 | 저작권 침해에 대한 신고가 '악용 신고' |
45 | 현재 구획 내의 오브젝트가 반환되거나 삭제될 것이 확실하기 전까지는 | 57 | 와는 다르게 신고 되어야 하며 악용 신고를 통해 제출되는 경우 자동으로 |
46 | 이 값을 낮추면 안됩니다. | 58 | 폐기됩니다. 신고하시는 내용이 저작권 침해와 관련이 없다면 |
59 | 이 창을 닫아 신고를 종료하십시오. | ||
60 | |||
61 | 감사합니다. | ||
47 | 62 | ||
48 | 설: 1.0 | 63 | 랩 드림 |
49 | </f_old_trans> | 64 | </f_old_trans> |
50 | </string><string><a_file>floater_about.xml</a_file> | 65 | </string><string><a_file>floater_about.xml</a_file> |
51 | <b_path>/floater_about/credits_editor</b_path> | 66 | <b_path>/floater_about/credits_editor</b_path> |
52 | <c_attribute></c_attribute> | 67 | <c_attribute></c_attribute> |
53 | <d_old> | 68 | <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. | 69 | 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 | 70 | ||
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 | 71 | Thank you to the following residents for helping to ensure that this is the best version yet: aaron23 decuir, Abelv Vollmar, Abyssin Otoro, ActingIll Igaly, Adamas Carter, Addy Broome, Adelia Menges, Alexandra Rucker, Alexandrea Fride, Alissa Sabre, Alyx Jonson, Ann Otoole, Anton Fargis, Aradia Dielli, Araina jewell, Arcane Clawtooth, arcangelo vantelli, Are Sperber, Argent Stonecutter, arkady yost, Ashcroft Burnham, Ashen Arida, Auron Forcella, Azadine Umarov, Azildin Furst, Balp Allen, Balpien Hammerer, Barney Boomslang, Barrett Slade, becky pippen, Beeflin Grut, Beer Dailey, Behemoth Greenwood, bigmanu greene, bitova loon, Bonca Chikuwa, Bonnie Bechir, Brandon Catteneo, buttonpusher jones, Carina Raymaker, Ceera Murakami, Celierra Darling, ChatNoir Moonsoo, Cheetah Hammerer, chet neurocam, Cinthya Loveless, Cold Spitteler, Coral Quinnell, Crash Pointe, CrazyTB Oh, Creem Pye, Crom Chaffe, ctrl althouse, dade carver, Dael Ra, dakota schwade, Dale Innis, Damian McLeod, Danger Lytton, danielluh ashton, DanOfWA Flanagan, Davec Horsforth, Davidius Morigi, davie zinner, Day Oh, DBDigital Epsilon, Deany Fall, deBruce Munro, Decaf Coffey, Dedric Mauriac, Deeso Saeed, Dekka Raymaker, dexter eberhart, Dildo Spitz, Dizzy Banjo, djcabello klaar, Dnali Anabuki, Domchi Underwood, Doran Zemlja, Drew Dwi, Duckless Vandyke, Duncan Stenvaag, Dylan Rickenbacker, dzogchen Moody, Dzonatas Sol, Eddy Stryker, Edward Griffith, Edward Pearse, ein duesenburg, Elle Pollack, Elle74 Zaftig, Emileigh Starbrook, Emma Nowhere, ener bing, Erdrick Balbozar, eric domela, Evangeline Biedermann, Excalibur Longstaff, Fake Fitzgerald, Feldspar Millgrove, Feynt Mistral, Fluf Fredriksson, Forbid Utorid, Fortyniner Beck, Francesco Despres, Francisco Koolhoven, Franta Burt, Fury Rosewood, garde Burrel, Garmin Kawaguichi, Gavin Ichigo, Gellan Glenelg, Genie Demina, Gennifer Meredith, Gigs Taggart, Goldie Katsu, Gwyneth Llewelyn, Haravikk Mistral, Harleen Gretzky, Haruki Watanabe, Heather Manatiso, Henri Beauchamp, Honey Fairweather, Hypatia Callisto, Ice Brodie, icktoofay Kamachi, IntLibber Brautigan, Janise Dreamscape, Jay Shinobu, Jenni Ryba, Jeremy Ondricek, JetZep Zabelin, Jims Smythe, Jini Hammerer, Jopy Weber, JustOneMore Loon, Kaluura Boa, Kara Markova, Kevin Susenko, Khyra Ares, Kii Lilliehook, Kitty Barnett, Kris Kuttelwascher, Lanita Wingtips, Laura18 Streeter, Lee Ludd, Lettrius Jewell, Liberty Tesla, LilyAnna Carter, Lindal Kidd, Lisa Lowe, Lisa McConnell, Lola Machin, luca peck, Lupus Clawtooth, M1sha Dallin, Macsima Dagostino, Mana Janus, Mani Canning, Manjusri Binder, marceledward edman, march Korda, marchino villota, Marcus Llewellyn, MartinRJ Fayray, Matthew Dowd, Max Kleiber, mazzy fastback, McCabe Maxsted, Mckailen Kohnke, Meghan Dench, Melvin Starbrook, Mercia Mcmahon, Miakoda Carnell, Michelle2 Zenovka, Michi Lumin, mick parnall, Milla Michinaga, Millie Thompson, miranda Ashby, Mircea Lobo, MIssSara Beck, mouse mimistrobell, Myria Boa, Nanci Barthelmess, Nargus Asturias, Natalya Debevec, Nedrae Messmer, Nexeus Fatale, Niky Zenovka, Nimrod Szondi, Ninane Yoshikawa, Noch Tripsa, nokithecat writer, Nyko Merlin, Onyx Halberd, oryx tempel, Osprey Therian, Pac Hyun, Panagea McMillan, Patrick Ferrentino, PattehPh0x Katsu, ponk bing, Poppy Linden, Prajna Vella, Precious Rhiano, Prokofy Neva, Randall Lovenkraft, Rascal Ratelle, Raydon Writer, Rhaorth Antonelli, Rock Hayek, Ron Crimson, Ron Khondji, Ronald Richez, Rui Clary, Ruud Lathrop, Sakkano Imako, Sam Reinard, Sascha Vandyke, Scrippy Scofield, Sean18 McCarey, Sedona Mills, Sekonda Huet, Seraph Nephilim, Sergei Milos, Shadowquine Maltz, shai khalifa, sheilah flatley, Sheri Underwood, Shuggy Husky, Sierra Janus, Sigma Avro, Simil Miles, simon kline, Simon Nolan, Sindy Tsure, Sparks Keynes, Squirrel Wood, Stahi Columbia, StarSong Bright, Summer Seale, Sunn Thunders, Susan Koltai, Syler Zhora, Synack Fitzgerald, Tayra Dagostino, Tee Cramer, Teravus Ousley, Thomas Shikami, Tia Araw, Tillie Ariantho, Topher Brooks, Torley Linden, Twosteppin Jewell, tx Oh, urantia jewell, vaguegirl Petty, VeC Merlin, venus petrov, vv33d Beck, vynka dean, zann canto, zeebster colasanti, Zi Ree, Zion Tristan, Zorin Frobozz, Zyzzy Zarf |
57 | 72 | ||
58 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 73 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion |
59 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | 74 | APR Copyright (C) 2000-2004 The Apache Software Foundation |
60 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | 75 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) |
61 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | 76 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. |
62 | GL Copyright (C) 1999-2004 Brian Paul. | 77 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). |
63 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | 78 | GL Copyright (C) 1999-2004 Brian Paul. |
64 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | 79 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. |
65 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | 80 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) |
66 | ogg/vorbis Copyright (C) 2001, Xiphophorus | 81 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. |
67 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | 82 | ogg/vorbis Copyright (C) 2001, Xiphophorus |
68 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | 83 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. |
69 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 84 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga |
70 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | 85 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
71 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | 86 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. |
87 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
72 | 88 | ||
73 | All rights reserved. See licenses.txt for details. | 89 | All rights reserved. See licenses.txt for details. |
74 | 90 | ||
75 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 91 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) |
76 | 92 | ||
77 | 93 | ||
78 | Happiness is a warm puppy. -- Charles M. Schulz | 94 | Happiness is a warm puppy. -- Charles M. Schulz</d_old> |
79 | </d_old> | ||
80 | <e_new> | 95 | <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. | 96 | Second Life is brought to you by Philip, Tessa, Andrew, Cory, Ben, Bunny, Char, Charlie, Colin, Dan, Daniel, Doug, Eric, Hamlet, Haney, Hunter, Ian, Jeff, Jim, John, Lee, Mark, Peter, Phoenix, Richard, Robin, Xenon, Steve, Tanya, Eddie, Frank, Bruce, Aaron, Alice, Bob, Debra, Eileen, Helen, Janet, Louie, Leviathania, Stefan, Ray, Kevin, Tom, Mikeb, MikeT, Burgess, Elena, Tracy, BillTodd, Ryan, Zach, Sarah, Nova, Otakon, Tim, Stephanie, Michael, Evan, Nicolas, Catherine, Rachelle, Dave, Holly, Bub, Kelly, Magellan, Ramzi, Don, Sabin, Jill, Rheya, DanceStar, Jeska, Hungry, Torley, Kona, Callum, Charity, Ventrella, Jack, Uncle, Vektor, Iris, Chris, Nicole, Mick, Reuben, Blue, Babbage, Yedwab, Deana, Lauren, Brent, Pathfinder, Chadrick, Altruima, Jesse, Monroe, David, Tess, Lizzie, Patsy, Pony, Isaac, Lawrence, Cyn, Bo, Gia, Annette, Marius, Tbone, Jonathan, Karen, Ginsu, Yuko, Makiko, Thomas, Harry, Seth, Alexei, Brian, Guy, Runitai, Ethan, Data, Cornelius, Kenny, Swiss, Zero, Natria, Wendy, Stephen, Teeple, Thumper, Lucy, Dee, Mia, Liana, Warren, Branka, Aura, beez, Milo, Hermia, Red, Thrax, Joe, Sally, Magenta, Paul, Jose, Rejean, Henrik, Lexie, Amber, Logan, Xan, Nora, Morpheus, Donovan, Leyla, MichaelFrancis, Beast, Cube, Bucky, Joshua, Stryfe, Harmony, Teresa, Claudia, Walker, Glenn, Fritz, Fordak, June, Cleopetra, Jean, Ivy, Betsy, Roosevelt, Spike, Ken, Which, Tofu, Chiyo, Rob, Zee, dustin, George, Del, Matthew, Cat, Jacqui, Lightfoot, Adrian, Viola, Alfred, Noel, Irfan, Sunil, Yool, Rika, Jane, Xtreme, Frontier, a2, Neo, Siobhan, Yoz, Justin, Elle, Qarl, Benjamin, Isabel, Gulliver, Everett, Christopher, Izzy, Stephany, Garry, Sejong, Sean, Tobin, Iridium, Meta, Anthony, Jeremy, JP, Jake, Maurice, Madhavi, Leopard, Kyle, Joon, Kari, Bert, Belinda, Jon, Kristi, Bridie, Pramod, KJ, Socrates, Maria, Ivan, Aric, Yamasaki, Adreanne, Jay, MitchK, Ceren, Coco, Durl, Jenny, Periapse, Kartic, Storrs, Lotte, Sandy, Colossus, Zen, BigPapi, Brad, Pastrami, Kurz, Mani, Neuro, Jaime, MJ, Rowan, Sgt, Elvis, Gecko, Samuel, Sardonyx, Leo, Bryan, Niko, Soft, Poppy, Rachel, Aki, Angelo, Banzai, Alexa, Sue, CeeLo, Bender, CG, Gillian, Pelle, Nick, Echo, Zara, Christine, Shamiran, Emma, Blake, Keiko, Plexus, Joppa, Sidewinder, Erica, Ashlei, Twilight, Kristen, Brett, Q, Enus, Simon, Bevis, Kraft, Kip, Chandler, Ron, LauraP, Ram, KyleJM, Scouse, Prospero, Melissa, Marty, Nat, Hamilton, Kend, Lordan, Jimmy, Kosmo, Seraph, Green, Ekim, Wiggo, JT, Rome, Doris, Miz, Benoc, Whump, Trinity, Patch, Kate, TJ, Bao, Joohwan, Christy, Sofia, Matias, Cogsworth, Johan, Oreh, Cheah, Angela, Brandy, Mango, Lan, Aleks, Gloria, Heidy, Mitchell, Space, Colton, Bambers, Einstein, Maggie, Malbers, Rose, Winnie, Stella, Milton, Rothman, Niall, Marin, Allison, James, Katie, Dawn, Katt, Kalpana, Judy, Andrea, Ambroff, Infinity, Gail, Rico, Raymond, Yi, William, Christa, M, Teagan, Scout, Molly, Dante, Corr, Dynamike, Usi, Kaylee, Lil, Danica, Sascha, Kelv, Jacob, Nya, Rodney, Brandon, Elsie, Blondin, Grant, Katrin, Nyx, Gabriel, Locklainn, Claire, Devin, Minerva, Monty, Austin, Bradford, Si, Keira, H, Caitlin, Dita, Makai, Jenn and many others. |
82 | 97 | ||
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 | 98 | Thank you to the following residents for helping to ensure that this is the best version yet: aaron23 decuir, Abra Miles, absolute balderdash, adelle fitzgerald, Aeron Kohime, Aki Shichiroji, Alger Meads, Alissa Sabre, AlwaysIcey Mapholisto, Arawn Spitteler, Aren Mandala, Arianna Wrigglesworth, Bagushii Kohime, Balpien Hammerer, Blinking2342 Blinker, byakuya runo, Capucchy Streeter, Chandra Jun, Coyote Pace, Crusher Soderstrom, Cummere Mayo, cyberrosa Rossini, Dael Ra, danana dodonpa, Darek Deluca, Davec Horsforth, django yifu, draco crane, Dre Dagostino, Ephyu Reino, etan quan, Fenrix Murakami, Fledhyris Proudhon, Fred Wardhani, Frederich Courier, garth fairchang, Gellan Glenelg, Geraldine Giha, GOLAN Eilde, gonzo joubert, Hachiro Yokosuka, Hampton Hax, harleywood guru, Hevenz Vansant, imnotgoing sideways, Jaden Giles, Jeanette Janus, Karl Dorance, keaton Akina, Khashai Steinbeck, KiPSOFT Tuqiri, kirstenlee Cinquetti, Kitty Barnett, Laurent Vesta, Lazure Ryba, Lima Vesperia, Linzi Bingyi, Lisa Lowe, LuDon Ninetails, Mark Rosenbaum, McCabe Maxsted, Michi Lumin, Midi Aeon, ml0rtd kit, Mo Eriksen, Morice Flanagan, Mysterion Aeon, Nad Gough, norgan torok, Pygar Bu, Qie Niangao, rachel corleone, Rado Arado, roberto salubrius, Royer Pessoa, samia bechir, Sasha Nurmi, Sean Heying, Selkit Diller, Shadow Pidgeon, simon kline, Smokie Ember, Soap Clawtooth, Strife Onizuka, Tal Chernov, Talan Hyun, tangletwigs fairymeadow, Tanya Spinotti, Tayra Dagostino, Teebone Aeon, Theremes Langdon, Thraxis Epsilon, tucor Capalini, Vasko Hawker, VenusMari Zapedzki, Vex Streeter, Viktoria Dovgal, Vincent Nacon, Viridian Exonar, Vivienne Schell, WarKirby Magojiro, Wilton Lundquist, Yukinoroh Kamachi, Zyzzy Zarf |
84 | 99 | ||
85 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | 100 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion |
86 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 101 | APR Copyright (C) 2000-2004 The Apache Software Foundation |
@@ -103,11 +118,11 @@ Happiness is a warm puppy. -- Charles M. Schulz | |||
103 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 118 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) |
104 | 119 | ||
105 | 120 | ||
106 | Happiness is a warm puppy. -- Charles M. Schulz</e_new> | 121 | What happens to a dream deferred? --Langston Hughes</e_new> |
107 | <f_translation> | 122 | <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, 그 외에 많은 분들이 수고해 주셨습니다. | 123 | 세컨드라이프 제작자들: Philip, Tessa, Andrew, Cory, Ben, Bunny, Char, Charlie, Colin, Dan, Daniel, Doug, Eric, Hamlet, Haney, Hunter, Ian, Jeff, Jim, John, Lee, Mark, Peter, Phoenix, Richard, Robin, Xenon, Steve, Tanya, Eddie, Frank, Bruce, Aaron, Alice, Bob, Debra, Eileen, Helen, Janet, Louie, Leviathania, Stefan, Ray, Kevin, Tom, Mikeb, MikeT, Burgess, Elena, Tracy, BillTodd, Ryan, Zach, Sarah, Nova, Otakon, Tim, Stephanie, Michael, Evan, Nicolas, Catherine, Rachelle, Dave, Holly, Bub, Kelly, Magellan, Ramzi, Don, Sabin, Jill, Rheya, DanceStar, Jeska, Hungry, Torley, Kona, Callum, Charity, Ventrella, Jack, Uncle, Vektor, Iris, Chris, Nicole, Mick, Reuben, Blue, Babbage, Yedwab, Deana, Lauren, Brent, Pathfinder, Chadrick, Altruima, Jesse, Monroe, David, Tess, Lizzie, Patsy, Pony, Isaac, Lawrence, Cyn, Bo, Gia, Annette, Marius, Tbone, Jonathan, Karen, Ginsu, Yuko, Makiko, Thomas, Harry, Seth, Alexei, Brian, Guy, Runitai, Ethan, Data, Cornelius, Kenny, Swiss, Zero, Natria, Wendy, Stephen, Teeple, Thumper, Lucy, Dee, Mia, Liana, Warren, Branka, Aura, beez, Milo, Hermia, Red, Thrax, Joe, Sally, Magenta, Paul, Jose, Rejean, Henrik, Lexie, Amber, Logan, Xan, Nora, Morpheus, Donovan, Leyla, MichaelFrancis, Beast, Cube, Bucky, Joshua, Stryfe, Harmony, Teresa, Claudia, Walker, Glenn, Fritz, Fordak, June, Cleopetra, Jean, Ivy, Betsy, Roosevelt, Spike, Ken, Which, Tofu, Chiyo, Rob, Zee, dustin, George, Del, Matthew, Cat, Jacqui, Lightfoot, Adrian, Viola, Alfred, Noel, Irfan, Sunil, Yool, Rika, Jane, Xtreme, Frontier, a2, Neo, Siobhan, Yoz, Justin, Elle, Qarl, Benjamin, Isabel, Gulliver, Everett, Christopher, Izzy, Stephany, Garry, Sejong, Sean, Tobin, Iridium, Meta, Anthony, Jeremy, JP, Jake, Maurice, Madhavi, Leopard, Kyle, Joon, Kari, Bert, Belinda, Jon, Kristi, Bridie, Pramod, KJ, Socrates, Maria, Ivan, Aric, Yamasaki, Adreanne, Jay, MitchK, Ceren, Coco, Durl, Jenny, Periapse, Kartic, Storrs, Lotte, Sandy, Colossus, Zen, BigPapi, Brad, Pastrami, Kurz, Mani, Neuro, Jaime, MJ, Rowan, Sgt, Elvis, Gecko, Samuel, Sardonyx, Leo, Bryan, Niko, Soft, Poppy, Rachel, Aki, Angelo, Banzai, Alexa, Sue, CeeLo, Bender, CG, Gillian, Pelle, Nick, Echo, Zara, Christine, Shamiran, Emma, Blake, Keiko, Plexus, Joppa, Sidewinder, Erica, Ashlei, Twilight, Kristen, Brett, Q, Enus, Simon, Bevis, Kraft, Kip, Chandler, Ron, LauraP, Ram, KyleJM, Scouse, Prospero, Melissa, Marty, Nat, Hamilton, Kend, Lordan, Jimmy, Kosmo, Seraph, Green, Ekim, Wiggo, JT, Rome, Doris, Miz, Benoc, Whump, Trinity, Patch, Kate, TJ, Bao, Joohwan, Christy, Sofia, Matias, Cogsworth, Johan, Oreh, Cheah, Angela, Brandy, Mango, Lan, Aleks, Gloria, Heidy, Mitchell, Space, Colton, Bambers, Einstein, Maggie, Malbers, Rose, Winnie, Stella, Milton, Rothman, Niall, Marin, Allison, James, Katie, Dawn, Katt, Kalpana, Judy, Andrea, Ambroff, Infinity, Gail, Rico, Raymond, Yi, William, Christa, M, Teagan, Scout, Molly, Dante, Corr, Dynamike, Usi, Kaylee, Lil, Danica, Sascha, Kelv, Jacob, Nya, Rodney, Brandon, Elsie, Blondin, Grant, Katrin, Nyx, Gabriel, Locklainn, Claire, Devin, Minerva, Monty, Austin, Bradford, Si, Keira, H, Caitlin, Dita, Makai, Jenn, 그 외에 많은 분들이 수고해 주셨습니다. |
109 | 124 | ||
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 | 125 | 현재 버전이 최상의 버전이 될 수 있도록 도와주신 여러분께 감사드립니다: aaron23 decuir, Abra Miles, absolute balderdash, adelle fitzgerald, Aeron Kohime, Aki Shichiroji, Alger Meads, Alissa Sabre, AlwaysIcey Mapholisto, Arawn Spitteler, Aren Mandala, Arianna Wrigglesworth, Bagushii Kohime, Balpien Hammerer, Blinking2342 Blinker, byakuya runo, Capucchy Streeter, Chandra Jun, Coyote Pace, Crusher Soderstrom, Cummere Mayo, cyberrosa Rossini, Dael Ra, danana dodonpa, Darek Deluca, Davec Horsforth, django yifu, draco crane, Dre Dagostino, Ephyu Reino, etan quan, Fenrix Murakami, Fledhyris Proudhon, Fred Wardhani, Frederich Courier, garth fairchang, Gellan Glenelg, Geraldine Giha, GOLAN Eilde, gonzo joubert, Hachiro Yokosuka, Hampton Hax, harleywood guru, Hevenz Vansant, imnotgoing sideways, Jaden Giles, Jeanette Janus, Karl Dorance, keaton Akina, Khashai Steinbeck, KiPSOFT Tuqiri, kirstenlee Cinquetti, Kitty Barnett, Laurent Vesta, Lazure Ryba, Lima Vesperia, Linzi Bingyi, Lisa Lowe, LuDon Ninetails, Mark Rosenbaum, McCabe Maxsted, Michi Lumin, Midi Aeon, ml0rtd kit, Mo Eriksen, Morice Flanagan, Mysterion Aeon, Nad Gough, norgan torok, Pygar Bu, Qie Niangao, rachel corleone, Rado Arado, roberto salubrius, Royer Pessoa, samia bechir, Sasha Nurmi, Sean Heying, Selkit Diller, Shadow Pidgeon, simon kline, Smokie Ember, Soap Clawtooth, Strife Onizuka, Tal Chernov, Talan Hyun, tangletwigs fairymeadow, Tanya Spinotti, Tayra Dagostino, Teebone Aeon, Theremes Langdon, Thraxis Epsilon, tucor Capalini, Vasko Hawker, VenusMari Zapedzki, Vex Streeter, Viktoria Dovgal, Vincent Nacon, Viridian Exonar, Vivienne Schell, WarKirby Magojiro, Wilton Lundquist, Yukinoroh Kamachi, Zyzzy Zarf |
111 | 126 | ||
112 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | 127 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion |
113 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 128 | APR Copyright (C) 2000-2004 The Apache Software Foundation |
@@ -130,123 +145,34 @@ Happiness is a warm puppy. -- Charles M. Schulz | |||
130 | 음성 채팅 오디오 코딩: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 145 | 음성 채팅 오디오 코딩: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) |
131 | 146 | ||
132 | 147 | ||
133 | 행란 포한 강 한. -- Charles M. Schulz</f_translation> | 148 | 루진 엔 무 이 일어나? --Langston Hughes</f_translation> |
134 | <f_old_trans> | 149 | <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, 그 외에 많은 분들이 수고해 주셨습니다. | 150 | 세컨드라이프 제작자들: Philip, Tessa, Andrew, Cory, Ben, Bunny, Char, Charlie, Colin, Dan, Daniel, Doug, Eric, Hamlet, Haney, Hunter, Ian, Jeff, Jim, John, Lee, Mark, Peter, Phoenix, Richard, Robin, Xenon, Steve, Tanya, Eddie, Frank, Bruce, Aaron, Alice, Bob, Debra, Eileen, Helen, Janet, Louie, Leviathania, Stefan, Ray, Kevin, Tom, Mikeb, MikeT, Burgess, Elena, Tracy, BillTodd, Ryan, Zach, Sarah, Nova, Otakon, Tim, Stephanie, Michael, Evan, Nicolas, Catherine, Rachelle, Dave, Holly, Bub, Kelly, Magellan, Ramzi, Don, Sabin, Jill, Rheya, DanceStar, Jeska, Hungry, Torley, Kona, Callum, Charity, Ventrella, Jack, Uncle, Vektor, Iris, Chris, Nicole, Mick, Reuben, Blue, Babbage, Yedwab, Deana, Lauren, Brent, Pathfinder, Chadrick, Altruima, Jesse, Monroe, David, Tess, Lizzie, Patsy, Pony, Isaac, Lawrence, Cyn, Bo, Gia, Annette, Marius, Tbone, Jonathan, Karen, Ginsu, Yuko, Makiko, Thomas, Harry, Seth, Alexei, Brian, Guy, Runitai, Ethan, Data, Cornelius, Kenny, Swiss, Zero, Natria, Wendy, Stephen, Teeple, Thumper, Lucy, Dee, Mia, Liana, Warren, Branka, Aura, beez, Milo, Hermia, Red, Thrax, Joe, Sally, Magenta, Paul, Jose, Rejean, Henrik, Lexie, Amber, Logan, Xan, Nora, Morpheus, Donovan, Leyla, MichaelFrancis, Beast, Cube, Bucky, Joshua, Stryfe, Harmony, Teresa, Claudia, Walker, Glenn, Fritz, Fordak, June, Cleopetra, Jean, Ivy, Betsy, Roosevelt, Spike, Ken, Which, Tofu, Chiyo, Rob, Zee, dustin, George, Del, Matthew, Cat, Jacqui, Lightfoot, Adrian, Viola, Alfred, Noel, Irfan, Sunil, Yool, Rika, Jane, Xtreme, Frontier, a2, Neo, Siobhan, Yoz, Justin, Elle, Qarl, Benjamin, Isabel, Gulliver, Everett, Christopher, Izzy, Stephany, Garry, Sejong, Sean, Tobin, Iridium, Meta, Anthony, Jeremy, JP, Jake, Maurice, Madhavi, Leopard, Kyle, Joon, Kari, Bert, Belinda, Jon, Kristi, Bridie, Pramod, KJ, Socrates, Maria, Ivan, Aric, Yamasaki, Adreanne, Jay, MitchK, Ceren, Coco, Durl, Jenny, Periapse, Kartic, Storrs, Lotte, Sandy, Colossus, Zen, BigPapi, Brad, Pastrami, Kurz, Mani, Neuro, Jaime, MJ, Rowan, Sgt, Elvis, Gecko, Samuel, Sardonyx, Leo, Bryan, Niko, Soft, Poppy, Rachel, Aki, Angelo, Banzai, Alexa, Sue, CeeLo, Bender, CG, Gillian, Pelle, Nick, Echo, Zara, Christine, Shamiran, Emma, Blake, Keiko, Plexus, Joppa, Sidewinder, Erica, Ashlei, Twilight, Kristen, Brett, Q, Enus, Simon, Bevis, Kraft, Kip, Chandler, Ron, LauraP, Ram, KyleJM, Scouse, Prospero, Melissa, Marty, Nat, Hamilton, Kend, Lordan, Jimmy, Kosmo, Seraph, Green, Ekim, Wiggo, JT, Rome, Doris, Miz, Benoc, Whump, Trinity, Patch, Kate, TJ, Bao, Joohwan, Christy, Sofia, Matias, Cogsworth, Johan, Oreh, Cheah, Angela, Brandy, Mango, Lan, Aleks, Gloria, Heidy, Mitchell, Space, Colton, Bambers, Einstein, Maggie, Malbers, Rose, Winnie, Stella, Milton, Rothman, Niall, Marin, Allison, James, Katie, Dawn, Katt, Kalpana, Judy, Andrea, Ambroff, Infinity, Gail, Rico, Raymond, Yi, William, Christa, M, Teagan, Scout, Molly, Dante, Corr, Dynamike, Usi, Kaylee, Lil, Danica, Sascha, Kelv, Jacob, Nya, Rodney, Brandon, Elsie, Blondin, Grant, Katrin, Nyx, Gabriel, Locklainn, Claire, Devin, Minerva, Monty, Austin, Bradford, Si, Keira, H, Caitlin, Dita, Makai, Jenn, 그 외에 많은 분들이 수고해 주셨습니다. |
136 | 151 | ||
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 | 152 | 현재 버전이 최상의 버전이 될 수 있도록 도와주신 여러분께 감사드립니다: aaron23 decuir, Abra Miles, absolute balderdash, adelle fitzgerald, Aeron Kohime, Aki Shichiroji, Alger Meads, Alissa Sabre, AlwaysIcey Mapholisto, Arawn Spitteler, Aren Mandala, Arianna Wrigglesworth, Bagushii Kohime, Balpien Hammerer, Blinking2342 Blinker, byakuya runo, Capucchy Streeter, Chandra Jun, Coyote Pace, Crusher Soderstrom, Cummere Mayo, cyberrosa Rossini, Dael Ra, danana dodonpa, Darek Deluca, Davec Horsforth, django yifu, draco crane, Dre Dagostino, Ephyu Reino, etan quan, Fenrix Murakami, Fledhyris Proudhon, Fred Wardhani, Frederich Courier, garth fairchang, Gellan Glenelg, Geraldine Giha, GOLAN Eilde, gonzo joubert, Hachiro Yokosuka, Hampton Hax, harleywood guru, Hevenz Vansant, imnotgoing sideways, Jaden Giles, Jeanette Janus, Karl Dorance, keaton Akina, Khashai Steinbeck, KiPSOFT Tuqiri, kirstenlee Cinquetti, Kitty Barnett, Laurent Vesta, Lazure Ryba, Lima Vesperia, Linzi Bingyi, Lisa Lowe, LuDon Ninetails, Mark Rosenbaum, McCabe Maxsted, Michi Lumin, Midi Aeon, ml0rtd kit, Mo Eriksen, Morice Flanagan, Mysterion Aeon, Nad Gough, norgan torok, Pygar Bu, Qie Niangao, rachel corleone, Rado Arado, roberto salubrius, Royer Pessoa, samia bechir, Sasha Nurmi, Sean Heying, Selkit Diller, Shadow Pidgeon, simon kline, Smokie Ember, Soap Clawtooth, Strife Onizuka, Tal Chernov, Talan Hyun, tangletwigs fairymeadow, Tanya Spinotti, Tayra Dagostino, Teebone Aeon, Theremes Langdon, Thraxis Epsilon, tucor Capalini, Vasko Hawker, VenusMari Zapedzki, Vex Streeter, Viktoria Dovgal, Vincent Nacon, Viridian Exonar, Vivienne Schell, WarKirby Magojiro, Wilton Lundquist, Yukinoroh Kamachi, Zyzzy Zarf |
138 | 153 | ||
139 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 154 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion |
140 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | 155 | APR Copyright (C) 2000-2004 The Apache Software Foundation |
141 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | 156 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) |
142 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | 157 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. |
143 | GL Copyright (C) 1999-2004 Brian Paul. | 158 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). |
144 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | 159 | GL Copyright (C) 1999-2004 Brian Paul. |
145 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | 160 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. |
146 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | 161 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) |
147 | ogg/vorbis Copyright (C) 2001, Xiphophorus | 162 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. |
148 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | 163 | ogg/vorbis Copyright (C) 2001, Xiphophorus |
149 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | 164 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. |
150 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 165 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga |
151 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | 166 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
152 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | 167 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. |
168 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
153 | 169 | ||
154 | 저작권 보유. 자세한 내용은 licenses.txt를 참조하십시오. | 170 | 저작권 보유. 자세한 내용은 licenses.txt를 참조하십시오. |
155 | 171 | ||
156 | 음성 채팅 오디오 코딩: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 172 | 음성 채팅 오디오 코딩: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) |
157 | 173 | ||
158 | 174 | ||
159 | 행복이란 포근한 강아지 한마리다. -- Charles M. Schulz | 175 | 행복이란 포근한 강아지 한마리다. -- Charles M. Schulz |
160 | </f_old_trans> | 176 | </f_old_trans> |
161 | </string><string><a_file>alerts.xml</a_file> | ||
162 | <b_path>//GraphicsPreferencesHelp/message</b_path> | ||
163 | <c_attribute></c_attribute> | ||
164 | <d_old> | ||
165 | 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: | ||
166 | |||
167 | Shaders: Enable or disable various types of pixel shaders. | ||
168 | |||
169 | Reflection Detail: Sets the types of objects that water can reflect. | ||
170 | |||
171 | Avatar Rendering: Sets options that affect how the client renders avatars. | ||
172 | |||
173 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. | ||
174 | |||
175 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. | ||
176 | |||
177 | Post Process Quality: Sets the resolution with which Glow is rendered. | ||
178 | |||
179 | Mesh Detail: Sets the amout of detail used in rendering certain objects. | ||
180 | |||
181 | Lighting Detail: Selects what types of lights you would like to render. | ||
182 | |||
183 | Terrain Detail: Sets the amount of terrain detail you would like to see. | ||
184 | |||
185 | 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. | ||
186 | </d_old> | ||
187 | <e_new> | ||
188 | 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: | ||
189 | |||
190 | Shaders: Enable or disable various types of pixel shaders. | ||
191 | |||
192 | Reflection Detail: Sets the types of objects that water can reflect. | ||
193 | |||
194 | Avatar Rendering: Sets options that affect how the client renders avatars. | ||
195 | |||
196 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. | ||
197 | |||
198 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. | ||
199 | |||
200 | Post Process Quality: Sets the resolution with which Glow is rendered. | ||
201 | |||
202 | 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. | ||
203 | |||
204 | Lighting Detail: Selects what types of lights you would like to render. | ||
205 | |||
206 | Terrain Detail: Sets the amount of detail you would like to see for the terrain texture. | ||
207 | </e_new> | ||
208 | <f_old_trans></f_old_trans> | ||
209 | <f_translation> | ||
210 | 세컨드라이프 클라이언트의 그래픽 해상도 및 품질을 제어합니다. 낮음, 중간, 높음, 매우 높음 4단계의 설정을 선택할 수 있습니다. 또한 사용자 크기 확인란을 선택 후 설정을 세부 조작할 수 있습니다. | ||
211 | |||
212 | 쉐이더: 쉐이더 유형을 활성화하거나 비활성화합니다. | ||
213 | |||
214 | 반사 디테일: 물에 반사되는 오브젝트 유형을 설정합니다. | ||
215 | |||
216 | 아바타 렌더링: 아바타를 렌더링하는 방식의 옵션을 설정합니다. | ||
217 | |||
218 | 렌더링 거리 제한: 현재 시점에서 부터 오브젝트가 렌더링되는 거리를 조절합니다. | ||
219 | |||
220 | 최대 파티클 수: 화면에서 한 번에 볼 수 있는 최대 파티클 수를 설정합니다. | ||
221 | |||
222 | 빛 처리 품질: 빛이 렌더링되는 해상도를 설정합니다. | ||
223 | |||
224 | 메쉬 디테일: 특정 오브젝트를 렌더링하는 디테일 또는 삼각형 개수를 설정합니다. 값이 클수록 렌더링이 더 오래 걸리지만 오브젝트의 모양이 더 자세하게 표현됩니다. | ||
225 | |||
226 | 조명 세부 사항: 조명의 유형을 선택합니다. | ||
227 | |||
228 | 지형 세부 사항: 지형 텍스처의 디테일을 설정합니다. | ||
229 | </f_translation> | ||
230 | <f_old_trans> | ||
231 | 이 창은 창 크기와 클라이언트 그래픽의 해상도 및 품질을 제어합니다. 그래픽 환경 설정 인터페이스를 통해 낮음, 중간, 높음, 매우 높음 등 4개의 그래픽 레벨 중에서 원하는 설정을 선택할 수 있습니다. 사용자 지정 확인란을 선택하고 다음의 설정을 조작하여 이러한 그래픽을 원하는 대로 설정할 수 있습니다. | ||
232 | |||
233 | 쉐이더: 여러 가지 픽셀 쉐이더 유형을 활성화하거나 비활성화합니다. | ||
234 | |||
235 | 반사 디테일: 물에 반사될 수 있는 오브젝트 유형을 설정합니다. | ||
236 | |||
237 | 아바타 렌더링: 클라이언트가 아바타를 렌더링하는 방식에 영향을 주는 옵션을 설정합니다. | ||
238 | |||
239 | 렌더링 거리 제한: 장면에서 현재 시점의 오브젝트가 렌더링되는 거리를 조절합니다. | ||
240 | |||
241 | 최대 파티클 수: 화면에서 한 번에 볼 수 있는 최대 파티클 수를 설정합니다. | ||
242 | |||
243 | 빛 처리 품질: 빛이 렌더링되는 해상도를 설정합니다. | ||
244 | |||
245 | 메쉬 디테일: 오브젝트를 렌더링하는 디테일을 설정합니다. | ||
246 | |||
247 | 조명 세부 사항: 렌더링할 조명 유형을 선택합니다. | ||
248 | |||
249 | 지형 세부 사항: 보려는 지형의 디테일을 설정합니다. | ||
250 | </f_old_trans> | ||
251 | </string> | 177 | </string> |
252 | </strings> | 178 | </strings> |
diff --git a/linden/indra/newview/skins/default/xui/ko/need_to_translate.xml b/linden/indra/newview/skins/default/xui/ko/need_to_translate.xml index b2c37db..8c1887c 100644 --- a/linden/indra/newview/skins/default/xui/ko/need_to_translate.xml +++ b/linden/indra/newview/skins/default/xui/ko/need_to_translate.xml | |||
@@ -1,200 +1,31 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>alerts.xml</a_file> | 4 | <string><a_file>alerts.xml</a_file> |
5 | <b_path>//TutorialNotFound/message</b_path> | 5 | <b_path>//AddFriend/editline</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 | Would you be my friend? |
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>//EstateObjectReturn/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 | Are you sure you want to return objects owned by |
21 | </e_new> | 21 | [USER_NAME] ? |
22 | <f_old_trans></f_old_trans> | ||
23 | <f_translation> | ||
24 | 확인 | ||
25 | </f_translation> | ||
26 | </string><string><a_file>alerts.xml</a_file> | ||
27 | <b_path>//FreezeAvatarFullname/message</b_path> | ||
28 | <c_attribute></c_attribute> | ||
29 | <d_old></d_old> | ||
30 | <e_new> | ||
31 | Freeze [AVATAR_NAME]? | ||
32 | He or she will temporarily be unable to move, | ||
33 | chat, or interact with the world. | ||
34 | </e_new> | ||
35 | <f_old_trans></f_old_trans> | ||
36 | <f_translation> | ||
37 | [AVATAR_NAME]을(를) 정지시키겠습니까? | ||
38 | 이렇게 하면 일시적으로 움직이지 못하게 되고, | ||
39 | 채팅이나 상호작용을 할 수 없습니다. | ||
40 | </f_translation> | ||
41 | </string><string><a_file>alerts.xml</a_file> | ||
42 | <b_path>//FreezeAvatarFullname/Freeze</b_path> | ||
43 | <c_attribute></c_attribute> | ||
44 | <d_old></d_old> | ||
45 | <e_new> | ||
46 | Freeze | ||
47 | </e_new> | ||
48 | <f_old_trans></f_old_trans> | ||
49 | <f_translation> | ||
50 | 정지 | ||
51 | </f_translation> | ||
52 | </string><string><a_file>alerts.xml</a_file> | ||
53 | <b_path>//FreezeAvatarFullname/Unfreeze</b_path> | ||
54 | <c_attribute></c_attribute> | ||
55 | <d_old></d_old> | ||
56 | <e_new> | ||
57 | Unfreeze | ||
58 | </e_new> | ||
59 | <f_old_trans></f_old_trans> | ||
60 | <f_translation> | ||
61 | 정지 해제 | ||
62 | </f_translation> | ||
63 | </string><string><a_file>alerts.xml</a_file> | ||
64 | <b_path>//FreezeAvatarFullname/Cancel</b_path> | ||
65 | <c_attribute></c_attribute> | ||
66 | <d_old></d_old> | ||
67 | <e_new> | ||
68 | Cancel | ||
69 | </e_new> | ||
70 | <f_old_trans></f_old_trans> | ||
71 | <f_translation> | ||
72 | 취소 | ||
73 | </f_translation> | ||
74 | </string><string><a_file>alerts.xml</a_file> | ||
75 | <b_path>//EjectAvatarFullname/message</b_path> | ||
76 | <c_attribute></c_attribute> | ||
77 | <d_old></d_old> | ||
78 | <e_new> | ||
79 | Eject [AVATAR_NAME] from your land? | ||
80 | </e_new> | ||
81 | <f_old_trans></f_old_trans> | ||
82 | <f_translation> | ||
83 | [AVATAR_NAME]을(를) 본인의 토지에서 강제로 퇴장시키겠습니까? | ||
84 | </f_translation> | ||
85 | </string><string><a_file>alerts.xml</a_file> | ||
86 | <b_path>//EjectAvatarFullname/Eject</b_path> | ||
87 | <c_attribute></c_attribute> | ||
88 | <d_old></d_old> | ||
89 | <e_new> | ||
90 | Eject | ||
91 | </e_new> | ||
92 | <f_old_trans></f_old_trans> | ||
93 | <f_translation> | ||
94 | 강퇴 | ||
95 | </f_translation> | ||
96 | </string><string><a_file>alerts.xml</a_file> | ||
97 | <b_path>//EjectAvatarFullname/EjectandBan</b_path> | ||
98 | <c_attribute></c_attribute> | ||
99 | <d_old></d_old> | ||
100 | <e_new> | ||
101 | Eject and Ban | ||
102 | </e_new> | 22 | </e_new> |
103 | <f_old_trans></f_old_trans> | 23 | <f_old_trans></f_old_trans> |
104 | <f_translation> | 24 | <f_translation> |
105 | 강 | 25 | [USER_NAME]이() 소유는 오브젝를 환하겠습까? |
106 | </f_translation> | 26 | </f_translation> |
107 | </string><string><a_file>alerts.xml</a_file> | 27 | </string><string><a_file>alerts.xml</a_file> |
108 | <b_path>//EjectAvatarFullname/Cancel</b_path> | 28 | <b_path>//EstateObjectReturn/Return</b_path> |
109 | <c_attribute></c_attribute> | ||
110 | <d_old></d_old> | ||
111 | <e_new> | ||
112 | Cancel | ||
113 | </e_new> | ||
114 | <f_old_trans></f_old_trans> | ||
115 | <f_translation> | ||
116 | 취소 | ||
117 | </f_translation> | ||
118 | </string><string><a_file>alerts.xml</a_file> | ||
119 | <b_path>//SeachFilteredOnShortWords/message</b_path> | ||
120 | <c_attribute></c_attribute> | ||
121 | <d_old></d_old> | ||
122 | <e_new> | ||
123 | Your search query was modified and the | ||
124 | words that were too short were removed. | ||
125 | |||
126 | Searched for: [FINALQUERY] | ||
127 | </e_new> | ||
128 | <f_old_trans></f_old_trans> | ||
129 | <f_translation> | ||
130 | 귀하의 검색 질문이 수정되었으며 | ||
131 | 너무 짧은 검색어는 삭제되었습니다. | ||
132 | |||
133 | 검색 대상: [FINALQUERY] | ||
134 | </f_translation> | ||
135 | </string><string><a_file>alerts.xml</a_file> | ||
136 | <b_path>//SeachFilteredOnShortWordsEmpty/message</b_path> | ||
137 | <c_attribute></c_attribute> | ||
138 | <d_old></d_old> | ||
139 | <e_new> | ||
140 | Your search terms were too short | ||
141 | so no search was performed. | ||
142 | </e_new> | ||
143 | <f_old_trans></f_old_trans> | ||
144 | <f_translation> | ||
145 | 검색어가 너무 짧아 | ||
146 | 검색할 수 없습니다. | ||
147 | </f_translation> | ||
148 | </string><string><a_file>alerts.xml</a_file> | ||
149 | <b_path>//CannotCloseFloaterBuyLand/message</b_path> | ||
150 | <c_attribute></c_attribute> | ||
151 | <d_old></d_old> | ||
152 | <e_new> | ||
153 | You cannot close the Buy Land window until Second Life | ||
154 | estimates the price of this transaction. | ||
155 | </e_new> | ||
156 | <f_old_trans></f_old_trans> | ||
157 | <f_translation> | ||
158 | 세컨드라이프에서 이 거래 비용을 산정할 때까지 | ||
159 | 토지 구매 창을 닫을 수 없습니다. | ||
160 | </f_translation> | ||
161 | </string><string><a_file>alerts.xml</a_file> | ||
162 | <b_path>//MaxAgentOnRegionBatch/message</b_path> | ||
163 | <c_attribute></c_attribute> | ||
164 | <d_old></d_old> | ||
165 | <e_new> | ||
166 | Failure while attempting to add [NUM_ADDED] agents: | ||
167 | Exceeds the [MAX_AGENTS] [LIST_TYPE] limit by [NUM_EXCESS]. | ||
168 | </e_new> | ||
169 | <f_old_trans></f_old_trans> | ||
170 | <f_translation> | ||
171 | [NUM_ADDED] 에이전트를 추가하는 데 실패했습니다: | ||
172 | [NUM_EXCESS]에 지정된 [MAX_AGENTS] [LIST_TYPE] 제한이 초과하였습니다. | ||
173 | </f_translation> | ||
174 | </string><string><a_file>alerts.xml</a_file> | ||
175 | <b_path>//WebLaunchExternalTarget/message</b_path> | ||
176 | <c_attribute></c_attribute> | ||
177 | <d_old></d_old> | ||
178 | <e_new> | ||
179 | Open your system Web browser to view this content? | ||
180 | </e_new> | ||
181 | <f_old_trans></f_old_trans> | ||
182 | <f_translation> | ||
183 | 컨텐츠를 보려면 시스템 웹 브라우저를 여십시오. | ||
184 | </f_translation> | ||
185 | </string><string><a_file>alerts.xml</a_file> | ||
186 | <b_path>//WebLaunchExternalTarget/ignore</b_path> | ||
187 | <c_attribute></c_attribute> | ||
188 | <d_old></d_old> | ||
189 | <e_new> | ||
190 | When opening your system browser to view a Web page | ||
191 | </e_new> | ||
192 | <f_old_trans></f_old_trans> | ||
193 | <f_translation> | ||
194 | 시스템 브라우저를 열어 웹 페이지를 확인할 경우 | ||
195 | </f_translation> | ||
196 | </string><string><a_file>alerts.xml</a_file> | ||
197 | <b_path>//WebLaunchExternalTarget/Open</b_path> | ||
198 | <c_attribute></c_attribute> | 29 | <c_attribute></c_attribute> |
199 | <d_old></d_old> | 30 | <d_old></d_old> |
200 | <e_new> | 31 | <e_new> |
@@ -205,7 +36,7 @@ Exceeds the [MAX_AGENTS] [LIST_TYPE] limit by [NUM_EXCESS]. | |||
205 | 확인 | 36 | 확인 |
206 | </f_translation> | 37 | </f_translation> |
207 | </string><string><a_file>alerts.xml</a_file> | 38 | </string><string><a_file>alerts.xml</a_file> |
208 | <b_path>//WebLaunchExternalTarget/Cancel</b_path> | 39 | <b_path>//EstateObjectReturn/Cancel</b_path> |
209 | <c_attribute></c_attribute> | 40 | <c_attribute></c_attribute> |
210 | <d_old></d_old> | 41 | <d_old></d_old> |
211 | <e_new> | 42 | <e_new> |
@@ -215,3521 +46,1187 @@ Exceeds the [MAX_AGENTS] [LIST_TYPE] limit by [NUM_EXCESS]. | |||
215 | <f_translation> | 46 | <f_translation> |
216 | 취소 | 47 | 취소 |
217 | </f_translation> | 48 | </f_translation> |
218 | </string><string><a_file>alerts.xml</a_file> | ||
219 | <b_path>//ProblemAddingEstateGeneric/message</b_path> | ||
220 | <c_attribute></c_attribute> | ||
221 | <d_old></d_old> | ||
222 | <e_new> | ||
223 | Problems adding to this estate list. One or more estates may have a full list. | ||
224 | </e_new> | ||
225 | <f_old_trans></f_old_trans> | ||
226 | <f_translation> | ||
227 | 사유지 목록에 추가하는 동안 문제가 발생했습니다. 하나 이상의 사유지 관리자 목록이 모두 찬 상태입니다. | ||
228 | </f_translation> | ||
229 | </string><string><a_file>floater_about_land.xml</a_file> | 49 | </string><string><a_file>floater_about_land.xml</a_file> |
230 | <b_path>/floaterland/landtab/land_objects_panel/owner list/type</b_path> | 50 | <b_path>/floaterland/landtab/land_general_panel/no_selection_text</b_path> |
231 | <c_attribute>label</c_attribute> | ||
232 | <d_old></d_old> | ||
233 | <e_new>Type</e_new> | ||
234 | <f_old_trans></f_old_trans> | ||
235 | <f_translation>유형</f_translation> | ||
236 | </string><string><a_file>floater_about_land.xml</a_file> | ||
237 | <b_path>/floaterland/landtab/land_objects_panel/owner list/name</b_path> | ||
238 | <c_attribute>label</c_attribute> | ||
239 | <d_old></d_old> | ||
240 | <e_new>Name</e_new> | ||
241 | <f_old_trans></f_old_trans> | ||
242 | <f_translation>이름</f_translation> | ||
243 | </string><string><a_file>floater_about_land.xml</a_file> | ||
244 | <b_path>/floaterland/landtab/land_objects_panel/owner list/count</b_path> | ||
245 | <c_attribute>label</c_attribute> | ||
246 | <d_old></d_old> | ||
247 | <e_new>Count</e_new> | ||
248 | <f_old_trans></f_old_trans> | ||
249 | <f_translation>개수</f_translation> | ||
250 | </string><string><a_file>floater_active_speakers.xml</a_file> | ||
251 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> | ||
252 | <c_attribute>label</c_attribute> | ||
253 | <d_old></d_old> | ||
254 | <e_new></e_new> | ||
255 | <f_old_trans></f_old_trans> | ||
256 | <f_translation></f_translation> | ||
257 | </string><string><a_file>floater_avatar_textures.xml</a_file> | ||
258 | <b_path>/avatar_texture_debug/baked_label</b_path> | ||
259 | <c_attribute></c_attribute> | ||
260 | <d_old></d_old> | ||
261 | <e_new> | ||
262 | Baked Textures | ||
263 | </e_new> | ||
264 | <f_old_trans></f_old_trans> | ||
265 | <f_translation> | ||
266 | 저장된 텍스처 | ||
267 | </f_translation> | ||
268 | </string><string><a_file>floater_avatar_textures.xml</a_file> | ||
269 | <b_path>/avatar_texture_debug/composite_label</b_path> | ||
270 | <c_attribute></c_attribute> | ||
271 | <d_old></d_old> | ||
272 | <e_new> | ||
273 | Composite Textures | ||
274 | </e_new> | ||
275 | <f_old_trans></f_old_trans> | ||
276 | <f_translation> | ||
277 | 복합 텍스처 | ||
278 | </f_translation> | ||
279 | </string><string><a_file>floater_buy_currency.xml</a_file> | ||
280 | <b_path>/buy currency/getting_data</b_path> | ||
281 | <c_attribute></c_attribute> | 51 | <c_attribute></c_attribute> |
282 | <d_old></d_old> | 52 | <d_old></d_old> |
283 | <e_new> | 53 | <e_new> |
284 | Getting data... | 54 | No parcel selected. |
285 | </e_new> | 55 | Go to World menu > About Land or select another parcel to show its details. |
286 | <f_old_trans></f_old_trans> | 56 | </e_new> |
287 | <f_translation> | ||
288 | 데이터를 가져오는 중... | ||
289 | </f_translation> | ||
290 | </string><string><a_file>floater_camera.xml</a_file> | ||
291 | <b_path>/move floater</b_path> | ||
292 | <c_attribute>title</c_attribute> | ||
293 | <d_old></d_old> | ||
294 | <e_new></e_new> | ||
295 | <f_old_trans></f_old_trans> | ||
296 | <f_translation></f_translation> | ||
297 | </string><string><a_file>floater_camera.xml</a_file> | ||
298 | <b_path>/move floater/rotate_tooltip</b_path> | ||
299 | <c_attribute></c_attribute> | ||
300 | <d_old></d_old> | ||
301 | <e_new>Rotate Camera Around Focus</e_new> | ||
302 | <f_old_trans></f_old_trans> | ||
303 | <f_translation>초점 주위로 카메라 회전</f_translation> | ||
304 | </string><string><a_file>floater_camera.xml</a_file> | ||
305 | <b_path>/move floater/zoom_tooltip</b_path> | ||
306 | <c_attribute></c_attribute> | ||
307 | <d_old></d_old> | ||
308 | <e_new>Zoom Camera Towards Focus</e_new> | ||
309 | <f_old_trans></f_old_trans> | ||
310 | <f_translation>초점을 향해 카메라 확대/축소</f_translation> | ||
311 | </string><string><a_file>floater_camera.xml</a_file> | ||
312 | <b_path>/move floater/move_tooltip</b_path> | ||
313 | <c_attribute></c_attribute> | ||
314 | <d_old></d_old> | ||
315 | <e_new>Move Camera Up and Down, Left and Right</e_new> | ||
316 | <f_old_trans></f_old_trans> | ||
317 | <f_translation>위/아래, 왼쪽/오른쪽으로 카메라 이동</f_translation> | ||
318 | </string><string><a_file>floater_chatterbox.xml</a_file> | ||
319 | <b_path>/floater_chatterbox</b_path> | ||
320 | <c_attribute>title</c_attribute> | ||
321 | <d_old></d_old> | ||
322 | <e_new>Communicate</e_new> | ||
323 | <f_old_trans></f_old_trans> | ||
324 | <f_translation>통신</f_translation> | ||
325 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
326 | <b_path>/chat floater/IM_logging_string</b_path> | ||
327 | <c_attribute></c_attribute> | ||
328 | <d_old></d_old> | ||
329 | <e_new> | ||
330 | -- Instant message logging enabled -- | ||
331 | </e_new> | ||
332 | <f_old_trans></f_old_trans> | 57 | <f_old_trans></f_old_trans> |
333 | <f_translation> | 58 | <f_translation> |
334 | -- 메신저 로깅 사용 -- | 59 | 구획을 선택하지 않았습니다. |
335 | </f_translation> | 60 | 세부 사항을 보려면 '월드 메뉴 > 토지 소개'를 선택 하시거나 다른 구획을 선택하십시오. |
336 | </string><string><a_file>floater_chat_history.xml</a_file> | 61 | </f_translation> |
337 | <b_path>/chat floater/IM_end_log_string</b_path> | 62 | </string><string><a_file>floater_instant_message.xml</a_file> |
63 | <b_path>/im_floater/inventory_item_offered</b_path> | ||
338 | <c_attribute></c_attribute> | 64 | <c_attribute></c_attribute> |
339 | <d_old></d_old> | 65 | <d_old></d_old> |
340 | <e_new> | 66 | <e_new> |
341 | -- End of Log -- | 67 | Inventory item offered |
342 | </e_new> | 68 | </e_new> |
343 | <f_old_trans></f_old_trans> | 69 | <f_old_trans></f_old_trans> |
344 | <f_translation> | 70 | <f_translation> |
345 | -- 로 -- | 71 | 토리 아템이 제공되었습니다. |
346 | </f_translation> | 72 | </f_translation> |
347 | </string><string><a_file>floater_chat_history.xml</a_file> | 73 | </string><string><a_file>floater_live_lsleditor.xml</a_file> |
348 | <b_path>/chat floater/panels/im_contents_panel/Gesture</b_path> | 74 | <b_path>/script ed float/mono</b_path> |
349 | <c_attribute>label</c_attribute> | ||
350 | <d_old></d_old> | ||
351 | <e_new>Gestures</e_new> | ||
352 | <f_old_trans></f_old_trans> | ||
353 | <f_translation>제스처</f_translation> | ||
354 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
355 | <b_path>/chat floater/panels/im_contents_panel/Gesture/Gestures</b_path> | ||
356 | <c_attribute></c_attribute> | ||
357 | <d_old></d_old> | ||
358 | <e_new> | ||
359 | Gestures | ||
360 | </e_new> | ||
361 | <f_old_trans></f_old_trans> | ||
362 | <f_translation> | ||
363 | 제스처 | ||
364 | </f_translation> | ||
365 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
366 | <b_path>/chat floater/panels/im_contents_panel/show mutes</b_path> | ||
367 | <c_attribute>label</c_attribute> | ||
368 | <d_old></d_old> | ||
369 | <e_new>Show Muted Text</e_new> | ||
370 | <f_old_trans></f_old_trans> | ||
371 | <f_translation>차단된 텍스트 표시하기</f_translation> | ||
372 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
373 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | ||
374 | <c_attribute>label</c_attribute> | ||
375 | <d_old></d_old> | ||
376 | <e_new>< <</e_new> | ||
377 | <f_old_trans></f_old_trans> | ||
378 | <f_translation>< <</f_translation> | ||
379 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
380 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | ||
381 | <c_attribute>label_selected</c_attribute> | ||
382 | <d_old></d_old> | ||
383 | <e_new>> ></e_new> | ||
384 | <f_old_trans></f_old_trans> | ||
385 | <f_translation>> ></f_translation> | ||
386 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
387 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | ||
388 | <c_attribute>tool_tip</c_attribute> | ||
389 | <d_old></d_old> | ||
390 | <e_new>Click here to show list of active participants in this IM session.</e_new> | ||
391 | <f_old_trans></f_old_trans> | ||
392 | <f_translation>채팅 참가자 목록 보기 </f_translation> | ||
393 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
394 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Chat Editor</b_path> | ||
395 | <c_attribute>label</c_attribute> | ||
396 | <d_old></d_old> | ||
397 | <e_new>Click here to chat.</e_new> | ||
398 | <f_old_trans></f_old_trans> | ||
399 | <f_translation>채팅하려면 여기를 클릭하십시오.</f_translation> | ||
400 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
401 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Say</b_path> | ||
402 | <c_attribute>label</c_attribute> | ||
403 | <d_old></d_old> | ||
404 | <e_new>Say</e_new> | ||
405 | <f_old_trans></f_old_trans> | ||
406 | <f_translation>말하기</f_translation> | ||
407 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
408 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Say</b_path> | ||
409 | <c_attribute>tool_tip</c_attribute> | ||
410 | <d_old></d_old> | ||
411 | <e_new>(Enter)</e_new> | ||
412 | <f_old_trans></f_old_trans> | ||
413 | <f_translation>(입력)</f_translation> | ||
414 | </string><string><a_file>floater_critical.xml</a_file> | ||
415 | <b_path>/modal container/tos_title</b_path> | ||
416 | <c_attribute></c_attribute> | ||
417 | <d_old></d_old> | ||
418 | <e_new> | ||
419 | Critical Message | ||
420 | </e_new> | ||
421 | <f_old_trans></f_old_trans> | ||
422 | <f_translation> | ||
423 | 중요 메시지 | ||
424 | </f_translation> | ||
425 | </string><string><a_file>floater_customize.xml</a_file> | ||
426 | <b_path>/floater customize/customize tab container/body_parts_placeholder</b_path> | ||
427 | <c_attribute>label</c_attribute> | 75 | <c_attribute>label</c_attribute> |
428 | <d_old></d_old> | 76 | <d_old></d_old> |
429 | <e_new>Body Parts</e_new> | 77 | <e_new>Mono</e_new> |
430 | <f_old_trans></f_old_trans> | 78 | <f_old_trans></f_old_trans> |
431 | <f_translation>신체 부위</f_translation> | 79 | <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> | 80 | <f_old_trans></f_old_trans> |
438 | <f_translation>의상</f_translation> | 81 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
439 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | 82 | <b_path>/MemLeak</b_path> |
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> | 83 | <c_attribute>title</c_attribute> |
456 | <d_old></d_old> | 84 | <d_old></d_old> |
457 | <e_new>Voice Chat Device Settings</e_new> | 85 | <e_new>Memory Leaking Simulation</e_new> |
458 | <f_old_trans></f_old_trans> | 86 | <f_old_trans></f_old_trans> |
459 | <f_translation> 팅 설정</f_translation> | 87 | <f_translation>메모리 뮬레</f_translation> |
460 | </string><string><a_file>floater_directory.xml</a_file> | 88 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
461 | <b_path>/directory/Directory Tabs/find_all_old_panel/results/icon</b_path> | 89 | <b_path>/MemLeak/leak_speed</b_path> |
462 | <c_attribute>label</c_attribute> | 90 | <c_attribute>label</c_attribute> |
463 | <d_old></d_old> | 91 | <d_old></d_old> |
464 | <e_new></e_new> | 92 | <e_new>Leaking Speed (bytes per frame):</e_new> |
465 | <f_old_trans></f_old_trans> | 93 | <f_old_trans></f_old_trans> |
466 | <f_translation></f_translation> | 94 | <f_translation>손실 속도(프레임당 바이트 수):</f_translation> |
467 | </string><string><a_file>floater_env_settings.xml</a_file> | 95 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
468 | <b_path>/Environment Editor Floater/EnvTimeSlider</b_path> | 96 | <b_path>/MemLeak/max_leak</b_path> |
469 | <c_attribute>label</c_attribute> | 97 | <c_attribute>label</c_attribute> |
470 | <d_old></d_old> | 98 | <d_old></d_old> |
471 | <e_new></e_new> | 99 | <e_new>Max Leaked Memory (MB):</e_new> |
472 | <f_old_trans></f_old_trans> | 100 | <f_old_trans></f_old_trans> |
473 | <f_translation></f_translation> | 101 | <f_translation>손실된 최대 메모리(MB):</f_translation> |
474 | </string><string><a_file>floater_env_settings.xml</a_file> | 102 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
475 | <b_path>/Environment Editor Floater/EnvCloudSlider</b_path> | 103 | <b_path>/MemLeak/total_leaked_label</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> | 104 | <c_attribute></c_attribute> |
498 | <d_old></d_old> | 105 | <d_old></d_old> |
499 | <e_new> | 106 | <e_new> |
500 | Antialiasing: | 107 | Current leaked memory: [SIZE] KB |
501 | </e_new> | ||
502 | <f_old_trans></f_old_trans> | ||
503 | <f_translation> | ||
504 | 앤티앨리어싱: | ||
505 | </f_translation> | ||
506 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
507 | <b_path>/Hardware Settings Floater/fsaa</b_path> | ||
508 | <c_attribute>label</c_attribute> | ||
509 | <d_old></d_old> | ||
510 | <e_new>Antialiasing</e_new> | ||
511 | <f_old_trans></f_old_trans> | ||
512 | <f_translation>앤티앨리어싱</f_translation> | ||
513 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
514 | <b_path>/Hardware Settings Floater/fsaa/FSAADisabled</b_path> | ||
515 | <c_attribute></c_attribute> | ||
516 | <d_old></d_old> | ||
517 | <e_new> | ||
518 | Disabled | ||
519 | </e_new> | ||
520 | <f_old_trans></f_old_trans> | ||
521 | <f_translation> | ||
522 | 비활성화됨 | ||
523 | </f_translation> | ||
524 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
525 | <b_path>/Hardware Settings Floater/fsaa/2x</b_path> | ||
526 | <c_attribute></c_attribute> | ||
527 | <d_old></d_old> | ||
528 | <e_new> | ||
529 | 2x | ||
530 | </e_new> | ||
531 | <f_old_trans></f_old_trans> | ||
532 | <f_translation> | ||
533 | 2x | ||
534 | </f_translation> | ||
535 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
536 | <b_path>/Hardware Settings Floater/fsaa/4x</b_path> | ||
537 | <c_attribute></c_attribute> | ||
538 | <d_old></d_old> | ||
539 | <e_new> | ||
540 | 4x | ||
541 | </e_new> | ||
542 | <f_old_trans></f_old_trans> | ||
543 | <f_translation> | ||
544 | 4x | ||
545 | </f_translation> | ||
546 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
547 | <b_path>/Hardware Settings Floater/fsaa/8x</b_path> | ||
548 | <c_attribute></c_attribute> | ||
549 | <d_old></d_old> | ||
550 | <e_new> | ||
551 | 8x | ||
552 | </e_new> | ||
553 | <f_old_trans></f_old_trans> | ||
554 | <f_translation> | ||
555 | 8x | ||
556 | </f_translation> | ||
557 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
558 | <b_path>/Hardware Settings Floater/fsaa/16x</b_path> | ||
559 | <c_attribute></c_attribute> | ||
560 | <d_old></d_old> | ||
561 | <e_new> | ||
562 | 16x | ||
563 | </e_new> | ||
564 | <f_old_trans></f_old_trans> | ||
565 | <f_translation> | ||
566 | 16x | ||
567 | </f_translation> | ||
568 | </string><string><a_file>floater_hud.xml</a_file> | ||
569 | <b_path>/floater_hud</b_path> | ||
570 | <c_attribute>title</c_attribute> | ||
571 | <d_old></d_old> | ||
572 | <e_new>Tutorial</e_new> | ||
573 | <f_old_trans></f_old_trans> | ||
574 | <f_translation>튜토리얼</f_translation> | ||
575 | </string><string><a_file>floater_joystick.xml</a_file> | ||
576 | <b_path>/Joystick</b_path> | ||
577 | <c_attribute>title</c_attribute> | ||
578 | <d_old></d_old> | ||
579 | <e_new>Joystick Configuration</e_new> | ||
580 | <f_old_trans></f_old_trans> | ||
581 | <f_translation>조이스틱 설정</f_translation> | ||
582 | </string><string><a_file>floater_joystick.xml</a_file> | ||
583 | <b_path>/Joystick/JoystickAxis1</b_path> | ||
584 | <c_attribute>label</c_attribute> | ||
585 | <d_old></d_old> | ||
586 | <e_new>X Axis Mapping</e_new> | ||
587 | <f_old_trans></f_old_trans> | ||
588 | <f_translation>X축 매핑</f_translation> | ||
589 | </string><string><a_file>floater_joystick.xml</a_file> | ||
590 | <b_path>/Joystick/JoystickAxis2</b_path> | ||
591 | <c_attribute>label</c_attribute> | ||
592 | <d_old></d_old> | ||
593 | <e_new>Y Axis Mapping</e_new> | ||
594 | <f_old_trans></f_old_trans> | ||
595 | <f_translation>Y축 매핑</f_translation> | ||
596 | </string><string><a_file>floater_joystick.xml</a_file> | ||
597 | <b_path>/Joystick/JoystickAxis0</b_path> | ||
598 | <c_attribute>label</c_attribute> | ||
599 | <d_old></d_old> | ||
600 | <e_new>Z Axis Mapping</e_new> | ||
601 | <f_old_trans></f_old_trans> | ||
602 | <f_translation>Z축 매핑</f_translation> | ||
603 | </string><string><a_file>floater_joystick.xml</a_file> | ||
604 | <b_path>/Joystick/JoystickAxis4</b_path> | ||
605 | <c_attribute>label</c_attribute> | ||
606 | <d_old></d_old> | ||
607 | <e_new>Pitch Mapping</e_new> | ||
608 | <f_old_trans></f_old_trans> | ||
609 | <f_translation>피치 매핑</f_translation> | ||
610 | </string><string><a_file>floater_joystick.xml</a_file> | ||
611 | <b_path>/Joystick/JoystickAxis5</b_path> | ||
612 | <c_attribute>label</c_attribute> | ||
613 | <d_old></d_old> | ||
614 | <e_new>Yaw Mapping</e_new> | ||
615 | <f_old_trans></f_old_trans> | ||
616 | <f_translation>요 매핑</f_translation> | ||
617 | </string><string><a_file>floater_joystick.xml</a_file> | ||
618 | <b_path>/Joystick/JoystickAxis3</b_path> | ||
619 | <c_attribute>label</c_attribute> | ||
620 | <d_old></d_old> | ||
621 | <e_new>Roll Mapping</e_new> | ||
622 | <f_old_trans></f_old_trans> | ||
623 | <f_translation>롤 매핑</f_translation> | ||
624 | </string><string><a_file>floater_joystick.xml</a_file> | ||
625 | <b_path>/Joystick/JoystickAxis6</b_path> | ||
626 | <c_attribute>label</c_attribute> | ||
627 | <d_old></d_old> | ||
628 | <e_new>Zoom Mapping</e_new> | ||
629 | <f_old_trans></f_old_trans> | ||
630 | <f_translation>확대/축소 매핑</f_translation> | ||
631 | </string><string><a_file>floater_joystick.xml</a_file> | ||
632 | <b_path>/Joystick/ZoomDirect</b_path> | ||
633 | <c_attribute>label</c_attribute> | ||
634 | <d_old></d_old> | ||
635 | <e_new>Direct Zoom</e_new> | ||
636 | <f_old_trans></f_old_trans> | ||
637 | <f_translation>직접 확대/축소</f_translation> | ||
638 | </string><string><a_file>floater_joystick.xml</a_file> | ||
639 | <b_path>/Joystick/Cursor3D</b_path> | ||
640 | <c_attribute>label</c_attribute> | ||
641 | <d_old></d_old> | ||
642 | <e_new>3D Cursor</e_new> | ||
643 | <f_old_trans></f_old_trans> | ||
644 | <f_translation>3D 커서</f_translation> | ||
645 | </string><string><a_file>floater_joystick.xml</a_file> | ||
646 | <b_path>/Joystick/AutoLeveling</b_path> | ||
647 | <c_attribute>label</c_attribute> | ||
648 | <d_old></d_old> | ||
649 | <e_new>Auto Level</e_new> | ||
650 | <f_old_trans></f_old_trans> | ||
651 | <f_translation>레벨 자동 수정</f_translation> | ||
652 | </string><string><a_file>floater_joystick.xml</a_file> | ||
653 | <b_path>/Joystick/Control Modes:</b_path> | ||
654 | <c_attribute></c_attribute> | ||
655 | <d_old></d_old> | ||
656 | <e_new> | ||
657 | Control Modes: | ||
658 | </e_new> | 108 | </e_new> |
659 | <f_old_trans></f_old_trans> | 109 | <f_old_trans></f_old_trans> |
660 | <f_translation> | 110 | <f_translation> |
661 | 모: | 111 | 현 실된 : [SIZE] KB |
662 | </f_translation> | 112 | </f_translation> |
663 | </string><string><a_file>floater_joystick.xml</a_file> | 113 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
664 | <b_path>/Joystick/XScale</b_path> | 114 | <b_path>/MemLeak/note_label_1</b_path> |
665 | <c_attribute></c_attribute> | ||
666 | <d_old></d_old> | ||
667 | <e_new>X Scale</e_new> | ||
668 | <f_old_trans></f_old_trans> | ||
669 | <f_translation>X 크기</f_translation> | ||
670 | </string><string><a_file>floater_joystick.xml</a_file> | ||
671 | <b_path>/Joystick/YScale</b_path> | ||
672 | <c_attribute></c_attribute> | ||
673 | <d_old></d_old> | ||
674 | <e_new>Y Scale</e_new> | ||
675 | <f_old_trans></f_old_trans> | ||
676 | <f_translation>Y 크기</f_translation> | ||
677 | </string><string><a_file>floater_joystick.xml</a_file> | ||
678 | <b_path>/Joystick/ZScale</b_path> | ||
679 | <c_attribute></c_attribute> | ||
680 | <d_old></d_old> | ||
681 | <e_new>Z Scale</e_new> | ||
682 | <f_old_trans></f_old_trans> | ||
683 | <f_translation>Z 크기</f_translation> | ||
684 | </string><string><a_file>floater_joystick.xml</a_file> | ||
685 | <b_path>/Joystick/PitchScale</b_path> | ||
686 | <c_attribute></c_attribute> | ||
687 | <d_old></d_old> | ||
688 | <e_new>Pitch Scale</e_new> | ||
689 | <f_old_trans></f_old_trans> | ||
690 | <f_translation>피치 크기</f_translation> | ||
691 | </string><string><a_file>floater_joystick.xml</a_file> | ||
692 | <b_path>/Joystick/YawScale</b_path> | ||
693 | <c_attribute></c_attribute> | ||
694 | <d_old></d_old> | ||
695 | <e_new>Yaw Scale</e_new> | ||
696 | <f_old_trans></f_old_trans> | ||
697 | <f_translation>요 크기</f_translation> | ||
698 | </string><string><a_file>floater_joystick.xml</a_file> | ||
699 | <b_path>/Joystick/RollScale</b_path> | ||
700 | <c_attribute></c_attribute> | ||
701 | <d_old></d_old> | ||
702 | <e_new>Roll Scale</e_new> | ||
703 | <f_old_trans></f_old_trans> | ||
704 | <f_translation>롤 크기</f_translation> | ||
705 | </string><string><a_file>floater_joystick.xml</a_file> | ||
706 | <b_path>/Joystick/XDeadZone</b_path> | ||
707 | <c_attribute></c_attribute> | ||
708 | <d_old></d_old> | ||
709 | <e_new>X Dead Zone</e_new> | ||
710 | <f_old_trans></f_old_trans> | ||
711 | <f_translation>X 사각지대</f_translation> | ||
712 | </string><string><a_file>floater_joystick.xml</a_file> | ||
713 | <b_path>/Joystick/YDeadZone</b_path> | ||
714 | <c_attribute></c_attribute> | ||
715 | <d_old></d_old> | ||
716 | <e_new>Y Dead Zone</e_new> | ||
717 | <f_old_trans></f_old_trans> | ||
718 | <f_translation>Y 사각지대</f_translation> | ||
719 | </string><string><a_file>floater_joystick.xml</a_file> | ||
720 | <b_path>/Joystick/ZDeadZone</b_path> | ||
721 | <c_attribute></c_attribute> | ||
722 | <d_old></d_old> | ||
723 | <e_new>Z Dead Zone</e_new> | ||
724 | <f_old_trans></f_old_trans> | ||
725 | <f_translation>Z 사각지대</f_translation> | ||
726 | </string><string><a_file>floater_joystick.xml</a_file> | ||
727 | <b_path>/Joystick/PitchDeadZone</b_path> | ||
728 | <c_attribute></c_attribute> | ||
729 | <d_old></d_old> | ||
730 | <e_new>Pitch Dead Zone</e_new> | ||
731 | <f_old_trans></f_old_trans> | ||
732 | <f_translation>피치 사각지대</f_translation> | ||
733 | </string><string><a_file>floater_joystick.xml</a_file> | ||
734 | <b_path>/Joystick/YawDeadZone</b_path> | ||
735 | <c_attribute></c_attribute> | ||
736 | <d_old></d_old> | ||
737 | <e_new>Yaw Dead Zone</e_new> | ||
738 | <f_old_trans></f_old_trans> | ||
739 | <f_translation>요 사각지대</f_translation> | ||
740 | </string><string><a_file>floater_joystick.xml</a_file> | ||
741 | <b_path>/Joystick/RollDeadZone</b_path> | ||
742 | <c_attribute></c_attribute> | ||
743 | <d_old></d_old> | ||
744 | <e_new>Roll Dead Zone</e_new> | ||
745 | <f_old_trans></f_old_trans> | ||
746 | <f_translation>롤 사각지대</f_translation> | ||
747 | </string><string><a_file>floater_joystick.xml</a_file> | ||
748 | <b_path>/Joystick/Feathering</b_path> | ||
749 | <c_attribute></c_attribute> | ||
750 | <d_old></d_old> | ||
751 | <e_new>Feathering</e_new> | ||
752 | <f_old_trans></f_old_trans> | ||
753 | <f_translation>부드러움 효과</f_translation> | ||
754 | </string><string><a_file>floater_joystick.xml</a_file> | ||
755 | <b_path>/Joystick/AvatarFeathering</b_path> | ||
756 | <c_attribute>label</c_attribute> | ||
757 | <d_old></d_old> | ||
758 | <e_new></e_new> | ||
759 | <f_old_trans></f_old_trans> | ||
760 | <f_translation></f_translation> | ||
761 | </string><string><a_file>floater_joystick.xml</a_file> | ||
762 | <b_path>/Joystick/BuildFeathering</b_path> | ||
763 | <c_attribute>label</c_attribute> | ||
764 | <d_old></d_old> | ||
765 | <e_new></e_new> | ||
766 | <f_old_trans></f_old_trans> | ||
767 | <f_translation></f_translation> | ||
768 | </string><string><a_file>floater_joystick.xml</a_file> | ||
769 | <b_path>/Joystick/FlycamFeathering</b_path> | ||
770 | <c_attribute>label</c_attribute> | ||
771 | <d_old></d_old> | ||
772 | <e_new></e_new> | ||
773 | <f_old_trans></f_old_trans> | ||
774 | <f_translation></f_translation> | ||
775 | </string><string><a_file>floater_joystick.xml</a_file> | ||
776 | <b_path>/Joystick/ZoomScale2</b_path> | ||
777 | <c_attribute></c_attribute> | ||
778 | <d_old></d_old> | ||
779 | <e_new>Zoom Scale</e_new> | ||
780 | <f_old_trans></f_old_trans> | ||
781 | <f_translation>확대/축소 크기</f_translation> | ||
782 | </string><string><a_file>floater_joystick.xml</a_file> | ||
783 | <b_path>/Joystick/FlycamAxisScale6</b_path> | ||
784 | <c_attribute>label</c_attribute> | ||
785 | <d_old></d_old> | ||
786 | <e_new></e_new> | ||
787 | <f_old_trans></f_old_trans> | ||
788 | <f_translation></f_translation> | ||
789 | </string><string><a_file>floater_joystick.xml</a_file> | ||
790 | <b_path>/Joystick/ZoomDeadZone</b_path> | ||
791 | <c_attribute></c_attribute> | ||
792 | <d_old></d_old> | ||
793 | <e_new>Zoom Dead Zone</e_new> | ||
794 | <f_old_trans></f_old_trans> | ||
795 | <f_translation>확대/축소 사각지대</f_translation> | ||
796 | </string><string><a_file>floater_joystick.xml</a_file> | ||
797 | <b_path>/Joystick/FlycamAxisDeadZone6</b_path> | ||
798 | <c_attribute>label</c_attribute> | ||
799 | <d_old></d_old> | ||
800 | <e_new></e_new> | ||
801 | <f_old_trans></f_old_trans> | ||
802 | <f_translation></f_translation> | ||
803 | </string><string><a_file>floater_joystick.xml</a_file> | ||
804 | <b_path>/Joystick/SpaceNavigatorDefaults</b_path> | ||
805 | <c_attribute>label</c_attribute> | ||
806 | <d_old></d_old> | ||
807 | <e_new>SpaceNavigator Defaults</e_new> | ||
808 | <f_old_trans></f_old_trans> | ||
809 | <f_translation>SpaceNavigator 기본값</f_translation> | ||
810 | </string><string><a_file>floater_joystick.xml</a_file> | ||
811 | <b_path>/Joystick/JoystickMonitor</b_path> | ||
812 | <c_attribute></c_attribute> | ||
813 | <d_old></d_old> | ||
814 | <e_new>Joystick Monitor</e_new> | ||
815 | <f_old_trans></f_old_trans> | ||
816 | <f_translation>조이스틱 검사</f_translation> | ||
817 | </string><string><a_file>floater_joystick.xml</a_file> | ||
818 | <b_path>/Joystick/Axis</b_path> | ||
819 | <c_attribute></c_attribute> | ||
820 | <d_old></d_old> | ||
821 | <e_new>Axis [NUM]</e_new> | ||
822 | <f_old_trans></f_old_trans> | ||
823 | <f_translation>축 [NUM]</f_translation> | ||
824 | </string><string><a_file>floater_joystick.xml</a_file> | ||
825 | <b_path>/Joystick/NoDevice</b_path> | ||
826 | <c_attribute></c_attribute> | ||
827 | <d_old></d_old> | ||
828 | <e_new>no device detected</e_new> | ||
829 | <f_old_trans></f_old_trans> | ||
830 | <f_translation>검색된 장치가 없습니다.</f_translation> | ||
831 | </string><string><a_file>floater_post_process.xml</a_file> | ||
832 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBrightness</b_path> | ||
833 | <c_attribute>label</c_attribute> | ||
834 | <d_old></d_old> | ||
835 | <e_new></e_new> | ||
836 | <f_old_trans></f_old_trans> | ||
837 | <f_translation></f_translation> | ||
838 | </string><string><a_file>floater_post_process.xml</a_file> | ||
839 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterSaturation</b_path> | ||
840 | <c_attribute>label</c_attribute> | ||
841 | <d_old></d_old> | ||
842 | <e_new></e_new> | ||
843 | <f_old_trans></f_old_trans> | ||
844 | <f_translation></f_translation> | ||
845 | </string><string><a_file>floater_post_process.xml</a_file> | ||
846 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterContrast</b_path> | ||
847 | <c_attribute>label</c_attribute> | ||
848 | <d_old></d_old> | ||
849 | <e_new></e_new> | ||
850 | <f_old_trans></f_old_trans> | ||
851 | <f_translation></f_translation> | ||
852 | </string><string><a_file>floater_post_process.xml</a_file> | ||
853 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionBrightMult</b_path> | ||
854 | <c_attribute>label</c_attribute> | ||
855 | <d_old></d_old> | ||
856 | <e_new></e_new> | ||
857 | <f_old_trans></f_old_trans> | ||
858 | <f_translation></f_translation> | ||
859 | </string><string><a_file>floater_post_process.xml</a_file> | ||
860 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseSize</b_path> | ||
861 | <c_attribute>label</c_attribute> | ||
862 | <d_old></d_old> | ||
863 | <e_new></e_new> | ||
864 | <f_old_trans></f_old_trans> | ||
865 | <f_translation></f_translation> | ||
866 | </string><string><a_file>floater_post_process.xml</a_file> | ||
867 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseStrength</b_path> | ||
868 | <c_attribute>label</c_attribute> | ||
869 | <d_old></d_old> | ||
870 | <e_new></e_new> | ||
871 | <f_old_trans></f_old_trans> | ||
872 | <f_translation></f_translation> | ||
873 | </string><string><a_file>floater_post_process.xml</a_file> | ||
874 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomExtract</b_path> | ||
875 | <c_attribute>label</c_attribute> | ||
876 | <d_old></d_old> | ||
877 | <e_new></e_new> | ||
878 | <f_old_trans></f_old_trans> | ||
879 | <f_translation></f_translation> | ||
880 | </string><string><a_file>floater_post_process.xml</a_file> | ||
881 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomSize</b_path> | ||
882 | <c_attribute>label</c_attribute> | ||
883 | <d_old></d_old> | ||
884 | <e_new></e_new> | ||
885 | <f_old_trans></f_old_trans> | ||
886 | <f_translation></f_translation> | ||
887 | </string><string><a_file>floater_post_process.xml</a_file> | ||
888 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomStrength</b_path> | ||
889 | <c_attribute>label</c_attribute> | ||
890 | <d_old></d_old> | ||
891 | <e_new></e_new> | ||
892 | <f_old_trans></f_old_trans> | ||
893 | <f_translation></f_translation> | ||
894 | </string><string><a_file>floater_preview_classified.xml</a_file> | ||
895 | <b_path>/classified_preview</b_path> | ||
896 | <c_attribute>title</c_attribute> | ||
897 | <d_old></d_old> | ||
898 | <e_new>Classified Information</e_new> | ||
899 | <f_old_trans></f_old_trans> | ||
900 | <f_translation>광고 정보</f_translation> | ||
901 | </string><string><a_file>floater_preview_event.xml</a_file> | ||
902 | <b_path>/event_preview</b_path> | ||
903 | <c_attribute>title</c_attribute> | ||
904 | <d_old></d_old> | ||
905 | <e_new>Event Information</e_new> | ||
906 | <f_old_trans></f_old_trans> | ||
907 | <f_translation>이벤트 정보</f_translation> | ||
908 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
909 | <b_path>/gesture_preview/library_label</b_path> | ||
910 | <c_attribute></c_attribute> | 115 | <c_attribute></c_attribute> |
911 | <d_old></d_old> | 116 | <d_old></d_old> |
912 | <e_new> | 117 | <e_new> |
913 | Library: | 118 | [NOTE1] |
914 | </e_new> | 119 | </e_new> |
915 | <f_old_trans></f_old_trans> | 120 | <f_old_trans></f_old_trans> |
916 | <f_translation> | 121 | <f_translation> |
917 | 라이브러리: | 122 | [NOTE1] |
918 | </f_translation> | 123 | </f_translation> |
919 | </string><string><a_file>floater_preview_gesture.xml</a_file> | 124 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
920 | <b_path>/gesture_preview/steps_label</b_path> | 125 | <b_path>/MemLeak/note_label_2</b_path> |
921 | <c_attribute></c_attribute> | 126 | <c_attribute></c_attribute> |
922 | <d_old></d_old> | 127 | <d_old></d_old> |
923 | <e_new> | 128 | <e_new> |
924 | Steps: | 129 | [NOTE2] |
925 | </e_new> | 130 | </e_new> |
926 | <f_old_trans></f_old_trans> | 131 | <f_old_trans></f_old_trans> |
927 | <f_translation> | 132 | <f_translation> |
928 | 단계: | 133 | [NOTE2] |
929 | </f_translation> | 134 | </f_translation> |
930 | </string><string><a_file>floater_preview_gesture.xml</a_file> | 135 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
931 | <b_path>/gesture_preview/animation_trigger_type/start</b_path> | 136 | <b_path>/MemLeak/start_btn</b_path> |
932 | <c_attribute></c_attribute> | ||
933 | <d_old></d_old> | ||
934 | <e_new> | ||
935 | Start | ||
936 | </e_new> | ||
937 | <f_old_trans></f_old_trans> | ||
938 | <f_translation> | ||
939 | 시작 | ||
940 | </f_translation> | ||
941 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
942 | <b_path>/gesture_preview/animation_trigger_type/stop</b_path> | ||
943 | <c_attribute></c_attribute> | ||
944 | <d_old></d_old> | ||
945 | <e_new> | ||
946 | Stop | ||
947 | </e_new> | ||
948 | <f_old_trans></f_old_trans> | ||
949 | <f_translation> | ||
950 | 중지 | ||
951 | </f_translation> | ||
952 | </string><string><a_file>floater_preview_notecard_keep_discard.xml</a_file> | ||
953 | <b_path>/preview_notecard/not_allowed</b_path> | ||
954 | <c_attribute></c_attribute> | ||
955 | <d_old></d_old> | ||
956 | <e_new>You are not allowed to view this note.</e_new> | ||
957 | <f_old_trans></f_old_trans> | ||
958 | <f_translation>사용자는 이 노트를 볼 수 없습니다.</f_translation> | ||
959 | </string><string><a_file>floater_preview_url.xml</a_file> | ||
960 | <b_path>/url_preview</b_path> | ||
961 | <c_attribute>title</c_attribute> | ||
962 | <d_old></d_old> | ||
963 | <e_new>Place Information</e_new> | ||
964 | <f_old_trans></f_old_trans> | ||
965 | <f_translation>장소 정보</f_translation> | ||
966 | </string><string><a_file>floater_region_info.xml</a_file> | ||
967 | <b_path>/regioninfo</b_path> | ||
968 | <c_attribute>title</c_attribute> | ||
969 | <d_old></d_old> | ||
970 | <e_new>Region/Estate</e_new> | ||
971 | <f_old_trans></f_old_trans> | ||
972 | <f_translation>지역/사유지</f_translation> | ||
973 | </string><string><a_file>floater_tools.xml</a_file> | ||
974 | <b_path>/toolbox floater/ToolCube</b_path> | ||
975 | <c_attribute>tool_tip</c_attribute> | ||
976 | <d_old></d_old> | ||
977 | <e_new>Cube</e_new> | ||
978 | <f_old_trans></f_old_trans> | ||
979 | <f_translation>정육면체</f_translation> | ||
980 | </string><string><a_file>floater_tools.xml</a_file> | ||
981 | <b_path>/toolbox floater/ToolPrism</b_path> | ||
982 | <c_attribute>tool_tip</c_attribute> | ||
983 | <d_old></d_old> | ||
984 | <e_new>Prism</e_new> | ||
985 | <f_old_trans></f_old_trans> | ||
986 | <f_translation>삼각기둥</f_translation> | ||
987 | </string><string><a_file>floater_tools.xml</a_file> | ||
988 | <b_path>/toolbox floater/ToolPyramid</b_path> | ||
989 | <c_attribute>tool_tip</c_attribute> | ||
990 | <d_old></d_old> | ||
991 | <e_new>Pyramid</e_new> | ||
992 | <f_old_trans></f_old_trans> | ||
993 | <f_translation>삼각뿔</f_translation> | ||
994 | </string><string><a_file>floater_tools.xml</a_file> | ||
995 | <b_path>/toolbox floater/ToolTetrahedron</b_path> | ||
996 | <c_attribute>tool_tip</c_attribute> | ||
997 | <d_old></d_old> | ||
998 | <e_new>Tetrahedron</e_new> | ||
999 | <f_old_trans></f_old_trans> | ||
1000 | <f_translation>사면체</f_translation> | ||
1001 | </string><string><a_file>floater_tools.xml</a_file> | ||
1002 | <b_path>/toolbox floater/ToolCylinder</b_path> | ||
1003 | <c_attribute>tool_tip</c_attribute> | ||
1004 | <d_old></d_old> | ||
1005 | <e_new>Cylinder</e_new> | ||
1006 | <f_old_trans></f_old_trans> | ||
1007 | <f_translation>원통</f_translation> | ||
1008 | </string><string><a_file>floater_tools.xml</a_file> | ||
1009 | <b_path>/toolbox floater/ToolHemiCylinder</b_path> | ||
1010 | <c_attribute>tool_tip</c_attribute> | ||
1011 | <d_old></d_old> | ||
1012 | <e_new>Hemicylinder</e_new> | ||
1013 | <f_old_trans></f_old_trans> | ||
1014 | <f_translation>반원통</f_translation> | ||
1015 | </string><string><a_file>floater_tools.xml</a_file> | ||
1016 | <b_path>/toolbox floater/ToolCone</b_path> | ||
1017 | <c_attribute>tool_tip</c_attribute> | ||
1018 | <d_old></d_old> | ||
1019 | <e_new>Cone</e_new> | ||
1020 | <f_old_trans></f_old_trans> | ||
1021 | <f_translation>원뿔</f_translation> | ||
1022 | </string><string><a_file>floater_tools.xml</a_file> | ||
1023 | <b_path>/toolbox floater/ToolHemiCone</b_path> | ||
1024 | <c_attribute>tool_tip</c_attribute> | ||
1025 | <d_old></d_old> | ||
1026 | <e_new>Hemicone</e_new> | ||
1027 | <f_old_trans></f_old_trans> | ||
1028 | <f_translation>반원뿔</f_translation> | ||
1029 | </string><string><a_file>floater_tools.xml</a_file> | ||
1030 | <b_path>/toolbox floater/ToolSphere</b_path> | ||
1031 | <c_attribute>tool_tip</c_attribute> | ||
1032 | <d_old></d_old> | ||
1033 | <e_new>Sphere</e_new> | ||
1034 | <f_old_trans></f_old_trans> | ||
1035 | <f_translation>구</f_translation> | ||
1036 | </string><string><a_file>floater_tools.xml</a_file> | ||
1037 | <b_path>/toolbox floater/ToolHemiSphere</b_path> | ||
1038 | <c_attribute>tool_tip</c_attribute> | ||
1039 | <d_old></d_old> | ||
1040 | <e_new>Hemisphere</e_new> | ||
1041 | <f_old_trans></f_old_trans> | ||
1042 | <f_translation>반구</f_translation> | ||
1043 | </string><string><a_file>floater_tools.xml</a_file> | ||
1044 | <b_path>/toolbox floater/ToolTorus</b_path> | ||
1045 | <c_attribute>tool_tip</c_attribute> | ||
1046 | <d_old></d_old> | ||
1047 | <e_new>Torus</e_new> | ||
1048 | <f_old_trans></f_old_trans> | ||
1049 | <f_translation>원환</f_translation> | ||
1050 | </string><string><a_file>floater_tools.xml</a_file> | ||
1051 | <b_path>/toolbox floater/ToolTube</b_path> | ||
1052 | <c_attribute>tool_tip</c_attribute> | ||
1053 | <d_old></d_old> | ||
1054 | <e_new>Tube</e_new> | ||
1055 | <f_old_trans></f_old_trans> | ||
1056 | <f_translation>관</f_translation> | ||
1057 | </string><string><a_file>floater_tools.xml</a_file> | ||
1058 | <b_path>/toolbox floater/ToolRing</b_path> | ||
1059 | <c_attribute>tool_tip</c_attribute> | ||
1060 | <d_old></d_old> | ||
1061 | <e_new>Ring</e_new> | ||
1062 | <f_old_trans></f_old_trans> | ||
1063 | <f_translation>반지</f_translation> | ||
1064 | </string><string><a_file>floater_tools.xml</a_file> | ||
1065 | <b_path>/toolbox floater/ToolTree</b_path> | ||
1066 | <c_attribute>tool_tip</c_attribute> | ||
1067 | <d_old></d_old> | ||
1068 | <e_new>Tree</e_new> | ||
1069 | <f_old_trans></f_old_trans> | ||
1070 | <f_translation>나무</f_translation> | ||
1071 | </string><string><a_file>floater_tools.xml</a_file> | ||
1072 | <b_path>/toolbox floater/ToolGrass</b_path> | ||
1073 | <c_attribute>tool_tip</c_attribute> | ||
1074 | <d_old></d_old> | ||
1075 | <e_new>Grass</e_new> | ||
1076 | <f_old_trans></f_old_trans> | ||
1077 | <f_translation>잔디</f_translation> | ||
1078 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1079 | <b_path>/Main Menu/View/Joystick Flycam</b_path> | ||
1080 | <c_attribute>label</c_attribute> | 137 | <c_attribute>label</c_attribute> |
1081 | <d_old></d_old> | 138 | <d_old></d_old> |
1082 | <e_new>Joystick Flycam</e_new> | 139 | <e_new>Start</e_new> |
1083 | <f_old_trans></f_old_trans> | 140 | <f_old_trans></f_old_trans> |
1084 | <f_translation>이스 Flycam</f_translation> | 141 | <f_translation>작</f_translation> |
1085 | </string><string><a_file>menu_viewer.xml</a_file> | 142 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
1086 | <b_path>/Main Menu/Help/Tutorial</b_path> | 143 | <b_path>/MemLeak/stop_btn</b_path> |
1087 | <c_attribute>label</c_attribute> | 144 | <c_attribute>label</c_attribute> |
1088 | <d_old></d_old> | 145 | <d_old></d_old> |
1089 | <e_new>Tutorial</e_new> | 146 | <e_new>Stop</e_new> |
1090 | <f_old_trans></f_old_trans> | 147 | <f_old_trans></f_old_trans> |
1091 | <f_translation>튜토리</f_translation> | 148 | <f_translation>지</f_translation> |
1092 | </string><string><a_file>menu_viewer.xml</a_file> | 149 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
1093 | <b_path>/Main Menu/Help/separator7</b_path> | 150 | <b_path>/MemLeak/release_btn</b_path> |
1094 | <c_attribute>label</c_attribute> | 151 | <c_attribute>label</c_attribute> |
1095 | <d_old></d_old> | 152 | <d_old></d_old> |
1096 | <e_new>-----------</e_new> | 153 | <e_new>Release</e_new> |
1097 | <f_old_trans></f_old_trans> | 154 | <f_old_trans></f_old_trans> |
1098 | <f_translation>-----------</f_translation> | 155 | <f_translation>해제</f_translation> |
1099 | </string><string><a_file>menu_viewer.xml</a_file> | 156 | </string><string><a_file>floater_mem_leaking.xml</a_file> |
1100 | <b_path>/Main Menu/Help/Bug Reporting/separator9</b_path> | 157 | <b_path>/MemLeak/close_btn</b_path> |
1101 | <c_attribute>label</c_attribute> | 158 | <c_attribute>label</c_attribute> |
1102 | <d_old></d_old> | 159 | <d_old></d_old> |
1103 | <e_new>-----------</e_new> | 160 | <e_new>Close</e_new> |
1104 | <f_old_trans></f_old_trans> | ||
1105 | <f_translation>-----------</f_translation> | ||
1106 | </string><string><a_file>mime_types.xml</a_file> | ||
1107 | <b_path>/default/web/</b_path> | ||
1108 | <c_attribute></c_attribute> | ||
1109 | <d_old></d_old> | ||
1110 | <e_new> | ||
1111 | Web Content | ||
1112 | </e_new> | ||
1113 | <f_old_trans></f_old_trans> | ||
1114 | <f_translation> | ||
1115 | 웹 컨텐츠 | ||
1116 | </f_translation> | ||
1117 | </string><string><a_file>mime_types.xml</a_file> | ||
1118 | <b_path>/default/web/</b_path> | ||
1119 | <c_attribute></c_attribute> | ||
1120 | <d_old></d_old> | ||
1121 | <e_new> | ||
1122 | This location has Web content | ||
1123 | </e_new> | ||
1124 | <f_old_trans></f_old_trans> | ||
1125 | <f_translation> | ||
1126 | 이 위치에는 웹 컨텐츠가 포함되어 있습니다. | ||
1127 | </f_translation> | ||
1128 | </string><string><a_file>mime_types.xml</a_file> | ||
1129 | <b_path>/default/web/</b_path> | ||
1130 | <c_attribute></c_attribute> | ||
1131 | <d_old></d_old> | ||
1132 | <e_new> | ||
1133 | Show Web content | ||
1134 | </e_new> | ||
1135 | <f_old_trans></f_old_trans> | ||
1136 | <f_translation> | ||
1137 | 웹 컨텐츠 표시 | ||
1138 | </f_translation> | ||
1139 | </string><string><a_file>mime_types.xml</a_file> | ||
1140 | <b_path>/default/movie/</b_path> | ||
1141 | <c_attribute></c_attribute> | ||
1142 | <d_old></d_old> | ||
1143 | <e_new> | ||
1144 | Movie | ||
1145 | </e_new> | ||
1146 | <f_old_trans></f_old_trans> | ||
1147 | <f_translation> | ||
1148 | 동영상 | ||
1149 | </f_translation> | ||
1150 | </string><string><a_file>mime_types.xml</a_file> | ||
1151 | <b_path>/default/movie/</b_path> | ||
1152 | <c_attribute></c_attribute> | ||
1153 | <d_old></d_old> | ||
1154 | <e_new> | ||
1155 | There is a movie to play here | ||
1156 | </e_new> | ||
1157 | <f_old_trans></f_old_trans> | ||
1158 | <f_translation> | ||
1159 | 여기서 동영상을 재생할 수 있습니다. | ||
1160 | </f_translation> | ||
1161 | </string><string><a_file>mime_types.xml</a_file> | ||
1162 | <b_path>/default/movie/</b_path> | ||
1163 | <c_attribute></c_attribute> | ||
1164 | <d_old></d_old> | ||
1165 | <e_new> | ||
1166 | Play movie | ||
1167 | </e_new> | ||
1168 | <f_old_trans></f_old_trans> | ||
1169 | <f_translation> | ||
1170 | 동영상 재생 | ||
1171 | </f_translation> | ||
1172 | </string><string><a_file>mime_types.xml</a_file> | ||
1173 | <b_path>/default/none/</b_path> | ||
1174 | <c_attribute></c_attribute> | ||
1175 | <d_old></d_old> | ||
1176 | <e_new> | ||
1177 | No Content | ||
1178 | </e_new> | ||
1179 | <f_old_trans></f_old_trans> | ||
1180 | <f_translation> | ||
1181 | 컨텐츠 없음 | ||
1182 | </f_translation> | ||
1183 | </string><string><a_file>mime_types.xml</a_file> | ||
1184 | <b_path>/default/none/</b_path> | ||
1185 | <c_attribute></c_attribute> | ||
1186 | <d_old></d_old> | ||
1187 | <e_new> | ||
1188 | No media here | ||
1189 | </e_new> | ||
1190 | <f_old_trans></f_old_trans> | ||
1191 | <f_translation> | ||
1192 | 미디어 없음 | ||
1193 | </f_translation> | ||
1194 | </string><string><a_file>mime_types.xml</a_file> | ||
1195 | <b_path>/default/image/</b_path> | ||
1196 | <c_attribute></c_attribute> | ||
1197 | <d_old></d_old> | ||
1198 | <e_new> | ||
1199 | Image | ||
1200 | </e_new> | ||
1201 | <f_old_trans></f_old_trans> | ||
1202 | <f_translation> | ||
1203 | 이미지 | ||
1204 | </f_translation> | ||
1205 | </string><string><a_file>mime_types.xml</a_file> | ||
1206 | <b_path>/default/image/</b_path> | ||
1207 | <c_attribute></c_attribute> | ||
1208 | <d_old></d_old> | ||
1209 | <e_new> | ||
1210 | There is an image at this location | ||
1211 | </e_new> | ||
1212 | <f_old_trans></f_old_trans> | ||
1213 | <f_translation> | ||
1214 | 이 위치에 이미지가 있습니다. | ||
1215 | </f_translation> | ||
1216 | </string><string><a_file>mime_types.xml</a_file> | ||
1217 | <b_path>/default/image/</b_path> | ||
1218 | <c_attribute></c_attribute> | ||
1219 | <d_old></d_old> | ||
1220 | <e_new> | ||
1221 | View this location's image | ||
1222 | </e_new> | ||
1223 | <f_old_trans></f_old_trans> | ||
1224 | <f_translation> | ||
1225 | 이 위치의 이미지 보기 | ||
1226 | </f_translation> | ||
1227 | </string><string><a_file>mime_types.xml</a_file> | ||
1228 | <b_path>/default/audio/</b_path> | ||
1229 | <c_attribute></c_attribute> | ||
1230 | <d_old></d_old> | ||
1231 | <e_new> | ||
1232 | Audio | ||
1233 | </e_new> | ||
1234 | <f_old_trans></f_old_trans> | ||
1235 | <f_translation> | ||
1236 | 오디오 | ||
1237 | </f_translation> | ||
1238 | </string><string><a_file>mime_types.xml</a_file> | ||
1239 | <b_path>/default/audio/</b_path> | ||
1240 | <c_attribute></c_attribute> | ||
1241 | <d_old></d_old> | ||
1242 | <e_new> | ||
1243 | There is audio at this location | ||
1244 | </e_new> | ||
1245 | <f_old_trans></f_old_trans> | ||
1246 | <f_translation> | ||
1247 | 이 위치에 오디오가 있습니다. | ||
1248 | </f_translation> | ||
1249 | </string><string><a_file>mime_types.xml</a_file> | ||
1250 | <b_path>/default/audio/</b_path> | ||
1251 | <c_attribute></c_attribute> | ||
1252 | <d_old></d_old> | ||
1253 | <e_new> | ||
1254 | View this location's audio | ||
1255 | </e_new> | ||
1256 | <f_old_trans></f_old_trans> | ||
1257 | <f_translation> | ||
1258 | 이 위치의 오디오 보기 | ||
1259 | </f_translation> | ||
1260 | </string><string><a_file>mime_types.xml</a_file> | ||
1261 | <b_path>/default/rtsp/</b_path> | ||
1262 | <c_attribute></c_attribute> | ||
1263 | <d_old></d_old> | ||
1264 | <e_new> | ||
1265 | Real Time Streaming | ||
1266 | </e_new> | ||
1267 | <f_old_trans></f_old_trans> | ||
1268 | <f_translation> | ||
1269 | 실시간 스트리밍 | ||
1270 | </f_translation> | ||
1271 | </string><string><a_file>mime_types.xml</a_file> | ||
1272 | <b_path>/default/blank/</b_path> | ||
1273 | <c_attribute></c_attribute> | ||
1274 | <d_old></d_old> | ||
1275 | <e_new> | ||
1276 | - None - | ||
1277 | </e_new> | ||
1278 | <f_old_trans></f_old_trans> | ||
1279 | <f_translation> | ||
1280 | - 없음 - | ||
1281 | </f_translation> | ||
1282 | </string><string><a_file>mime_types.xml</a_file> | ||
1283 | <b_path>/default/"none/none"/</b_path> | ||
1284 | <c_attribute></c_attribute> | ||
1285 | <d_old></d_old> | ||
1286 | <e_new> | ||
1287 | - None - | ||
1288 | </e_new> | ||
1289 | <f_old_trans></f_old_trans> | ||
1290 | <f_translation> | ||
1291 | - 없음 - | ||
1292 | </f_translation> | ||
1293 | </string><string><a_file>mime_types.xml</a_file> | ||
1294 | <b_path>/default/"audio/*"/</b_path> | ||
1295 | <c_attribute></c_attribute> | ||
1296 | <d_old></d_old> | ||
1297 | <e_new> | ||
1298 | Audio | ||
1299 | </e_new> | ||
1300 | <f_old_trans></f_old_trans> | ||
1301 | <f_translation> | ||
1302 | 오디오 | ||
1303 | </f_translation> | ||
1304 | </string><string><a_file>mime_types.xml</a_file> | ||
1305 | <b_path>/default/"video/*"/</b_path> | ||
1306 | <c_attribute></c_attribute> | ||
1307 | <d_old></d_old> | ||
1308 | <e_new> | ||
1309 | Video | ||
1310 | </e_new> | ||
1311 | <f_old_trans></f_old_trans> | ||
1312 | <f_translation> | ||
1313 | 비디오 | ||
1314 | </f_translation> | ||
1315 | </string><string><a_file>mime_types.xml</a_file> | ||
1316 | <b_path>/default/"image/*"/</b_path> | ||
1317 | <c_attribute></c_attribute> | ||
1318 | <d_old></d_old> | ||
1319 | <e_new> | ||
1320 | Image | ||
1321 | </e_new> | ||
1322 | <f_old_trans></f_old_trans> | ||
1323 | <f_translation> | ||
1324 | 이미지 | ||
1325 | </f_translation> | ||
1326 | </string><string><a_file>mime_types.xml</a_file> | ||
1327 | <b_path>/default/"video/vnd.secondlife.qt.legacy"/</b_path> | ||
1328 | <c_attribute></c_attribute> | ||
1329 | <d_old></d_old> | ||
1330 | <e_new> | ||
1331 | Movie (QuickTime) | ||
1332 | </e_new> | ||
1333 | <f_old_trans></f_old_trans> | ||
1334 | <f_translation> | ||
1335 | 동영상(QuickTime) | ||
1336 | </f_translation> | ||
1337 | </string><string><a_file>mime_types.xml</a_file> | ||
1338 | <b_path>/default/"application/javascript"/</b_path> | ||
1339 | <c_attribute></c_attribute> | ||
1340 | <d_old></d_old> | ||
1341 | <e_new> | ||
1342 | Javascript | ||
1343 | </e_new> | ||
1344 | <f_old_trans></f_old_trans> | ||
1345 | <f_translation> | ||
1346 | Javascript | ||
1347 | </f_translation> | ||
1348 | </string><string><a_file>mime_types.xml</a_file> | ||
1349 | <b_path>/default/"application/ogg"/</b_path> | ||
1350 | <c_attribute></c_attribute> | ||
1351 | <d_old></d_old> | ||
1352 | <e_new> | ||
1353 | Ogg Audio/Video | ||
1354 | </e_new> | ||
1355 | <f_old_trans></f_old_trans> | ||
1356 | <f_translation> | ||
1357 | Ogg 오디오/비디오 | ||
1358 | </f_translation> | ||
1359 | </string><string><a_file>mime_types.xml</a_file> | ||
1360 | <b_path>/default/"application/pdf"/</b_path> | ||
1361 | <c_attribute></c_attribute> | ||
1362 | <d_old></d_old> | ||
1363 | <e_new> | ||
1364 | PDF Document | ||
1365 | </e_new> | ||
1366 | <f_old_trans></f_old_trans> | ||
1367 | <f_translation> | ||
1368 | PDF 문서 | ||
1369 | </f_translation> | ||
1370 | </string><string><a_file>mime_types.xml</a_file> | ||
1371 | <b_path>/default/"application/postscript"/</b_path> | ||
1372 | <c_attribute></c_attribute> | ||
1373 | <d_old></d_old> | ||
1374 | <e_new> | ||
1375 | Postscript Document | ||
1376 | </e_new> | ||
1377 | <f_old_trans></f_old_trans> | ||
1378 | <f_translation> | ||
1379 | 포스트스크립트 문서 | ||
1380 | </f_translation> | ||
1381 | </string><string><a_file>mime_types.xml</a_file> | ||
1382 | <b_path>/default/"application/rtf"/</b_path> | ||
1383 | <c_attribute></c_attribute> | ||
1384 | <d_old></d_old> | ||
1385 | <e_new> | ||
1386 | Rich Text (RTF) | ||
1387 | </e_new> | ||
1388 | <f_old_trans></f_old_trans> | ||
1389 | <f_translation> | ||
1390 | 서식있는 텍스트(RTF) | ||
1391 | </f_translation> | ||
1392 | </string><string><a_file>mime_types.xml</a_file> | ||
1393 | <b_path>/default/"application/xhtml+xml"/</b_path> | ||
1394 | <c_attribute></c_attribute> | ||
1395 | <d_old></d_old> | ||
1396 | <e_new> | ||
1397 | Web Page (XHTML) | ||
1398 | </e_new> | ||
1399 | <f_old_trans></f_old_trans> | ||
1400 | <f_translation> | ||
1401 | 웹 페이지(XHTML) | ||
1402 | </f_translation> | ||
1403 | </string><string><a_file>mime_types.xml</a_file> | ||
1404 | <b_path>/default/"application/x-director"/</b_path> | ||
1405 | <c_attribute></c_attribute> | ||
1406 | <d_old></d_old> | ||
1407 | <e_new> | ||
1408 | Macromedia Director | ||
1409 | </e_new> | ||
1410 | <f_old_trans></f_old_trans> | ||
1411 | <f_translation> | ||
1412 | Macromedia Director | ||
1413 | </f_translation> | ||
1414 | </string><string><a_file>mime_types.xml</a_file> | ||
1415 | <b_path>/default/"application/x-shockwave-flash"/</b_path> | ||
1416 | <c_attribute></c_attribute> | ||
1417 | <d_old></d_old> | ||
1418 | <e_new> | ||
1419 | Flash | ||
1420 | </e_new> | ||
1421 | <f_old_trans></f_old_trans> | ||
1422 | <f_translation> | ||
1423 | 플래시 | ||
1424 | </f_translation> | ||
1425 | </string><string><a_file>mime_types.xml</a_file> | ||
1426 | <b_path>/default/"audio/mid"/</b_path> | ||
1427 | <c_attribute></c_attribute> | ||
1428 | <d_old></d_old> | ||
1429 | <e_new> | ||
1430 | Audio (MIDI) | ||
1431 | </e_new> | ||
1432 | <f_old_trans></f_old_trans> | 161 | <f_old_trans></f_old_trans> |
1433 | <f_translation> | 162 | <f_translation>닫기</f_translation> |
1434 | 오디오(MIDI) | 163 | </string><string><a_file>floater_postcard.xml</a_file> |
1435 | </f_translation> | 164 | <b_path>/Postcard/upload_message</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> | 165 | <c_attribute></c_attribute> |
1439 | <d_old></d_old> | 166 | <d_old></d_old> |
1440 | <e_new> | 167 | <e_new> |
1441 | Audio (MP3) | 168 | "Sending..." |
1442 | </e_new> | 169 | </e_new> |
1443 | <f_old_trans></f_old_trans> | ||
1444 | <f_translation> | ||
1445 | 오디오(MP3) | ||
1446 | </f_translation> | ||
1447 | </string><string><a_file>mime_types.xml</a_file> | ||
1448 | <b_path>/default/"audio/x-aiff"/</b_path> | ||
1449 | <c_attribute></c_attribute> | ||
1450 | <d_old></d_old> | ||
1451 | <e_new> | ||
1452 | Audio (AIFF) | ||
1453 | </e_new> | ||
1454 | <f_old_trans></f_old_trans> | ||
1455 | <f_translation> | ||
1456 | 오디오(AIFF) | ||
1457 | </f_translation> | ||
1458 | </string><string><a_file>mime_types.xml</a_file> | ||
1459 | <b_path>/default/"audio/x-wav"/</b_path> | ||
1460 | <c_attribute></c_attribute> | ||
1461 | <d_old></d_old> | ||
1462 | <e_new> | ||
1463 | Audio (WAV) | ||
1464 | </e_new> | ||
1465 | <f_old_trans></f_old_trans> | ||
1466 | <f_translation> | ||
1467 | 오디오(WAV) | ||
1468 | </f_translation> | ||
1469 | </string><string><a_file>mime_types.xml</a_file> | ||
1470 | <b_path>/default/"image/bmp"/</b_path> | ||
1471 | <c_attribute></c_attribute> | ||
1472 | <d_old></d_old> | ||
1473 | <e_new> | ||
1474 | Image (BMP) | ||
1475 | </e_new> | ||
1476 | <f_old_trans></f_old_trans> | ||
1477 | <f_translation> | ||
1478 | 이미지(BMP) | ||
1479 | </f_translation> | ||
1480 | </string><string><a_file>mime_types.xml</a_file> | ||
1481 | <b_path>/default/"image/gif"/</b_path> | ||
1482 | <c_attribute></c_attribute> | ||
1483 | <d_old></d_old> | ||
1484 | <e_new> | ||
1485 | Image (GIF) | ||
1486 | </e_new> | ||
1487 | <f_old_trans></f_old_trans> | ||
1488 | <f_translation> | ||
1489 | 이미지(GIF) | ||
1490 | </f_translation> | ||
1491 | </string><string><a_file>mime_types.xml</a_file> | ||
1492 | <b_path>/default/"image/jpeg"/</b_path> | ||
1493 | <c_attribute></c_attribute> | ||
1494 | <d_old></d_old> | ||
1495 | <e_new> | ||
1496 | Image (JPEG) | ||
1497 | </e_new> | ||
1498 | <f_old_trans></f_old_trans> | ||
1499 | <f_translation> | ||
1500 | 이미지(JPEG) | ||
1501 | </f_translation> | ||
1502 | </string><string><a_file>mime_types.xml</a_file> | ||
1503 | <b_path>/default/"image/png"/</b_path> | ||
1504 | <c_attribute></c_attribute> | ||
1505 | <d_old></d_old> | ||
1506 | <e_new> | ||
1507 | Image (PNG) | ||
1508 | </e_new> | ||
1509 | <f_old_trans></f_old_trans> | ||
1510 | <f_translation> | ||
1511 | 이미지(PNG) | ||
1512 | </f_translation> | ||
1513 | </string><string><a_file>mime_types.xml</a_file> | ||
1514 | <b_path>/default/"image/svg+xml"/</b_path> | ||
1515 | <c_attribute></c_attribute> | ||
1516 | <d_old></d_old> | ||
1517 | <e_new> | ||
1518 | Image (SVG) | ||
1519 | </e_new> | ||
1520 | <f_old_trans></f_old_trans> | ||
1521 | <f_translation> | ||
1522 | 이미지(SVG) | ||
1523 | </f_translation> | ||
1524 | </string><string><a_file>mime_types.xml</a_file> | ||
1525 | <b_path>/default/"image/tiff"/</b_path> | ||
1526 | <c_attribute></c_attribute> | ||
1527 | <d_old></d_old> | ||
1528 | <e_new> | ||
1529 | Image (TIFF) | ||
1530 | </e_new> | ||
1531 | <f_old_trans></f_old_trans> | ||
1532 | <f_translation> | ||
1533 | 이미지(TIFF) | ||
1534 | </f_translation> | ||
1535 | </string><string><a_file>mime_types.xml</a_file> | ||
1536 | <b_path>/default/"text/html"/</b_path> | ||
1537 | <c_attribute></c_attribute> | ||
1538 | <d_old></d_old> | ||
1539 | <e_new> | ||
1540 | Web Page | ||
1541 | </e_new> | ||
1542 | <f_old_trans></f_old_trans> | ||
1543 | <f_translation> | ||
1544 | 웹 페이지 | ||
1545 | </f_translation> | ||
1546 | </string><string><a_file>mime_types.xml</a_file> | ||
1547 | <b_path>/default/"text/plain"/</b_path> | ||
1548 | <c_attribute></c_attribute> | ||
1549 | <d_old></d_old> | ||
1550 | <e_new> | ||
1551 | Text | ||
1552 | </e_new> | ||
1553 | <f_old_trans></f_old_trans> | ||
1554 | <f_translation> | ||
1555 | 텍스트 | ||
1556 | </f_translation> | ||
1557 | </string><string><a_file>mime_types.xml</a_file> | ||
1558 | <b_path>/default/"text/xml"/</b_path> | ||
1559 | <c_attribute></c_attribute> | ||
1560 | <d_old></d_old> | ||
1561 | <e_new> | ||
1562 | XML | ||
1563 | </e_new> | ||
1564 | <f_old_trans></f_old_trans> | 170 | <f_old_trans></f_old_trans> |
1565 | <f_translation> | 171 | <f_translation> |
1566 | XML | 172 | "보내는 중..." |
1567 | </f_translation> | 173 | </f_translation> |
1568 | </string><string><a_file>mime_types.xml</a_file> | 174 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1569 | <b_path>/default/"video/mpeg"/</b_path> | 175 | <b_path>/floater_report_abuse/category_combo/Select_category</b_path> |
1570 | <c_attribute></c_attribute> | 176 | <c_attribute></c_attribute> |
1571 | <d_old></d_old> | 177 | <d_old></d_old> |
1572 | <e_new> | 178 | <e_new> |
1573 | Movie (MPEG) | 179 | Select category |
1574 | </e_new> | 180 | </e_new> |
1575 | <f_old_trans></f_old_trans> | 181 | <f_old_trans></f_old_trans> |
1576 | <f_translation> | 182 | <f_translation> |
1577 | 동(MPEG) | 183 | 테고리 |
1578 | </f_translation> | 184 | </f_translation> |
1579 | </string><string><a_file>mime_types.xml</a_file> | 185 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1580 | <b_path>/default/"video/mp4"/</b_path> | 186 | <b_path>/floater_report_abuse/category_combo/Age__Age_play</b_path> |
1581 | <c_attribute></c_attribute> | 187 | <c_attribute></c_attribute> |
1582 | <d_old></d_old> | 188 | <d_old></d_old> |
1583 | <e_new> | 189 | <e_new> |
1584 | Movie (MP4) | 190 | Age > Age play |
1585 | </e_new> | 191 | </e_new> |
1586 | <f_old_trans></f_old_trans> | 192 | <f_old_trans></f_old_trans> |
1587 | <f_translation> | 193 | <f_translation> |
1588 | 상(MP4) | 194 | 연령관련 > 에이지 플 |
1589 | </f_translation> | 195 | </f_translation> |
1590 | </string><string><a_file>mime_types.xml</a_file> | 196 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1591 | <b_path>/default/"video/quicktime"/</b_path> | 197 | <b_path>/floater_report_abuse/category_combo/Age__Adult_resident_on_Teen_Second_Life</b_path> |
1592 | <c_attribute></c_attribute> | 198 | <c_attribute></c_attribute> |
1593 | <d_old></d_old> | 199 | <d_old></d_old> |
1594 | <e_new> | 200 | <e_new> |
1595 | Movie (QuickTime) | 201 | Age > Adult resident on Teen Second Life |
1596 | </e_new> | 202 | </e_new> |
1597 | <f_old_trans></f_old_trans> | 203 | <f_old_trans></f_old_trans> |
1598 | <f_translation> | 204 | <f_translation> |
1599 | (QuickTime) | 205 | 연령관련 > 틴 세컨라프내 인 주민 |
1600 | </f_translation> | 206 | </f_translation> |
1601 | </string><string><a_file>mime_types.xml</a_file> | 207 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1602 | <b_path>/default/"video/x-ms-asf"/</b_path> | 208 | <b_path>/floater_report_abuse/category_combo/Age__Underage_resident_on_Adult_Second_Life</b_path> |
1603 | <c_attribute></c_attribute> | 209 | <c_attribute></c_attribute> |
1604 | <d_old></d_old> | 210 | <d_old></d_old> |
1605 | <e_new> | 211 | <e_new> |
1606 | Movie (Windows Media ASF) | 212 | Age > Underage resident on Adult Second Life |
1607 | </e_new> | 213 | </e_new> |
1608 | <f_old_trans></f_old_trans> | 214 | <f_old_trans></f_old_trans> |
1609 | <f_translation> | 215 | <f_translation> |
1610 | (Windows Media ASF) | 216 | 연령관련 > 세컨라프 미성년자 주민 |
1611 | </f_translation> | 217 | </f_translation> |
1612 | </string><string><a_file>mime_types.xml</a_file> | 218 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1613 | <b_path>/default/"video/x-ms-wmv"/</b_path> | 219 | <b_path>/floater_report_abuse/category_combo/Assault__Combat_sandbox___unsafe_area</b_path> |
1614 | <c_attribute></c_attribute> | 220 | <c_attribute></c_attribute> |
1615 | <d_old></d_old> | 221 | <d_old></d_old> |
1616 | <e_new> | 222 | <e_new> |
1617 | Movie (Windows Media WMV) | 223 | Assault > Combat sandbox / unsafe area |
1618 | </e_new> | 224 | </e_new> |
1619 | <f_old_trans></f_old_trans> | 225 | <f_old_trans></f_old_trans> |
1620 | <f_translation> | 226 | <f_translation> |
1621 | (Windows Media WMV) | 227 | 폭력관련 > 전투 샌박/험 지대 |
1622 | </f_translation> | 228 | </f_translation> |
1623 | </string><string><a_file>mime_types.xml</a_file> | 229 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1624 | <b_path>/default/"video/x-msvideo"/</b_path> | 230 | <b_path>/floater_report_abuse/category_combo/Assault__Safe_area</b_path> |
1625 | <c_attribute></c_attribute> | 231 | <c_attribute></c_attribute> |
1626 | <d_old></d_old> | 232 | <d_old></d_old> |
1627 | <e_new> | 233 | <e_new> |
1628 | Movie (AVI) | 234 | Assault > Safe area |
1629 | </e_new> | 235 | </e_new> |
1630 | <f_old_trans></f_old_trans> | 236 | <f_old_trans></f_old_trans> |
1631 | <f_translation> | 237 | <f_translation> |
1632 | 동(AVI) | 238 | 폭력관련 > 지대 |
1633 | </f_translation> | 239 | </f_translation> |
1634 | </string><string><a_file>notify.xml</a_file> | 240 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1635 | <b_path>//RezItemNoPermissions/message</b_path> | 241 | <b_path>/floater_report_abuse/category_combo/Assault__Weapons_testing_sandbox</b_path> |
1636 | <c_attribute></c_attribute> | 242 | <c_attribute></c_attribute> |
1637 | <d_old></d_old> | 243 | <d_old></d_old> |
1638 | <e_new> | 244 | <e_new> |
1639 | Insufficient permissions to rez object. | 245 | Assault > Weapons testing sandbox |
1640 | </e_new> | 246 | </e_new> |
1641 | <f_old_trans></f_old_trans> | 247 | <f_old_trans></f_old_trans> |
1642 | <f_translation> | 248 | <f_translation> |
1643 | rez 오브젝트에 대한 권한이 부족합니다. | 249 | 폭력관련 > 총기류 테스트 샌드박스 |
1644 | </f_translation> | 250 | </f_translation> |
1645 | </string><string><a_file>panel_audio.xml</a_file> | 251 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1646 | <b_path>/Media panel/mute_audio</b_path> | 252 | <b_path>/floater_report_abuse/category_combo/Copyright_or_intellectual_property_violation</b_path> |
1647 | <c_attribute>label</c_attribute> | ||
1648 | <d_old></d_old> | ||
1649 | <e_new></e_new> | ||
1650 | <f_old_trans></f_old_trans> | ||
1651 | <f_translation></f_translation> | ||
1652 | </string><string><a_file>panel_audio.xml</a_file> | ||
1653 | <b_path>/Media panel/mute_music</b_path> | ||
1654 | <c_attribute>label</c_attribute> | ||
1655 | <d_old></d_old> | ||
1656 | <e_new></e_new> | ||
1657 | <f_old_trans></f_old_trans> | ||
1658 | <f_translation></f_translation> | ||
1659 | </string><string><a_file>panel_audio.xml</a_file> | ||
1660 | <b_path>/Media panel/mute_media</b_path> | ||
1661 | <c_attribute>label</c_attribute> | ||
1662 | <d_old></d_old> | ||
1663 | <e_new></e_new> | ||
1664 | <f_old_trans></f_old_trans> | ||
1665 | <f_translation></f_translation> | ||
1666 | </string><string><a_file>panel_audio.xml</a_file> | ||
1667 | <b_path>/Media panel/mute_voice</b_path> | ||
1668 | <c_attribute>label</c_attribute> | ||
1669 | <d_old></d_old> | ||
1670 | <e_new></e_new> | ||
1671 | <f_old_trans></f_old_trans> | ||
1672 | <f_translation></f_translation> | ||
1673 | </string><string><a_file>panel_audio.xml</a_file> | ||
1674 | <b_path>/Media panel/mute_sfx</b_path> | ||
1675 | <c_attribute>label</c_attribute> | ||
1676 | <d_old></d_old> | ||
1677 | <e_new></e_new> | ||
1678 | <f_old_trans></f_old_trans> | ||
1679 | <f_translation></f_translation> | ||
1680 | </string><string><a_file>panel_audio.xml</a_file> | ||
1681 | <b_path>/Media panel/mute_wind</b_path> | ||
1682 | <c_attribute>label</c_attribute> | ||
1683 | <d_old></d_old> | ||
1684 | <e_new></e_new> | ||
1685 | <f_old_trans></f_old_trans> | ||
1686 | <f_translation></f_translation> | ||
1687 | </string><string><a_file>panel_audio.xml</a_file> | ||
1688 | <b_path>/Media panel/mute_ui</b_path> | ||
1689 | <c_attribute>label</c_attribute> | ||
1690 | <d_old></d_old> | ||
1691 | <e_new></e_new> | ||
1692 | <f_old_trans></f_old_trans> | ||
1693 | <f_translation></f_translation> | ||
1694 | </string><string><a_file>panel_groups.xml</a_file> | ||
1695 | <b_path>/groups/group list/name</b_path> | ||
1696 | <c_attribute>label</c_attribute> | ||
1697 | <d_old></d_old> | ||
1698 | <e_new></e_new> | ||
1699 | <f_old_trans></f_old_trans> | ||
1700 | <f_translation></f_translation> | ||
1701 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
1702 | <b_path>/invite_panel/help_text</b_path> | ||
1703 | <c_attribute></c_attribute> | 253 | <c_attribute></c_attribute> |
1704 | <d_old></d_old> | 254 | <d_old></d_old> |
1705 | <e_new> | 255 | <e_new> |
1706 | You can select multiple residents to | 256 | Copyright or intellectual property violation |
1707 | invite to your group. Click 'Open | 257 | </e_new> |
1708 | Person Chooser' to start. | ||
1709 | </e_new> | ||
1710 | <f_old_trans></f_old_trans> | 258 | <f_old_trans></f_old_trans> |
1711 | <f_translation> | 259 | <f_translation> |
1712 | 여러 주민을 선택하여 | 260 | 저작권 또는 지적재산권 위반 관련 |
1713 | 그룹에 초대할 수 있습니다. '주민 | 261 | </f_translation> |
1714 | 선택기 열기'를 클릭하여 시작합니다. | 262 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1715 | </f_translation> | 263 | <b_path>/floater_report_abuse/category_combo/Commerce__Failure_to_deliver_product_or_service</b_path> |
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> | 264 | <c_attribute></c_attribute> |
1719 | <d_old></d_old> | 265 | <d_old></d_old> |
1720 | <e_new> | 266 | <e_new> |
1721 | Choose what Role to assign them to: | 267 | Commerce > Failure to deliver product or service |
1722 | </e_new> | 268 | </e_new> |
1723 | <f_old_trans></f_old_trans> | 269 | <f_old_trans></f_old_trans> |
1724 | <f_translation> | 270 | <f_translation> |
1725 | 역할을 : | 271 | 쇼관 > 배달 는 비 공 패 |
1726 | </f_translation> | 272 | </f_translation> |
1727 | </string><string><a_file>panel_group_invite.xml</a_file> | 273 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1728 | <b_path>/invite_panel/confirm_invite_owner_str</b_path> | 274 | <b_path>/floater_report_abuse/category_combo/Disclosure__First_Life_information</b_path> |
1729 | <c_attribute></c_attribute> | 275 | <c_attribute></c_attribute> |
1730 | <d_old></d_old> | 276 | <d_old></d_old> |
1731 | <e_new> | 277 | <e_new> |
1732 | Are you sure you want to invite new owner(s)? This action is permanent! | 278 | Disclosure > First life information |
1733 | </e_new> | 279 | </e_new> |
1734 | <f_old_trans></f_old_trans> | 280 | <f_old_trans></f_old_trans> |
1735 | <f_translation> | 281 | <f_translation> |
1736 | 새 소유자를 초대하시겠습니까? 이 기능은 영구적으로 적용됩니다! | 282 | 개인정보 관련 > 오프라인 정보 |
1737 | </f_translation> | 283 | </f_translation> |
1738 | </string><string><a_file>panel_master_volume.xml</a_file> | 284 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1739 | <b_path>/master_volume/mute_master</b_path> | 285 | <b_path>/floater_report_abuse/category_combo/Disclosure__Remotely_monitoring chat</b_path> |
1740 | <c_attribute>label</c_attribute> | ||
1741 | <d_old></d_old> | ||
1742 | <e_new></e_new> | ||
1743 | <f_old_trans></f_old_trans> | ||
1744 | <f_translation></f_translation> | ||
1745 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1746 | <b_path>/media_remote/play_label</b_path> | ||
1747 | <c_attribute></c_attribute> | 286 | <c_attribute></c_attribute> |
1748 | <d_old></d_old> | 287 | <d_old></d_old> |
1749 | <e_new> | 288 | <e_new> |
1750 | Play | 289 | Disclosure > Remotely monitoring chat |
1751 | </e_new> | 290 | </e_new> |
1752 | <f_old_trans></f_old_trans> | 291 | <f_old_trans></f_old_trans> |
1753 | <f_translation> | 292 | <f_translation> |
1754 | 생 | 293 | 개인정보 관련 > 원격 모니터링 팅 |
1755 | </f_translation> | 294 | </f_translation> |
1756 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | 295 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1757 | <b_path>/media_remote/stop_label</b_path> | 296 | <b_path>/floater_report_abuse/category_combo/Disclosure__Second_Life_information_chat_IMs</b_path> |
1758 | <c_attribute></c_attribute> | 297 | <c_attribute></c_attribute> |
1759 | <d_old></d_old> | 298 | <d_old></d_old> |
1760 | <e_new> | 299 | <e_new> |
1761 | Stop | 300 | Disclosure > Second Life information/chat/IMs |
1762 | </e_new> | 301 | </e_new> |
1763 | <f_old_trans></f_old_trans> | 302 | <f_old_trans></f_old_trans> |
1764 | <f_translation> | 303 | <f_translation> |
1765 | 304 | 개인정보 관련 > 세컨드라이프 보/팅/메신 | |
1766 | </f_translation> | 305 | </f_translation> |
1767 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | 306 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1768 | <b_path>/media_remote/pause_label</b_path> | 307 | <b_path>/floater_report_abuse/category_combo/Disturbing_the_peace__Unfair_use_of_region_resources</b_path> |
1769 | <c_attribute></c_attribute> | 308 | <c_attribute></c_attribute> |
1770 | <d_old></d_old> | 309 | <d_old></d_old> |
1771 | <e_new> | 310 | <e_new> |
1772 | Pause | 311 | Disturbing the peace > Unfair use of region resources |
1773 | </e_new> | 312 | </e_new> |
1774 | <f_old_trans></f_old_trans> | 313 | <f_old_trans></f_old_trans> |
1775 | <f_translation> | 314 | <f_translation> |
1776 | 시 | 315 | 치안관련 > 지역 의 부 |
1777 | </f_translation> | 316 | </f_translation> |
1778 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | 317 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1779 | <b_path>/media_remote/default_tooltip_label</b_path> | 318 | <b_path>/floater_report_abuse/category_combo/Disturbing_the_peace__Excessive_scripted_objects</b_path> |
1780 | <c_attribute></c_attribute> | 319 | <c_attribute></c_attribute> |
1781 | <d_old></d_old> | 320 | <d_old></d_old> |
1782 | <e_new> | 321 | <e_new> |
1783 | No Media Specified | 322 | Disturbing the peace > Excessive scripted objects |
1784 | </e_new> | 323 | </e_new> |
1785 | <f_old_trans></f_old_trans> | 324 | <f_old_trans></f_old_trans> |
1786 | <f_translation> | 325 | <f_translation> |
1787 | 미디 . | 326 | 관 > 크트 브젝트 |
1788 | </f_translation> | 327 | </f_translation> |
1789 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | 328 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1790 | <b_path>/media_remote/media_hidden_label</b_path> | 329 | <b_path>/floater_report_abuse/category_combo/Disturbing_the_peace__Object_littering</b_path> |
1791 | <c_attribute></c_attribute> | 330 | <c_attribute></c_attribute> |
1792 | <d_old></d_old> | 331 | <d_old></d_old> |
1793 | <e_new> | 332 | <e_new> |
1794 | (URL hidden by parcel owner) | 333 | Disturbing the peace > Object littering |
1795 | </e_new> | 334 | </e_new> |
1796 | <f_old_trans></f_old_trans> | 335 | <f_old_trans></f_old_trans> |
1797 | <f_translation> | 336 | <f_translation> |
1798 | (구획 유자에 URL이 겨져 있습.) | 337 | 련 > 브 혼 치 |
1799 | </f_translation> | 338 | </f_translation> |
1800 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | 339 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1801 | <b_path>/media_remote/media_icon_tooltip_web</b_path> | 340 | <b_path>/floater_report_abuse/category_combo/Disturbing_the_peace__Repetitive_spam</b_path> |
1802 | <c_attribute></c_attribute> | 341 | <c_attribute></c_attribute> |
1803 | <d_old></d_old> | 342 | <d_old></d_old> |
1804 | <e_new> | 343 | <e_new> |
1805 | This location displays content from the World Wide Web. Click the Play button to display Web content. | 344 | Disturbing the peace > Repetitive spam |
1806 | </e_new> | 345 | </e_new> |
1807 | <f_old_trans></f_old_trans> | 346 | <f_old_trans></f_old_trans> |
1808 | <f_translation> | 347 | <f_translation> |
1809 | 이 위치에서는 WWW의 컨텐츠가 표시됩니다. 웹 컨텐츠를 표시하려면 재생 버튼을 클릭하십시오. | 348 | 치안관련 > 반복적인 스팸 |
1810 | </f_translation> | 349 | </f_translation> |
1811 | <f_old_trans></f_old_trans> | 350 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1812 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | 351 | <b_path>/floater_report_abuse/category_combo/Disturbing_the_peace__Unwanted_advert_spam</b_path> |
1813 | <b_path>/media_remote/media_icon_tooltip_movie</b_path> | ||
1814 | <c_attribute></c_attribute> | 352 | <c_attribute></c_attribute> |
1815 | <d_old></d_old> | 353 | <d_old></d_old> |
1816 | <e_new> | 354 | <e_new> |
1817 | This location displays Video content. Click the Play button to play the video. | 355 | Disturbing the peace > Unwanted advert spam |
1818 | </e_new> | 356 | </e_new> |
1819 | <f_old_trans></f_old_trans> | 357 | <f_old_trans></f_old_trans> |
1820 | <f_translation> | 358 | <f_translation> |
1821 | 이 위치에서는 비디오 컨텐츠가 표시됩니다. 비디오를 재생하려면 재생 버튼을 클릭하십시오. | 359 | 치안관련 > 원치 않는 광고성 스팸 |
1822 | </f_translation> | 360 | </f_translation> |
1823 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | 361 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1824 | <b_path>/media_remote/media_play_tooltip</b_path> | 362 | <b_path>/floater_report_abuse/category_combo/Fraud__L$</b_path> |
1825 | <c_attribute></c_attribute> | 363 | <c_attribute></c_attribute> |
1826 | <d_old></d_old> | 364 | <d_old></d_old> |
1827 | <e_new> | 365 | <e_new> |
1828 | Display Web content at this location. | 366 | Fraud > L$ |
1829 | </e_new> | 367 | </e_new> |
1830 | <f_old_trans></f_old_trans> | 368 | <f_old_trans></f_old_trans> |
1831 | <f_translation> | 369 | <f_translation> |
1832 | 위치에서 웹 컨텐 재생합니다. | 370 | 관 > L$ |
1833 | </f_translation> | 371 | </f_translation> |
1834 | </string><string><a_file>panel_place.xml</a_file> | 372 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1835 | <b_path>/Place/name_label</b_path> | 373 | <b_path>/floater_report_abuse/category_combo/Fraud__Land</b_path> |
1836 | <c_attribute></c_attribute> | 374 | <c_attribute></c_attribute> |
1837 | <d_old></d_old> | 375 | <d_old></d_old> |
1838 | <e_new> | 376 | <e_new> |
1839 | Name: | 377 | Fraud > Land |
1840 | </e_new> | 378 | </e_new> |
1841 | <f_old_trans></f_old_trans> | 379 | <f_old_trans></f_old_trans> |
1842 | <f_translation> | 380 | <f_translation> |
1843 | : | 381 | 기 > 토지 |
1844 | </f_translation> | 382 | </f_translation> |
1845 | </string><string><a_file>panel_place.xml</a_file> | 383 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1846 | <b_path>/Place/description_label</b_path> | 384 | <b_path>/floater_report_abuse/category_combo/Fraud__Pyramid_scheme_or_chain_letter</b_path> |
1847 | <c_attribute></c_attribute> | 385 | <c_attribute></c_attribute> |
1848 | <d_old></d_old> | 386 | <d_old></d_old> |
1849 | <e_new> | 387 | <e_new> |
1850 | Description: | 388 | Fraud > Pyramid scheme or chain letter |
1851 | </e_new> | 389 | </e_new> |
1852 | <f_old_trans></f_old_trans> | 390 | <f_old_trans></f_old_trans> |
1853 | <f_translation> | 391 | <f_translation> |
1854 | 명: | 392 | 사기관련 > 피라미드 조직 또는 편지 |
1855 | </f_translation> | 393 | </f_translation> |
1856 | </string><string><a_file>panel_place.xml</a_file> | 394 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1857 | <b_path>/Place/information_label</b_path> | 395 | <b_path>/floater_report_abuse/category_combo/Fraud__US$</b_path> |
1858 | <c_attribute></c_attribute> | 396 | <c_attribute></c_attribute> |
1859 | <d_old></d_old> | 397 | <d_old></d_old> |
1860 | <e_new> | 398 | <e_new> |
1861 | Information: | 399 | Fraud > US$ |
1862 | </e_new> | 400 | </e_new> |
1863 | <f_old_trans></f_old_trans> | 401 | <f_old_trans></f_old_trans> |
1864 | <f_translation> | 402 | <f_translation> |
1865 | : | 403 | 기련 > US$ |
1866 | </f_translation> | 404 | </f_translation> |
1867 | </string><string><a_file>panel_place.xml</a_file> | 405 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1868 | <b_path>/Place/location_label</b_path> | 406 | <b_path>/floater_report_abuse/category_combo/Harassment__Advert_farms___visual_spam</b_path> |
1869 | <c_attribute></c_attribute> | 407 | <c_attribute></c_attribute> |
1870 | <d_old></d_old> | 408 | <d_old></d_old> |
1871 | <e_new> | 409 | <e_new> |
1872 | Location: | 410 | Harassment > Advert farms / visual spam |
1873 | </e_new> | 411 | </e_new> |
1874 | <f_old_trans></f_old_trans> | 412 | <f_old_trans></f_old_trans> |
1875 | <f_translation> | 413 | <f_translation> |
1876 | : | 414 | 괴롭힘 관련> 광고성 료 이트/주얼 스팸 |
1877 | </f_translation> | 415 | </f_translation> |
1878 | </string><string><a_file>panel_place_small.xml</a_file> | 416 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1879 | <b_path>/Place/name_label</b_path> | 417 | <b_path>/floater_report_abuse/category_combo/Harassment__Defaming_individuals_or_groups</b_path> |
1880 | <c_attribute></c_attribute> | 418 | <c_attribute></c_attribute> |
1881 | <d_old></d_old> | 419 | <d_old></d_old> |
1882 | <e_new> | 420 | <e_new> |
1883 | Name: | 421 | Harassment > Defaming individuals or groups |
1884 | </e_new> | 422 | </e_new> |
1885 | <f_old_trans></f_old_trans> | 423 | <f_old_trans></f_old_trans> |
1886 | <f_translation> | 424 | <f_translation> |
1887 | 름: | 425 | 괴롭힘 관련 > 개인 또는 집단 명예 훼 |
1888 | </f_translation> | 426 | </f_translation> |
1889 | </string><string><a_file>panel_place_small.xml</a_file> | 427 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1890 | <b_path>/Place/description_label</b_path> | 428 | <b_path>/floater_report_abuse/category_combo/Harassment__Impeding_movement</b_path> |
1891 | <c_attribute></c_attribute> | 429 | <c_attribute></c_attribute> |
1892 | <d_old></d_old> | 430 | <d_old></d_old> |
1893 | <e_new> | 431 | <e_new> |
1894 | Description: | 432 | Harassment > Impeding movement |
1895 | </e_new> | 433 | </e_new> |
1896 | <f_old_trans></f_old_trans> | 434 | <f_old_trans></f_old_trans> |
1897 | <f_translation> | 435 | <f_translation> |
1898 | : | 436 | 괴롭힘 관련 > 고적인 해 |
1899 | </f_translation> | 437 | </f_translation> |
1900 | </string><string><a_file>panel_place_small.xml</a_file> | 438 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1901 | <b_path>/Place/information_label</b_path> | 439 | <b_path>/floater_report_abuse/category_combo/Harassment__Sexual_harassment</b_path> |
1902 | <c_attribute></c_attribute> | 440 | <c_attribute></c_attribute> |
1903 | <d_old></d_old> | 441 | <d_old></d_old> |
1904 | <e_new> | 442 | <e_new> |
1905 | Information: | 443 | Harassment > Sexual harassment |
1906 | </e_new> | 444 | </e_new> |
1907 | <f_old_trans></f_old_trans> | 445 | <f_old_trans></f_old_trans> |
1908 | <f_translation> | 446 | <f_translation> |
1909 | : | 447 | 괴롭힘 관련 > 희 |
1910 | </f_translation> | 448 | </f_translation> |
1911 | </string><string><a_file>panel_place_small.xml</a_file> | 449 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1912 | <b_path>/Place/location_label</b_path> | 450 | <b_path>/floater_report_abuse/category_combo/Harassment__Solicting_inciting_others_to_violate_ToS</b_path> |
1913 | <c_attribute></c_attribute> | 451 | <c_attribute></c_attribute> |
1914 | <d_old></d_old> | 452 | <d_old></d_old> |
1915 | <e_new> | 453 | <e_new> |
1916 | Location: | 454 | Harassment > Solicting/inciting others to violate ToS |
1917 | </e_new> | 455 | </e_new> |
1918 | <f_old_trans></f_old_trans> | 456 | <f_old_trans></f_old_trans> |
1919 | <f_translation> | 457 | <f_translation> |
1920 | 위치: | 458 | 괴롭힘 관련 > TOS를 위반하도록 타인 유혹/조장 |
1921 | </f_translation> | 459 | </f_translation> |
1922 | </string><string><a_file>panel_preferences_chat.xml</a_file> | 460 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1923 | <b_path>/chat/im</b_path> | 461 | <b_path>/floater_report_abuse/category_combo/Harassment__Verbal_abuse</b_path> |
1924 | <c_attribute>label</c_attribute> | ||
1925 | <d_old></d_old> | ||
1926 | <e_new>IM</e_new> | ||
1927 | <f_old_trans></f_old_trans> | ||
1928 | <f_translation>메신저</f_translation> | ||
1929 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1930 | <b_path>/general_panel/fade_out_combobox/Never</b_path> | ||
1931 | <c_attribute></c_attribute> | 462 | <c_attribute></c_attribute> |
1932 | <d_old></d_old> | 463 | <d_old></d_old> |
1933 | <e_new> | 464 | <e_new> |
1934 | Never | 465 | Harassment > Verbal abuse |
1935 | </e_new> | 466 | </e_new> |
1936 | <f_old_trans></f_old_trans> | 467 | <f_old_trans></f_old_trans> |
1937 | <f_translation> | 468 | <f_translation> |
1938 | 469 | 괴롭힘 관련 > 어 력 | |
1939 | </f_translation> | 470 | </f_translation> |
1940 | </string><string><a_file>panel_preferences_general.xml</a_file> | 471 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1941 | <b_path>/general_panel/fade_out_combobox/Show Temporarily</b_path> | 472 | <b_path>/floater_report_abuse/category_combo/Indecency__Broadly_offensive_content_or_conduct</b_path> |
1942 | <c_attribute></c_attribute> | 473 | <c_attribute></c_attribute> |
1943 | <d_old></d_old> | 474 | <d_old></d_old> |
1944 | <e_new> | 475 | <e_new> |
1945 | Show Temporarily | 476 | Indecency > Broadly offensive content or conduct |
1946 | </e_new> | 477 | </e_new> |
1947 | <f_old_trans></f_old_trans> | 478 | <f_old_trans></f_old_trans> |
1948 | <f_translation> | 479 | <f_translation> |
1949 | 로 | 480 | 외설 관련> 노골로 불쾌 텐츠 또는 행동 |
1950 | </f_translation> | 481 | </f_translation> |
1951 | </string><string><a_file>panel_preferences_general.xml</a_file> | 482 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1952 | <b_path>/general_panel/fade_out_combobox/Always</b_path> | 483 | <b_path>/floater_report_abuse/category_combo/Indecency__Broadly_visible_mature_content</b_path> |
1953 | <c_attribute></c_attribute> | 484 | <c_attribute></c_attribute> |
1954 | <d_old></d_old> | 485 | <d_old></d_old> |
1955 | <e_new> | 486 | <e_new> |
1956 | Always | 487 | Indecency > Broadly visible mature content |
1957 | </e_new> | 488 | </e_new> |
1958 | <f_old_trans></f_old_trans> | 489 | <f_old_trans></f_old_trans> |
1959 | <f_translation> | 490 | <f_translation> |
1960 | 491 | 외설 관련 > 노골적인 성인용 컨 | |
1961 | </f_translation> | 492 | </f_translation> |
1962 | </string><string><a_file>panel_preferences_general.xml</a_file> | 493 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1963 | <b_path>/general_panel/group_titles_textbox</b_path> | 494 | <b_path>/floater_report_abuse/category_combo/Indecency__Inappropriate_avatar_name</b_path> |
1964 | <c_attribute></c_attribute> | 495 | <c_attribute></c_attribute> |
1965 | <d_old></d_old> | 496 | <d_old></d_old> |
1966 | <e_new> | 497 | <e_new> |
1967 | Group Titles: | 498 | Indecency > Inappropriate avatar name |
1968 | </e_new> | 499 | </e_new> |
1969 | <f_old_trans></f_old_trans> | 500 | <f_old_trans></f_old_trans> |
1970 | <f_translation> | 501 | <f_translation> |
1971 | 그룹 타이틀: | 502 | 외설 관련 > 부적절한 아바타 이름 |
1972 | </f_translation> | 503 | </f_translation> |
1973 | </string><string><a_file>panel_preferences_general.xml</a_file> | 504 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1974 | <b_path>/general_panel/show_all_title_checkbox</b_path> | 505 | <b_path>/floater_report_abuse/category_combo/Indecency__Mature_content_in_PG_region</b_path> |
1975 | <c_attribute>label</c_attribute> | ||
1976 | <d_old></d_old> | ||
1977 | <e_new>Hide All Group Titles</e_new> | ||
1978 | <f_old_trans></f_old_trans> | ||
1979 | <f_translation>모든 그룹 타이틀 숨기기</f_translation> | ||
1980 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
1981 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | ||
1982 | <c_attribute>label</c_attribute> | ||
1983 | <d_old></d_old> | ||
1984 | <e_new></e_new> | ||
1985 | <f_old_trans></f_old_trans> | ||
1986 | <f_translation></f_translation> | ||
1987 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
1988 | <b_path>/Input panel/Camera Follow Distance:</b_path> | ||
1989 | <c_attribute></c_attribute> | 506 | <c_attribute></c_attribute> |
1990 | <d_old></d_old> | 507 | <d_old></d_old> |
1991 | <e_new> | 508 | <e_new> |
1992 | Camera Follow Distance: | 509 | Indecency > Mature content in PG region |
1993 | </e_new> | 510 | </e_new> |
1994 | <f_old_trans></f_old_trans> | 511 | <f_old_trans></f_old_trans> |
1995 | <f_translation> | 512 | <f_translation> |
1996 | 메 동 거: | 513 | 외설 관련 > PG 지역에서 용 텐츠 용 |
1997 | </f_translation> | 514 | </f_translation> |
1998 | </string><string><a_file>panel_preferences_input.xml</a_file> | 515 | </string><string><a_file>floater_report_abuse.xml</a_file> |
1999 | <b_path>/Input panel/Camera Transition Time:</b_path> | 516 | <b_path>/floater_report_abuse/category_combo/Land__Abuse_of_sandbox_resources</b_path> |
2000 | <c_attribute></c_attribute> | 517 | <c_attribute></c_attribute> |
2001 | <d_old></d_old> | 518 | <d_old></d_old> |
2002 | <e_new> | 519 | <e_new> |
2003 | Camera Transition Time: | 520 | Land > Abuse of sandbox resources |
2004 | </e_new> | 521 | </e_new> |
2005 | <f_old_trans></f_old_trans> | 522 | <f_old_trans></f_old_trans> |
2006 | <f_translation> | 523 | <f_translation> |
2007 | 환 간: | 524 | 토지 관련 > 스 리스 남 |
2008 | </f_translation> | 525 | </f_translation> |
2009 | </string><string><a_file>panel_preferences_input.xml</a_file> | 526 | </string><string><a_file>floater_report_abuse.xml</a_file> |
2010 | <b_path>/Input panel/Camera Smoothing:</b_path> | 527 | <b_path>/floater_report_abuse/category_combo/Land__Encroachment__Objects_textures</b_path> |
2011 | <c_attribute></c_attribute> | 528 | <c_attribute></c_attribute> |
2012 | <d_old></d_old> | 529 | <d_old></d_old> |
2013 | <e_new> | 530 | <e_new> |
2014 | Camera Smoothing: | 531 | Land > Encroachment > Objects/textures |
2015 | </e_new> | 532 | </e_new> |
2016 | <f_old_trans></f_old_trans> | 533 | <f_old_trans></f_old_trans> |
2017 | <f_translation> | 534 | <f_translation> |
2018 | 카메라 스무딩: | 535 | 토지 관련 > 침략 > 오브젝트/텍스처 |
2019 | </f_translation> | 536 | </f_translation> |
2020 | </string><string><a_file>panel_preferences_input.xml</a_file> | 537 | </string><string><a_file>floater_report_abuse.xml</a_file> |
2021 | <b_path>/Input panel/joystic_setup_button</b_path> | 538 | <b_path>/floater_report_abuse/category_combo/Land__Encroachment__Particles</b_path> |
2022 | <c_attribute>label</c_attribute> | ||
2023 | <d_old></d_old> | ||
2024 | <e_new>Joystick Setup</e_new> | ||
2025 | <f_old_trans></f_old_trans> | ||
2026 | <f_translation>조이스틱 설치</f_translation> | ||
2027 | </string><string><a_file>panel_preferences_popups.xml</a_file> | ||
2028 | <b_path>/popups/dont_show_label</b_path> | ||
2029 | <c_attribute></c_attribute> | 539 | <c_attribute></c_attribute> |
2030 | <d_old></d_old> | 540 | <d_old></d_old> |
2031 | <e_new> | 541 | <e_new> |
2032 | Do not show popups: | 542 | Land > Encroachment > Particles |
2033 | </e_new> | 543 | </e_new> |
2034 | <f_old_trans></f_old_trans> | 544 | <f_old_trans></f_old_trans> |
2035 | <f_translation> | 545 | <f_translation> |
2036 | : | 546 | 관련 > > 구획 |
2037 | </f_translation> | 547 | </f_translation> |
2038 | </string><string><a_file>panel_preferences_popups.xml</a_file> | 548 | </string><string><a_file>floater_report_abuse.xml</a_file> |
2039 | <b_path>/popups/show_label</b_path> | 549 | <b_path>/floater_report_abuse/category_combo/Land__Encroachment__Trees_plants</b_path> |
2040 | <c_attribute></c_attribute> | 550 | <c_attribute></c_attribute> |
2041 | <d_old></d_old> | 551 | <d_old></d_old> |
2042 | <e_new> | 552 | <e_new> |
2043 | Show popups: | 553 | Land > Encroachment > Trees/plants |
2044 | </e_new> | 554 | </e_new> |
2045 | <f_old_trans></f_old_trans> | 555 | <f_old_trans></f_old_trans> |
2046 | <f_translation> | 556 | <f_translation> |
2047 | 허 팝: | 557 | 토지 관련 > > 나무/물 |
2048 | </f_translation> | 558 | </f_translation> |
2049 | </string><string><a_file>panel_speaker_controls.xml</a_file> | 559 | </string><string><a_file>floater_report_abuse.xml</a_file> |
2050 | <b_path>/active_speakers_panel/panels/moderation_mode_panel/moderation_mode/OpenVoice</b_path> | 560 | <b_path>/floater_report_abuse/category_combo/Trademark_violation</b_path> |
2051 | <c_attribute></c_attribute> | 561 | <c_attribute></c_attribute> |
2052 | <d_old></d_old> | 562 | <d_old></d_old> |
2053 | <e_new> | 563 | <e_new> |
2054 | Open Voice (default) | 564 | Trademark violation |
2055 | </e_new> | 565 | </e_new> |
2056 | <f_old_trans></f_old_trans> | 566 | <f_old_trans></f_old_trans> |
2057 | <f_translation> | 567 | <f_translation> |
2058 | 사용( 설) | 568 | 표 반 |
2059 | </f_translation> | 569 | </f_translation> |
2060 | </string><string><a_file>panel_speaker_controls.xml</a_file> | 570 | </string><string><a_file>floater_report_abuse.xml</a_file> |
2061 | <b_path>/active_speakers_panel/panels/moderation_mode_panel/moderation_mode/ModeratedVoice</b_path> | 571 | <b_path>/floater_report_abuse/category_combo/Wagering_gambling</b_path> |
2062 | <c_attribute></c_attribute> | 572 | <c_attribute></c_attribute> |
2063 | <d_old></d_old> | 573 | <d_old></d_old> |
2064 | <e_new> | 574 | <e_new> |
2065 | Moderated Voice | 575 | Wagering/gambling |
2066 | </e_new> | 576 | </e_new> |
2067 | <f_old_trans></f_old_trans> | 577 | <f_old_trans></f_old_trans> |
2068 | <f_translation> | 578 | <f_translation> |
2069 | 음 제 | 579 | 박 련 |
2070 | </f_translation> | 580 | </f_translation> |
2071 | </string><string><a_file>panel_speaker_controls.xml</a_file> | 581 | </string><string><a_file>floater_report_abuse.xml</a_file> |
2072 | <b_path>/active_speakers_panel/panels/moderate_chat_panel/speakers_list/speaking_status</b_path> | 582 | <b_path>/floater_report_abuse/omit_abuser_name</b_path> |
2073 | <c_attribute>label</c_attribute> | 583 | <c_attribute>label</c_attribute> |
2074 | <d_old></d_old> | 584 | <d_old></d_old> |
2075 | <e_new></e_new> | 585 | <e_new>Don't know abuser's name</e_new> |
2076 | <f_old_trans></f_old_trans> | 586 | <f_old_trans></f_old_trans> |
2077 | <f_translation></f_translation> | 587 | <f_translation>악용자의 이름 모름</f_translation> |
2078 | </string><string><a_file>panel_speaker_controls.xml</a_file> | 588 | </string><string><a_file>floater_report_abuse.xml</a_file> |
2079 | <b_path>/active_speakers_panel/panels/moderate_chat_panel/speaker_controls/profile_btn</b_path> | 589 | <b_path>/floater_report_abuse/omit_abuser_name</b_path> |
2080 | <c_attribute>label</c_attribute> | 590 | <c_attribute>tool_tip</c_attribute> |
2081 | <d_old></d_old> | 591 | <d_old></d_old> |
2082 | <e_new></e_new> | 592 | <e_new>Check this if you are unable to provide the abuser's name</e_new> |
2083 | <f_old_trans></f_old_trans> | 593 | <f_old_trans></f_old_trans> |
2084 | <f_translation></f_translation> | 594 | <f_translation>악용자의 이름을 제공할 수 없는 경우 이 옵션을 선택하십시오.</f_translation> |
2085 | </string><string><a_file>panel_status_bar.xml</a_file> | 595 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2086 | <b_path>/status/menubar_search_bevel_bg</b_path> | 596 | <b_path>/floater_chatterbox</b_path> |
2087 | <c_attribute>label</c_attribute> | 597 | <c_attribute>title</c_attribute> |
2088 | <d_old></d_old> | 598 | <d_old></d_old> |
2089 | <e_new></e_new> | 599 | <e_new></e_new> |
2090 | <f_old_trans></f_old_trans> | 600 | <f_old_trans></f_old_trans> |
2091 | <f_translation></f_translation> | 601 | <f_translation></f_translation> |
2092 | </string><string><a_file>panel_toolbar.xml</a_file> | 602 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2093 | <b_path>/toolbar/toolbar_stack/chat_btn</b_path> | 603 | <b_path>/floater_chatterbox//chat_btn</b_path> |
2094 | <c_attribute>label</c_attribute> | 604 | <c_attribute>label</c_attribute> |
2095 | <d_old></d_old> | 605 | <d_old></d_old> |
2096 | <e_new></e_new> | 606 | <e_new></e_new> |
2097 | <f_old_trans></f_old_trans> | 607 | <f_old_trans></f_old_trans> |
2098 | <f_translation></f_translation> | 608 | <f_translation></f_translation> |
2099 | </string><string><a_file>panel_toolbar.xml</a_file> | 609 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2100 | <b_path>/toolbar/toolbar_stack/chat_btn</b_path> | 610 | <b_path>/floater_chatterbox//chat_btn</b_path> |
2101 | <c_attribute>tool_tip</c_attribute> | 611 | <c_attribute>tool_tip</c_attribute> |
2102 | <d_old></d_old> | 612 | <d_old></d_old> |
2103 | <e_new>Show Chat Bar. (Enter)</e_new> | 613 | <e_new>Show Chat Bar. (Enter)</e_new> |
2104 | <f_old_trans></f_old_trans> | 614 | <f_old_trans></f_old_trans> |
2105 | <f_translation>채팅 표시줄 표시 (입력)</f_translation> | 615 | <f_translation>채팅 표시줄 표시 (입력)</f_translation> |
2106 | </string><string><a_file>panel_toolbar.xml</a_file> | 616 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2107 | <b_path>/toolbar/toolbar_stack/communicate_btn</b_path> | 617 | <b_path>/floater_chatterbox//communicate_btn</b_path> |
2108 | <c_attribute>label</c_attribute> | 618 | <c_attribute>label</c_attribute> |
2109 | <d_old></d_old> | 619 | <d_old></d_old> |
2110 | <e_new>Communicate</e_new> | 620 | <e_new>Communicate</e_new> |
2111 | <f_old_trans></f_old_trans> | 621 | <f_old_trans></f_old_trans> |
2112 | <f_translation>통신</f_translation> | 622 | <f_translation>통신</f_translation> |
2113 | </string><string><a_file>panel_toolbar.xml</a_file> | 623 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2114 | <b_path>/toolbar/toolbar_stack/communicate_btn</b_path> | 624 | <b_path>/floater_chatterbox//communicate_btn</b_path> |
2115 | <c_attribute>tool_tip</c_attribute> | 625 | <c_attribute>tool_tip</c_attribute> |
2116 | <d_old></d_old> | 626 | <d_old></d_old> |
2117 | <e_new>Communicate with your Friends and Groups.</e_new> | 627 | <e_new>Communicate with your Friends and Groups.</e_new> |
2118 | <f_old_trans></f_old_trans> | 628 | <f_old_trans></f_old_trans> |
2119 | <f_translation>친구 및 그룹과 통신합니다.</f_translation> | 629 | <f_translation>친구 및 그룹과 통신합니다.</f_translation> |
2120 | </string><string><a_file>panel_toolbar.xml</a_file> | 630 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2121 | <b_path>/toolbar/toolbar_stack/fly_btn</b_path> | 631 | <b_path>/floater_chatterbox//fly_btn</b_path> |
2122 | <c_attribute>label</c_attribute> | 632 | <c_attribute>label</c_attribute> |
2123 | <d_old></d_old> | 633 | <d_old></d_old> |
2124 | <e_new>Fly</e_new> | 634 | <e_new>Fly</e_new> |
2125 | <f_old_trans></f_old_trans> | 635 | <f_old_trans></f_old_trans> |
2126 | <f_translation>비행</f_translation> | 636 | <f_translation>비행</f_translation> |
2127 | </string><string><a_file>panel_toolbar.xml</a_file> | 637 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2128 | <b_path>/toolbar/toolbar_stack/fly_btn</b_path> | 638 | <b_path>/floater_chatterbox//fly_btn</b_path> |
2129 | <c_attribute>label_selected</c_attribute> | 639 | <c_attribute>label_selected</c_attribute> |
2130 | <d_old></d_old> | 640 | <d_old></d_old> |
2131 | <e_new>Stop Flying</e_new> | 641 | <e_new>Stop Flying</e_new> |
2132 | <f_old_trans></f_old_trans> | 642 | <f_old_trans></f_old_trans> |
2133 | <f_translation>비행 중지</f_translation> | 643 | <f_translation>비행 중지</f_translation> |
2134 | </string><string><a_file>panel_toolbar.xml</a_file> | 644 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2135 | <b_path>/toolbar/toolbar_stack/fly_btn</b_path> | 645 | <b_path>/floater_chatterbox//fly_btn</b_path> |
2136 | <c_attribute>tool_tip</c_attribute> | 646 | <c_attribute>tool_tip</c_attribute> |
2137 | <d_old></d_old> | 647 | <d_old></d_old> |
2138 | <e_new>Start flying. Use E/C or PgUp/PgDn to fly up and down.</e_new> | 648 | <e_new>Start flying. Use E/C or PgUp/PgDn to fly up and down.</e_new> |
2139 | <f_old_trans></f_old_trans> | 649 | <f_old_trans></f_old_trans> |
2140 | <f_translation>비행 시작. 위, 아래로 비행하려면 E/C 또는 PgUp/PgDn을 사용하십시오.</f_translation> | 650 | <f_translation>비행 시작. 위, 아래로 비행하려면 E/C 또는 PgUp/PgDn을 사용하십시오.</f_translation> |
2141 | </string><string><a_file>panel_toolbar.xml</a_file> | 651 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2142 | <b_path>/toolbar/toolbar_stack/snapshot_btn</b_path> | 652 | <b_path>/floater_chatterbox/panel_unfocused_floater/titlebar_focused</b_path> |
2143 | <c_attribute>label</c_attribute> | 653 | <c_attribute></c_attribute> |
2144 | <d_old></d_old> | ||
2145 | <e_new>Snapshot</e_new> | ||
2146 | <f_old_trans></f_old_trans> | ||
2147 | <f_translation>스냅샷</f_translation> | ||
2148 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2149 | <b_path>/toolbar/toolbar_stack/snapshot_btn</b_path> | ||
2150 | <c_attribute>tool_tip</c_attribute> | ||
2151 | <d_old></d_old> | 654 | <d_old></d_old> |
2152 | <e_new>Save a screen shot to disk or inventory.</e_new> | 655 | <e_new>Unfocused</e_new> |
2153 | <f_old_trans></f_old_trans> | 656 | <f_old_trans></f_old_trans> |
2154 | <f_translation>디크 또는 벤리 크 .</f_translation> | 657 | <f_translation>점 </f_translation> |
2155 | </string><string><a_file>panel_toolbar.xml</a_file> | 658 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2156 | <b_path>/toolbar/toolbar_stack/directory_btn</b_path> | 659 | <b_path>/floater_chatterbox/panel_unfocused_floater/combo_box_1</b_path> |
2157 | <c_attribute>label</c_attribute> | 660 | <c_attribute>label</c_attribute> |
2158 | <d_old></d_old> | 661 | <d_old></d_old> |
2159 | <e_new>Search</e_new> | 662 | <e_new>Combo Box</e_new> |
2160 | <f_old_trans></f_old_trans> | 663 | <f_old_trans></f_old_trans> |
2161 | <f_translation>검색</f_translation> | 664 | <f_translation>콤보 박스</f_translation> |
2162 | </string><string><a_file>panel_toolbar.xml</a_file> | 665 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2163 | <b_path>/toolbar/toolbar_stack/directory_btn</b_path> | 666 | <b_path>/floater_chatterbox/panel_unfocused_floater/Chat History Editor</b_path> |
2164 | <c_attribute>tool_tip</c_attribute> | 667 | <c_attribute></c_attribute> |
2165 | <d_old></d_old> | ||
2166 | <e_new>Search for places, events, people, and more.</e_new> | ||
2167 | <f_old_trans></f_old_trans> | ||
2168 | <f_translation>장소, 이벤트, 사람, 더 자세히 등을 검색할 수 있습니다.</f_translation> | ||
2169 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2170 | <b_path>/toolbar/toolbar_stack/build_btn</b_path> | ||
2171 | <c_attribute>label</c_attribute> | ||
2172 | <d_old></d_old> | 668 | <d_old></d_old> |
2173 | <e_new>Build</e_new> | 669 | <e_new>Text</e_new> |
2174 | <f_old_trans></f_old_trans> | 670 | <f_old_trans></f_old_trans> |
2175 | <f_translation>만</f_translation> | 671 | <f_translation>텍</f_translation> |
2176 | </string><string><a_file>panel_toolbar.xml</a_file> | 672 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2177 | <b_path>/toolbar/toolbar_stack/build_btn</b_path> | 673 | <b_path>/floater_chatterbox/panel_focused_floater/titlebar_focused</b_path> |
2178 | <c_attribute>tool_tip</c_attribute> | 674 | <c_attribute></c_attribute> |
2179 | <d_old></d_old> | 675 | <d_old></d_old> |
2180 | <e_new>Create new objects.</e_new> | 676 | <e_new>Focused</e_new> |
2181 | <f_old_trans></f_old_trans> | 677 | <f_old_trans></f_old_trans> |
2182 | <f_translation> 브트를 만듭니다.</f_translation> | 678 | <f_translation> </f_translation> |
2183 | </string><string><a_file>panel_toolbar.xml</a_file> | 679 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2184 | <b_path>/toolbar/toolbar_stack/map_btn</b_path> | 680 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_1</b_path> |
2185 | <c_attribute>label</c_attribute> | 681 | <c_attribute>label</c_attribute> |
2186 | <d_old></d_old> | 682 | <d_old></d_old> |
2187 | <e_new>Map</e_new> | 683 | <e_new>Focused</e_new> |
2188 | <f_old_trans></f_old_trans> | 684 | <f_old_trans></f_old_trans> |
2189 | <f_translation>지도</f_translation> | 685 | <f_translation>초점이 맞음</f_translation> |
2190 | </string><string><a_file>panel_toolbar.xml</a_file> | 686 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2191 | <b_path>/toolbar/toolbar_stack/map_btn</b_path> | 687 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_1/SliderTestName</b_path> |
2192 | <c_attribute>tool_tip</c_attribute> | ||
2193 | <d_old></d_old> | ||
2194 | <e_new>Map of the world. (Ctrl-M)</e_new> | ||
2195 | <f_old_trans></f_old_trans> | ||
2196 | <f_translation>월드 지도 (Ctrl-M)</f_translation> | ||
2197 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2198 | <b_path>/toolbar/toolbar_stack/radar_btn</b_path> | ||
2199 | <c_attribute>label</c_attribute> | 688 | <c_attribute>label</c_attribute> |
2200 | <d_old></d_old> | 689 | <d_old></d_old> |
2201 | <e_new>Mini-Map</e_new> | 690 | <e_new>Slider</e_new> |
2202 | <f_old_trans></f_old_trans> | ||
2203 | <f_translation>미니지도</f_translation> | ||
2204 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2205 | <b_path>/toolbar/toolbar_stack/radar_btn</b_path> | ||
2206 | <c_attribute>tool_tip</c_attribute> | ||
2207 | <d_old></d_old> | ||
2208 | <e_new>Map of the area around you. (Ctrl-Shift-M)</e_new> | ||
2209 | <f_old_trans></f_old_trans> | 691 | <f_old_trans></f_old_trans> |
2210 | <f_translation>내 영역 (Ctrl-Shitf-M)</f_translation> | 692 | <f_translation></f_translation> |
2211 | </string><string><a_file>panel_toolbar.xml</a_file> | 693 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2212 | <b_path>/toolbar/toolbar_stack/inventory_btn</b_path> | 694 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_1/check_box_test_1</b_path> |
2213 | <c_attribute>label</c_attribute> | 695 | <c_attribute>label</c_attribute> |
2214 | <d_old></d_old> | 696 | <d_old></d_old> |
2215 | <e_new>Inventory</e_new> | 697 | <e_new>True</e_new> |
2216 | <f_old_trans></f_old_trans> | 698 | <f_old_trans></f_old_trans> |
2217 | <f_translation>벤토리</f_translation> | 699 | <f_translation></f_translation> |
2218 | </string><string><a_file>panel_toolbar.xml</a_file> | 700 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2219 | <b_path>/toolbar/toolbar_stack/inventory_btn</b_path> | 701 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_1/check_box_test_2</b_path> |
2220 | <c_attribute>tool_tip</c_attribute> | 702 | <c_attribute>label</c_attribute> |
2221 | <d_old></d_old> | 703 | <d_old></d_old> |
2222 | <e_new>Your items. (Ctrl-I)</e_new> | 704 | <e_new>False</e_new> |
2223 | <f_old_trans></f_old_trans> | 705 | <f_old_trans></f_old_trans> |
2224 | <f_translation>이템. (Ctrl-I)</f_translation> | 706 | <f_translation>거</f_translation> |
2225 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 707 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2226 | <b_path>/voice_remote/voice_channel_bg</b_path> | 708 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_1/Chat History Editor</b_path> |
2227 | <c_attribute>label</c_attribute> | 709 | <c_attribute></c_attribute> |
2228 | <d_old></d_old> | 710 | <d_old></d_old> |
2229 | <e_new></e_new> | 711 | <e_new>Chat Text</e_new> |
2230 | <f_old_trans></f_old_trans> | 712 | <f_old_trans></f_old_trans> |
2231 | <f_translation></f_translation> | 713 | <f_translation>채팅 텍스트</f_translation> |
2232 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 714 | </string><string><a_file>floater_skin_preview_template.xml</a_file> |
2233 | <b_path>/voice_remote/voice_channel_icon</b_path> | 715 | <b_path>/floater_chatterbox/panel_focused_floater/chatterbox_tabs/test_2</b_path> |
2234 | <c_attribute>label</c_attribute> | 716 | <c_attribute>label</c_attribute> |
2235 | <d_old></d_old> | 717 | <d_old></d_old> |
2236 | <e_new></e_new> | 718 | <e_new>Unfocused</e_new> |
2237 | <f_old_trans></f_old_trans> | 719 | <f_old_trans></f_old_trans> |
2238 | <f_translation></f_translation> | 720 | <f_translation>초점이 맞지 않음</f_translation> |
2239 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 721 | </string><string><a_file>floater_snapshot.xml</a_file> |
2240 | <b_path>/voice_remote/channel_label</b_path> | 722 | <b_path>/Snapshot/save_btn</b_path> |
2241 | <c_attribute>label</c_attribute> | 723 | <c_attribute>tool_tip</c_attribute> |
2242 | <d_old></d_old> | 724 | <d_old></d_old> |
2243 | <e_new></e_new> | 725 | <e_new>Save image to a file</e_new> |
2244 | <f_old_trans></f_old_trans> | 726 | <f_old_trans></f_old_trans> |
2245 | <f_translation></f_translation> | 727 | <f_translation>파일에 이미지 저장</f_translation> |
2246 | </string><string><a_file>alerts.xml</a_file> | 728 | </string><string><a_file>floater_snapshot.xml</a_file> |
2247 | <b_path>//UnsupportedHardware/ignore</b_path> | 729 | <b_path>/Snapshot/format_label</b_path> |
2248 | <c_attribute></c_attribute> | 730 | <c_attribute></c_attribute> |
2249 | <d_old></d_old> | 731 | <d_old></d_old> |
2250 | <e_new> | 732 | <e_new> |
2251 | Ignore unsupported hardware | 733 | Format |
2252 | </e_new> | 734 | </e_new> |
2253 | <f_old_trans></f_old_trans> | 735 | <f_old_trans></f_old_trans> |
2254 | <f_translation> | 736 | <f_translation> |
2255 | 원되지 않는 드어 무 | 737 | 파 |
2256 | </f_translation> | 738 | </f_translation> |
2257 | </string><string><a_file>alerts.xml</a_file> | 739 | </string><string><a_file>floater_snapshot.xml</a_file> |
2258 | <b_path>//UnknownGPU/message</b_path> | 740 | <b_path>/Snapshot/local_format_combo</b_path> |
2259 | <c_attribute></c_attribute> | 741 | <c_attribute>label</c_attribute> |
2260 | <d_old></d_old> | 742 | <d_old></d_old> |
2261 | <e_new> | 743 | <e_new>Format</e_new> |
2262 | Your system contains a graphics card that is unknown to us at this time. | ||
2263 | This is often the case with new hardware we haven't had a chance to | ||
2264 | test. Second Life will most likely run properly, but you may need to | ||
2265 | adjust your graphics settings to something more appropriate. | ||
2266 | (Edit > Preferences > Graphics). | ||
2267 | </e_new> | ||
2268 | <f_old_trans></f_old_trans> | 744 | <f_old_trans></f_old_trans> |
2269 | <f_translation> | 745 | <f_translation>파일 형식</f_translation> |
2270 | 알 수 없는 그래픽 카드를 사용하고 있습니다. | 746 | </string><string><a_file>floater_snapshot.xml</a_file> |
2271 | 이 문제는 린든랩에서 검증하지 못한 새로운 하드웨어가 사용되었기 때문일 수 | 747 | <b_path>/Snapshot/local_format_combo/PNG</b_path> |
2272 | 있습니다. 대부분의 경우 세컨드라이프는 정상적으로 실행되지만 사용 중인 그래픽 설정을 | ||
2273 | 적합한 설정으로 조정해야 할 수 있습니다. | ||
2274 | (편집 > 환경 설정 > 그래픽) | ||
2275 | </f_translation> | ||
2276 | </string><string><a_file>alerts.xml</a_file> | ||
2277 | <b_path>//UnknownGPU/ignore</b_path> | ||
2278 | <c_attribute></c_attribute> | 748 | <c_attribute></c_attribute> |
2279 | <d_old></d_old> | 749 | <d_old></d_old> |
2280 | <e_new> | 750 | <e_new> |
2281 | Ignore unknown graphics card | 751 | PNG |
2282 | </e_new> | 752 | </e_new> |
2283 | <f_old_trans></f_old_trans> | 753 | <f_old_trans></f_old_trans> |
2284 | <f_translation> | 754 | <f_translation> |
2285 | 알 수 없는 그래픽 카드 무시 | 755 | PNG |
2286 | </f_translation> | 756 | </f_translation> |
2287 | </string><string><a_file>alerts.xml</a_file> | 757 | </string><string><a_file>floater_snapshot.xml</a_file> |
2288 | <b_path>//ClothingLoading/ignore</b_path> | 758 | <b_path>/Snapshot/local_format_combo/JPEG</b_path> |
2289 | <c_attribute></c_attribute> | 759 | <c_attribute></c_attribute> |
2290 | <d_old></d_old> | 760 | <d_old></d_old> |
2291 | <e_new> | 761 | <e_new> |
2292 | When clothing is taking a long time to download | 762 | JPEG |
2293 | </e_new> | 763 | </e_new> |
2294 | <f_old_trans></f_old_trans> | 764 | <f_old_trans></f_old_trans> |
2295 | <f_translation> | 765 | <f_translation> |
2296 | 의복 다운로드 시간이 오래 걸리는 경우 | 766 | JPEG |
2297 | </f_translation> | 767 | </f_translation> |
2298 | </string><string><a_file>alerts.xml</a_file> | 768 | </string><string><a_file>floater_snapshot.xml</a_file> |
2299 | <b_path>//SetClassifiedMature/message</b_path> | 769 | <b_path>/Snapshot/local_format_combo/BMP</b_path> |
2300 | <c_attribute></c_attribute> | 770 | <c_attribute></c_attribute> |
2301 | <d_old></d_old> | 771 | <d_old></d_old> |
2302 | <e_new> | 772 | <e_new> |
2303 | Does this classified contain Mature content? | 773 | BMP |
2304 | </e_new> | 774 | </e_new> |
2305 | <f_old_trans></f_old_trans> | ||
2306 | <f_translation> | ||
2307 | 이 광고에 성인용 컨텐츠가 포함되어 있습니까? | ||
2308 | </f_translation> | ||
2309 | </string><string><a_file>alerts.xml</a_file> | ||
2310 | <b_path>//SetClassifiedMature/Mature</b_path> | ||
2311 | <c_attribute></c_attribute> | ||
2312 | <d_old></d_old> | ||
2313 | <e_new> | ||
2314 | Yes | ||
2315 | </e_new> | ||
2316 | <f_old_trans></f_old_trans> | 775 | <f_old_trans></f_old_trans> |
2317 | <f_translation> | 776 | <f_translation> |
2318 | 예 | 777 | BMP |
2319 | </f_translation> | 778 | </f_translation> |
2320 | </string><string><a_file>alerts.xml</a_file> | 779 | </string><string><a_file>floater_tools.xml</a_file> |
2321 | <b_path>//SetClassifiedMature/Not Mature</b_path> | 780 | <b_path>/toolbox floater/Strength:</b_path> |
2322 | <c_attribute></c_attribute> | 781 | <c_attribute></c_attribute> |
2323 | <d_old></d_old> | 782 | <d_old></d_old> |
2324 | <e_new> | 783 | <e_new> |
2325 | No | 784 | Strength: |
2326 | </e_new> | 785 | </e_new> |
2327 | <f_old_trans></f_old_trans> | 786 | <f_old_trans></f_old_trans> |
2328 | <f_translation> | 787 | <f_translation> |
2329 | 오 | 788 | : |
2330 | </f_translation> | 789 | </f_translation> |
2331 | </string><string><a_file>alerts.xml</a_file> | 790 | </string><string><a_file>floater_tools.xml</a_file> |
2332 | <b_path>//SetClassifiedMature/Cancel</b_path> | 791 | <b_path>/toolbox floater/Object Info Tabs/General/Cost</b_path> |
2333 | <c_attribute></c_attribute> | 792 | <c_attribute></c_attribute> |
2334 | <d_old></d_old> | 793 | <d_old></d_old> |
2335 | <e_new> | 794 | <e_new> |
2336 | Cancel | 795 | Price: L$ |
2337 | </e_new> | 796 | </e_new> |
2338 | <f_old_trans></f_old_trans> | 797 | <f_old_trans></f_old_trans> |
2339 | <f_translation> | 798 | <f_translation> |
2340 | 취소 | 799 | 가격: L$ |
2341 | </f_translation> | 800 | </f_translation> |
2342 | </string><string><a_file>alerts.xml</a_file> | 801 | </string><string><a_file>floater_tools.xml</a_file> |
2343 | <b_path>//SetGroupMature/message</b_path> | 802 | <b_path>/toolbox floater/Object Info Tabs/General/Cost Default</b_path> |
2344 | <c_attribute></c_attribute> | 803 | <c_attribute></c_attribute> |
2345 | <d_old></d_old> | 804 | <d_old></d_old> |
2346 | <e_new> | 805 | <e_new> |
2347 | Does this group contain Mature content? | 806 | Price: L$ |
2348 | </e_new> | 807 | </e_new> |
2349 | <f_old_trans></f_old_trans> | 808 | <f_old_trans></f_old_trans> |
2350 | <f_translation> | 809 | <f_translation> |
2351 | 이 그룹에 성인용 컨텐츠가 포함되어 있습니까? | 810 | 가격: L$ |
2352 | </f_translation> | 811 | </f_translation> |
2353 | </string><string><a_file>alerts.xml</a_file> | 812 | </string><string><a_file>floater_tools.xml</a_file> |
2354 | <b_path>//SetGroupMature/Mature</b_path> | 813 | <b_path>/toolbox floater/Object Info Tabs/General/Cost Total</b_path> |
2355 | <c_attribute></c_attribute> | 814 | <c_attribute></c_attribute> |
2356 | <d_old></d_old> | 815 | <d_old></d_old> |
2357 | <e_new> | 816 | <e_new> |
2358 | Yes | 817 | Total Price: L$ |
2359 | </e_new> | 818 | </e_new> |
2360 | <f_old_trans></f_old_trans> | 819 | <f_old_trans></f_old_trans> |
2361 | <f_translation> | 820 | <f_translation> |
2362 | 821 | 가격: L$ | |
2363 | </f_translation> | 822 | </f_translation> |
2364 | </string><string><a_file>alerts.xml</a_file> | 823 | </string><string><a_file>floater_tools.xml</a_file> |
2365 | <b_path>//SetGroupMature/Not Mature</b_path> | 824 | <b_path>/toolbox floater/Object Info Tabs/General/Cost Per Unit</b_path> |
2366 | <c_attribute></c_attribute> | 825 | <c_attribute></c_attribute> |
2367 | <d_old></d_old> | 826 | <d_old></d_old> |
2368 | <e_new> | 827 | <e_new> |
2369 | No | 828 | Price Per: L$ |
2370 | </e_new> | 829 | </e_new> |
2371 | <f_old_trans></f_old_trans> | 830 | <f_old_trans></f_old_trans> |
2372 | <f_translation> | 831 | <f_translation> |
2373 | 아오 | 832 | 가: L$ |
2374 | </f_translation> | 833 | </f_translation> |
2375 | </string><string><a_file>alerts.xml</a_file> | 834 | </string><string><a_file>floater_tools.xml</a_file> |
2376 | <b_path>//SetGroupMature/Cancel</b_path> | 835 | <b_path>/toolbox floater/Object Info Tabs/General/Cost Mixed</b_path> |
2377 | <c_attribute></c_attribute> | 836 | <c_attribute></c_attribute> |
2378 | <d_old></d_old> | 837 | <d_old></d_old> |
2379 | <e_new> | 838 | <e_new> |
2380 | Cancel | 839 | Mixed Price |
2381 | </e_new> | 840 | </e_new> |
2382 | <f_old_trans></f_old_trans> | 841 | <f_old_trans></f_old_trans> |
2383 | <f_translation> | 842 | <f_translation> |
2384 | 취소 | 843 | 혼합 가격 |
2385 | </f_translation> | 844 | </f_translation> |
2386 | </string><string><a_file>alerts.xml</a_file> | 845 | </string><string><a_file>floater_tools.xml</a_file> |
2387 | <b_path>//MissingString/message</b_path> | 846 | <b_path>/toolbox floater/Object Info Tabs/General/Sale Mixed</b_path> |
2388 | <c_attribute></c_attribute> | 847 | <c_attribute></c_attribute> |
2389 | <d_old></d_old> | 848 | <d_old></d_old> |
2390 | <e_new> | 849 | <e_new> |
2391 | The string [STRING_NAME] is missing from strings.xml | 850 | Mixed Sale |
2392 | </e_new> | 851 | </e_new> |
2393 | <f_old_trans></f_old_trans> | 852 | <f_old_trans></f_old_trans> |
2394 | <f_translation> | 853 | <f_translation> |
2395 | strings.xml에 [STRING_NAME] 문자열이 없습니다. | 854 | 혼합 판매 |
2396 | </f_translation> | 855 | </f_translation> |
2397 | </string><string><a_file>floater_active_speakers.xml</a_file> | 856 | </string><string><a_file>floater_tools.xml</a_file> |
2398 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> | 857 | <b_path>/toolbox floater/Object Info Tabs/Object/sculpt mirror control</b_path> |
2399 | <c_attribute>label</c_attribute> | ||
2400 | <d_old></d_old> | ||
2401 | <e_new></e_new> | ||
2402 | <f_old_trans></f_old_trans> | ||
2403 | <f_translation></f_translation> | ||
2404 | </string><string><a_file>floater_directory.xml</a_file> | ||
2405 | <b_path>/directory/Directory Tabs/showcase_panel</b_path> | ||
2406 | <c_attribute>label</c_attribute> | 858 | <c_attribute>label</c_attribute> |
2407 | <d_old></d_old> | 859 | <d_old></d_old> |
2408 | <e_new>Showcase</e_new> | 860 | <e_new>Mirror</e_new> |
2409 | <f_old_trans></f_old_trans> | ||
2410 | <f_translation>쇼케이스</f_translation> | ||
2411 | </string><string><a_file>floater_directory.xml</a_file> | ||
2412 | <b_path>/directory/Directory Tabs/showcase_panel/searching_text</b_path> | ||
2413 | <c_attribute></c_attribute> | ||
2414 | <d_old></d_old> | ||
2415 | <e_new>Searching...</e_new> | ||
2416 | <f_old_trans></f_old_trans> | ||
2417 | <f_translation>검색</f_translation> | ||
2418 | </string><string><a_file>floater_directory.xml</a_file> | ||
2419 | <b_path>/directory/Directory Tabs/showcase_panel/not_found_text</b_path> | ||
2420 | <c_attribute></c_attribute> | ||
2421 | <d_old></d_old> | ||
2422 | <e_new>None Found.</e_new> | ||
2423 | <f_old_trans></f_old_trans> | 861 | <f_old_trans></f_old_trans> |
2424 | <f_translation>견지 않음.</f_translation> | 862 | <f_translation></f_translation> |
2425 | </string><string><a_file>floater_directory.xml</a_file> | 863 | </string><string><a_file>floater_tools.xml</a_file> |
2426 | <b_path>/directory/Directory Tabs/showcase_panel/back_btn</b_path> | 864 | <b_path>/toolbox floater/Object Info Tabs/Object/sculpt mirror control</b_path> |
2427 | <c_attribute>label</c_attribute> | 865 | <c_attribute>tool_tip</c_attribute> |
2428 | <d_old></d_old> | 866 | <d_old></d_old> |
2429 | <e_new>Back</e_new> | 867 | <e_new>Flips sculpted prim along the X axis.</e_new> |
2430 | <f_old_trans></f_old_trans> | 868 | <f_old_trans></f_old_trans> |
2431 | <f_translation>뒤</f_translation> | 869 | <f_translation>X축을 라 sculpted prim(조각 프림)을 집습다.</f_translation> |
2432 | </string><string><a_file>floater_directory.xml</a_file> | 870 | </string><string><a_file>floater_tools.xml</a_file> |
2433 | <b_path>/directory/Directory Tabs/showcase_panel/forward_btn</b_path> | 871 | <b_path>/toolbox floater/Object Info Tabs/Object/sculpt invert control</b_path> |
2434 | <c_attribute>label</c_attribute> | 872 | <c_attribute>label</c_attribute> |
2435 | <d_old></d_old> | 873 | <d_old></d_old> |
2436 | <e_new>Forward</e_new> | 874 | <e_new>Inside-out</e_new> |
2437 | <f_old_trans></f_old_trans> | 875 | <f_old_trans></f_old_trans> |
2438 | <f_translation>앞으로</f_translation> | 876 | <f_translation>내부-외부</f_translation> |
2439 | </string><string><a_file>floater_directory.xml</a_file> | 877 | </string><string><a_file>floater_tools.xml</a_file> |
2440 | <b_path>/directory/Directory Tabs/showcase_panel/loading_text</b_path> | 878 | <b_path>/toolbox floater/Object Info Tabs/Object/sculpt invert control</b_path> |
2441 | <c_attribute></c_attribute> | 879 | <c_attribute>tool_tip</c_attribute> |
2442 | <d_old></d_old> | ||
2443 | <e_new>Loading...</e_new> | ||
2444 | <f_old_trans></f_old_trans> | ||
2445 | <f_translation>로딩 중</f_translation> | ||
2446 | </string><string><a_file>floater_directory.xml</a_file> | ||
2447 | <b_path>/directory/Directory Tabs/showcase_panel/done_text</b_path> | ||
2448 | <c_attribute></c_attribute> | ||
2449 | <d_old></d_old> | 880 | <d_old></d_old> |
2450 | <e_new>Done</e_new> | 881 | <e_new>Inverts the sculpted prims normals, making it appear inside-out.</e_new> |
2451 | <f_old_trans></f_old_trans> | 882 | <f_old_trans></f_old_trans> |
2452 | <f_translation>완료</f_translation> | 883 | <f_translation>Sculpted prim(조각 프림) 수직선을 반전하여 내/외부가 반전되어 나타나도록 합니다.</f_translation> |
2453 | </string><string><a_file>floater_directory.xml</a_file> | 884 | </string><string><a_file>floater_top_objects.xml</a_file> |
2454 | <b_path>/directory/Directory Tabs/groups_panel/back_btn</b_path> | 885 | <b_path>/top_objects/objects_list/time</b_path> |
2455 | <c_attribute>label</c_attribute> | 886 | <c_attribute>label</c_attribute> |
2456 | <d_old></d_old> | 887 | <d_old></d_old> |
2457 | <e_new>Back</e_new> | 888 | <e_new>Time</e_new> |
2458 | <f_old_trans></f_old_trans> | 889 | <f_old_trans></f_old_trans> |
2459 | <f_translation>뒤</f_translation> | 890 | <f_translation>간</f_translation> |
2460 | </string><string><a_file>floater_directory.xml</a_file> | 891 | </string><string><a_file>floater_tos.xml</a_file> |
2461 | <b_path>/directory/Directory Tabs/groups_panel/forward_btn</b_path> | 892 | <b_path>/modal container/agree_chk</b_path> |
2462 | <c_attribute>label</c_attribute> | 893 | <c_attribute>label</c_attribute> |
2463 | <d_old></d_old> | 894 | <d_old></d_old> |
2464 | <e_new>Forward</e_new> | 895 | <e_new>I Agree to the Terms of Service</e_new> |
2465 | <f_old_trans></f_old_trans> | 896 | <f_old_trans></f_old_trans> |
2466 | <f_translation></f_translation> | 897 | <f_translation>비스 관 의합니다.</f_translation> |
2467 | </string><string><a_file>floater_directory.xml</a_file> | 898 | </string><string><a_file>menu_viewer.xml</a_file> |
2468 | <b_path>/directory/Directory Tabs/groups_panel/search_editor</b_path> | 899 | <b_path>/Main Menu/World/Release Keys</b_path> |
2469 | <c_attribute>label</c_attribute> | 900 | <c_attribute>label</c_attribute> |
2470 | <d_old></d_old> | 901 | <d_old></d_old> |
2471 | <e_new>Search</e_new> | 902 | <e_new>Release Keys</e_new> |
2472 | <f_old_trans></f_old_trans> | 903 | <f_old_trans></f_old_trans> |
2473 | <f_translation>검색</f_translation> | 904 | <f_translation>키 해제</f_translation> |
2474 | </string><string><a_file>floater_directory.xml</a_file> | 905 | </string><string><a_file>menu_viewer.xml</a_file> |
2475 | <b_path>/directory/Directory Tabs/groups_panel/search_editor</b_path> | 906 | <b_path>/Main Menu/Tools/Recompile Scripts in Selection/Mono</b_path> |
2476 | <c_attribute>tool_tip</c_attribute> | ||
2477 | <d_old></d_old> | ||
2478 | <e_new>Search Second Life</e_new> | ||
2479 | <f_old_trans></f_old_trans> | ||
2480 | <f_translation>세컨드라이프 검색</f_translation> | ||
2481 | </string><string><a_file>floater_directory.xml</a_file> | ||
2482 | <b_path>/directory/Directory Tabs/groups_panel/search_btn</b_path> | ||
2483 | <c_attribute>label</c_attribute> | 907 | <c_attribute>label</c_attribute> |
2484 | <d_old></d_old> | 908 | <d_old></d_old> |
2485 | <e_new>Search</e_new> | 909 | <e_new>Mono</e_new> |
2486 | <f_old_trans></f_old_trans> | 910 | <f_old_trans></f_old_trans> |
2487 | <f_translation>검색</f_translation> | 911 | <f_translation>모노</f_translation> |
2488 | </string><string><a_file>floater_directory.xml</a_file> | 912 | </string><string><a_file>menu_viewer.xml</a_file> |
2489 | <b_path>/directory/Directory Tabs/groups_panel/mature_check</b_path> | 913 | <b_path>/Main Menu/Tools/Recompile Scripts in Selection/LSL</b_path> |
2490 | <c_attribute>label</c_attribute> | 914 | <c_attribute>label</c_attribute> |
2491 | <d_old></d_old> | 915 | <d_old></d_old> |
2492 | <e_new>Include Mature content</e_new> | 916 | <e_new>LSL</e_new> |
2493 | <f_old_trans></f_old_trans> | ||
2494 | <f_translation>성인용 컨텐츠 포함</f_translation> | ||
2495 | </string><string><a_file>floater_directory.xml</a_file> | ||
2496 | <b_path>/directory/Directory Tabs/groups_panel/loading_text</b_path> | ||
2497 | <c_attribute></c_attribute> | ||
2498 | <d_old></d_old> | ||
2499 | <e_new>Loading...</e_new> | ||
2500 | <f_old_trans></f_old_trans> | 917 | <f_old_trans></f_old_trans> |
2501 | <f_translation>로딩 중</f_translation> | 918 | <f_translation>LSL</f_translation> |
2502 | </string><string><a_file>floater_directory.xml</a_file> | 919 | </string><string><a_file>mime_types.xml</a_file> |
2503 | <b_path>/directory/Directory Tabs/groups_panel/done_text</b_path> | 920 | <b_path>/default/"application/smil"/"application/smil_label"</b_path> |
2504 | <c_attribute></c_attribute> | ||
2505 | <d_old></d_old> | ||
2506 | <e_new>Done</e_new> | ||
2507 | <f_old_trans></f_old_trans> | ||
2508 | <f_translation>완료</f_translation> | ||
2509 | </string><string><a_file>floater_im.xml</a_file> | ||
2510 | <b_path>/im_floater/muted_message</b_path> | ||
2511 | <c_attribute></c_attribute> | 921 | <c_attribute></c_attribute> |
2512 | <d_old></d_old> | 922 | <d_old></d_old> |
2513 | <e_new> | 923 | <e_new> |
2514 | [FIRST] [LAST] is muted. | 924 | Synchronized Multimedia Integration Language (SMIL) |
2515 | </e_new> | 925 | </e_new> |
2516 | <f_old_trans></f_old_trans> | 926 | <f_old_trans></f_old_trans> |
2517 | <f_translation> | 927 | <f_translation> |
2518 | [FIRST] [LAST] 음소니다. | 928 | SMIL(기 멀디 합 언어) |
2519 | </f_translation> | 929 | </f_translation> |
2520 | </string><string><a_file>notify.xml</a_file> | 930 | </string><string><a_file>notify.xml</a_file> |
2521 | <b_path>//AutoUnmuteByIM/message</b_path> | 931 | <b_path>//OfferFriendshipNoMessage/message</b_path> |
2522 | <c_attribute></c_attribute> | 932 | <c_attribute></c_attribute> |
2523 | <d_old></d_old> | 933 | <d_old></d_old> |
2524 | <e_new> | 934 | <e_new> |
2525 | [FIRST] [LAST] was sent an instant message and has been automatically unmuted. | 935 | [NAME] is offering friendship. |
936 | |||
937 | (By default, you will be able to | ||
938 | see each other's online status.) | ||
2526 | </e_new> | 939 | </e_new> |
2527 | <f_old_trans></f_old_trans> | 940 | <f_old_trans></f_old_trans> |
2528 | <f_translation> | 941 | <f_translation> |
2529 | [FIRST] [LAST]님에게 메시지가 전송되었으며 자동으로 음소거가 해제되었습니다. | 942 | [NAME]님이 친구 사귀기를 제안합니다. |
943 | |||
944 | (기본적으로 사용자는 | ||
945 | 서로의 온라인 상태를 볼 수 있습니다.) | ||
2530 | </f_translation> | 946 | </f_translation> |
2531 | </string><string><a_file>notify.xml</a_file> | 947 | </string><string><a_file>notify.xml</a_file> |
2532 | <b_path>//AutoUnmuteByMoney/message</b_path> | 948 | <b_path>//OfferFriendshipNoMessage/Accept</b_path> |
2533 | <c_attribute></c_attribute> | 949 | <c_attribute></c_attribute> |
2534 | <d_old></d_old> | 950 | <d_old></d_old> |
2535 | <e_new> | 951 | <e_new> |
2536 | [FIRST] [LAST] was given money and has been automatically unmuted. | 952 | Accept |
2537 | </e_new> | 953 | </e_new> |
2538 | <f_old_trans></f_old_trans> | 954 | <f_old_trans></f_old_trans> |
2539 | <f_translation> | 955 | <f_translation> |
2540 | [FIRST] [LAST]에게 금액이 전송되었으며 자로 소거가 해제었습니다. | 956 | 동의 |
2541 | </f_translation> | 957 | </f_translation> |
2542 | </string><string><a_file>notify.xml</a_file> | 958 | </string><string><a_file>notify.xml</a_file> |
2543 | <b_path>//AutoUnmuteByInventory/message</b_path> | 959 | <b_path>//OfferFriendshipNoMessage/Decline</b_path> |
2544 | <c_attribute></c_attribute> | 960 | <c_attribute></c_attribute> |
2545 | <d_old></d_old> | 961 | <d_old></d_old> |
2546 | <e_new> | 962 | <e_new> |
2547 | [FIRST] [LAST] was offered inventory and has been automatically unmuted. | 963 | Decline |
2548 | </e_new> | 964 | </e_new> |
2549 | <f_old_trans></f_old_trans> | 965 | <f_old_trans></f_old_trans> |
2550 | <f_translation> | 966 | <f_translation> |
2551 | [FIRST] [LAST]님에게 인벤토리가 전송되었으며 자동으로 음소거가 해제되었습니다. | 967 | 거부 |
2552 | </f_translation> | 968 | </f_translation> |
2553 | </string><string><a_file>panel_avatar_classified.xml</a_file> | 969 | </string><string><a_file>panel_login.xml</a_file> |
2554 | <b_path>/Classified/classified_mature_check/select_mature</b_path> | 970 | <b_path>/panel_login/create_new_account_text</b_path> |
2555 | <c_attribute></c_attribute> | 971 | <c_attribute></c_attribute> |
2556 | <d_old></d_old> | 972 | <d_old></d_old> |
2557 | <e_new> | 973 | <e_new>Create new account. |
2558 | - Select Mature - | 974 | </e_new> |
2559 | </e_new> | ||
2560 | <f_old_trans></f_old_trans> | 975 | <f_old_trans></f_old_trans> |
2561 | <f_translation> | 976 | <f_translation>새 계정을 만듭니다. |
2562 | - 성인용 컨텐츠 선택 - | 977 | </f_translation> |
2563 | </f_translation> | 978 | </string><string><a_file>panel_preferences_chat.xml</a_file> |
2564 | </string><string><a_file>panel_avatar_classified.xml</a_file> | 979 | <b_path>/chat/user</b_path> |
2565 | <b_path>/Classified/classified_mature_check/mature</b_path> | 980 | <c_attribute>label</c_attribute> |
2566 | <c_attribute></c_attribute> | ||
2567 | <d_old></d_old> | 981 | <d_old></d_old> |
2568 | <e_new> | 982 | <e_new>You</e_new> |
2569 | Mature Content | ||
2570 | </e_new> | ||
2571 | <f_old_trans></f_old_trans> | 983 | <f_old_trans></f_old_trans> |
2572 | <f_translation> | 984 | <f_translation>나</f_translation> |
2573 | 성인용 컨텐츠 | 985 | </string><string><a_file>panel_preferences_chat.xml</a_file> |
2574 | </f_translation> | 986 | <b_path>/chat/agent</b_path> |
2575 | </string><string><a_file>panel_avatar_classified.xml</a_file> | 987 | <c_attribute>label</c_attribute> |
2576 | <b_path>/Classified/classified_mature_check/not_mature</b_path> | ||
2577 | <c_attribute></c_attribute> | ||
2578 | <d_old></d_old> | 988 | <d_old></d_old> |
2579 | <e_new> | 989 | <e_new>Others</e_new> |
2580 | Not Mature Content | ||
2581 | </e_new> | ||
2582 | <f_old_trans></f_old_trans> | 990 | <f_old_trans></f_old_trans> |
2583 | <f_translation> | 991 | <f_translation>다른 사용자</f_translation> |
2584 | 성인용 컨텐츠 아님 | 992 | </string><string><a_file>panel_preferences_chat.xml</a_file> |
2585 | </f_translation> | 993 | <b_path>/chat/play_typing_animation</b_path> |
2586 | </string><string><a_file>panel_classified.xml</a_file> | 994 | <c_attribute>label</c_attribute> |
2587 | <b_path>/Classified/classified_mature_check/select_mature</b_path> | ||
2588 | <c_attribute></c_attribute> | ||
2589 | <d_old></d_old> | 995 | <d_old></d_old> |
2590 | <e_new> | 996 | <e_new>Play typing animation</e_new> |
2591 | - Select Mature - | ||
2592 | </e_new> | ||
2593 | <f_old_trans></f_old_trans> | 997 | <f_old_trans></f_old_trans> |
2594 | <f_translation> | 998 | <f_translation>타이핑 애니메이션 재생</f_translation> |
2595 | - 성인용 컨텐츠 선택 - | 999 | </string><string><a_file>panel_preferences_general.xml</a_file> |
2596 | </f_translation> | 1000 | <b_path>/general_panel/language_is_public</b_path> |
2597 | </string><string><a_file>panel_classified.xml</a_file> | 1001 | <c_attribute>label</c_attribute> |
2598 | <b_path>/Classified/classified_mature_check/mature</b_path> | ||
2599 | <c_attribute></c_attribute> | ||
2600 | <d_old></d_old> | 1002 | <d_old></d_old> |
2601 | <e_new> | 1003 | <e_new>Share language with objects</e_new> |
2602 | Mature Content | ||
2603 | </e_new> | ||
2604 | <f_old_trans></f_old_trans> | 1004 | <f_old_trans></f_old_trans> |
2605 | <f_translation> | 1005 | <f_translation>오브젝트와 언어 공유</f_translation> |
2606 | 성인용 컨텐츠 | 1006 | </string><string><a_file>panel_preferences_general.xml</a_file> |
2607 | </f_translation> | 1007 | <b_path>/general_panel/language_is_public</b_path> |
2608 | </string><string><a_file>panel_classified.xml</a_file> | 1008 | <c_attribute>tool_tip</c_attribute> |
2609 | <b_path>/Classified/classified_mature_check/not_mature</b_path> | ||
2610 | <c_attribute></c_attribute> | ||
2611 | <d_old></d_old> | 1009 | <d_old></d_old> |
2612 | <e_new> | 1010 | <e_new>This lets in-world objects know your preferred language.</e_new> |
2613 | Not Mature Content | ||
2614 | </e_new> | ||
2615 | <f_old_trans></f_old_trans> | 1011 | <f_old_trans></f_old_trans> |
2616 | <f_translation> | 1012 | <f_translation>인월드 오브젝트에 사용자의 기본 언어를 설정할 수 있습니다.</f_translation> |
2617 | 성인용 컨텐츠 아님 | 1013 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> |
2618 | </f_translation> | 1014 | <b_path>/Display panel/QualityPerformanceSelection</b_path> |
2619 | </string><string><a_file>panel_groups.xml</a_file> | ||
2620 | <b_path>/groups/group list/name</b_path> | ||
2621 | <c_attribute>label</c_attribute> | 1015 | <c_attribute>label</c_attribute> |
2622 | <d_old></d_old> | 1016 | <d_old></d_old> |
2623 | <e_new></e_new> | 1017 | <e_new></e_new> |
2624 | <f_old_trans></f_old_trans> | 1018 | <f_old_trans></f_old_trans> |
2625 | <f_translation></f_translation> | 1019 | <f_translation></f_translation> |
2626 | </string><string><a_file>panel_group_general.xml</a_file> | 1020 | </string><string><a_file>panel_preferences_im.xml</a_file> |
2627 | <b_path>/general_tab/preferences_container/group_mature_check</b_path> | 1021 | <b_path>/im/friends_online_notify_checkbox</b_path> |
2628 | <c_attribute>tool_tip</c_attribute> | 1022 | <c_attribute>label</c_attribute> |
2629 | <d_old></d_old> | 1023 | <d_old></d_old> |
2630 | <e_new>Sets whether your group information is considered mature.</e_new> | 1024 | <e_new>Show Online Friend Notifications</e_new> |
2631 | <f_old_trans></f_old_trans> | 1025 | <f_old_trans></f_old_trans> |
2632 | <f_translation>그룹 정보를 성인용으로 간주할지 여부를 설정합니다.</f_translation> | 1026 | <f_translation>온라인 친구 보여주기</f_translation> |
2633 | </string><string><a_file>panel_group_general.xml</a_file> | 1027 | </string><string><a_file>panel_preferences_popups.xml</a_file> |
2634 | <b_path>/general_tab/preferences_container/group_mature_check/select_mature</b_path> | 1028 | <b_path>/popups/show_in_inventory</b_path> |
2635 | <c_attribute></c_attribute> | 1029 | <c_attribute>label</c_attribute> |
2636 | <d_old></d_old> | ||
2637 | <e_new> | ||
2638 | - Select Mature - | ||
2639 | </e_new> | ||
2640 | <f_old_trans></f_old_trans> | ||
2641 | <f_translation> | ||
2642 | - 성인용 컨텐츠 선택 - | ||
2643 | </f_translation> | ||
2644 | </string><string><a_file>panel_group_general.xml</a_file> | ||
2645 | <b_path>/general_tab/preferences_container/group_mature_check/mature</b_path> | ||
2646 | <c_attribute></c_attribute> | ||
2647 | <d_old></d_old> | 1030 | <d_old></d_old> |
2648 | <e_new> | 1031 | <e_new>Automatically show newly accepted objects in inventory</e_new> |
2649 | Mature Content | ||
2650 | </e_new> | ||
2651 | <f_old_trans></f_old_trans> | 1032 | <f_old_trans></f_old_trans> |
2652 | <f_translation> | 1033 | <f_translation>인벤토리에서 새로 수락한 오브젝트를 자동으로 보여주기</f_translation> |
2653 | 성인용 컨텐츠 | 1034 | </string><string><a_file>panel_preferences_skins.xml</a_file> |
2654 | </f_translation> | 1035 | <b_path>/Skins panel/classic_preview</b_path> |
2655 | </string><string><a_file>panel_group_general.xml</a_file> | 1036 | <c_attribute>label</c_attribute> |
2656 | <b_path>/general_tab/preferences_container/group_mature_check/not_mature</b_path> | ||
2657 | <c_attribute></c_attribute> | ||
2658 | <d_old></d_old> | 1037 | <d_old></d_old> |
2659 | <e_new> | 1038 | <e_new></e_new> |
2660 | Not Mature Content | ||
2661 | </e_new> | ||
2662 | <f_old_trans></f_old_trans> | 1039 | <f_old_trans></f_old_trans> |
2663 | <f_translation> | 1040 | <f_translation></f_translation> |
2664 | 성인용 컨텐츠 아님 | 1041 | </string><string><a_file>panel_preferences_skins.xml</a_file> |
2665 | </f_translation> | 1042 | <b_path>/Skins panel/silver_preview</b_path> |
2666 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | 1043 | <c_attribute>label</c_attribute> |
2667 | <b_path>/Display panel/WindowSizeLabel</b_path> | ||
2668 | <c_attribute></c_attribute> | ||
2669 | <d_old></d_old> | 1044 | <d_old></d_old> |
2670 | <e_new> | 1045 | <e_new></e_new> |
2671 | Window Size: | ||
2672 | </e_new> | ||
2673 | <f_old_trans></f_old_trans> | 1046 | <f_old_trans></f_old_trans> |
2674 | <f_translation> | 1047 | <f_translation></f_translation> |
2675 | 창 크기: | 1048 | </string><string><a_file>panel_region_debug.xml</a_file> |
2676 | </f_translation> | 1049 | <b_path>/Debug/target_avatar_name</b_path> |
2677 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
2678 | <b_path>/Display panel/windowsize combo/640x480</b_path> | ||
2679 | <c_attribute></c_attribute> | 1050 | <c_attribute></c_attribute> |
2680 | <d_old></d_old> | 1051 | <d_old></d_old> |
2681 | <e_new> | 1052 | <e_new> |
2682 | 640x480 | 1053 | (none) |
2683 | </e_new> | 1054 | </e_new> |
2684 | <f_old_trans></f_old_trans> | 1055 | <f_old_trans></f_old_trans> |
2685 | <f_translation> | 1056 | <f_translation> |
2686 | 640x480 | 1057 | (없음) |
2687 | </f_translation> | 1058 | </f_translation> |
2688 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | 1059 | </string><string><a_file>panel_region_debug.xml</a_file> |
2689 | <b_path>/Display panel/windowsize combo/800x600</b_path> | 1060 | <b_path>/Debug/return_scripts</b_path> |
2690 | <c_attribute></c_attribute> | 1061 | <c_attribute>label</c_attribute> |
2691 | <d_old></d_old> | 1062 | <d_old></d_old> |
2692 | <e_new> | 1063 | <e_new>Return only those objects with scripts</e_new> |
2693 | 800x600 | ||
2694 | </e_new> | ||
2695 | <f_old_trans></f_old_trans> | 1064 | <f_old_trans></f_old_trans> |
2696 | <f_translation> | 1065 | <f_translation>스크립트가 있는 오브젝트만 반환</f_translation> |
2697 | 800x600 | 1066 | </string><string><a_file>panel_region_debug.xml</a_file> |
2698 | </f_translation> | 1067 | <b_path>/Debug/return_scripts</b_path> |
2699 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | 1068 | <c_attribute>tool_tip</c_attribute> |
2700 | <b_path>/Display panel/windowsize combo/720x480</b_path> | ||
2701 | <c_attribute></c_attribute> | ||
2702 | <d_old></d_old> | 1069 | <d_old></d_old> |
2703 | <e_new> | 1070 | <e_new>Return only objects which have scripts.</e_new> |
2704 | 720x480 (NTSC) | ||
2705 | </e_new> | ||
2706 | <f_old_trans></f_old_trans> | 1071 | <f_old_trans></f_old_trans> |
2707 | <f_translation> | 1072 | <f_translation>스크립트가 있는 오브젝트만 반환합니다.</f_translation> |
2708 | 720x480(NTSC) | 1073 | </string><string><a_file>panel_region_debug.xml</a_file> |
2709 | </f_translation> | 1074 | <b_path>/Debug/return_other_land</b_path> |
2710 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | 1075 | <c_attribute>label</c_attribute> |
2711 | <b_path>/Display panel/windowsize combo/768x576</b_path> | ||
2712 | <c_attribute></c_attribute> | ||
2713 | <d_old></d_old> | 1076 | <d_old></d_old> |
2714 | <e_new> | 1077 | <e_new>Return only those objects on someone else's land</e_new> |
2715 | 768x576 (PAL) | ||
2716 | </e_new> | ||
2717 | <f_old_trans></f_old_trans> | 1078 | <f_old_trans></f_old_trans> |
2718 | <f_translation> | 1079 | <f_translation>다른 주민의 토지에 속한 오브젝트만 반환</f_translation> |
2719 | 768x576(PAL) | 1080 | </string><string><a_file>panel_region_debug.xml</a_file> |
2720 | </f_translation> | 1081 | <b_path>/Debug/return_other_land</b_path> |
2721 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | 1082 | <c_attribute>tool_tip</c_attribute> |
2722 | <b_path>/Display panel/windowsize combo/1024x768</b_path> | ||
2723 | <c_attribute></c_attribute> | ||
2724 | <d_old></d_old> | 1083 | <d_old></d_old> |
2725 | <e_new> | 1084 | <e_new>Return only objects which are on land belonging to someone else</e_new> |
2726 | 1024x768 | ||
2727 | </e_new> | ||
2728 | <f_old_trans></f_old_trans> | 1085 | <f_old_trans></f_old_trans> |
2729 | <f_translation> | 1086 | <f_translation>다른 주민이 소유하고 있는 토지에 있는 오브젝트만 반환합니다.</f_translation> |
2730 | 1024x768 | 1087 | </string><string><a_file>panel_region_debug.xml</a_file> |
2731 | </f_translation> | 1088 | <b_path>/Debug/return_estate_wide</b_path> |
2732 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
2733 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | ||
2734 | <c_attribute>label</c_attribute> | 1089 | <c_attribute>label</c_attribute> |
2735 | <d_old></d_old> | 1090 | <d_old></d_old> |
2736 | <e_new></e_new> | 1091 | <e_new>Return objects in every region of this estate</e_new> |
2737 | <f_old_trans></f_old_trans> | 1092 | <f_old_trans></f_old_trans> |
2738 | <f_translation></f_translation> | 1093 | <f_translation>이 사유지의 모든 지역에 속한 오브젝트 반환</f_translation> |
2739 | </string><string><a_file>panel_preferences_web.xml</a_file> | 1094 | </string><string><a_file>panel_region_debug.xml</a_file> |
2740 | <b_path>/web/use_external_browser/internal</b_path> | 1095 | <b_path>/Debug/return_estate_wide</b_path> |
2741 | <c_attribute>tool_tip</c_attribute> | 1096 | <c_attribute>tool_tip</c_attribute> |
2742 | <d_old></d_old> | 1097 | <d_old></d_old> |
2743 | <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> | 1098 | <e_new>Return objects in all of the regions that make up this estate</e_new> |
2744 | <f_old_trans></f_old_trans> | 1099 | <f_old_trans></f_old_trans> |
2745 | <f_translation>도, 링 이 브라 열니다.</f_translation> | 1100 | <f_translation> 사유 구는 포 브트 환합니다.</f_translation> |
2746 | </string><string><a_file>panel_region_general.xml</a_file> | 1101 | </string><string><a_file>panel_region_debug.xml</a_file> |
2747 | <b_path>/General/version_channel_text_lbl</b_path> | 1102 | <b_path>/Debug/return_btn</b_path> |
2748 | <c_attribute></c_attribute> | 1103 | <c_attribute>label</c_attribute> |
2749 | <d_old></d_old> | 1104 | <d_old></d_old> |
2750 | <e_new> | 1105 | <e_new>Return</e_new> |
2751 | Version: | ||
2752 | </e_new> | ||
2753 | <f_old_trans></f_old_trans> | 1106 | <f_old_trans></f_old_trans> |
2754 | <f_translation> | 1107 | <f_translation>반환</f_translation> |
2755 | 버전: | 1108 | </string><string><a_file>panel_region_estate.xml</a_file> |
2756 | </f_translation> | 1109 | <b_path>/Estate/abuse_email_text</b_path> |
2757 | </string><string><a_file>panel_region_general.xml</a_file> | ||
2758 | <b_path>/General/version_channel_text</b_path> | ||
2759 | <c_attribute></c_attribute> | 1110 | <c_attribute></c_attribute> |
2760 | <d_old></d_old> | 1111 | <d_old></d_old> |
2761 | <e_new> | 1112 | <e_new> |
2762 | unknown | 1113 | Abuse email address: |
2763 | </e_new> | 1114 | </e_new> |
2764 | <f_old_trans></f_old_trans> | 1115 | <f_old_trans></f_old_trans> |
2765 | <f_translation> | 1116 | <f_translation> |
2766 | 음 | 1117 | 용 고 메 주: |
2767 | </f_translation> | 1118 | </f_translation> |
2768 | </string><string><a_file>strings.xml</a_file> | 1119 | </string><string><a_file>panel_region_estate.xml</a_file> |
2769 | <b_path>//LoginInProgress</b_path> | 1120 | <b_path>/Estate/email_unsupported</b_path> |
2770 | <c_attribute></c_attribute> | ||
2771 | <d_old></d_old> | ||
2772 | <e_new>Logging in. [APP_NAME] may appear frozen. Please wait.</e_new> | ||
2773 | <f_old_trans></f_old_trans> | ||
2774 | <f_translation>로그인 중. [APP_NAME]님은 정지된 상태로 나타날 수 있습니다. 잠시만 기다리십시오.</f_translation> | ||
2775 | </string><string><a_file>strings.xml</a_file> | ||
2776 | <b_path>//LoginAuthenticating</b_path> | ||
2777 | <c_attribute></c_attribute> | ||
2778 | <d_old></d_old> | ||
2779 | <e_new>Authenticating</e_new> | ||
2780 | <f_old_trans></f_old_trans> | ||
2781 | <f_translation>인증</f_translation> | ||
2782 | </string><string><a_file>strings.xml</a_file> | ||
2783 | <b_path>//LoginMaintenance</b_path> | ||
2784 | <c_attribute></c_attribute> | ||
2785 | <d_old></d_old> | ||
2786 | <e_new>Performing account maintenance...</e_new> | ||
2787 | <f_old_trans></f_old_trans> | ||
2788 | <f_translation>계정 확인 중</f_translation> | ||
2789 | </string><string><a_file>strings.xml</a_file> | ||
2790 | <b_path>//LoginAttempt</b_path> | ||
2791 | <c_attribute></c_attribute> | ||
2792 | <d_old></d_old> | ||
2793 | <e_new>Previous login attempt failed. Logging in, attempt [NUMBER]</e_new> | ||
2794 | <f_old_trans></f_old_trans> | ||
2795 | <f_translation>이전 로그인 시도가 실패했습니다. [NUMBER]번째 로그인 시도 중</f_translation> | ||
2796 | </string><string><a_file>strings.xml</a_file> | ||
2797 | <b_path>//LoginPrecaching</b_path> | ||
2798 | <c_attribute></c_attribute> | ||
2799 | <d_old></d_old> | ||
2800 | <e_new>Loading world...</e_new> | ||
2801 | <f_old_trans></f_old_trans> | ||
2802 | <f_translation>로딩 중</f_translation> | ||
2803 | </string><string><a_file>strings.xml</a_file> | ||
2804 | <b_path>//LoginInitializingBrowser</b_path> | ||
2805 | <c_attribute></c_attribute> | ||
2806 | <d_old></d_old> | ||
2807 | <e_new>Initializing embedded web browser...</e_new> | ||
2808 | <f_old_trans></f_old_trans> | ||
2809 | <f_translation>웹 브라우저 초기화 중</f_translation> | ||
2810 | </string><string><a_file>strings.xml</a_file> | ||
2811 | <b_path>//LoginVerifyingCache</b_path> | ||
2812 | <c_attribute></c_attribute> | ||
2813 | <d_old></d_old> | ||
2814 | <e_new>Verifying cache files (can take 60-90 seconds)...</e_new> | ||
2815 | <f_old_trans></f_old_trans> | ||
2816 | <f_translation>캐시 파일 확인 중(60-90초 소요)</f_translation> | ||
2817 | </string><string><a_file>strings.xml</a_file> | ||
2818 | <b_path>//LoginProcessingResponse</b_path> | ||
2819 | <c_attribute></c_attribute> | ||
2820 | <d_old></d_old> | ||
2821 | <e_new>Processing Response...</e_new> | ||
2822 | <f_old_trans></f_old_trans> | ||
2823 | <f_translation>응답 처리 중</f_translation> | ||
2824 | </string><string><a_file>strings.xml</a_file> | ||
2825 | <b_path>//LoginInitializingWorld</b_path> | ||
2826 | <c_attribute></c_attribute> | 1121 | <c_attribute></c_attribute> |
2827 | <d_old></d_old> | 1122 | <d_old></d_old> |
2828 | <e_new>Initializing World...</e_new> | 1123 | <e_new>Feature unsupported</e_new> |
2829 | <f_old_trans></f_old_trans> | 1124 | <f_old_trans></f_old_trans> |
2830 | <f_translation>초기화 중</f_translation> | 1125 | <f_translation>기능이 지원되지 않습니다.</f_translation> |
2831 | </string><string><a_file>strings.xml</a_file> | 1126 | </string><string><a_file>role_actions.xml</a_file> |
2832 | <b_path>//LoginDecodingImages</b_path> | 1127 | <b_path>//Chat</b_path> |
2833 | <c_attribute></c_attribute> | 1128 | <c_attribute>description</c_attribute> |
2834 | <d_old></d_old> | ||
2835 | <e_new>Decoding images...</e_new> | ||
2836 | <f_old_trans></f_old_trans> | ||
2837 | <f_translation>이미디 디코딩 중</f_translation> | ||
2838 | </string><string><a_file>strings.xml</a_file> | ||
2839 | <b_path>//LoginInitializingQuicktime</b_path> | ||
2840 | <c_attribute></c_attribute> | ||
2841 | <d_old></d_old> | 1129 | <d_old></d_old> |
2842 | <e_new>Initializing QuickTime...</e_new> | 1130 | <e_new>These Abilities include powers to allow or restrict access to group chat sessions and group voice chat.</e_new> |
2843 | <f_old_trans></f_old_trans> | 1131 | <f_old_trans></f_old_trans> |
2844 | <f_translation>QuickTime 초기화 중...</f_translation> | 1132 | <f_translation>이러한 권한에는 그룹 채팅 세션 및 그룹 음성 채팅에 대한 허용 또는 제한의 권한이 포함됩니다.</f_translation> |
2845 | </string><string><a_file>strings.xml</a_file> | 1133 | </string><string><a_file>role_actions.xml</a_file> |
2846 | <b_path>//LoginQuicktimeNotFound</b_path> | 1134 | <b_path>//Chat/join group chat</b_path> |
2847 | <c_attribute></c_attribute> | 1135 | <c_attribute>description</c_attribute> |
2848 | <d_old></d_old> | 1136 | <d_old></d_old> |
2849 | <e_new>QuickTime not found - unable to initialize.</e_new> | 1137 | <e_new>Join Group Chat</e_new> |
2850 | <f_old_trans></f_old_trans> | 1138 | <f_old_trans></f_old_trans> |
2851 | <f_translation>QuickTime을 찾을 수 없으로 기할 습니다.</f_translation> | 1139 | <f_translation>그 </f_translation> |
2852 | </string><string><a_file>strings.xml</a_file> | 1140 | </string><string><a_file>role_actions.xml</a_file> |
2853 | <b_path>//LoginQuicktimeOK</b_path> | 1141 | <b_path>//Chat/join group chat</b_path> |
2854 | <c_attribute></c_attribute> | 1142 | <c_attribute>longdescription</c_attribute> |
2855 | <d_old></d_old> | 1143 | <d_old></d_old> |
2856 | <e_new>QuickTime initialized successfully.</e_new> | 1144 | <e_new>Members in a Role with this Ability can join group chat sessions, for text and voice.</e_new> |
2857 | <f_old_trans></f_old_trans> | 1145 | <f_old_trans></f_old_trans> |
2858 | <f_translation>QuickTime이 성공적으로 초기화되었습니다.</f_translation> | 1146 | <f_translation>역할에 이 권한이 있는 회원은 텍스트 및 음성을 사용한 그룹 채팅 세션에 참여할 수 있습니다.</f_translation> |
2859 | </string><string><a_file>strings.xml</a_file> | 1147 | </string><string><a_file>role_actions.xml</a_file> |
2860 | <b_path>//LoginWaitingForRegionHandshake</b_path> | 1148 | <b_path>//Chat/join voice chat</b_path> |
2861 | <c_attribute></c_attribute> | 1149 | <c_attribute>description</c_attribute> |
2862 | <d_old></d_old> | 1150 | <d_old></d_old> |
2863 | <e_new>Waiting for region handshake...</e_new> | 1151 | <e_new>Join Group Voice Chat</e_new> |
2864 | <f_old_trans></f_old_trans> | 1152 | <f_old_trans></f_old_trans> |
2865 | <f_translation> 기 </f_translation> | 1153 | <f_translation>그룹 채 여</f_translation> |
2866 | </string><string><a_file>strings.xml</a_file> | 1154 | </string><string><a_file>role_actions.xml</a_file> |
2867 | <b_path>//LoginConnectingToRegion</b_path> | 1155 | <b_path>//Chat/join voice chat</b_path> |
2868 | <c_attribute></c_attribute> | 1156 | <c_attribute>longdescription</c_attribute> |
2869 | <d_old></d_old> | 1157 | <d_old></d_old> |
2870 | <e_new>Connecting to region...</e_new> | 1158 | <e_new>Members in a Role with this Ability can join group voice chat sessions. NOTE: The Join Group Chat ability is required to access the voice chat session.</e_new> |
2871 | <f_old_trans></f_old_trans> | 1159 | <f_old_trans></f_old_trans> |
2872 | <f_translation>지역에 연결하는 중</f_translation> | 1160 | <f_translation>역할에 이 권한이 있는 회원은 그룹 음성 채팅 세션에 참여할 수 있습니다. 참고: 음성 채팅 세션에 참여하려면 그룹 채팅 참여 권한이 있어야 합니다.</f_translation> |
2873 | </string><string><a_file>strings.xml</a_file> | 1161 | </string><string><a_file>role_actions.xml</a_file> |
2874 | <b_path>//LoginDownloadingClothing</b_path> | 1162 | <b_path>//Chat/moderate group chat</b_path> |
2875 | <c_attribute></c_attribute> | 1163 | <c_attribute>description</c_attribute> |
2876 | <d_old></d_old> | 1164 | <d_old></d_old> |
2877 | <e_new>Downloading clothing...</e_new> | 1165 | <e_new>Moderate Group Chat</e_new> |
2878 | <f_old_trans></f_old_trans> | 1166 | <f_old_trans></f_old_trans> |
2879 | <f_translation>의 다로드 중</f_translation> | 1167 | <f_translation>그 팅 중재</f_translation> |
2880 | </string><string><a_file>strings.xml</a_file> | 1168 | </string><string><a_file>role_actions.xml</a_file> |
2881 | <b_path>//TooltipPerson</b_path> | 1169 | <b_path>//Chat/moderate group chat</b_path> |
2882 | <c_attribute></c_attribute> | 1170 | <c_attribute>longdescription</c_attribute> |
2883 | <d_old></d_old> | 1171 | <d_old></d_old> |
2884 | <e_new>Person</e_new> | 1172 | <e_new>Members in a Role with this Ability can control access and participation in group voice and text chat sessions.</e_new> |
2885 | <f_old_trans></f_old_trans> | 1173 | <f_old_trans></f_old_trans> |
2886 | <f_translation>아바타</f_translation> | 1174 | <f_translation>역할에 이 권한이 있는 회원은 그룹 음성 및 텍스트 채팅 세션에 대한 접근과 참여를 제어할 수 있습니다.</f_translation> |
2887 | </string><string><a_file>strings.xml</a_file> | 1175 | </string><string><a_file>strings.xml</a_file> |
2888 | <b_path>//TooltipNoName</b_path> | 1176 | <b_path>//LoginInitializingMultimedia</b_path> |
2889 | <c_attribute></c_attribute> | 1177 | <c_attribute></c_attribute> |
2890 | <d_old></d_old> | 1178 | <d_old></d_old> |
2891 | <e_new>(no name)</e_new> | 1179 | <e_new>Initializing multimedia...</e_new> |
2892 | <f_old_trans></f_old_trans> | 1180 | <f_old_trans></f_old_trans> |
2893 | <f_translation>(름 )</f_translation> | 1181 | <f_translation>멀티미디 기화 ...</f_translation> |
2894 | </string><string><a_file>strings.xml</a_file> | 1182 | </string><string><a_file>strings.xml</a_file> |
2895 | <b_path>//TooltipOwner</b_path> | 1183 | <b_path>//AgentLostConnection</b_path> |
2896 | <c_attribute></c_attribute> | 1184 | <c_attribute></c_attribute> |
2897 | <d_old></d_old> | 1185 | <d_old></d_old> |
2898 | <e_new>Owner:</e_new> | 1186 | <e_new>This region may be experiencing trouble. Please check your connection to the Internet.</e_new> |
2899 | <f_old_trans></f_old_trans> | 1187 | <f_old_trans></f_old_trans> |
2900 | <f_translation>:</f_translation> | 1188 | <f_translation> 역에 문가 을 수 있습니다. 인터넷 연결을 확인하십시오.</f_translation> |
2901 | </string><string><a_file>strings.xml</a_file> | 1189 | </string><string><a_file>strings.xml</a_file> |
2902 | <b_path>//TooltipPublic</b_path> | 1190 | <b_path>//TooltipMustSingleDrop</b_path> |
2903 | <c_attribute></c_attribute> | 1191 | <c_attribute></c_attribute> |
2904 | <d_old></d_old> | 1192 | <d_old></d_old> |
2905 | <e_new>Public</e_new> | 1193 | <e_new>Only a single item can be dragged here</e_new> |
2906 | <f_old_trans></f_old_trans> | 1194 | <f_old_trans></f_old_trans> |
2907 | <f_translation></f_translation> | 1195 | <f_translation>하나의 아이템만 여 드래그할 수 있습니다.</f_translation> |
2908 | </string><string><a_file>strings.xml</a_file> | 1196 | </string><string><a_file>strings.xml</a_file> |
2909 | <b_path>//TooltipIsGroup</b_path> | 1197 | <b_path>//ReleaseNotes</b_path> |
2910 | <c_attribute></c_attribute> | 1198 | <c_attribute></c_attribute> |
2911 | <d_old></d_old> | 1199 | <d_old></d_old> |
2912 | <e_new>(Group)</e_new> | 1200 | <e_new>Release Notes</e_new> |
2913 | <f_old_trans></f_old_trans> | 1201 | <f_old_trans></f_old_trans> |
2914 | <f_translation>(그)</f_translation> | 1202 | <f_translation>출시 정</f_translation> |
2915 | </string><string><a_file>strings.xml</a_file> | 1203 | </string><string><a_file>strings.xml</a_file> |
2916 | <b_path>//TooltipFlagScript</b_path> | 1204 | <b_path>//texture_loading</b_path> |
2917 | <c_attribute></c_attribute> | ||
2918 | <d_old></d_old> | ||
2919 | <e_new>Script</e_new> | ||
2920 | <f_old_trans></f_old_trans> | ||
2921 | <f_translation>스크립트</f_translation> | ||
2922 | </string><string><a_file>strings.xml</a_file> | ||
2923 | <b_path>//TooltipFlagPhysics</b_path> | ||
2924 | <c_attribute></c_attribute> | ||
2925 | <d_old></d_old> | ||
2926 | <e_new>Physics</e_new> | ||
2927 | <f_old_trans></f_old_trans> | ||
2928 | <f_translation>물리 엔진</f_translation> | ||
2929 | </string><string><a_file>strings.xml</a_file> | ||
2930 | <b_path>//TooltipFlagTouch</b_path> | ||
2931 | <c_attribute></c_attribute> | ||
2932 | <d_old></d_old> | ||
2933 | <e_new>Touch</e_new> | ||
2934 | <f_old_trans></f_old_trans> | ||
2935 | <f_translation>만지기</f_translation> | ||
2936 | </string><string><a_file>strings.xml</a_file> | ||
2937 | <b_path>//TooltipFlagL$</b_path> | ||
2938 | <c_attribute></c_attribute> | ||
2939 | <d_old></d_old> | ||
2940 | <e_new>L$</e_new> | ||
2941 | <f_old_trans></f_old_trans> | ||
2942 | <f_translation>L$</f_translation> | ||
2943 | </string><string><a_file>strings.xml</a_file> | ||
2944 | <b_path>//TooltipFlagDropInventory</b_path> | ||
2945 | <c_attribute></c_attribute> | ||
2946 | <d_old></d_old> | ||
2947 | <e_new>Drop Inventory</e_new> | ||
2948 | <f_old_trans></f_old_trans> | ||
2949 | <f_translation>인벤토리 드롭</f_translation> | ||
2950 | </string><string><a_file>strings.xml</a_file> | ||
2951 | <b_path>//TooltipFlagPhantom</b_path> | ||
2952 | <c_attribute></c_attribute> | ||
2953 | <d_old></d_old> | ||
2954 | <e_new>Phantom</e_new> | ||
2955 | <f_old_trans></f_old_trans> | ||
2956 | <f_translation>팬텀</f_translation> | ||
2957 | </string><string><a_file>strings.xml</a_file> | ||
2958 | <b_path>//TooltipFlagTemporary</b_path> | ||
2959 | <c_attribute></c_attribute> | ||
2960 | <d_old></d_old> | ||
2961 | <e_new>Temporary</e_new> | ||
2962 | <f_old_trans></f_old_trans> | ||
2963 | <f_translation>임시</f_translation> | ||
2964 | </string><string><a_file>strings.xml</a_file> | ||
2965 | <b_path>//TooltipFlagRightClickMenu</b_path> | ||
2966 | <c_attribute></c_attribute> | ||
2967 | <d_old></d_old> | ||
2968 | <e_new>(Right-click for menu)</e_new> | ||
2969 | <f_old_trans></f_old_trans> | ||
2970 | <f_translation>(오른쪽 클릭 메뉴)</f_translation> | ||
2971 | </string><string><a_file>strings.xml</a_file> | ||
2972 | <b_path>//TooltipFreeToCopy</b_path> | ||
2973 | <c_attribute></c_attribute> | ||
2974 | <d_old></d_old> | ||
2975 | <e_new>Free to copy</e_new> | ||
2976 | <f_old_trans></f_old_trans> | ||
2977 | <f_translation>무료 복사</f_translation> | ||
2978 | </string><string><a_file>strings.xml</a_file> | ||
2979 | <b_path>//TooltipForSaleL$</b_path> | ||
2980 | <c_attribute></c_attribute> | ||
2981 | <d_old></d_old> | ||
2982 | <e_new>For Sale: L$[AMOUNT]</e_new> | ||
2983 | <f_old_trans></f_old_trans> | ||
2984 | <f_translation>판매: L$ [AMOUNT]</f_translation> | ||
2985 | </string><string><a_file>strings.xml</a_file> | ||
2986 | <b_path>//TooltipForSaleMsg</b_path> | ||
2987 | <c_attribute></c_attribute> | ||
2988 | <d_old></d_old> | ||
2989 | <e_new>For Sale: [MESSAGE]</e_new> | ||
2990 | <f_old_trans></f_old_trans> | ||
2991 | <f_translation>판매: [MESSAGE]</f_translation> | ||
2992 | </string><string><a_file>strings.xml</a_file> | ||
2993 | <b_path>//TooltipFlagGroupBuild</b_path> | ||
2994 | <c_attribute></c_attribute> | ||
2995 | <d_old></d_old> | ||
2996 | <e_new>Group Build</e_new> | ||
2997 | <f_old_trans></f_old_trans> | ||
2998 | <f_translation>그룹 만들기</f_translation> | ||
2999 | </string><string><a_file>strings.xml</a_file> | ||
3000 | <b_path>//TooltipFlagNoBuild</b_path> | ||
3001 | <c_attribute></c_attribute> | ||
3002 | <d_old></d_old> | ||
3003 | <e_new>No Build</e_new> | ||
3004 | <f_old_trans></f_old_trans> | ||
3005 | <f_translation>건축 금지</f_translation> | ||
3006 | </string><string><a_file>strings.xml</a_file> | ||
3007 | <b_path>//TooltipFlagNoEdit</b_path> | ||
3008 | <c_attribute></c_attribute> | ||
3009 | <d_old></d_old> | ||
3010 | <e_new>Group Build</e_new> | ||
3011 | <f_old_trans></f_old_trans> | ||
3012 | <f_translation>그룹 만들기</f_translation> | ||
3013 | </string><string><a_file>strings.xml</a_file> | ||
3014 | <b_path>//TooltipFlagNotSafe</b_path> | ||
3015 | <c_attribute></c_attribute> | ||
3016 | <d_old></d_old> | ||
3017 | <e_new>Not Safe</e_new> | ||
3018 | <f_old_trans></f_old_trans> | ||
3019 | <f_translation>안전하지 않음</f_translation> | ||
3020 | </string><string><a_file>strings.xml</a_file> | ||
3021 | <b_path>//TooltipFlagNoFly</b_path> | ||
3022 | <c_attribute></c_attribute> | ||
3023 | <d_old></d_old> | ||
3024 | <e_new>No Fly</e_new> | ||
3025 | <f_old_trans></f_old_trans> | ||
3026 | <f_translation>비행 금지</f_translation> | ||
3027 | </string><string><a_file>strings.xml</a_file> | ||
3028 | <b_path>//TooltipFlagGroupScripts</b_path> | ||
3029 | <c_attribute></c_attribute> | ||
3030 | <d_old></d_old> | ||
3031 | <e_new>Group Scripts</e_new> | ||
3032 | <f_old_trans></f_old_trans> | ||
3033 | <f_translation>그룹 스크립트</f_translation> | ||
3034 | </string><string><a_file>strings.xml</a_file> | ||
3035 | <b_path>//TooltipFlagNoScripts</b_path> | ||
3036 | <c_attribute></c_attribute> | ||
3037 | <d_old></d_old> | ||
3038 | <e_new>No Scripts</e_new> | ||
3039 | <f_old_trans></f_old_trans> | ||
3040 | <f_translation>스크립트 금지</f_translation> | ||
3041 | </string><string><a_file>strings.xml</a_file> | ||
3042 | <b_path>//TooltipLand</b_path> | ||
3043 | <c_attribute></c_attribute> | ||
3044 | <d_old></d_old> | ||
3045 | <e_new>Land:</e_new> | ||
3046 | <f_old_trans></f_old_trans> | ||
3047 | <f_translation>토지:</f_translation> | ||
3048 | </string><string><a_file>strings.xml</a_file> | ||
3049 | <b_path>//RetrievingData</b_path> | ||
3050 | <c_attribute></c_attribute> | ||
3051 | <d_old></d_old> | ||
3052 | <e_new>Retrieving...</e_new> | ||
3053 | <f_old_trans></f_old_trans> | ||
3054 | <f_translation>가져오는 중</f_translation> | ||
3055 | </string><string><a_file>strings.xml</a_file> | ||
3056 | <b_path>//LoadingData</b_path> | ||
3057 | <c_attribute></c_attribute> | 1205 | <c_attribute></c_attribute> |
3058 | <d_old></d_old> | 1206 | <d_old></d_old> |
3059 | <e_new>Loading...</e_new> | 1207 | <e_new>Loading...</e_new> |
3060 | <f_old_trans></f_old_trans> | 1208 | <f_old_trans></f_old_trans> |
3061 | <f_translation>로딩 중</f_translation> | 1209 | <f_translation>로딩 중...</f_translation> |
3062 | </string><string><a_file>strings.xml</a_file> | ||
3063 | <b_path>//AvatarNameNobody</b_path> | ||
3064 | <c_attribute></c_attribute> | ||
3065 | <d_old></d_old> | ||
3066 | <e_new>(nobody)</e_new> | ||
3067 | <f_old_trans></f_old_trans> | ||
3068 | <f_translation>(없음)</f_translation> | ||
3069 | </string><string><a_file>strings.xml</a_file> | ||
3070 | <b_path>//AvatarNameWaiting</b_path> | ||
3071 | <c_attribute></c_attribute> | ||
3072 | <d_old></d_old> | ||
3073 | <e_new>(waiting)</e_new> | ||
3074 | <f_old_trans></f_old_trans> | ||
3075 | <f_translation>(대기 중)</f_translation> | ||
3076 | </string><string><a_file>strings.xml</a_file> | ||
3077 | <b_path>//AvatarNameHippos</b_path> | ||
3078 | <c_attribute></c_attribute> | ||
3079 | <d_old></d_old> | ||
3080 | <e_new>(hippos)</e_new> | ||
3081 | <f_old_trans></f_old_trans> | ||
3082 | <f_translation>(하마)</f_translation> | ||
3083 | </string><string><a_file>strings.xml</a_file> | ||
3084 | <b_path>//GroupNameNone</b_path> | ||
3085 | <c_attribute></c_attribute> | ||
3086 | <d_old></d_old> | ||
3087 | <e_new>(none)</e_new> | ||
3088 | <f_old_trans></f_old_trans> | ||
3089 | <f_translation>(없음)</f_translation> | ||
3090 | </string><string><a_file>strings.xml</a_file> | ||
3091 | <b_path>//AssetErrorNone</b_path> | ||
3092 | <c_attribute></c_attribute> | ||
3093 | <d_old></d_old> | ||
3094 | <e_new>No error</e_new> | ||
3095 | <f_old_trans></f_old_trans> | ||
3096 | <f_translation>오류 없음</f_translation> | ||
3097 | </string><string><a_file>strings.xml</a_file> | ||
3098 | <b_path>//AssetErrorRequestFailed</b_path> | ||
3099 | <c_attribute></c_attribute> | ||
3100 | <d_old></d_old> | ||
3101 | <e_new>Asset request: failed</e_new> | ||
3102 | <f_old_trans></f_old_trans> | ||
3103 | <f_translation>자산 요청: 실패</f_translation> | ||
3104 | </string><string><a_file>strings.xml</a_file> | ||
3105 | <b_path>//AssetErrorNonexistentFile</b_path> | ||
3106 | <c_attribute></c_attribute> | ||
3107 | <d_old></d_old> | ||
3108 | <e_new>Asset request: non-existent file</e_new> | ||
3109 | <f_old_trans></f_old_trans> | ||
3110 | <f_translation>자산 요청: 파일이 존재하지 않습니다.</f_translation> | ||
3111 | </string><string><a_file>strings.xml</a_file> | ||
3112 | <b_path>//AssetErrorNotInDatabase</b_path> | ||
3113 | <c_attribute></c_attribute> | ||
3114 | <d_old></d_old> | ||
3115 | <e_new>Asset request: asset not found in database</e_new> | ||
3116 | <f_old_trans></f_old_trans> | ||
3117 | <f_translation>자산 요청: 데이터베이스에 자산이 없습니다.</f_translation> | ||
3118 | </string><string><a_file>strings.xml</a_file> | ||
3119 | <b_path>//AssetErrorEOF</b_path> | ||
3120 | <c_attribute></c_attribute> | ||
3121 | <d_old></d_old> | ||
3122 | <e_new>End of file</e_new> | ||
3123 | <f_old_trans></f_old_trans> | ||
3124 | <f_translation>파일 끝</f_translation> | ||
3125 | </string><string><a_file>strings.xml</a_file> | ||
3126 | <b_path>//AssetErrorCannotOpenFile</b_path> | ||
3127 | <c_attribute></c_attribute> | ||
3128 | <d_old></d_old> | ||
3129 | <e_new>Cannot open file</e_new> | ||
3130 | <f_old_trans></f_old_trans> | ||
3131 | <f_translation>파일을 열 수 없습니다.</f_translation> | ||
3132 | </string><string><a_file>strings.xml</a_file> | ||
3133 | <b_path>//AssetErrorFileNotFound</b_path> | ||
3134 | <c_attribute></c_attribute> | ||
3135 | <d_old></d_old> | ||
3136 | <e_new>File not found</e_new> | ||
3137 | <f_old_trans></f_old_trans> | ||
3138 | <f_translation>파일을 찾을 수 없습니다.</f_translation> | ||
3139 | </string><string><a_file>strings.xml</a_file> | ||
3140 | <b_path>//AssetErrorTCPTimeout</b_path> | ||
3141 | <c_attribute></c_attribute> | ||
3142 | <d_old></d_old> | ||
3143 | <e_new>File transfer timeout</e_new> | ||
3144 | <f_old_trans></f_old_trans> | ||
3145 | <f_translation>파일 전송 시간초과</f_translation> | ||
3146 | </string><string><a_file>strings.xml</a_file> | ||
3147 | <b_path>//AssetErrorCircuitGone</b_path> | ||
3148 | <c_attribute></c_attribute> | ||
3149 | <d_old></d_old> | ||
3150 | <e_new>Circuit gone</e_new> | ||
3151 | <f_old_trans></f_old_trans> | ||
3152 | <f_translation>연결이 끊겼습니다.</f_translation> | ||
3153 | </string><string><a_file>strings.xml</a_file> | ||
3154 | <b_path>//AssetErrorUnknownStatus</b_path> | ||
3155 | <c_attribute></c_attribute> | ||
3156 | <d_old></d_old> | ||
3157 | <e_new>Unknown status</e_new> | ||
3158 | <f_old_trans></f_old_trans> | ||
3159 | <f_translation>알 수 없는 상태</f_translation> | ||
3160 | </string><string><a_file>strings.xml</a_file> | ||
3161 | <b_path>//AvatarEditingApparance</b_path> | ||
3162 | <c_attribute></c_attribute> | ||
3163 | <d_old></d_old> | ||
3164 | <e_new>(Editing Appearance)</e_new> | ||
3165 | <f_old_trans></f_old_trans> | ||
3166 | <f_translation>(내 모습 편집)</f_translation> | ||
3167 | </string><string><a_file>strings.xml</a_file> | ||
3168 | <b_path>//AvatarAway</b_path> | ||
3169 | <c_attribute></c_attribute> | ||
3170 | <d_old></d_old> | ||
3171 | <e_new>Away</e_new> | ||
3172 | <f_old_trans></f_old_trans> | ||
3173 | <f_translation>자리비움</f_translation> | ||
3174 | </string><string><a_file>strings.xml</a_file> | ||
3175 | <b_path>//AvatarBusy</b_path> | ||
3176 | <c_attribute></c_attribute> | ||
3177 | <d_old></d_old> | ||
3178 | <e_new>Busy</e_new> | ||
3179 | <f_old_trans></f_old_trans> | ||
3180 | <f_translation>다른 용무 중</f_translation> | ||
3181 | </string><string><a_file>strings.xml</a_file> | ||
3182 | <b_path>//AvatarMuted</b_path> | ||
3183 | <c_attribute></c_attribute> | ||
3184 | <d_old></d_old> | ||
3185 | <e_new>Muted</e_new> | ||
3186 | <f_old_trans></f_old_trans> | ||
3187 | <f_translation>음소거</f_translation> | ||
3188 | </string><string><a_file>strings.xml</a_file> | ||
3189 | <b_path>//anim_express_afraid</b_path> | ||
3190 | <c_attribute></c_attribute> | ||
3191 | <d_old></d_old> | ||
3192 | <e_new>Afraid</e_new> | ||
3193 | <f_old_trans></f_old_trans> | ||
3194 | <f_translation>두려움</f_translation> | ||
3195 | </string><string><a_file>strings.xml</a_file> | ||
3196 | <b_path>//anim_express_anger</b_path> | ||
3197 | <c_attribute></c_attribute> | ||
3198 | <d_old></d_old> | ||
3199 | <e_new>Angry</e_new> | ||
3200 | <f_old_trans></f_old_trans> | ||
3201 | <f_translation>화남</f_translation> | ||
3202 | </string><string><a_file>strings.xml</a_file> | ||
3203 | <b_path>//anim_away</b_path> | ||
3204 | <c_attribute></c_attribute> | ||
3205 | <d_old></d_old> | ||
3206 | <e_new>Away</e_new> | ||
3207 | <f_old_trans></f_old_trans> | ||
3208 | <f_translation>자리비움</f_translation> | ||
3209 | </string><string><a_file>strings.xml</a_file> | ||
3210 | <b_path>//anim_backflip</b_path> | ||
3211 | <c_attribute></c_attribute> | ||
3212 | <d_old></d_old> | ||
3213 | <e_new>Backflip</e_new> | ||
3214 | <f_old_trans></f_old_trans> | ||
3215 | <f_translation>뒤공중제비</f_translation> | ||
3216 | </string><string><a_file>strings.xml</a_file> | ||
3217 | <b_path>//anim_express_laugh</b_path> | ||
3218 | <c_attribute></c_attribute> | ||
3219 | <d_old></d_old> | ||
3220 | <e_new>Belly Laugh</e_new> | ||
3221 | <f_old_trans></f_old_trans> | ||
3222 | <f_translation>포복 절도</f_translation> | ||
3223 | </string><string><a_file>strings.xml</a_file> | ||
3224 | <b_path>//anim_express_toothsmile</b_path> | ||
3225 | <c_attribute></c_attribute> | ||
3226 | <d_old></d_old> | ||
3227 | <e_new>BigSmile</e_new> | ||
3228 | <f_old_trans></f_old_trans> | ||
3229 | <f_translation>함박 웃음</f_translation> | ||
3230 | </string><string><a_file>strings.xml</a_file> | ||
3231 | <b_path>//anim_blowkiss</b_path> | ||
3232 | <c_attribute></c_attribute> | ||
3233 | <d_old></d_old> | ||
3234 | <e_new>Blow Kiss</e_new> | ||
3235 | <f_old_trans></f_old_trans> | ||
3236 | <f_translation>키스를 날리는 모습</f_translation> | ||
3237 | </string><string><a_file>strings.xml</a_file> | ||
3238 | <b_path>//anim_express_bored</b_path> | ||
3239 | <c_attribute></c_attribute> | ||
3240 | <d_old></d_old> | ||
3241 | <e_new>Bored</e_new> | ||
3242 | <f_old_trans></f_old_trans> | ||
3243 | <f_translation>지루함</f_translation> | ||
3244 | </string><string><a_file>strings.xml</a_file> | ||
3245 | <b_path>//anim_bow</b_path> | ||
3246 | <c_attribute></c_attribute> | ||
3247 | <d_old></d_old> | ||
3248 | <e_new>Bow</e_new> | ||
3249 | <f_old_trans></f_old_trans> | ||
3250 | <f_translation>인사</f_translation> | ||
3251 | </string><string><a_file>strings.xml</a_file> | ||
3252 | <b_path>//anim_clap</b_path> | ||
3253 | <c_attribute></c_attribute> | ||
3254 | <d_old></d_old> | ||
3255 | <e_new>Clap</e_new> | ||
3256 | <f_old_trans></f_old_trans> | ||
3257 | <f_translation>박수</f_translation> | ||
3258 | </string><string><a_file>strings.xml</a_file> | ||
3259 | <b_path>//anim_courtbow</b_path> | ||
3260 | <c_attribute></c_attribute> | ||
3261 | <d_old></d_old> | ||
3262 | <e_new>Court Bow</e_new> | ||
3263 | <f_old_trans></f_old_trans> | ||
3264 | <f_translation>알현</f_translation> | ||
3265 | </string><string><a_file>strings.xml</a_file> | ||
3266 | <b_path>//anim_express_cry</b_path> | ||
3267 | <c_attribute></c_attribute> | ||
3268 | <d_old></d_old> | ||
3269 | <e_new>Cry</e_new> | ||
3270 | <f_old_trans></f_old_trans> | ||
3271 | <f_translation>울기</f_translation> | ||
3272 | </string><string><a_file>strings.xml</a_file> | ||
3273 | <b_path>//anim_dance1</b_path> | ||
3274 | <c_attribute></c_attribute> | ||
3275 | <d_old></d_old> | ||
3276 | <e_new>Dance 1</e_new> | ||
3277 | <f_old_trans></f_old_trans> | ||
3278 | <f_translation>댄스 1</f_translation> | ||
3279 | </string><string><a_file>strings.xml</a_file> | ||
3280 | <b_path>//anim_dance2</b_path> | ||
3281 | <c_attribute></c_attribute> | ||
3282 | <d_old></d_old> | ||
3283 | <e_new>Dance 2</e_new> | ||
3284 | <f_old_trans></f_old_trans> | ||
3285 | <f_translation>댄스 2</f_translation> | ||
3286 | </string><string><a_file>strings.xml</a_file> | ||
3287 | <b_path>//anim_dance3</b_path> | ||
3288 | <c_attribute></c_attribute> | ||
3289 | <d_old></d_old> | ||
3290 | <e_new>Dance 3</e_new> | ||
3291 | <f_old_trans></f_old_trans> | ||
3292 | <f_translation>댄스 3</f_translation> | ||
3293 | </string><string><a_file>strings.xml</a_file> | ||
3294 | <b_path>//anim_dance4</b_path> | ||
3295 | <c_attribute></c_attribute> | ||
3296 | <d_old></d_old> | ||
3297 | <e_new>Dance 4</e_new> | ||
3298 | <f_old_trans></f_old_trans> | ||
3299 | <f_translation>댄스 4</f_translation> | ||
3300 | </string><string><a_file>strings.xml</a_file> | ||
3301 | <b_path>//anim_dance5</b_path> | ||
3302 | <c_attribute></c_attribute> | ||
3303 | <d_old></d_old> | ||
3304 | <e_new>Dance 5</e_new> | ||
3305 | <f_old_trans></f_old_trans> | ||
3306 | <f_translation>댄스 5</f_translation> | ||
3307 | </string><string><a_file>strings.xml</a_file> | ||
3308 | <b_path>//anim_dance6</b_path> | ||
3309 | <c_attribute></c_attribute> | ||
3310 | <d_old></d_old> | ||
3311 | <e_new>Dance 6</e_new> | ||
3312 | <f_old_trans></f_old_trans> | ||
3313 | <f_translation>댄스 6</f_translation> | ||
3314 | </string><string><a_file>strings.xml</a_file> | ||
3315 | <b_path>//anim_dance7</b_path> | ||
3316 | <c_attribute></c_attribute> | ||
3317 | <d_old></d_old> | ||
3318 | <e_new>Dance 7</e_new> | ||
3319 | <f_old_trans></f_old_trans> | ||
3320 | <f_translation>댄스 7</f_translation> | ||
3321 | </string><string><a_file>strings.xml</a_file> | ||
3322 | <b_path>//anim_dance8</b_path> | ||
3323 | <c_attribute></c_attribute> | ||
3324 | <d_old></d_old> | ||
3325 | <e_new>Dance 8</e_new> | ||
3326 | <f_old_trans></f_old_trans> | ||
3327 | <f_translation>댄스 8</f_translation> | ||
3328 | </string><string><a_file>strings.xml</a_file> | ||
3329 | <b_path>//anim_express_disdain</b_path> | ||
3330 | <c_attribute></c_attribute> | ||
3331 | <d_old></d_old> | ||
3332 | <e_new>Disdain</e_new> | ||
3333 | <f_old_trans></f_old_trans> | ||
3334 | <f_translation>경멸</f_translation> | ||
3335 | </string><string><a_file>strings.xml</a_file> | ||
3336 | <b_path>//anim_drink</b_path> | ||
3337 | <c_attribute></c_attribute> | ||
3338 | <d_old></d_old> | ||
3339 | <e_new>Drink</e_new> | ||
3340 | <f_old_trans></f_old_trans> | ||
3341 | <f_translation>술 취함</f_translation> | ||
3342 | </string><string><a_file>strings.xml</a_file> | ||
3343 | <b_path>//anim_express_embarrased</b_path> | ||
3344 | <c_attribute></c_attribute> | ||
3345 | <d_old></d_old> | ||
3346 | <e_new>Embarrassed</e_new> | ||
3347 | <f_old_trans></f_old_trans> | ||
3348 | <f_translation>당황함</f_translation> | ||
3349 | </string><string><a_file>strings.xml</a_file> | ||
3350 | <b_path>//anim_angry_fingerwag</b_path> | ||
3351 | <c_attribute></c_attribute> | ||
3352 | <d_old></d_old> | ||
3353 | <e_new>Finger Wag</e_new> | ||
3354 | <f_old_trans></f_old_trans> | ||
3355 | <f_translation>손가락 흔들기</f_translation> | ||
3356 | </string><string><a_file>strings.xml</a_file> | ||
3357 | <b_path>//anim_fist_pump</b_path> | ||
3358 | <c_attribute></c_attribute> | ||
3359 | <d_old></d_old> | ||
3360 | <e_new>Fist Pump</e_new> | ||
3361 | <f_old_trans></f_old_trans> | ||
3362 | <f_translation>주먹 휘두르기</f_translation> | ||
3363 | </string><string><a_file>strings.xml</a_file> | ||
3364 | <b_path>//anim_yoga_float</b_path> | ||
3365 | <c_attribute></c_attribute> | ||
3366 | <d_old></d_old> | ||
3367 | <e_new>Floating Yoga</e_new> | ||
3368 | <f_old_trans></f_old_trans> | ||
3369 | <f_translation>공중부양</f_translation> | ||
3370 | </string><string><a_file>strings.xml</a_file> | ||
3371 | <b_path>//anim_express_frown</b_path> | ||
3372 | <c_attribute></c_attribute> | ||
3373 | <d_old></d_old> | ||
3374 | <e_new>Frown</e_new> | ||
3375 | <f_old_trans></f_old_trans> | ||
3376 | <f_translation>표정 찡그림</f_translation> | ||
3377 | </string><string><a_file>strings.xml</a_file> | ||
3378 | <b_path>//anim_impatient</b_path> | ||
3379 | <c_attribute></c_attribute> | ||
3380 | <d_old></d_old> | ||
3381 | <e_new>Impatient</e_new> | ||
3382 | <f_old_trans></f_old_trans> | ||
3383 | <f_translation>조급함</f_translation> | ||
3384 | </string><string><a_file>strings.xml</a_file> | ||
3385 | <b_path>//anim_jumpforjoy</b_path> | ||
3386 | <c_attribute></c_attribute> | ||
3387 | <d_old></d_old> | ||
3388 | <e_new>Jump For Joy</e_new> | ||
3389 | <f_old_trans></f_old_trans> | ||
3390 | <f_translation>기쁨에 펄쩍 뜀</f_translation> | ||
3391 | </string><string><a_file>strings.xml</a_file> | ||
3392 | <b_path>//anim_kissmybutt</b_path> | ||
3393 | <c_attribute></c_attribute> | ||
3394 | <d_old></d_old> | ||
3395 | <e_new>Kiss My Butt</e_new> | ||
3396 | <f_old_trans></f_old_trans> | ||
3397 | <f_translation>내 엉덩이에 키스</f_translation> | ||
3398 | </string><string><a_file>strings.xml</a_file> | ||
3399 | <b_path>//anim_express_kiss</b_path> | ||
3400 | <c_attribute></c_attribute> | ||
3401 | <d_old></d_old> | ||
3402 | <e_new>Kiss</e_new> | ||
3403 | <f_old_trans></f_old_trans> | ||
3404 | <f_translation>키스</f_translation> | ||
3405 | </string><string><a_file>strings.xml</a_file> | ||
3406 | <b_path>//anim_laugh_short</b_path> | ||
3407 | <c_attribute></c_attribute> | ||
3408 | <d_old></d_old> | ||
3409 | <e_new>Laugh</e_new> | ||
3410 | <f_old_trans></f_old_trans> | ||
3411 | <f_translation>웃음</f_translation> | ||
3412 | </string><string><a_file>strings.xml</a_file> | ||
3413 | <b_path>//anim_musclebeach</b_path> | ||
3414 | <c_attribute></c_attribute> | ||
3415 | <d_old></d_old> | ||
3416 | <e_new>Muscle Beach</e_new> | ||
3417 | <f_old_trans></f_old_trans> | ||
3418 | <f_translation>근육 비치</f_translation> | ||
3419 | </string><string><a_file>strings.xml</a_file> | ||
3420 | <b_path>//anim_no_unhappy</b_path> | ||
3421 | <c_attribute></c_attribute> | ||
3422 | <d_old></d_old> | ||
3423 | <e_new>No (Unhappy)</e_new> | ||
3424 | <f_old_trans></f_old_trans> | ||
3425 | <f_translation>강한 부정</f_translation> | ||
3426 | </string><string><a_file>strings.xml</a_file> | ||
3427 | <b_path>//anim_no_head</b_path> | ||
3428 | <c_attribute></c_attribute> | ||
3429 | <d_old></d_old> | ||
3430 | <e_new>No</e_new> | ||
3431 | <f_old_trans></f_old_trans> | ||
3432 | <f_translation>부정</f_translation> | ||
3433 | </string><string><a_file>strings.xml</a_file> | ||
3434 | <b_path>//anim_nyanya</b_path> | ||
3435 | <c_attribute></c_attribute> | ||
3436 | <d_old></d_old> | ||
3437 | <e_new>Nya-nya-nya</e_new> | ||
3438 | <f_old_trans></f_old_trans> | ||
3439 | <f_translation>냐-냐-냐</f_translation> | ||
3440 | </string><string><a_file>strings.xml</a_file> | ||
3441 | <b_path>//anim_punch_onetwo</b_path> | ||
3442 | <c_attribute></c_attribute> | ||
3443 | <d_old></d_old> | ||
3444 | <e_new>One-Two Punch</e_new> | ||
3445 | <f_old_trans></f_old_trans> | ||
3446 | <f_translation>원투 펀치</f_translation> | ||
3447 | </string><string><a_file>strings.xml</a_file> | ||
3448 | <b_path>//anim_express_open_mouth</b_path> | ||
3449 | <c_attribute></c_attribute> | ||
3450 | <d_old></d_old> | ||
3451 | <e_new>Open Mouth</e_new> | ||
3452 | <f_old_trans></f_old_trans> | ||
3453 | <f_translation>입을 크게 벌린 모습</f_translation> | ||
3454 | </string><string><a_file>strings.xml</a_file> | ||
3455 | <b_path>//anim_peace</b_path> | ||
3456 | <c_attribute></c_attribute> | ||
3457 | <d_old></d_old> | ||
3458 | <e_new>Peace</e_new> | ||
3459 | <f_old_trans></f_old_trans> | ||
3460 | <f_translation>평화</f_translation> | ||
3461 | </string><string><a_file>strings.xml</a_file> | ||
3462 | <b_path>//anim_point_you</b_path> | ||
3463 | <c_attribute></c_attribute> | ||
3464 | <d_old></d_old> | ||
3465 | <e_new>Point at Other</e_new> | ||
3466 | <f_old_trans></f_old_trans> | ||
3467 | <f_translation>다른 사람을 가리킴</f_translation> | ||
3468 | </string><string><a_file>strings.xml</a_file> | ||
3469 | <b_path>//anim_point_me</b_path> | ||
3470 | <c_attribute></c_attribute> | ||
3471 | <d_old></d_old> | ||
3472 | <e_new>Point at Self</e_new> | ||
3473 | <f_old_trans></f_old_trans> | ||
3474 | <f_translation>자신을 가리킴</f_translation> | ||
3475 | </string><string><a_file>strings.xml</a_file> | ||
3476 | <b_path>//anim_punch_l</b_path> | ||
3477 | <c_attribute></c_attribute> | ||
3478 | <d_old></d_old> | ||
3479 | <e_new>Punch Left</e_new> | ||
3480 | <f_old_trans></f_old_trans> | ||
3481 | <f_translation>좌측 펀치</f_translation> | ||
3482 | </string><string><a_file>strings.xml</a_file> | ||
3483 | <b_path>//anim_punch_r</b_path> | ||
3484 | <c_attribute></c_attribute> | ||
3485 | <d_old></d_old> | ||
3486 | <e_new>Punch Right</e_new> | ||
3487 | <f_old_trans></f_old_trans> | ||
3488 | <f_translation>우측 펀치</f_translation> | ||
3489 | </string><string><a_file>strings.xml</a_file> | ||
3490 | <b_path>//anim_rps_countdown</b_path> | ||
3491 | <c_attribute></c_attribute> | ||
3492 | <d_old></d_old> | ||
3493 | <e_new>RPS count</e_new> | ||
3494 | <f_old_trans></f_old_trans> | ||
3495 | <f_translation>가위-바위-보</f_translation> | ||
3496 | </string><string><a_file>strings.xml</a_file> | ||
3497 | <b_path>//anim_rps_paper</b_path> | ||
3498 | <c_attribute></c_attribute> | ||
3499 | <d_old></d_old> | ||
3500 | <e_new>RPS paper</e_new> | ||
3501 | <f_old_trans></f_old_trans> | ||
3502 | <f_translation>가위-바위-보에 보자기</f_translation> | ||
3503 | </string><string><a_file>strings.xml</a_file> | ||
3504 | <b_path>//anim_rps_rock</b_path> | ||
3505 | <c_attribute></c_attribute> | ||
3506 | <d_old></d_old> | ||
3507 | <e_new>RPS rock</e_new> | ||
3508 | <f_old_trans></f_old_trans> | ||
3509 | <f_translation>가위-바위-보에 바위</f_translation> | ||
3510 | </string><string><a_file>strings.xml</a_file> | ||
3511 | <b_path>//anim_rps_scissors</b_path> | ||
3512 | <c_attribute></c_attribute> | ||
3513 | <d_old></d_old> | ||
3514 | <e_new>RPS scissors</e_new> | ||
3515 | <f_old_trans></f_old_trans> | ||
3516 | <f_translation>가위-바위-보에 가위</f_translation> | ||
3517 | </string><string><a_file>strings.xml</a_file> | 1210 | </string><string><a_file>strings.xml</a_file> |
3518 | <b_path>//anim_express_repulsed</b_path> | 1211 | <b_path>//worldmap_offline</b_path> |
3519 | <c_attribute></c_attribute> | 1212 | <c_attribute></c_attribute> |
3520 | <d_old></d_old> | 1213 | <d_old></d_old> |
3521 | <e_new>Repulsed</e_new> | 1214 | <e_new>Offline</e_new> |
3522 | <f_old_trans></f_old_trans> | 1215 | <f_old_trans></f_old_trans> |
3523 | <f_translation>거</f_translation> | 1216 | <f_translation>프인</f_translation> |
3524 | </string><string><a_file>strings.xml</a_file> | 1217 | </string><string><a_file>strings.xml</a_file> |
3525 | <b_path>//anim_kick_roundhouse_r</b_path> | 1218 | <b_path>//whisper</b_path> |
3526 | <c_attribute></c_attribute> | 1219 | <c_attribute></c_attribute> |
3527 | <d_old></d_old> | 1220 | <d_old></d_old> |
3528 | <e_new>Roundhouse Kick</e_new> | 1221 | <e_new>whispers:</e_new> |
3529 | <f_old_trans></f_old_trans> | 1222 | <f_old_trans></f_old_trans> |
3530 | <f_translation>발기</f_translation> | 1223 | <f_translation>삭이기:</f_translation> |
3531 | </string><string><a_file>strings.xml</a_file> | 1224 | </string><string><a_file>strings.xml</a_file> |
3532 | <b_path>//anim_express_sad</b_path> | 1225 | <b_path>//shout</b_path> |
3533 | <c_attribute></c_attribute> | 1226 | <c_attribute></c_attribute> |
3534 | <d_old></d_old> | 1227 | <d_old></d_old> |
3535 | <e_new>Sad</e_new> | 1228 | <e_new>shouts:</e_new> |
3536 | <f_old_trans></f_old_trans> | 1229 | <f_old_trans></f_old_trans> |
3537 | <f_translation>슬픔</f_translation> | 1230 | <f_translation>외치기:</f_translation> |
3538 | </string><string><a_file>strings.xml</a_file> | ||
3539 | <b_path>//anim_salute</b_path> | ||
3540 | <c_attribute></c_attribute> | ||
3541 | <d_old></d_old> | ||
3542 | <e_new>Salute</e_new> | ||
3543 | <f_old_trans></f_old_trans> | ||
3544 | <f_translation>경례</f_translation> | ||
3545 | </string><string><a_file>strings.xml</a_file> | ||
3546 | <b_path>//anim_shout</b_path> | ||
3547 | <c_attribute></c_attribute> | ||
3548 | <d_old></d_old> | ||
3549 | <e_new>Shout</e_new> | ||
3550 | <f_old_trans></f_old_trans> | ||
3551 | <f_translation>외치기</f_translation> | ||
3552 | </string><string><a_file>strings.xml</a_file> | ||
3553 | <b_path>//anim_express_shrug</b_path> | ||
3554 | <c_attribute></c_attribute> | ||
3555 | <d_old></d_old> | ||
3556 | <e_new>Shrug</e_new> | ||
3557 | <f_old_trans></f_old_trans> | ||
3558 | <f_translation>어깨 으쓱하기</f_translation> | ||
3559 | </string><string><a_file>strings.xml</a_file> | ||
3560 | <b_path>//anim_express_smile</b_path> | ||
3561 | <c_attribute></c_attribute> | ||
3562 | <d_old></d_old> | ||
3563 | <e_new>Smile</e_new> | ||
3564 | <f_old_trans></f_old_trans> | ||
3565 | <f_translation>미소</f_translation> | ||
3566 | </string><string><a_file>strings.xml</a_file> | ||
3567 | <b_path>//anim_smoke_idle</b_path> | ||
3568 | <c_attribute></c_attribute> | ||
3569 | <d_old></d_old> | ||
3570 | <e_new>Smoke Idle</e_new> | ||
3571 | <f_old_trans></f_old_trans> | ||
3572 | <f_translation>담배를 쥐고 있는 모습</f_translation> | ||
3573 | </string><string><a_file>strings.xml</a_file> | ||
3574 | <b_path>//anim_smoke_inhale</b_path> | ||
3575 | <c_attribute></c_attribute> | ||
3576 | <d_old></d_old> | ||
3577 | <e_new>Smoke Inhale</e_new> | ||
3578 | <f_old_trans></f_old_trans> | ||
3579 | <f_translation>담배를 빨아들이는 모습</f_translation> | ||
3580 | </string><string><a_file>strings.xml</a_file> | ||
3581 | <b_path>//anim_smoke_throw_down</b_path> | ||
3582 | <c_attribute></c_attribute> | ||
3583 | <d_old></d_old> | ||
3584 | <e_new>Smoke Throw Down</e_new> | ||
3585 | <f_old_trans></f_old_trans> | ||
3586 | <f_translation>담배 던지기</f_translation> | ||
3587 | </string><string><a_file>strings.xml</a_file> | ||
3588 | <b_path>//anim_express_surprise</b_path> | ||
3589 | <c_attribute></c_attribute> | ||
3590 | <d_old></d_old> | ||
3591 | <e_new>Surprise</e_new> | ||
3592 | <f_old_trans></f_old_trans> | ||
3593 | <f_translation>놀람</f_translation> | ||
3594 | </string><string><a_file>strings.xml</a_file> | ||
3595 | <b_path>//anim_sword_strike_r</b_path> | ||
3596 | <c_attribute></c_attribute> | ||
3597 | <d_old></d_old> | ||
3598 | <e_new>Sword Strike</e_new> | ||
3599 | <f_old_trans></f_old_trans> | ||
3600 | <f_translation>검 베기 </f_translation> | ||
3601 | </string><string><a_file>strings.xml</a_file> | ||
3602 | <b_path>//anim_angry_tantrum</b_path> | ||
3603 | <c_attribute></c_attribute> | ||
3604 | <d_old></d_old> | ||
3605 | <e_new>Tantrum</e_new> | ||
3606 | <f_old_trans></f_old_trans> | ||
3607 | <f_translation>짜증</f_translation> | ||
3608 | </string><string><a_file>strings.xml</a_file> | ||
3609 | <b_path>//anim_express_tongue_out</b_path> | ||
3610 | <c_attribute></c_attribute> | ||
3611 | <d_old></d_old> | ||
3612 | <e_new>TongueOut</e_new> | ||
3613 | <f_old_trans></f_old_trans> | ||
3614 | <f_translation>메롱</f_translation> | ||
3615 | </string><string><a_file>strings.xml</a_file> | ||
3616 | <b_path>//anim_hello</b_path> | ||
3617 | <c_attribute></c_attribute> | ||
3618 | <d_old></d_old> | ||
3619 | <e_new>Wave</e_new> | ||
3620 | <f_old_trans></f_old_trans> | ||
3621 | <f_translation>손 흔들기</f_translation> | ||
3622 | </string><string><a_file>strings.xml</a_file> | ||
3623 | <b_path>//anim_whisper</b_path> | ||
3624 | <c_attribute></c_attribute> | ||
3625 | <d_old></d_old> | ||
3626 | <e_new>Whisper</e_new> | ||
3627 | <f_old_trans></f_old_trans> | ||
3628 | <f_translation>속삭임</f_translation> | ||
3629 | </string><string><a_file>strings.xml</a_file> | ||
3630 | <b_path>//anim_whistle</b_path> | ||
3631 | <c_attribute></c_attribute> | ||
3632 | <d_old></d_old> | ||
3633 | <e_new>Whistle</e_new> | ||
3634 | <f_old_trans></f_old_trans> | ||
3635 | <f_translation>휘파람</f_translation> | ||
3636 | </string><string><a_file>strings.xml</a_file> | ||
3637 | <b_path>//anim_express_wink</b_path> | ||
3638 | <c_attribute></c_attribute> | ||
3639 | <d_old></d_old> | ||
3640 | <e_new>Wink</e_new> | ||
3641 | <f_old_trans></f_old_trans> | ||
3642 | <f_translation>윙크</f_translation> | ||
3643 | </string><string><a_file>strings.xml</a_file> | ||
3644 | <b_path>//anim_wink_hollywood</b_path> | ||
3645 | <c_attribute></c_attribute> | ||
3646 | <d_old></d_old> | ||
3647 | <e_new>Wink (Hollywood)</e_new> | ||
3648 | <f_old_trans></f_old_trans> | ||
3649 | <f_translation>윙크(할리우드)</f_translation> | ||
3650 | </string><string><a_file>strings.xml</a_file> | ||
3651 | <b_path>//anim_express_worry</b_path> | ||
3652 | <c_attribute></c_attribute> | ||
3653 | <d_old></d_old> | ||
3654 | <e_new>Worry</e_new> | ||
3655 | <f_old_trans></f_old_trans> | ||
3656 | <f_translation>걱정</f_translation> | ||
3657 | </string><string><a_file>strings.xml</a_file> | ||
3658 | <b_path>//anim_yes_happy</b_path> | ||
3659 | <c_attribute></c_attribute> | ||
3660 | <d_old></d_old> | ||
3661 | <e_new>Yes (Happy)</e_new> | ||
3662 | <f_old_trans></f_old_trans> | ||
3663 | <f_translation>강항 동의</f_translation> | ||
3664 | </string><string><a_file>strings.xml</a_file> | ||
3665 | <b_path>//anim_yes_head</b_path> | ||
3666 | <c_attribute></c_attribute> | ||
3667 | <d_old></d_old> | ||
3668 | <e_new>Yes</e_new> | ||
3669 | <f_old_trans></f_old_trans> | ||
3670 | <f_translation>동의</f_translation> | ||
3671 | </string> | 1231 | </string> |
3672 | <string><a_file>alerts.xml</a_file> | ||
3673 | <b_path>//ChangeSkin/message</b_path> | ||
3674 | <c_attribute></c_attribute> | ||
3675 | <d_old></d_old> | ||
3676 | <e_new> | ||
3677 | The new skin will appear after you restart [SECOND_LIFE]. | ||
3678 | </e_new> | ||
3679 | <f_old_trans></f_old_trans> | ||
3680 | <f_translation> | ||
3681 | 새로운 스킨은 [SECOND_LIFE]를 재시동후 적용 됩니다. | ||
3682 | </f_translation></string><string><a_file>floater_joystick.xml</a_file> | ||
3683 | <b_path>/Joystick/enable_joystick</b_path> | ||
3684 | <c_attribute></c_attribute> | ||
3685 | <d_old></d_old> | ||
3686 | <e_new>Enable Joystick:</e_new> | ||
3687 | <f_old_trans></f_old_trans> | ||
3688 | <f_translation>죠이스틱 활성:</f_translation></string><string><a_file>notify.xml</a_file> | ||
3689 | <b_path>//UnableToOpenCommandURL/message</b_path> | ||
3690 | <c_attribute></c_attribute> | ||
3691 | <d_old></d_old> | ||
3692 | <e_new> | ||
3693 | The URL you clicked cannot be opened from this web browser. | ||
3694 | </e_new> | ||
3695 | <f_old_trans></f_old_trans> | ||
3696 | <f_translation> | ||
3697 | 본 URL은 현재의 웹브라우져에서 볼 수 없습니다. | ||
3698 | </f_translation></string><string><a_file>panel_preferences_skins.xml</a_file> | ||
3699 | <b_path>/Skins panel</b_path> | ||
3700 | <c_attribute>label</c_attribute> | ||
3701 | <d_old></d_old> | ||
3702 | <e_new>Skins</e_new> | ||
3703 | <f_old_trans></f_old_trans> | ||
3704 | <f_translation>스킨</f_translation></string><string><a_file>panel_preferences_skins.xml</a_file> | ||
3705 | <b_path>/Skins panel/muting_text</b_path> | ||
3706 | <c_attribute></c_attribute> | ||
3707 | <d_old></d_old> | ||
3708 | <e_new> | ||
3709 | Select a skin (requires restart): | ||
3710 | </e_new> | ||
3711 | <f_old_trans></f_old_trans> | ||
3712 | <f_translation> | ||
3713 | 스킨 선택(재시동 필요): | ||
3714 | </f_translation></string><string><a_file>panel_preferences_skins.xml</a_file> | ||
3715 | <b_path>/Skins panel/skin_selection/default</b_path> | ||
3716 | <c_attribute></c_attribute> | ||
3717 | <d_old></d_old> | ||
3718 | <e_new> | ||
3719 | Classic | ||
3720 | </e_new> | ||
3721 | <f_old_trans></f_old_trans> | ||
3722 | <f_translation> | ||
3723 | 클래식 | ||
3724 | </f_translation></string><string><a_file>panel_preferences_skins.xml</a_file> | ||
3725 | <b_path>/Skins panel/skin_selection/silver</b_path> | ||
3726 | <c_attribute></c_attribute> | ||
3727 | <d_old></d_old> | ||
3728 | <e_new> | ||
3729 | Silver | ||
3730 | </e_new> | ||
3731 | <f_old_trans></f_old_trans> | ||
3732 | <f_translation> | ||
3733 | 실버 | ||
3734 | </f_translation></string> | ||
3735 | </strings> | 1232 | </strings> |
diff --git a/linden/indra/newview/skins/default/xui/ko/need_to_update.xml b/linden/indra/newview/skins/default/xui/ko/need_to_update.xml index 27b7cf9..a94271c 100644 --- a/linden/indra/newview/skins/default/xui/ko/need_to_update.xml +++ b/linden/indra/newview/skins/default/xui/ko/need_to_update.xml | |||
@@ -1,519 +1,621 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>alerts.xml</a_file> | 4 | <string><a_file>alerts.xml</a_file> |
5 | <b_path>//GrantModifyRights/message</b_path> | 5 | <b_path>//ClickPublishHelpAvatar/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 | Selecting "Show in Search" will show: |
9 | ANY objects you may have in-world. Be VERY careful when handing | 9 | - my profile in search results |
10 | out this permission. | 10 | - a link to my profile in public group pages |
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 | Selecting "Show in Search" will show: |
15 | delete or take ANY objects you may have in-world. Be VERY careful | 14 | - my profile in search results |
16 | when handing out this permission. | 15 | - a link to my profile in public group pages |
17 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | ||
18 | </e_new> | 16 | </e_new> |
19 | <f_translation> | 17 | <f_translation> |
20 | 제3의 주민에게 수정 권한을 부여함으로써, 제3의 주민은 사용자가 인월드에서 가지고 있는 오브젝트 모두를 | 18 | "검색 보기" 옵션을 선택하면 |
21 | 변경, 삭제 또는 가져올 수 있습니다. 본 허가권의 취급 시 각별히 | 19 | - 내 프로필 검색 결과 |
22 | 주의하십시오. | 20 | - 공개 그룹 내 프로필 페이지로 링크 연결 보기를 할 수 있습니다. |
23 | [FIRST_NAME] [LAST_NAME]에게 수정할 수 있는 권리를 부여하시겠습니까? | ||
24 | </f_translation> | 21 | </f_translation> |
25 | <f_old_trans> | 22 | <f_old_trans> |
26 | 제3의 주민에게 수정 권한을 부여함으로써, 제3의 주민은 본인이 가지고 있는 오브젝트 모두를 | 23 | 검색 보기 |
27 | 변경할 수 있습니다. 본 허가권의 취급 시 주의 | ||
28 | 하십시오. | ||
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>alerts.xml</a_file> |
32 | <b_path>//CannotBuyLandNoRegion/message</b_path> | 26 | <b_path>//ClickWebProfileHelpAvatar/message</b_path> |
33 | <c_attribute></c_attribute> | 27 | <c_attribute></c_attribute> |
34 | <d_old> | 28 | <d_old> |
35 | Unable to buy land: | 29 | If this resident has a web profile URL set then you can: |
36 | Cannot find the region this land is in. | 30 | * Click Load to load the page with the embedded web browser. |
31 | * Click Open to view externally in your default web browser. | ||
32 | |||
33 | When viewing your profile you can enter any URL as your Web Profile. | ||
34 | Residents can visit the URL you specify when they view your profile. | ||
37 | </d_old> | 35 | </d_old> |
38 | <e_new> | 36 | <e_new> |
39 | Unable to buy land: | 37 | If this resident has set a web profile URL then you can: |
40 | Cannot find the region this land is in. | 38 | * Click "Load" to load the page with the embedded web browser. |
39 | * Click Load->"Open in external browser" to view externally. | ||
40 | * Click Load->"Home URL" to return to resident's web profile if you've navigated away. | ||
41 | |||
42 | When viewing your own profile you can enter any URL as your web profile and click OK to set it. | ||
43 | Other residents can visit the URL you set when they view your profile. | ||
41 | </e_new> | 44 | </e_new> |
42 | <f_translation> | 45 | <f_translation> |
43 | 토지를 구매하지 못했습니다: | 46 | 이 주민이 웹 프로필 URL을 가지고 있으면 다음을 할 수 있습니다: |
44 | 이 토지가 소속된 지역을 찾을 수 없습니다. | 47 | * "불러오기"를 클릭하여 웹 브라우저에서 페이지를 불러옵니다. |
48 | * 불러오기->"외부 브라우저에서 열기"를 클릭하면 외부 웹 브라우저에서 웹 프로필을 볼 수 있습니다. | ||
49 | * 주민이 사이트를 탐색할 때 불러오기->"홈 URL"을 클릭하면 주민의 웹 프로필로 되돌아옵니다. | ||
50 | |||
51 | 내 프로필을 볼 때는 웹 프로필과 같이 URL을 입력할 수 있으며, '확인'을 클릭해서 해당 URL을 설정할 수 있습니다. | ||
52 | 다른 주민들이 내 프로필을 볼 경우, 주민들은 내가 설정한 URL을 방문할 수 있습니다. | ||
45 | </f_translation> | 53 | </f_translation> |
46 | <f_old_trans> | 54 | <f_old_trans> |
47 | 토지를 구매하지 못했습니다: | 55 | 웹 프로필 URL이 있으면 다음을 할 수 있음: |
48 | 이 토지가 소속된 지역을 찾을 수 없습니다. | 56 | * 불러오기를 클릭하여 세컨드라이프 상의 웹 브라우저에서 웹프로필을 불러옵니다. |
57 | *열기를 클릭하여 외부 웹 브라우저에서 웹 프로필을 볼 수 있습니다. | ||
58 | |||
59 | 내 프로필을 볼 때는 웹 프로필과 같이 URL을 입력할 수 있습니다. | ||
60 | 주민들이 내 프로필을 볼 경우내가 지정한 URL의 웹 프로필을 볼 수 있습니다. | ||
49 | </f_old_trans> | 61 | </f_old_trans> |
50 | </string><string><a_file>alerts.xml</a_file> | 62 | </string><string><a_file>alerts.xml</a_file> |
51 | <b_path>//ParcelCanPlayMedia/message</b_path> | 63 | <b_path>//PromptMissingSubjMsg/message</b_path> |
52 | <c_attribute></c_attribute> | 64 | <c_attribute></c_attribute> |
53 | <d_old> | 65 | <d_old> |
54 | This location can play streaming video. | 66 | Send postcard with the default subject or message? |
55 | Streaming video requires a 768 kbps or | ||
56 | faster Internet connection. | ||
57 | |||
58 | Play streaming video when available? | ||
59 | (You can change this option later under | ||
60 | Preferences > Audio & Video.) | ||
61 | </d_old> | 67 | </d_old> |
62 | <e_new> | 68 | <e_new> |
63 | This location can play streaming media. | 69 | Email snapshot with the default subject or message? |
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 | </e_new> |
70 | <f_translation> | 71 | <f_translation> |
71 | 이 지역에서는 스트리밍 미디어를 재생할 수 있습니다. | 72 | 기본 제목과 메시지로 만들어진 스냅샷을 이메일로 보내시겠습니까? |
72 | 스트리밍 미디어를 재생하려면 고속 인터넷 연결이 필요합니다. | ||
73 | |||
74 | 가능한 경우 스트리밍 미디어를 재생하시겠습니까? | ||
75 | ('환경 설정 > 사운드/비디오'에서 | ||
76 | 이 옵션을 변경할 수 있습니다.) | ||
77 | </f_translation> | 73 | </f_translation> |
78 | <f_old_trans> | 74 | <f_old_trans> |
79 | 이 지역에서는 스트리밍 비디오를 재생할 수 있습니다. | 75 | 만들어진 제목과 메시지를 엽서로 보내시겠습니까? |
80 | 스트리밍 비디오를 재생하려면 768 kbps 이상의 | ||
81 | 인터넷 연결이 필요합니다. | ||
82 | |||
83 | 가능한 경우 스트리밍 비디오를 재생하시겠습니까? | ||
84 | (나중에 '환경 설정 > 사운드/비디오'에서 | ||
85 | 이 옵션을 변경할 수 있습니다.) | ||
86 | </f_old_trans> | 76 | </f_old_trans> |
87 | </string><string><a_file>alerts.xml</a_file> | 77 | </string><string><a_file>alerts.xml</a_file> |
88 | <b_path>//ConfirmClearBrowserCache/message</b_path> | 78 | <b_path>//ErrorUploadingPostcard/message</b_path> |
89 | <c_attribute></c_attribute> | 79 | <c_attribute></c_attribute> |
90 | <d_old> | 80 | <d_old> |
91 | Are you sure you want to clear your | 81 | There was a problem uploading a postcard due to the following reason: [REASON] |
92 | browser cache? | ||
93 | </d_old> | 82 | </d_old> |
94 | <e_new> | 83 | <e_new> |
95 | Are you sure you want to clear your browser cache? | 84 | There was a problem sending a snapshot due to the following reason: [REASON] |
96 | </e_new> | 85 | </e_new> |
97 | <f_translation> | 86 | <f_translation> |
98 | 라 부 제하시습니까? | 87 | 의 해 냅샷을 보는 데 문제 발했니다: [REASON] |
99 | </f_translation> | 88 | </f_translation> |
100 | <f_old_trans> | 89 | <f_old_trans> |
101 | 브라우저의 캐쉬를 전부 삭제 하시겠습니까? | 90 | 다음의 이유로 인해 포스트카드를 업로드하는 데 문제가 발생했습니다: [REASON] |
102 | </f_old_trans> | 91 | </f_old_trans> |
103 | </string><string><a_file>alerts.xml</a_file> | 92 | </string><string><a_file>alerts.xml</a_file> |
104 | <b_path>//HelpWaterNormalMap/message</b_path> | 93 | <b_path>//MustHaveAccountToLogIn/message</b_path> |
105 | <c_attribute></c_attribute> | 94 | <c_attribute></c_attribute> |
106 | <d_old> | 95 | <d_old> |
107 | Controls what normal map is layered across the water | 96 | You must have an account to connect to [SECOND_LIFE]. |
108 | to determine reflections/refractions. | 97 | Go to www.secondlife.com to create an account? |
109 | </d_old> | 98 | </d_old> |
110 | <e_new> | 99 | <e_new> |
111 | Controls what normal map is layered across the water to determine reflections/refractions. | 100 | Oops! Something was left blank. |
101 | You need to enter both the First and Last name of your avatar. | ||
102 | |||
103 | You need an account to enter [SECOND_LIFE]. Would you like to create one now? | ||
104 | </e_new> | ||
105 | <f_translation> | ||
106 | 죄송합니다. 일부 항목이 비어 있습니다. | ||
107 | 아바타의 성과 이름을 모두 입력해야 합니다. | ||
108 | |||
109 | [SECOND_LIFE]에 연결하려면 계정을 갖고 있어야 합니다. 지금 새로운 계정을 만드시겠습니까? | ||
110 | </f_translation> | ||
111 | <f_old_trans> | ||
112 | [SECOND_LIFE]에 연결하려면 계정을 갖고 있어야 합니다. | ||
113 | www.secondlife.com으로 이동하여 새로운 계정을 만드시겠습니까? | ||
114 | </f_old_trans> | ||
115 | </string><string><a_file>alerts.xml</a_file> | ||
116 | <b_path>//MustHaveAccountToLogIn/OK</b_path> | ||
117 | <c_attribute></c_attribute> | ||
118 | <d_old> | ||
119 | OK | ||
120 | </d_old> | ||
121 | <e_new> | ||
122 | Create a new account | ||
112 | </e_new> | 123 | </e_new> |
113 | <f_translation> | 124 | <f_translation> |
114 | 면에 지는 일반 맵 여 사/굴절을 정합니다. | 125 | 계정 |
115 | </f_translation> | 126 | </f_translation> |
116 | <f_old_trans> | 127 | <f_old_trans> |
117 | 수면에 겹쳐지는 일반 맵을 조절하여 | 128 | 확인 |
118 | 반사/굴절률을 결정합니다. | ||
119 | </f_old_trans> | 129 | </f_old_trans> |
120 | </string><string><a_file>alerts.xml</a_file> | 130 | </string><string><a_file>alerts.xml</a_file> |
121 | <b_path>//HelpWaterWave1/message</b_path> | 131 | <b_path>//MustHaveAccountToLogIn/Cancel</b_path> |
122 | <c_attribute></c_attribute> | 132 | <c_attribute></c_attribute> |
123 | <d_old> | 133 | <d_old> |
124 | Controls where and how fast the large scaled version of the normal | 134 | Cancel |
125 | map moves in the X and Y direction. | ||
126 | </d_old> | 135 | </d_old> |
127 | <e_new> | 136 | <e_new> |
128 | Controls where and how fast the large scaled version of the normal map moves in the X and Y direction. | 137 | Try again |
129 | </e_new> | 138 | </e_new> |
130 | <f_translation> | 139 | <f_translation> |
131 | 일반 맵의 확장된 버전이 X 및 Y 방향으로 이동할 때의 위치와 속도를 조절합니다. | 140 | 다시 시도 |
132 | </f_translation> | 141 | </f_translation> |
133 | <f_old_trans> | 142 | <f_old_trans> |
134 | 일반 맵의 확장된 버전이 X 및 Y 방향으로 이동할 때의 위치와 | 143 | 취소 |
135 | 속도를 조절합니다. | 144 | </f_old_trans> |
145 | </string><string><a_file>alerts.xml</a_file> | ||
146 | <b_path>//ChangeSkin/message</b_path> | ||
147 | <c_attribute></c_attribute> | ||
148 | <d_old> | ||
149 | New skin will appear after you restart [SECOND_LIFE]. | ||
150 | </d_old> | ||
151 | <e_new> | ||
152 | The new skin will appear after you restart [SECOND_LIFE]. | ||
153 | </e_new> | ||
154 | <f_translation> | ||
155 | 새로운 스킨은 [SECOND_LIFE]를 재시동한 후 적용됩니다. | ||
156 | </f_translation> | ||
157 | <f_old_trans> | ||
158 | 새로운 스킨은 [SECOND_LIFE]를 재시동후 적용 됩니다. | ||
136 | </f_old_trans> | 159 | </f_old_trans> |
137 | </string><string><a_file>alerts.xml</a_file> | 160 | </string><string><a_file>alerts.xml</a_file> |
138 | <b_path>//HelpWaterWave2/message</b_path> | 161 | <b_path>//CannotGiveCategory/message</b_path> |
139 | <c_attribute></c_attribute> | 162 | <c_attribute></c_attribute> |
140 | <d_old> | 163 | <d_old> |
141 | Controls where and how fast the the small scaled version of the | 164 | You do not have permission to transfer |
142 | normal map moves in the X and Y direction. | 165 | the selected folder. |
143 | </d_old> | 166 | </d_old> |
144 | <e_new> | 167 | <e_new> |
145 | Controls where and how fast the the small scaled version of the normal map moves in the X and Y direction. | 168 | You do not have permission to transfer |
169 | the selected folder. | ||
146 | </e_new> | 170 | </e_new> |
147 | <f_translation> | 171 | <f_translation> |
148 | 일반 맵의 축소된 버전이 X 및 Y 방향으로 이동할 때의 위치와 속도를 조절합니다. | 172 | 선택한 아이템을 전송할 수 있는 권한이 |
173 | 없습니다. | ||
149 | </f_translation> | 174 | </f_translation> |
150 | <f_old_trans> | 175 | <f_old_trans> |
151 | 일반 맵의 축소된 버전이 X 및 Y 방향으로 이동할 때의 위치와 | 176 | 아이템 카테고리를 제공할 수 없습니다. |
152 | 속도를 조절합니다. | ||
153 | </f_old_trans> | 177 | </f_old_trans> |
154 | </string><string><a_file>floater_buy_land.xml</a_file> | 178 | </string><string><a_file>alerts.xml</a_file> |
155 | <b_path>/buy land/land_use_reason</b_path> | 179 | <b_path>//CannotBuyLandNoRegion/message</b_path> |
156 | <c_attribute></c_attribute> | 180 | <c_attribute></c_attribute> |
157 | <d_old> | 181 | <d_old> |
158 | You hold 1,309 square meters of land. | 182 | Unable to buy land: |
159 | This parcel is 512 square meters of land. | 183 | Cannot find the region this land is in. |
160 | </d_old> | 184 | </d_old> |
161 | <e_new> | 185 | <e_new> |
162 | You hold 1,309 square meters of land. | 186 | Unable to buy land: |
163 | This parcel is 512 square meters of land. | 187 | Cannot find the region this land is in. |
164 | </e_new> | 188 | </e_new> |
165 | <f_translation> | 189 | <f_translation> |
166 | 귀하는 현재 1,309 제곱 미터의 토지를 소유하고 습니다. | 190 | 토지를 구매하 못습니다: |
167 | 이 구 512 곱 미니다. | 191 | 이 가 속 지역 수 없습니다. |
168 | </f_translation> | 192 | </f_translation> |
169 | <f_old_trans> | 193 | <f_old_trans> |
170 | 귀하는 현재 1,309 제곱 미터의 토지를 소유하고 습니다. | 194 | 토지를 구매하 못습니다: |
171 | 이 구 512 곱 미니다. | 195 | 이 가 속 지역 수 없습니다. |
172 | </f_old_trans> | 196 | </f_old_trans> |
173 | </string><string><a_file>floater_buy_land.xml</a_file> | 197 | </string><string><a_file>alerts.xml</a_file> |
174 | <b_path>/buy land/multiple_parcels_selected</b_path> | 198 | <b_path>//YouHaveBeenLoggedOut/message</b_path> |
175 | <c_attribute></c_attribute> | 199 | <c_attribute></c_attribute> |
176 | <d_old> | 200 | <d_old> |
177 | Multiple different parcels selected. | 201 | You have been logged out of [SECOND_LIFE]: |
178 | Try selecting a smaller area. | 202 | [MESSAGE] |
179 | </d_old> | 203 | |
204 | Click Continue to look at existing IM and chat. | ||
205 | You will not be able to perform any other operations. | ||
206 | Click Quit to exit [SECOND_LIFE] immediately. | ||
207 | </d_old> | ||
180 | <e_new> | 208 | <e_new> |
181 | Multiple different parcels selected. | 209 | You have been logged out of [SECOND_LIFE]: |
182 | Try selecting a smaller area. | 210 | [MESSAGE] |
183 | </e_new> | 211 | You can still look at existing IM and chat by clicking 'View IM & Chat'. Otherwise, click 'Quit' to exit [SECOND_LIFE] immediately. |
212 | </e_new> | ||
184 | <f_translation> | 213 | <f_translation> |
185 | 여러 개의 각기 다른 구획이 선택되었습니다. | 214 | [SECOND_LIFE]에서 로그아웃하셨습니다: |
186 | 더 작은 영역을 선택해 주십시오. | 215 | [MESSAGE] |
187 | </f_translation> | 216 | 기존의 메신저와 채팅을 보려면 '메신저 및 채팅 보기'를 클릭하십시오. 그렇지 않고 [SECOND_LIFE]를 즉시 끝내려면 '종료'를 클릭하십시오. |
217 | </f_translation> | ||
188 | <f_old_trans> | 218 | <f_old_trans> |
189 | 여러개의 각기 다른 구획이 선택되었습니다. | 219 | [SECOND_LIFE]에서 로그아웃하셨습니다: |
190 | 더 작은 영역을 선택해 주십시오. | 220 | [MESSAGE] |
191 | </f_old_trans> | 221 | |
192 | </string><string><a_file>floater_buy_land.xml</a_file> | 222 | 기존의 메신저와 채팅을 보려면 '계속'을 클릭하십시오. |
193 | <b_path>/buy land/not_owned_by_you</b_path> | 223 | 다른 작업은 수행할 수 없습니다. |
224 | [SECOND_LIFE]를 즉시 끝내려면 '종료'를 클릭하십시오. | ||
225 | </f_old_trans> | ||
226 | </string><string><a_file>alerts.xml</a_file> | ||
227 | <b_path>//YouHaveBeenLoggedOut/Continue</b_path> | ||
194 | <c_attribute></c_attribute> | 228 | <c_attribute></c_attribute> |
195 | <d_old> | 229 | <d_old> |
196 | Land owned by another user is selected. | 230 | Continue |
197 | Try selecting a smaller area. | 231 | </d_old> |
198 | </d_old> | ||
199 | <e_new> | 232 | <e_new> |
200 | Land owned by another user is selected. | 233 | View IM & Chat |
201 | Try selecting a smaller area. | 234 | </e_new> |
202 | </e_new> | ||
203 | <f_translation> | 235 | <f_translation> |
204 | 다른 사용자 소유의 토지가 선택되었습니다. | 236 | 메신저 및 채팅 보기 |
205 | 더 작은 영역을 선택해 주십시오. | 237 | </f_translation> |
206 | </f_translation> | ||
207 | <f_old_trans> | 238 | <f_old_trans> |
208 | 다른 사용자 소유의 토지가 선택되었습니다. | 239 | 계속 |
209 | 더 작은 영역을 선택해 주십시오. | 240 | </f_old_trans> |
210 | </f_old_trans> | 241 | </string><string><a_file>alerts.xml</a_file> |
211 | </string><string><a_file>floater_buy_land.xml</a_file> | 242 | <b_path>//AddFriend/message</b_path> |
212 | <b_path>/buy land/for_first_time_group</b_path> | ||
213 | <c_attribute></c_attribute> | 243 | <c_attribute></c_attribute> |
214 | <d_old> | 244 | <d_old> |
215 | This land is reserved for first time buyers. | 245 | Friends can give permissions to |
216 | You cannot buy it for a group. | 246 | track each other on the map and |
217 | </d_old> | 247 | receive online status updates. |
248 | |||
249 | Offer friendship to [NAME]? | ||
250 | </d_old> | ||
218 | <e_new> | 251 | <e_new> |
219 | This land is reserved for first time buyers. | 252 | Friends can give permissions to track each |
220 | You cannot buy it for a group. | 253 | other on the map and receive online status updates. |
221 | </e_new> | 254 | |
255 | Offer friendship to [NAME]? | ||
256 | </e_new> | ||
222 | <f_translation> | 257 | <f_translation> |
223 | 이 토지는 최초 구매자를 위해 예약되었습니다. | 258 | 친구들은 지도에서 서로의 위치를 |
224 | 그룹용으로 구입할 수 없습니다. | 259 | 추적할 수 있으며 온라인 상태 업데이트도 받을 수 있습니다. |
225 | </f_translation> | 260 | |
261 | [NAME]에게 친구 추가를 요청하시겠습니까? | ||
262 | </f_translation> | ||
226 | <f_old_trans> | 263 | <f_old_trans> |
227 | 이 토지는 최초 구매자를 위해 예약되었습니다. | 264 | 친구들은 |
228 | 그룹용으로 구입할 수 없습니다. | 265 | 지도에서 서로의 위치를 추적할 수 있으며 |
229 | </f_old_trans> | 266 | 온라인 상태 업데이트도 받을 수 있습니다. |
230 | </string><string><a_file>floater_buy_land.xml</a_file> | 267 | |
231 | <b_path>/buy land/for_first_time</b_path> | 268 | [NAME]에게 친구 추가를 요청하시겠습니까? |
269 | </f_old_trans> | ||
270 | </string><string><a_file>alerts.xml</a_file> | ||
271 | <b_path>//ConfirmClearCookies/message</b_path> | ||
232 | <c_attribute></c_attribute> | 272 | <c_attribute></c_attribute> |
233 | <d_old> | 273 | <d_old> |
234 | This land is reserved for first time buyers. | 274 | Are you sure you want to clear |
235 | You already own land. | 275 | your cookies? |
236 | </d_old> | 276 | </d_old> |
237 | <e_new> | 277 | <e_new> |
238 | This land is reserved for first time buyers. | 278 | Are you sure you want to clear your cookies? |
239 | You already own land. | 279 | </e_new> |
240 | </e_new> | ||
241 | <f_translation> | 280 | <f_translation> |
242 | 이 토지는 최초 구매자를 위해 예약되었습니다. | 281 | 쿠키를 전부 삭제하시겠습니까? |
243 | 귀하는 이미 토지를 소유하고 있습니다. | 282 | </f_translation> |
244 | </f_translation> | ||
245 | <f_old_trans> | 283 | <f_old_trans> |
246 | 이 토지는 최초 구매자를 위해 예약되었습니다. | 284 | 쿠키를 전부 삭제 하시겠습니까? |
247 | 귀하는 이미 토지를 소유하고 있습니다. | 285 | </f_old_trans> |
248 | </f_old_trans> | 286 | </string><string><a_file>alerts.xml</a_file> |
249 | </string><string><a_file>floater_gesture.xml</a_file> | 287 | <b_path>//Cannot_Purchase_an_Attachment/message</b_path> |
250 | <b_path>/gestures/help_label</b_path> | ||
251 | <c_attribute></c_attribute> | 288 | <c_attribute></c_attribute> |
252 | <d_old> | 289 | <d_old> |
253 | Click a gesture or press a key to play animations and sounds. | 290 | Items may not be purchased while |
291 | they are part of an attachment. | ||
292 | </d_old> | ||
293 | <e_new> | ||
294 | Items may not be purchased while | ||
295 | they are part of an attachment. | ||
296 | </e_new> | ||
297 | <f_translation> | ||
298 | 착용 중인 아이템은 | ||
299 | 구매가 불가능합니다. | ||
300 | </f_translation> | ||
301 | <f_old_trans> | ||
302 | 착용중인 아이템은 구매 불가능 합니다. | ||
303 | </f_old_trans> | ||
304 | </string><string><a_file>floater_about_land.xml</a_file> | ||
305 | <b_path>/floaterland/landtab/land_access_panel/estate_override</b_path> | ||
306 | <c_attribute></c_attribute> | ||
307 | <d_old> | ||
308 | One ore more of these options is set at the estate level | ||
309 | </d_old> | ||
310 | <e_new> | ||
311 | One or more of these options is set at the estate level | ||
312 | </e_new> | ||
313 | <f_translation> | ||
314 | 이러한 옵션 중 하나 이상이 사유지 레벨에 설정되어 있습니다. | ||
315 | </f_translation> | ||
316 | <f_old_trans> | ||
317 | 이러한 옵션 중 하나 이상이 사유지 레벨에 설정되어 있습니다. | ||
318 | </f_old_trans> | ||
319 | </string><string><a_file>floater_im.xml</a_file> | ||
320 | <b_path>/im_floater/muted_message</b_path> | ||
321 | <c_attribute></c_attribute> | ||
322 | <d_old> | ||
323 | [FIRST] [LAST] is muted. | ||
254 | </d_old> | 324 | </d_old> |
255 | <e_new> | 325 | <e_new> |
256 | Double-click a gesture to play animations and sounds. | 326 | You have muted this resident. Sending a message will automatically unmute them. |
257 | </e_new> | 327 | </e_new> |
258 | <f_translation> | 328 | <f_translation> |
259 | 제스처를 더블클릭하여 애니메이션과 사운드를 재생합니다. | 329 | 이 주민이 음소거되었습니다. 이 주민에게 메시지를 보내면 음소거가 자동으로 해제됩니다. |
260 | </f_translation> | 330 | </f_translation> |
261 | <f_old_trans> | 331 | <f_old_trans> |
262 | 더블릭 또는 키를 눌러 처 합니다. | 332 | 님이 거니다. |
263 | </f_old_trans> | 333 | </f_old_trans> |
264 | </string><string><a_file>floater_joystick.xml</a_file> | 334 | </string><string><a_file>floater_postcard.xml</a_file> |
265 | <b_path>/Joystick</b_path> | 335 | <b_path>/Postcard</b_path> |
266 | <c_attribute>title</c_attribute> | 336 | <c_attribute>title</c_attribute> |
267 | <d_old>Flycam Options</d_old> | 337 | <d_old>Send Postcard</d_old> |
268 | <e_new>Joystick Configuration</e_new> | 338 | <e_new>Email Snapshot</e_new> |
269 | <f_translation>조이스틱 설정</f_translation> | 339 | <f_translation>이메일로 스냅샷 보내기</f_translation> |
270 | </string><string><a_file>floater_preview_notecard_keep_discard.xml</a_file> | 340 | <f_old_trans>엽서 보내기</f_old_trans> |
271 | <b_path>/preview_notecard/no_object</b_path> | 341 | </string><string><a_file>floater_postcard.xml</a_file> |
342 | <b_path>/Postcard/fine_print</b_path> | ||
272 | <c_attribute></c_attribute> | 343 | <c_attribute></c_attribute> |
273 | <d_old> | 344 | <d_old> |
274 | Unable to find object containing this note.: | 345 | If your postcard recipient joins SL, you'll get a referral bonus. |
275 | </d_old> | 346 | </d_old> |
276 | <e_new>Unable to find object containing this note.:</e_new> | 347 | <e_new> |
277 | <f_translation>이 노트를 포함하는 오브젝트를 찾을 수 없음:</f_translation> | 348 | If your recipient joins SL, you'll get a referral bonus. |
349 | </e_new> | ||
350 | <f_translation> | ||
351 | 수령인이 세컨드라이프에 가입을 하면 추천 보너스를 얻게 됩니다. | ||
352 | </f_translation> | ||
278 | <f_old_trans> | 353 | <f_old_trans> |
279 | 하는 를 을 없음: | 354 | 서 수이 컨이에 가입 경 추천 너를 게 됩다. |
280 | </f_old_trans> | 355 | </f_old_trans> |
281 | </string><string><a_file>panel_friends.xml</a_file> | 356 | </string><string><a_file>floater_report_abuse.xml</a_file> |
282 | <b_path>/friends/friend_list/icon_edit_mine</b_path> | 357 | <b_path>/floater_report_abuse/category_combo/Intolerance</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> | 358 | <c_attribute></c_attribute> |
305 | <d_old> | 359 | <d_old> |
306 | (loading...) | 360 | Intolerance |
307 | </d_old> | 361 | </d_old> |
308 | <e_new>(loading...)</e_new> | 362 | <e_new> |
309 | <f_translation>(로딩 중...)</f_translation> | 363 | Intolerance |
364 | </e_new> | ||
365 | <f_translation> | ||
366 | 참을 수 없는 행위 | ||
367 | </f_translation> | ||
310 | <f_old_trans> | 368 | <f_old_trans> |
311 | (로딩 중¡¦} | 369 | 굴욕 |
312 | </f_old_trans> | 370 | </f_old_trans> |
313 | </string><string><a_file>panel_preferences_chat.xml</a_file> | 371 | </string><string><a_file>floater_report_abuse.xml</a_file> |
314 | <b_path>/chat/users</b_path> | 372 | <b_path>/floater_report_abuse/category_combo/Other</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> | 373 | <c_attribute></c_attribute> |
323 | <d_old> | 374 | <d_old> |
324 | NOTE: Running the Device Settings or Voice Chat Setup will temporarily disconnect you from Voice Chat. | 375 | Other |
325 | </d_old> | 376 | </d_old> |
326 | <e_new> | 377 | <e_new> |
327 | NOTE: Running the Device Settings will temporarily disconnect you from Voice Chat. | 378 | Other |
328 | </e_new> | 379 | </e_new> |
329 | <f_translation> | 380 | <f_translation> |
330 | 참: 장치 설정을 실행하면 일시적으로 음성 채팅 연결이 끊 수 있습니다. | 381 | 타 |
331 | </f_translation> | 382 | </f_translation> |
332 | <f_old_trans> | 383 | <f_old_trans> |
333 | 참고: 장치 설정 또는 음성 채팅 설정을 실행하면 일시적으로 음성 채팅 연결이 끊길 수 있습니다. | 384 | 기타 |
334 | </f_old_trans> | 385 | </f_old_trans> |
335 | </string><string><a_file>panel_toolbar.xml</a_file> | 386 | </string><string><a_file>floater_snapshot.xml</a_file> |
336 | <b_path>/toolbar/Redock Windows</b_path> | 387 | <b_path>/Snapshot/type_label</b_path> |
337 | <c_attribute></c_attribute> | 388 | <c_attribute></c_attribute> |
338 | <d_old> | 389 | <d_old> |
339 | Redock Windows | 390 | What would you like to do? |
340 | </d_old> | 391 | </d_old> |
341 | <e_new>Redock Windows</e_new> | 392 | <e_new> |
342 | <f_translation>창 합치기</f_translation> | 393 | Snapshot destination |
394 | </e_new> | ||
395 | <f_translation> | ||
396 | 스냅샷 대상 | ||
397 | </f_translation> | ||
343 | <f_old_trans> | 398 | <f_old_trans> |
344 | 합기 | 399 | 냅샷 도 |
345 | </f_old_trans> | 400 | </f_old_trans> |
346 | </string><string><a_file>alerts.xml</a_file> | 401 | </string><string><a_file>floater_snapshot.xml</a_file> |
347 | <b_path>//ClothingLoading/message</b_path> | 402 | <b_path>/Snapshot/snapshot_type_radio/postcard</b_path> |
348 | <c_attribute></c_attribute> | 403 | <c_attribute></c_attribute> |
349 | <d_old> | 404 | <d_old> |
350 | Your clothing is still downloading. | 405 | Send a postcard |
351 | You can use the world normally, and other users | ||
352 | will see you correctly. | ||
353 | </d_old> | 406 | </d_old> |
354 | <e_new> | 407 | <e_new> |
355 | Your clothing is still downloading. | 408 | Send via email |
356 | You can use [SECOND_LIFE] normally and other users will see you correctly. | ||
357 | </e_new> | 409 | </e_new> |
358 | <f_translation> | 410 | <f_translation> |
359 | 의복을 다운로드하고 있습니다. | 411 | 이메일로 보내기 |
360 | [SECOND_LIFE]를 사용할 수 있으며 다른 사용자에게 귀하의 모습이 정상적으로 표시될 것입니다. | ||
361 | </f_translation> | 412 | </f_translation> |
362 | <f_old_trans> | 413 | <f_old_trans> |
363 | 의상을 다운로드하는 중입니다. | 414 | 엽서 보내기 |
364 | 일반적으로 세컨드라이프를 사용할 수 있으며 다른 사용자에게 | ||
365 | 귀하의 모습이 제대로 표시될 것입니다. | ||
366 | </f_old_trans> | 415 | </f_old_trans> |
367 | </string><string><a_file>floater_directory.xml</a_file> | 416 | </string><string><a_file>floater_snapshot.xml</a_file> |
368 | <b_path>/directory/Directory Tabs/places_panel/searching_text</b_path> | 417 | <b_path>/Snapshot/snapshot_type_radio/texture</b_path> |
369 | <c_attribute></c_attribute> | ||
370 | <d_old> | ||
371 | Searching... | ||
372 | </d_old> | ||
373 | <e_new>Searching...</e_new> | ||
374 | <f_translation>검색</f_translation> | ||
375 | <f_old_trans> | ||
376 | 검색 | ||
377 | </f_old_trans> | ||
378 | </string><string><a_file>floater_directory.xml</a_file> | ||
379 | <b_path>/directory/Directory Tabs/places_panel/not_found_text</b_path> | ||
380 | <c_attribute></c_attribute> | 418 | <c_attribute></c_attribute> |
381 | <d_old> | 419 | <d_old> |
382 | None Found. | 420 | Upload a snapshot |
383 | </d_old> | 421 | </d_old> |
384 | <e_new>None Found.</e_new> | 422 | <e_new> |
385 | <f_translation>검색 결과가 없습니다.</f_translation> | 423 | Save to your inventory (L$10) |
424 | </e_new> | ||
425 | <f_translation> | ||
426 | 인벤토리에 저장(L$10) | ||
427 | </f_translation> | ||
386 | <f_old_trans> | 428 | <f_old_trans> |
387 | 429 | 인토 | |
388 | </f_old_trans> | 430 | </f_old_trans> |
389 | </string><string><a_file>floater_directory.xml</a_file> | 431 | </string><string><a_file>floater_snapshot.xml</a_file> |
390 | <b_path>/directory/Directory Tabs/people_panel/find</b_path> | 432 | <b_path>/Snapshot/snapshot_type_radio/local</b_path> |
391 | <c_attribute></c_attribute> | 433 | <c_attribute></c_attribute> |
392 | <d_old> | 434 | <d_old> |
393 | Find: | 435 | Save snapshot to hard drive |
394 | </d_old> | 436 | </d_old> |
395 | <e_new> | 437 | <e_new> |
396 | Find: | 438 | Save to your hard drive |
397 | </e_new> | 439 | </e_new> |
398 | <f_translation> | 440 | <f_translation> |
399 | : | 441 | 하드 드라에 저장 |
400 | </f_translation> | 442 | </f_translation> |
401 | <f_old_trans> | 443 | <f_old_trans> |
402 | 찾기: | 444 | 하드 드라이브에 저장 |
403 | </f_old_trans> | 445 | </f_old_trans> |
404 | </string><string><a_file>floater_directory.xml</a_file> | 446 | </string><string><a_file>floater_snapshot.xml</a_file> |
405 | <b_path>/directory/Directory Tabs/groups_panel/searching_text</b_path> | 447 | <b_path>/Snapshot/upload_btn</b_path> |
448 | <c_attribute>label</c_attribute> | ||
449 | <d_old>Upload (L$10)</d_old> | ||
450 | <e_new>Save (L$10)</e_new> | ||
451 | <f_translation>저장(L$10)</f_translation> | ||
452 | <f_old_trans>업로드(L$10)</f_old_trans> | ||
453 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
454 | <b_path>/Snapshot/type_label2</b_path> | ||
406 | <c_attribute></c_attribute> | 455 | <c_attribute></c_attribute> |
407 | <d_old> | 456 | <d_old> |
408 | Searching... | 457 | What size image do you need? |
409 | </d_old> | 458 | </d_old> |
410 | <e_new>Searching...</e_new> | 459 | <e_new> |
411 | <f_translation>검색</f_translation> | 460 | Size |
461 | </e_new> | ||
462 | <f_translation> | ||
463 | 크기 | ||
464 | </f_translation> | ||
412 | <f_old_trans> | 465 | <f_old_trans> |
413 | 검색 | 466 | 이미지 크기 |
414 | </f_old_trans> | 467 | </f_old_trans> |
415 | </string><string><a_file>floater_directory.xml</a_file> | 468 | </string><string><a_file>floater_snapshot.xml</a_file> |
416 | <b_path>/directory/Directory Tabs/groups_panel/not_found_text</b_path> | 469 | <b_path>/Snapshot/auto_snapshot_check</b_path> |
470 | <c_attribute>label</c_attribute> | ||
471 | <d_old>Auto-snapshot</d_old> | ||
472 | <e_new>Auto-refresh</e_new> | ||
473 | <f_translation>자동 새로 고침</f_translation> | ||
474 | <f_old_trans>자동 스냅샷</f_old_trans> | ||
475 | </string><string><a_file>menu_pie_avatar.xml</a_file> | ||
476 | <b_path>/Avatar Pie/Add Friend</b_path> | ||
477 | <c_attribute>label</c_attribute> | ||
478 | <d_old>Add Friend</d_old> | ||
479 | <e_new>Add Friend...</e_new> | ||
480 | <f_translation>친구 추가...</f_translation> | ||
481 | <f_old_trans>친구 추가</f_old_trans> | ||
482 | </string><string><a_file>notify.xml</a_file> | ||
483 | <b_path>//OfferFriendship/message</b_path> | ||
417 | <c_attribute></c_attribute> | 484 | <c_attribute></c_attribute> |
418 | <d_old> | 485 | <d_old> |
419 | None Found. | 486 | [NAME] is offering friendship. |
420 | </d_old> | 487 | |
421 | <e_new>None Found.</e_new> | 488 | By default, you will be able to |
422 | <f_translation>검색 결과가 없습니다.</f_translation> | 489 | see each other's online status. |
490 | </d_old> | ||
491 | <e_new> | ||
492 | [NAME] is offering friendship. | ||
493 | |||
494 | [MESSAGE] | ||
495 | |||
496 | (By default, you will be able to see each other's online status.) | ||
497 | </e_new> | ||
498 | <f_translation> | ||
499 | [NAME]님이 친구 사귀기를 제안합니다. | ||
500 | |||
501 | [MESSAGE] | ||
502 | |||
503 | (기본적으로 사용자는 서로의 온라인 상태를 확인할 수 있습니다.) | ||
504 | </f_translation> | ||
423 | <f_old_trans> | 505 | <f_old_trans> |
424 | 발견되지 않음 | 506 | [NAME]님이 우정을 제안합니다. |
425 | </f_old_trans> | 507 | |
426 | </string><string><a_file>floater_script_debug.xml</a_file> | 508 | 기본적으로 사용자는 |
427 | <b_path>/script debug floater</b_path> | 509 | 서로의 온라인 상태를 확인할 수 있습니다. |
428 | <c_attribute>title</c_attribute> | 510 | </f_old_trans> |
429 | <d_old>Script Errors/Warning</d_old> | 511 | </string><string><a_file>notify.xml</a_file> |
430 | <e_new>Script Warning/Error</e_new> | 512 | <b_path>//FailedToLoadWearableUnnamed/message</b_path> |
431 | <f_translation>스크립트 경고/오류</f_translation> | ||
432 | <f_old_trans>스크립트 오류/경고</f_old_trans> | ||
433 | </string><string><a_file>floater_world_map.xml</a_file> | ||
434 | <b_path>/worldmap/friend combo</b_path> | ||
435 | <c_attribute>label</c_attribute> | ||
436 | <d_old>My Friends</d_old> | ||
437 | <e_new>Online Friends</e_new> | ||
438 | <f_translation>온라인 친구 보기</f_translation> | ||
439 | <f_old_trans>내 친구들</f_old_trans> | ||
440 | </string><string><a_file>floater_world_map.xml</a_file> | ||
441 | <b_path>/worldmap/friend combo/none_selected</b_path> | ||
442 | <c_attribute></c_attribute> | 513 | <c_attribute></c_attribute> |
443 | <d_old> | 514 | <d_old> |
444 | My Friends | 515 | Failed to load [TYPE]. |
516 | Please notify the vendor from whom you purchased this item. | ||
445 | </d_old> | 517 | </d_old> |
446 | <e_new> | 518 | <e_new> |
447 | Online Friends | 519 | Oops! |
520 | You tried to wear a [TYPE] and it did not load. | ||
521 | |||
522 | Don't panic. | ||
523 | Try again in a minute to give things a chance to settle down. | ||
448 | </e_new> | 524 | </e_new> |
449 | <f_translation> | 525 | <f_translation> |
450 | 온라인 친구 보기 | 526 | 죄송합니다. |
527 | [TYPE] 착용을 시도했지만 로드하지 못했습니다. | ||
528 | |||
529 | 당황하지 마십시오. | ||
530 | 몇 분 후 다시 시도해서 오브젝트를 제대로 로드하십시오. | ||
451 | </f_translation> | 531 | </f_translation> |
452 | <f_old_trans> | 532 | <f_old_trans> |
453 | 내 친구들 | 533 | [TYPE]을(를) 로드하지 못했습니다. |
534 | 이 오브젝트의 판매자에게 알리십시오. | ||
454 | </f_old_trans> | 535 | </f_old_trans> |
455 | </string><string><a_file>floater_world_map.xml</a_file> | 536 | </string><string><a_file>notify.xml</a_file> |
456 | <b_path>/worldmap/landmark combo</b_path> | 537 | <b_path>//FailedToLoadWearable/message</b_path> |
457 | <c_attribute>label</c_attribute> | ||
458 | <d_old>My Landmarks</d_old> | ||
459 | <e_new>Landmarks</e_new> | ||
460 | <f_translation>랜드마크 보기</f_translation> | ||
461 | <f_old_trans>내 랜드마크</f_old_trans> | ||
462 | </string><string><a_file>floater_world_map.xml</a_file> | ||
463 | <b_path>/worldmap/landmark combo/none_selected</b_path> | ||
464 | <c_attribute></c_attribute> | 538 | <c_attribute></c_attribute> |
465 | <d_old> | 539 | <d_old> |
466 | My Landmarks | 540 | Failed to load [TYPE] named [DESC]. |
541 | Please notify the vendor from whom you purchased this item. | ||
467 | </d_old> | 542 | </d_old> |
468 | <e_new> | 543 | <e_new> |
469 | Landmarks | 544 | Oops! |
545 | You tried to wear [TYPE] named [DESC] and it did not load. | ||
546 | |||
547 | Don't panic. | ||
548 | Try again in a minute to give things a chance to settle down. | ||
470 | </e_new> | 549 | </e_new> |
471 | <f_translation> | 550 | <f_translation> |
472 | 랜드마크 보기 | 551 | 죄송합니다. |
552 | [DESC](이)라는 [TYPE] 착용을 시도했지만 로드하지 못했습니다. | ||
553 | |||
554 | 당황하지 마십시오. | ||
555 | 몇 분 후 다시 시도해서 오브젝트를 제대로 로드하십시오. | ||
473 | </f_translation> | 556 | </f_translation> |
474 | <f_old_trans> | 557 | <f_old_trans> |
475 | 내 랜드마크 | 558 | [DESC](이)라는 [TYPE]을(를) 로드하지 못했습니다. |
559 | 이 오브젝트를 구입한 판매자에게 알리십시오. | ||
476 | </f_old_trans> | 560 | </f_old_trans> |
477 | </string><string><a_file>panel_avatar_classified.xml</a_file> | 561 | </string><string><a_file>notify.xml</a_file> |
478 | <b_path>/Classified/classified_mature_check</b_path> | 562 | <b_path>//FirstTeleport/message</b_path> |
479 | <c_attribute>label</c_attribute> | ||
480 | <d_old>Mature</d_old> | ||
481 | <e_new></e_new> | ||
482 | <f_translation></f_translation> | ||
483 | <f_old_trans>성인용</f_old_trans> | ||
484 | </string><string><a_file>panel_group_notices.xml</a_file> | ||
485 | <b_path>/notices_tab/lbl2</b_path> | ||
486 | <c_attribute></c_attribute> | 563 | <c_attribute></c_attribute> |
487 | <d_old> | 564 | <d_old> |
488 | Notices are kept for 30 days. Click the notice below you wish to view. | 565 | You have just teleported. |
489 | Click the 'Refresh' button to check if new notices have been received. | 566 | You are at the Infohub nearest your destination. |
490 | </d_old> | 567 | Your destination is marked with a tall red beacon. |
568 | </d_old> | ||
491 | <e_new> | 569 | <e_new> |
492 | Notices are kept for 14 days. Click the notice below you wish to view. | 570 | This region doesn't allow point-to-point teleports, so you've been transported to the nearest telehub. |
493 | Click the 'Refresh' button to check if new notices have been received. | 571 | Your destination is marked with a tall beacon. |
494 | Notice lists are limited to 200 notices per group on a daily basis. | 572 | Follow the red arrow to the beacon, or click the arrow to dismiss the beacon. |
495 | </e_new> | 573 | </e_new> |
496 | <f_translation> | 574 | <f_translation> |
497 | 공지는 14일 동안 보관됩니다. 보려는 공지를 다음에서 클릭하십시오. | 575 | 이 지역에서는 두 지점 간 텔레포트가 허용되지 않기 때문에 가장 가까운 텔레허브로 이동되었습니다. |
498 | 새 공지 수령 경 '로고침' 버 클. | 576 | 지 표로 니. |
499 | 공지 목록 그 200 다. | 577 | 표지 간 화살표 거 지를 무 화살표 클하시. |
500 | </f_translation> | 578 | </f_translation> |
501 | <f_old_trans> | 579 | <f_old_trans> |
502 | 공지는 14일 동안 보관됩니다. 보려는 공지를 다음에서 클릭하십시오. | 580 | 방금 텔레포트되었습니다. |
503 | 새로운 공지를 수령한 경우 '새로고침' 버튼을 클릭하십시오. | 581 | 목적지에서 가장 가까운 인포허브에 있습니다. |
504 | </f_old_trans> | 582 | 목적지는 큰 빨간색 표지로 표시되어 있습니다. |
583 | </f_old_trans> | ||
505 | </string><string><a_file>panel_login.xml</a_file> | 584 | </string><string><a_file>panel_login.xml</a_file> |
506 | <b_path>/panel_login/forgot_password_text</b_path> | 585 | <b_path>/panel_login/connect_btn</b_path> |
586 | <c_attribute>label</c_attribute> | ||
587 | <d_old>Connect</d_old> | ||
588 | <e_new>Enter Second Life</e_new> | ||
589 | <f_translation>세컨드라이프 연결</f_translation> | ||
590 | <f_old_trans>연결</f_old_trans> | ||
591 | </string><string><a_file>panel_preferences_chat.xml</a_file> | ||
592 | <b_path>/chat/script_error</b_path> | ||
593 | <c_attribute>label</c_attribute> | ||
594 | <d_old>Color</d_old> | ||
595 | <e_new>Errors</e_new> | ||
596 | <f_translation>오류</f_translation> | ||
597 | <f_old_trans>색</f_old_trans> | ||
598 | </string><string><a_file>panel_preferences_skins.xml</a_file> | ||
599 | <b_path>/Skins panel/skin_selection/default</b_path> | ||
507 | <c_attribute></c_attribute> | 600 | <c_attribute></c_attribute> |
508 | <d_old> | 601 | <d_old> |
509 | Forgot your password? | 602 | Classic |
510 | </d_old> | 603 | </d_old> |
511 | <e_new>Forgot your name or password? | 604 | <e_new> |
512 | </e_new> | 605 | Default |
513 | <f_translation>세컨드라이프 이름 또는 비밀번호를 분실하셨습니까? | 606 | </e_new> |
514 | </f_translation> | 607 | <f_translation> |
608 | 기본 설정 | ||
609 | </f_translation> | ||
515 | <f_old_trans> | 610 | <f_old_trans> |
516 | 암호를 잊으셨습니까? | 611 | 클래식 |
517 | </f_old_trans> | 612 | </f_old_trans> |
613 | </string><string><a_file>panel_region_debug.xml</a_file> | ||
614 | <b_path>/Debug/choose_avatar_btn</b_path> | ||
615 | <c_attribute>label</c_attribute> | ||
616 | <d_old>Choose Avatar...</d_old> | ||
617 | <e_new>Choose...</e_new> | ||
618 | <f_translation>선택</f_translation> | ||
619 | <f_old_trans>아바타 선택</f_old_trans> | ||
518 | </string> | 620 | </string> |
519 | </strings> | 621 | </strings> |
diff --git a/linden/indra/newview/skins/default/xui/ko/notify.xml b/linden/indra/newview/skins/default/xui/ko/notify.xml index f96627c..87465c2 100644 --- a/linden/indra/newview/skins/default/xui/ko/notify.xml +++ b/linden/indra/newview/skins/default/xui/ko/notify.xml | |||
@@ -576,10 +576,25 @@ | |||
576 | </notify> | 576 | </notify> |
577 | <notify name="OfferFriendship"> | 577 | <notify name="OfferFriendship"> |
578 | <message name="message"> | 578 | <message name="message"> |
579 | [NAME]님이 우정을 제안합니다. | 579 | [NAME]님이 친구 사귀기를 제안합니다. |
580 | 580 | ||
581 | 기본적으로 사용자는 | 581 | [MESSAGE] |
582 | 서로의 온라인 상태를 확인할 수 있습니다. | 582 | |
583 | (기본적으로 사용자는 서로의 온라인 상태를 확인할 수 있습니다.) | ||
584 | </message> | ||
585 | <option name="Accept"> | ||
586 | 동의 | ||
587 | </option> | ||
588 | <option name="Decline"> | ||
589 | 거부 | ||
590 | </option> | ||
591 | </notify> | ||
592 | <notify name="OfferFriendshipNoMessage"> | ||
593 | <message name="message"> | ||
594 | [NAME]님이 친구 사귀기를 제안합니다. | ||
595 | |||
596 | (기본적으로 사용자는 | ||
597 | 서로의 온라인 상태를 볼 수 있습니다.) | ||
583 | </message> | 598 | </message> |
584 | <option name="Accept"> | 599 | <option name="Accept"> |
585 | 동의 | 600 | 동의 |
@@ -640,14 +655,20 @@ | |||
640 | </notify> | 655 | </notify> |
641 | <notify name="FailedToLoadWearableUnnamed"> | 656 | <notify name="FailedToLoadWearableUnnamed"> |
642 | <message name="message"> | 657 | <message name="message"> |
643 | [TYPE]을(를) 로드하지 못했습니다. | 658 | 죄송합니다. |
644 | 이 오브젝트의 판매자에게 알리십시오. | 659 | [TYPE] 착용을 시도했지만 로드하지 못했습니다. |
660 | |||
661 | 당황하지 마십시오. | ||
662 | 몇 분 후 다시 시도해서 오브젝트를 제대로 로드하십시오. | ||
645 | </message> | 663 | </message> |
646 | </notify> | 664 | </notify> |
647 | <notify name="FailedToLoadWearable"> | 665 | <notify name="FailedToLoadWearable"> |
648 | <message name="message"> | 666 | <message name="message"> |
649 | [DESC](이)라는 [TYPE]을(를) 로드하지 못했습니다. | 667 | 죄송합니다. |
650 | 이 오브젝트를 구입한 판매자에게 알리십시오. | 668 | [DESC](이)라는 [TYPE] 착용을 시도했지만 로드하지 못했습니다. |
669 | |||
670 | 당황하지 마십시오. | ||
671 | 몇 분 후 다시 시도해서 오브젝트를 제대로 로드하십시오. | ||
651 | </message> | 672 | </message> |
652 | </notify> | 673 | </notify> |
653 | <notify name="FailedToFindWearableUnnamed"> | 674 | <notify name="FailedToFindWearableUnnamed"> |
@@ -832,9 +853,9 @@ Ctrl 또는 Alt 키를 누른 상태에서 신속하게 도구를 전환하십 | |||
832 | </notify> | 853 | </notify> |
833 | <notify name="FirstTeleport"> | 854 | <notify name="FirstTeleport"> |
834 | <message name="message"> | 855 | <message name="message"> |
835 | 방금 텔레포트되었습니다. | 856 | 이 지역에서는 두 지점 간 텔레포트가 허용되지 않기 때문에 가장 가까운 텔레허브로 이동되었습니다. |
836 | 목적지에서 장 가까 인허브 있습니다. | 857 | 목적지는 표로 어 있습니다. |
837 | 목는 큰 빨간색 표 표시 습다. | 858 | 표지의 빨간색 살를 따라거 표를 무려 화표 클하시. |
838 | </message> | 859 | </message> |
839 | </notify> | 860 | </notify> |
840 | <notify name="FirstOverrideKeys"> | 861 | <notify name="FirstOverrideKeys"> |
diff --git a/linden/indra/newview/skins/default/xui/ko/panel_login.xml b/linden/indra/newview/skins/default/xui/ko/panel_login.xml index d0afa24..023571b 100644 --- a/linden/indra/newview/skins/default/xui/ko/panel_login.xml +++ b/linden/indra/newview/skins/default/xui/ko/panel_login.xml | |||
@@ -29,11 +29,14 @@ | |||
29 | </text> | 29 | </text> |
30 | <button label="신규 계정" label_selected="신규 계정" name="new_account_btn" /> | 30 | <button label="신규 계정" label_selected="신규 계정" name="new_account_btn" /> |
31 | <button label="환경 설정" label_selected="환경 설정" name="preferences_btn" /> | 31 | <button label="환경 설정" label_selected="환경 설정" name="preferences_btn" /> |
32 | <button label="연결" label_selected="연결" name="connect_btn" /> | 32 | <button label="컨드라이프 결" label_selected="연결" name="connect_btn" /> |
33 | <button label="종료" label_selected="종료" name="quit_btn" /> | 33 | <button label="종료" label_selected="종료" name="quit_btn" /> |
34 | <text name="version_text"> | 34 | <text name="version_text"> |
35 | 1.23.4 (5) | 35 | 1.23.4 (5) |
36 | </text> | 36 | </text> |
37 | <text name="create_new_account_text"> | ||
38 | 새 계정을 만듭니다. | ||
39 | </text> | ||
37 | <text name="channel_text"> | 40 | <text name="channel_text"> |
38 | [Viewer Channel Name] | 41 | [Viewer Channel Name] |
39 | </text> | 42 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/ko/panel_preferences_chat.xml b/linden/indra/newview/skins/default/xui/ko/panel_preferences_chat.xml index 91adf0b..7640440 100644 --- a/linden/indra/newview/skins/default/xui/ko/panel_preferences_chat.xml +++ b/linden/indra/newview/skins/default/xui/ko/panel_preferences_chat.xml | |||
@@ -17,6 +17,8 @@ | |||
17 | <text type="string" length="1" name="text_box2"> | 17 | <text type="string" length="1" name="text_box2"> |
18 | 글자색: | 18 | 글자색: |
19 | </text> | 19 | </text> |
20 | <color_swatch label="나" name="user" /> | ||
21 | <color_swatch label="다른 사용자" name="agent" /> | ||
20 | <color_swatch label="메신저" name="im" /> | 22 | <color_swatch label="메신저" name="im" /> |
21 | <color_swatch label="시스템" name="system" /> | 23 | <color_swatch label="시스템" name="system" /> |
22 | <color_swatch label="채팅" name="users" /> | 24 | <color_swatch label="채팅" name="users" /> |
@@ -43,6 +45,7 @@ | |||
43 | <check_box label="화살표 키는 채팅시 아바타를 움직이는데 사용" | 45 | <check_box label="화살표 키는 채팅시 아바타를 움직이는데 사용" |
44 | name="arrow_keys_move_avatar_check" /> | 46 | name="arrow_keys_move_avatar_check" /> |
45 | <check_box label="채팅 시간 표시하기" name="show_timestamps_check" /> | 47 | <check_box label="채팅 시간 표시하기" name="show_timestamps_check" /> |
48 | <check_box label="타이핑 애니메이션 재생" name="play_typing_animation" /> | ||
46 | <text type="string" length="1" name="text_box7"> | 49 | <text type="string" length="1" name="text_box7"> |
47 | 말풍선 채팅: | 50 | 말풍선 채팅: |
48 | </text> | 51 | </text> |
@@ -53,5 +56,5 @@ | |||
53 | </text> | 56 | </text> |
54 | <check_box label="스크립트 오류 및 경고를 일반 채팅으로 표시하기" | 57 | <check_box label="스크립트 오류 및 경고를 일반 채팅으로 표시하기" |
55 | name="script_errors_as_chat" /> | 58 | name="script_errors_as_chat" /> |
56 | <color_swatch label="" name="script_error" /> | 59 | <color_swatch label="류" name="script_error" /> |
57 | </panel> | 60 | </panel> |
diff --git a/linden/indra/newview/skins/default/xui/ko/panel_preferences_general.xml b/linden/indra/newview/skins/default/xui/ko/panel_preferences_general.xml index 3ff0d55..b7283de 100644 --- a/linden/indra/newview/skins/default/xui/ko/panel_preferences_general.xml +++ b/linden/indra/newview/skins/default/xui/ko/panel_preferences_general.xml | |||
@@ -120,4 +120,6 @@ | |||
120 | Español (스페인어) - 베타 | 120 | Español (스페인어) - 베타 |
121 | </combo_item> | 121 | </combo_item> |
122 | </combo_box> | 122 | </combo_box> |
123 | <check_box label="오브젝트와 언어 공유" name="language_is_public" | ||
124 | tool_tip="인월드 오브젝트에 사용자의 기본 언어를 설정할 수 있습니다." /> | ||
123 | </panel> | 125 | </panel> |
diff --git a/linden/indra/newview/skins/default/xui/ko/panel_preferences_im.xml b/linden/indra/newview/skins/default/xui/ko/panel_preferences_im.xml index e7fc52d..0fadc11 100644 --- a/linden/indra/newview/skins/default/xui/ko/panel_preferences_im.xml +++ b/linden/indra/newview/skins/default/xui/ko/panel_preferences_im.xml | |||
@@ -14,6 +14,7 @@ | |||
14 | <check_box label="쪽지를 이메일([EMAIL])로 전송" name="send_im_to_email" /> | 14 | <check_box label="쪽지를 이메일([EMAIL])로 전송" name="send_im_to_email" /> |
15 | <check_box label="채팅 기록에 쪽지 포함" name="include_im_in_chat_history" /> | 15 | <check_box label="채팅 기록에 쪽지 포함" name="include_im_in_chat_history" /> |
16 | <check_box label="메신저에 채팅 시간 표시하기" name="show_timestamps_check" /> | 16 | <check_box label="메신저에 채팅 시간 표시하기" name="show_timestamps_check" /> |
17 | <check_box label="온라인 친구 보여주기" name="friends_online_notify_checkbox" /> | ||
17 | <text name="text_box4"> | 18 | <text name="text_box4"> |
18 | 로그인 옵션: | 19 | 로그인 옵션: |
19 | </text> | 20 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/ko/panel_preferences_popups.xml b/linden/indra/newview/skins/default/xui/ko/panel_preferences_popups.xml index 385e1be..aa2928c 100644 --- a/linden/indra/newview/skins/default/xui/ko/panel_preferences_popups.xml +++ b/linden/indra/newview/skins/default/xui/ko/panel_preferences_popups.xml | |||
@@ -22,4 +22,7 @@ | |||
22 | <button label="모두 보기' 다음 건너뛰기' 대화 상자..." | 22 | <button label="모두 보기' 다음 건너뛰기' 대화 상자..." |
23 | name="skip_dialogs_btn" | 23 | name="skip_dialogs_btn" |
24 | tool_tip="팝업'처음 사용' 통보 옵션 모두 사용 안 함" /> | 24 | tool_tip="팝업'처음 사용' 통보 옵션 모두 사용 안 함" /> |
25 | <check_box | ||
26 | label="인벤토리에서 새로 수락한 오브젝트를 자동으로 보여주기" | ||
27 | name="show_in_inventory" /> | ||
25 | </panel> | 28 | </panel> |
diff --git a/linden/indra/newview/skins/default/xui/ko/panel_preferences_skins.xml b/linden/indra/newview/skins/default/xui/ko/panel_preferences_skins.xml index 6df8dac..55a454b 100644 --- a/linden/indra/newview/skins/default/xui/ko/panel_preferences_skins.xml +++ b/linden/indra/newview/skins/default/xui/ko/panel_preferences_skins.xml | |||
@@ -5,7 +5,7 @@ | |||
5 | </text> | 5 | </text> |
6 | <radio_group name="skin_selection"> | 6 | <radio_group name="skin_selection"> |
7 | <radio_item name="default"> | 7 | <radio_item name="default"> |
8 | 클 | 8 | 기 정 |
9 | </radio_item> | 9 | </radio_item> |
10 | <radio_item name="silver"> | 10 | <radio_item name="silver"> |
11 | 실버 | 11 | 실버 |
diff --git a/linden/indra/newview/skins/default/xui/ko/panel_region_debug.xml b/linden/indra/newview/skins/default/xui/ko/panel_region_debug.xml index f77cd66..64b85d6 100644 --- a/linden/indra/newview/skins/default/xui/ko/panel_region_debug.xml +++ b/linden/indra/newview/skins/default/xui/ko/panel_region_debug.xml | |||
@@ -16,10 +16,22 @@ | |||
16 | tool_tip="이 지역 내 모든 물리엔진 끄기" /> | 16 | tool_tip="이 지역 내 모든 물리엔진 끄기" /> |
17 | <button label="?" name="disable_physics_help" /> | 17 | <button label="?" name="disable_physics_help" /> |
18 | <button label="적용" name="apply_btn" /> | 18 | <button label="적용" name="apply_btn" /> |
19 | <button label="아바타 선택..." name="choose_avatar_btn" /> | 19 | <line_editor name="target_avatar_name"> |
20 | (없음) | ||
21 | </line_editor> | ||
22 | <button label="선택" name="choose_avatar_btn" /> | ||
20 | <button label="타인 토지상에 있는 스크립트 오브젝트 반환" | 23 | <button label="타인 토지상에 있는 스크립트 오브젝트 반환" |
21 | name="return_scripted_other_land_btn" /> | 24 | name="return_scripted_other_land_btn" /> |
22 | <button label="모든 스크립트 오브젝트 반환" name="return_scripted_all_btn" /> | 25 | <button label="모든 스크립트 오브젝트 반환" name="return_scripted_all_btn" /> |
26 | <check_box label="스크립트가 있는 오브젝트만 반환" name="return_scripts" | ||
27 | tool_tip="스크립트가 있는 오브젝트만 반환합니다." /> | ||
28 | <check_box label="다른 주민의 토지에 속한 오브젝트만 반환" | ||
29 | name="return_other_land" | ||
30 | tool_tip="다른 주민이 소유하고 있는 토지에 있는 오브젝트만 반환합니다." /> | ||
31 | <check_box label="이 사유지의 모든 지역에 속한 오브젝트 반환" | ||
32 | name="return_estate_wide" | ||
33 | tool_tip="이 사유지를 구성하는 모든 지역에 포함되는 오브젝트를 반환합니다." /> | ||
34 | <button label="반환" name="return_btn" /> | ||
23 | <button label="대용량 콜라이더 보기…" name="top_colliders_btn" | 35 | <button label="대용량 콜라이더 보기…" name="top_colliders_btn" |
24 | tool_tip="충돌 가능한 최상위 오브젝트 목록" /> | 36 | tool_tip="충돌 가능한 최상위 오브젝트 목록" /> |
25 | <button label="?" name="top_colliders_help" /> | 37 | <button label="?" name="top_colliders_help" /> |
diff --git a/linden/indra/newview/skins/default/xui/ko/panel_region_estate.xml b/linden/indra/newview/skins/default/xui/ko/panel_region_estate.xml index 52efd2e..843fec0 100644 --- a/linden/indra/newview/skins/default/xui/ko/panel_region_estate.xml +++ b/linden/indra/newview/skins/default/xui/ko/panel_region_estate.xml | |||
@@ -24,6 +24,12 @@ | |||
24 | tool_tip="성인 인증을 완료하지 않은 사용자는 출입이 차단됩니다. 자세한 사항은 support.secondlife.com을 참조하십시오." /> | 24 | tool_tip="성인 인증을 완료하지 않은 사용자는 출입이 차단됩니다. 자세한 사항은 support.secondlife.com을 참조하십시오." /> |
25 | <check_box label="음성 채팅 허용" name="voice_chat_check" /> | 25 | <check_box label="음성 채팅 허용" name="voice_chat_check" /> |
26 | <button label="?" name="voice_chat_help" /> | 26 | <button label="?" name="voice_chat_help" /> |
27 | <text name="abuse_email_text"> | ||
28 | 악용 신고 이메일 주소: | ||
29 | </text> | ||
30 | <string name="email_unsupported"> | ||
31 | 기능이 지원되지 않습니다. | ||
32 | </string> | ||
27 | <button label="?" name="abuse_email_address_help" /> | 33 | <button label="?" name="abuse_email_address_help" /> |
28 | <text name="estate_manager_label"> | 34 | <text name="estate_manager_label"> |
29 | 사유지 관리자: | 35 | 사유지 관리자: |
diff --git a/linden/indra/newview/skins/default/xui/ko/role_actions.xml b/linden/indra/newview/skins/default/xui/ko/role_actions.xml index 9e06970..e93c309 100644 --- a/linden/indra/newview/skins/default/xui/ko/role_actions.xml +++ b/linden/indra/newview/skins/default/xui/ko/role_actions.xml | |||
@@ -141,7 +141,7 @@ | |||
141 | name="land gardening" value="35" /> | 141 | name="land gardening" value="35" /> |
142 | </action_set> | 142 | </action_set> |
143 | <action_set | 143 | <action_set |
144 | description="이러한 권한에는 그룹 소유 오브젝트를 양도, 수정, 판매하는 권한이 포함됩니다. 이러한 변경은 '편집 도구 > 일반 탭'에서 수행됩니다. 오브젝트를 마우스 오른쪽 클릭하고 '편집'을 선택해 설정을 봅니다." | 144 | description="이러한 권한에는 그룹 소유 오브젝트를 양도, 수정, 판매하는 권한이 포함됩니다. 이러한 변경은 '편집 도구 > 일반 탭'에서 수행됩니다. 오브젝트를 마우스 오른쪽 클릭하고 '편집'을 선택해 설정을 봅니다." |
145 | name="Object Management"> | 145 | name="Object Management"> |
146 | <action description="그룹에게 오브젝트 양도" | 146 | <action description="그룹에게 오브젝트 양도" |
147 | longdescription="편집 도구 > 일반 탭에서 오브젝트를 그룹에 양도합니다." | 147 | longdescription="편집 도구 > 일반 탭에서 오브젝트를 그룹에 양도합니다." |
@@ -180,4 +180,17 @@ | |||
180 | longdescription="역할에 이 권한이 있는 회원은 그룹 정보 > 제안 탭에서 제안에 관한 투표를 할 수 있습니다." | 180 | longdescription="역할에 이 권한이 있는 회원은 그룹 정보 > 제안 탭에서 제안에 관한 투표를 할 수 있습니다." |
181 | name="proposal vote" value="45" /> | 181 | name="proposal vote" value="45" /> |
182 | </action_set> | 182 | </action_set> |
183 | <action_set | ||
184 | description="이러한 권한에는 그룹 채팅 세션 및 그룹 음성 채팅에 대한 허용 또는 제한의 권한이 포함됩니다." | ||
185 | name="Chat"> | ||
186 | <action description="그룹 채팅 참여" | ||
187 | longdescription="역할에 이 권한이 있는 회원은 텍스트 및 음성을 사용한 그룹 채팅 세션에 참여할 수 있습니다." | ||
188 | name="join group chat" /> | ||
189 | <action description="그룹 음성 채팅 참여" | ||
190 | longdescription="역할에 이 권한이 있는 회원은 그룹 음성 채팅 세션에 참여할 수 있습니다. 참고: 음성 채팅 세션에 참여하려면 그룹 채팅 참여 권한이 있어야 합니다." | ||
191 | name="join voice chat" /> | ||
192 | <action description="그룹 채팅 중재" | ||
193 | longdescription="역할에 이 권한이 있는 회원은 그룹 음성 및 텍스트 채팅 세션에 대한 접근과 참여를 제어할 수 있습니다." | ||
194 | name="moderate group chat" /> | ||
195 | </action_set> | ||
183 | </role_actions> | 196 | </role_actions> |
diff --git a/linden/indra/newview/skins/default/xui/ko/strings.xml b/linden/indra/newview/skins/default/xui/ko/strings.xml index a7ccb58..e79512d 100644 --- a/linden/indra/newview/skins/default/xui/ko/strings.xml +++ b/linden/indra/newview/skins/default/xui/ko/strings.xml | |||
@@ -18,6 +18,9 @@ | |||
18 | <string name="LoginInitializingBrowser"> | 18 | <string name="LoginInitializingBrowser"> |
19 | 웹 브라우저 초기화 중 | 19 | 웹 브라우저 초기화 중 |
20 | </string> | 20 | </string> |
21 | <string name="LoginInitializingMultimedia"> | ||
22 | 멀티미디어 초기화 중... | ||
23 | </string> | ||
21 | <string name="LoginVerifyingCache"> | 24 | <string name="LoginVerifyingCache"> |
22 | 캐시 파일 확인 중(60-90초 소요) | 25 | 캐시 파일 확인 중(60-90초 소요) |
23 | </string> | 26 | </string> |
@@ -48,6 +51,9 @@ | |||
48 | <string name="LoginDownloadingClothing"> | 51 | <string name="LoginDownloadingClothing"> |
49 | 의복 다운로드 중 | 52 | 의복 다운로드 중 |
50 | </string> | 53 | </string> |
54 | <string name="AgentLostConnection"> | ||
55 | 이 지역에 문제가 있을 수 있습니다. 인터넷 연결을 확인하십시오. | ||
56 | </string> | ||
51 | <string name="TooltipPerson"> | 57 | <string name="TooltipPerson"> |
52 | 아바타 | 58 | 아바타 |
53 | </string> | 59 | </string> |
@@ -120,9 +126,15 @@ | |||
120 | <string name="TooltipLand"> | 126 | <string name="TooltipLand"> |
121 | 토지: | 127 | 토지: |
122 | </string> | 128 | </string> |
129 | <string name="TooltipMustSingleDrop"> | ||
130 | 하나의 아이템만 여기로 드래그할 수 있습니다. | ||
131 | </string> | ||
123 | <string name="RetrievingData"> | 132 | <string name="RetrievingData"> |
124 | 가져오는 중 | 133 | 가져오는 중 |
125 | </string> | 134 | </string> |
135 | <string name="ReleaseNotes"> | ||
136 | 출시 정보 | ||
137 | </string> | ||
126 | <string name="LoadingData"> | 138 | <string name="LoadingData"> |
127 | 로딩 중 | 139 | 로딩 중 |
128 | </string> | 140 | </string> |
@@ -387,4 +399,16 @@ | |||
387 | <string name="anim_yes_head"> | 399 | <string name="anim_yes_head"> |
388 | 동의 | 400 | 동의 |
389 | </string> | 401 | </string> |
402 | <string name="texture_loading"> | ||
403 | 로딩 중... | ||
404 | </string> | ||
405 | <string name="worldmap_offline"> | ||
406 | 오프라인 | ||
407 | </string> | ||
408 | <string name="whisper"> | ||
409 | 속삭이기: | ||
410 | </string> | ||
411 | <string name="shout"> | ||
412 | 외치기: | ||
413 | </string> | ||
390 | </strings> | 414 | </strings> |
diff --git a/linden/indra/newview/skins/default/xui/zh/panel_toolbar.xml b/linden/indra/newview/skins/default/xui/zh/panel_toolbar.xml index 74f8128..8bdf2dd 100644 --- a/linden/indra/newview/skins/default/xui/zh/panel_toolbar.xml +++ b/linden/indra/newview/skins/default/xui/zh/panel_toolbar.xml | |||
@@ -2,7 +2,7 @@ | |||
2 | <panel name="toolbar"> | 2 | <panel name="toolbar"> |
3 | <layout_stack name="toolbar_stack"> | 3 | <layout_stack name="toolbar_stack"> |
4 | <button label="即时通" name="im_btn" tool_tip="用即时通联系你的朋友。" /> | 4 | <button label="即时通" name="im_btn" tool_tip="用即时通联系你的朋友。" /> |
5 | <button label="聊天" name="chat_btn" | 5 | <button label="" name="chat_btn" |
6 | tool_tip="与附近的人交谈.点击交谈之后点击历史去查找交谈记录。" /> | 6 | tool_tip="与附近的人交谈.点击交谈之后点击历史去查找交谈记录。" /> |
7 | <button label="伙伴"" name="friends_btn" | 7 | <button label="伙伴"" name="friends_btn" |
8 | tool_tip="查找并与你的好朋友交流。" /> | 8 | tool_tip="查找并与你的好朋友交流。" /> |
diff --git a/linden/indra/newview/skins/silver/xui/en-us/floater_tools.xml b/linden/indra/newview/skins/silver/xui/en-us/floater_tools.xml index 63e1be2..9b5d340 100644 --- a/linden/indra/newview/skins/silver/xui/en-us/floater_tools.xml +++ b/linden/indra/newview/skins/silver/xui/en-us/floater_tools.xml | |||
@@ -867,6 +867,16 @@ | |||
867 | label="Sculpt Texture" left="121" mouse_opaque="true" | 867 | label="Sculpt Texture" left="121" mouse_opaque="true" |
868 | name="sculpt texture control" tool_tip="Click to choose a picture" | 868 | name="sculpt texture control" tool_tip="Click to choose a picture" |
869 | visible="false" width="141" /> | 869 | visible="false" width="141" /> |
870 | <check_box bottom_delta="-24" follows="left|top" font="SansSerifSmall" height="16" | ||
871 | initial_value="false" label="Mirror" left="121" mouse_opaque="true" | ||
872 | name="sculpt mirror control" visible="false" | ||
873 | tool_tip="Flips sculpted prim along the X axis." | ||
874 | width="121" /> | ||
875 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" | ||
876 | initial_value="false" label="Inside-out" left="121" mouse_opaque="true" | ||
877 | name="sculpt invert control" visible="false" | ||
878 | tool_tip="Inverts the sculpted prims normals, making it appear inside-out." | ||
879 | width="121" /> | ||
870 | <text align="left" bg_visible="false" border_drop_shadow_visible="false" | 880 | <text align="left" bg_visible="false" border_drop_shadow_visible="false" |
871 | border_visible="false" bottom_delta="-20" drop_shadow_visible="true" | 881 | border_visible="false" bottom_delta="-20" drop_shadow_visible="true" |
872 | follows="left|top" font="SansSerifSmall" h_pad="0" height="10" left="121" | 882 | follows="left|top" font="SansSerifSmall" h_pad="0" height="10" left="121" |
diff --git a/linden/indra/newview/skins/silver/xui/en-us/panel_avatar.xml b/linden/indra/newview/skins/silver/xui/en-us/panel_avatar.xml index ac7f6a3..53cc070 100644 --- a/linden/indra/newview/skins/silver/xui/en-us/panel_avatar.xml +++ b/linden/indra/newview/skins/silver/xui/en-us/panel_avatar.xml | |||
@@ -183,31 +183,26 @@ | |||
183 | </panel> | 183 | </panel> |
184 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="466" | 184 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="466" |
185 | label="Web" left="1" mouse_opaque="true" name="WebProfile" width="418"> | 185 | label="Web" left="1" mouse_opaque="true" name="WebProfile" width="418"> |
186 | <button bottom_delta="-22" follows="left|top" font="SansSerifSmall" halign="center" | 186 | <line_editor bevel_style="in" border_style="line" |
187 | height="18" label="Home" label_selected="Home" left="10" | 187 | border_thickness="1" bottom_delta="-18" enabled="false" follows="left|top" |
188 | mouse_opaque="true" name="home" width="55" /> | 188 | font="SansSerifSmall" height="16" is_unicode="false" left="10" |
189 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" halign="center" | 189 | max_length="254" mouse_opaque="true" name="url_edit" |
190 | height="18" label="Load" label_selected="Load" left_delta="60" | 190 | width="400" /> |
191 | mouse_opaque="true" name="load" | 191 | <flyout_button bottom_delta="-22" follows="left|top" font="SansSerifSmall" halign="center" |
192 | tool_tip="Load this profile page with embedded web browser." width="60" /> | 192 | height="18" label="Load" label_selected="Load" left="10" |
193 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" halign="center" | 193 | mouse_opaque="true" name="load" enabled="false" |
194 | height="18" label="Open..." label_selected="Open..." left_delta="63" | 194 | tool_tip="Load this profile page with embedded web browser." width="80" > |
195 | mouse_opaque="true" name="open" | 195 | <flyout_button_item value="open">In external browser</flyout_button_item> |
196 | tool_tip="Open this profile page in your default external web browser." | 196 | <flyout_button_item value="home">Home URL</flyout_button_item> |
197 | width="60" /> | 197 | </flyout_button> |
198 | <button bottom_delta="0" follows="left|top" font="SansSerif" halign="center" | 198 | <button bottom_delta="0" follows="left|top" font="SansSerif" halign="center" |
199 | height="18" label="?" label_selected="?" left_delta="65" | 199 | height="18" label="?" label_selected="?" left_delta="85" |
200 | mouse_opaque="true" name="web_profile_help" width="18" /> | 200 | mouse_opaque="true" name="web_profile_help" width="18" /> |
201 | <check_box bottom_delta="0" follows="right|top" font="SansSerifSmall" height="16" | 201 | <check_box bottom_delta="0" follows="right|top" font="SansSerifSmall" height="16" |
202 | initial_value="false" label="Automatically load web profiles" | 202 | initial_value="false" label="Automatically load web profiles" |
203 | left_delta="30" mouse_opaque="true" name="auto_load" | 203 | left_delta="30" mouse_opaque="true" name="auto_load" |
204 | tool_tip="Automatically load ALL profile webpages without asking first." | 204 | tool_tip="Automatically load ALL profile webpages without asking first." |
205 | width="127" /> | 205 | width="127" /> |
206 | <line_editor bevel_style="in" border_style="line" | ||
207 | border_thickness="1" bottom_delta="-18" enabled="false" follows="left|top" | ||
208 | font="SansSerifSmall" height="16" is_unicode="false" left="10" | ||
209 | max_length="254" mouse_opaque="true" name="url_edit" | ||
210 | width="400" /> | ||
211 | <web_browser border_visible="false" bottom="-444" follows="top|left|right" height="400" | 206 | <web_browser border_visible="false" bottom="-444" follows="top|left|right" height="400" |
212 | ignore_ui_scale="false" left="10" name="profile_html" start_url="" | 207 | ignore_ui_scale="false" left="10" name="profile_html" start_url="" |
213 | width="400" /> | 208 | width="400" /> |
diff --git a/linden/indra/win_crash_logger/llcrashloggerwindows.cpp b/linden/indra/win_crash_logger/llcrashloggerwindows.cpp index ef1e53e..03f2394 100644 --- a/linden/indra/win_crash_logger/llcrashloggerwindows.cpp +++ b/linden/indra/win_crash_logger/llcrashloggerwindows.cpp | |||
@@ -29,6 +29,8 @@ | |||
29 | * $/LicenseInfo$ | 29 | * $/LicenseInfo$ |
30 | */ | 30 | */ |
31 | 31 | ||
32 | #include "linden_common.h" | ||
33 | |||
32 | #include "stdafx.h" | 34 | #include "stdafx.h" |
33 | #include "resource.h" | 35 | #include "resource.h" |
34 | #include "llcrashloggerwindows.h" | 36 | #include "llcrashloggerwindows.h" |
diff --git a/linden/indra/win_crash_logger/llcrashloggerwindows.h b/linden/indra/win_crash_logger/llcrashloggerwindows.h index dbf2d19..d5a20b7 100644 --- a/linden/indra/win_crash_logger/llcrashloggerwindows.h +++ b/linden/indra/win_crash_logger/llcrashloggerwindows.h | |||
@@ -32,7 +32,6 @@ | |||
32 | #ifndef LLCRASHLOGGERWINDOWS_H | 32 | #ifndef LLCRASHLOGGERWINDOWS_H |
33 | #define LLCRASHLOGGERWINDOWS_H | 33 | #define LLCRASHLOGGERWINDOWS_H |
34 | 34 | ||
35 | #include "linden_common.h" | ||
36 | #include "llcrashlogger.h" | 35 | #include "llcrashlogger.h" |
37 | #include "windows.h" | 36 | #include "windows.h" |
38 | #include "llstring.h" | 37 | #include "llstring.h" |
diff --git a/linden/indra/win_crash_logger/win_crash_logger.cpp b/linden/indra/win_crash_logger/win_crash_logger.cpp index f38d0df..773aa68 100644 --- a/linden/indra/win_crash_logger/win_crash_logger.cpp +++ b/linden/indra/win_crash_logger/win_crash_logger.cpp | |||
@@ -33,6 +33,8 @@ | |||
33 | // | 33 | // |
34 | 34 | ||
35 | // Must be first include, precompiled headers. | 35 | // Must be first include, precompiled headers. |
36 | #include "linden_common.h" | ||
37 | |||
36 | #include "stdafx.h" | 38 | #include "stdafx.h" |
37 | 39 | ||
38 | #include <stdlib.h> | 40 | #include <stdlib.h> |