diff options
Diffstat (limited to '')
248 files changed, 10334 insertions, 5644 deletions
diff --git a/linden/indra/newview/English.lproj/InfoPlist.strings b/linden/indra/newview/English.lproj/InfoPlist.strings index 8fae01f..9df6a82 100644 --- a/linden/indra/newview/English.lproj/InfoPlist.strings +++ b/linden/indra/newview/English.lproj/InfoPlist.strings | |||
@@ -1,5 +1,5 @@ | |||
1 | /* Localized versions of Info.plist keys */ | 1 | /* Localized versions of Info.plist keys */ |
2 | 2 | ||
3 | CFBundleName = "Second Life"; | 3 | CFBundleName = "Second Life"; |
4 | CFBundleShortVersionString = "Second Life version 1.16.0.5"; | 4 | CFBundleShortVersionString = "Second Life version 1.17.0.12"; |
5 | CFBundleGetInfoString = "Second Life version 1.16.0.5, Copyright 2004-2007 Linden Research, Inc."; | 5 | CFBundleGetInfoString = "Second Life version 1.17.0.12, Copyright 2004-2007 Linden Research, Inc."; |
diff --git a/linden/indra/newview/Info-SecondLife.plist b/linden/indra/newview/Info-SecondLife.plist index 764b152..a02f664 100644 --- a/linden/indra/newview/Info-SecondLife.plist +++ b/linden/indra/newview/Info-SecondLife.plist | |||
@@ -32,7 +32,7 @@ | |||
32 | </dict> | 32 | </dict> |
33 | </array> | 33 | </array> |
34 | <key>CFBundleVersion</key> | 34 | <key>CFBundleVersion</key> |
35 | <string>1.16.0.5</string> | 35 | <string>1.17.0.12</string> |
36 | <key>CSResourcesFileMapped</key> | 36 | <key>CSResourcesFileMapped</key> |
37 | <true/> | 37 | <true/> |
38 | </dict> | 38 | </dict> |
diff --git a/linden/indra/newview/installers/windows/installer_template.nsi b/linden/indra/newview/installers/windows/installer_template.nsi index 8ab7c4f..1b5226c 100644 --- a/linden/indra/newview/installers/windows/installer_template.nsi +++ b/linden/indra/newview/installers/windows/installer_template.nsi | |||
@@ -1,63 +1,70 @@ | |||
1 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 1 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
2 | ;;; @file viewer_manifest.py | 2 | ;; secondlife setup.nsi |
3 | ;;; @author James Cook, Don Kjer | 3 | ;; Copyright 2004-2007, Linden Research, Inc. |
4 | ;;; @brief NSIS script for creating a Windows installer. | 4 | ;; For info, see http://www.nullsoft.com/free/nsis/ |
5 | ;;; This file has variables expanded by viewer_manifest.py | 5 | ;; |
6 | ;;; to produce the complete nsi script file. | 6 | ;; NSIS 2.22 or higher required |
7 | ;;; For info, see http://www.nullsoft.com/free/nsis/ | 7 | ;; Author: James Cook, Don Kjer, Callum Prentice |
8 | ;;; NSIS 2.02 or higher required | 8 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
9 | ;;; | 9 | |
10 | ;;; Copyright (c) 2006-$CurrentYear$, Linden Research, Inc. | 10 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
11 | ;;; $License$ | ||
12 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
13 | |||
14 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
15 | ;;; Compiler flags | ||
16 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
17 | |||
18 | ;;; Detect NSIS compiler version | 11 | ;;; Detect NSIS compiler version |
19 | !define "NSIS${NSIS_VERSION}" | 12 | !define "NSIS${NSIS_VERSION}" |
20 | !ifdef "NSISv2.02" | "NSISv2.03" | "NSISv2.04" | "NSISv2.05" | "NSISv2.06" | 13 | !ifdef "NSISv2.02" | "NSISv2.03" | "NSISv2.04" | "NSISv2.05" | "NSISv2.06" |
21 | ;;; before 2.07 defaulted lzma to solid (whole file) | 14 | ;; before 2.07 defaulted lzma to solid (whole file) |
22 | SetCompressor lzma | 15 | SetCompressor lzma |
23 | !else | 16 | !else |
24 | ;;; after 2.07 required /solid for whole file compression | 17 | ;; after 2.07 required /solid for whole file compression |
25 | SetCompressor /solid lzma | 18 | SetCompressor /solid lzma |
26 | !endif | 19 | !endif |
27 | 20 | ||
21 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
22 | ;; Compiler flags | ||
23 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
28 | SetOverwrite on ; overwrite files | 24 | SetOverwrite on ; overwrite files |
29 | SetCompress auto ; compress iff saves space | 25 | SetCompress auto ; compress iff saves space |
30 | SetDatablockOptimize off ; only saves us 0.1%, not worth it | 26 | SetDatablockOptimize off ; only saves us 0.1%, not worth it |
31 | XPStyle on ; add an XP manifest to the installer | 27 | XPStyle on ; add an XP manifest to the installer |
32 | 28 | ||
33 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 29 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
34 | ;;; Project flags | 30 | ;;; Project flags |
35 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 31 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
36 | 32 | ||
37 | %%VERSION%% | 33 | %%VERSION%% |
38 | 34 | ||
39 | ;;; Tweak for different servers/builds (this placeholder is replaced by viewer_manifest.py) | 35 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
36 | ;; - language files - one for each language (or flavor thereof) | ||
37 | ;; (these files are in the same place as the nsi template but the python script generates a new nsi file in the | ||
38 | ;; application directory so we have to add a path to these include files) | ||
39 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
40 | #!include "installers\windows\lang_de.nsi" | ||
41 | !include "installers\windows\lang_en-us.nsi" | ||
42 | #!include "installers\windows\lang_ja.nsi" | ||
43 | !include "installers\windows\lang_ko.nsi" | ||
44 | |||
45 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
46 | ;; Tweak for different servers/builds (this placeholder is replaced by viewer_manifest.py) | ||
40 | %%GRID_VARS%% | 47 | %%GRID_VARS%% |
41 | 48 | ||
42 | Name ${INSTNAME} | 49 | Name ${INSTNAME} |
43 | 50 | ||
44 | SubCaption 0 " Setup" ; override "license agreement" text | 51 | SubCaption 0 $(LicenseSubTitleSetup) ; override "license agreement" text |
45 | 52 | ||
46 | BrandingText " " ; bottom of window text | 53 | BrandingText " " ; bottom of window text |
47 | Icon res\install_icon.ico ; our custom icon | 54 | Icon res\install_icon.ico ; our custom icon |
48 | UninstallIcon res\uninstall_icon.ico ; our custom icon | 55 | UninstallIcon res\uninstall_icon.ico ; our custom icon |
49 | WindowIcon on ; show our icon in left corner | 56 | WindowIcon on ; show our icon in left corner |
50 | BGGradient off ; no big background window | 57 | BGGradient off ; no big background window |
51 | CRCCheck on ; make sure CRC is OK | 58 | CRCCheck on ; make sure CRC is OK |
52 | InstProgressFlags smooth colored ; new colored smooth look | 59 | InstProgressFlags smooth colored ; new colored smooth look |
53 | ShowInstDetails nevershow ; no details, no "show" button | 60 | ShowInstDetails nevershow ; no details, no "show" button |
54 | SetOverwrite on ; stomp files by default | 61 | SetOverwrite on ; stomp files by default |
55 | AutoCloseWindow true ; after all files install, close window | 62 | AutoCloseWindow true ; after all files install, close window |
56 | 63 | ||
57 | !ifdef UPDATE | 64 | !ifdef UPDATE |
58 | LicenseText "This package will update Second Life to version ${VERSION_LONG}." "Next >" | 65 | LicenseText $(LicenseDescUpdate) $(LicenseDescNext) |
59 | !else | 66 | !else |
60 | LicenseText "This package will install Second Life on your computer." "Next >" | 67 | LicenseText $(LicenseDescSetup) $(LicenseDescNext) |
61 | !endif | 68 | !endif |
62 | 69 | ||
63 | LicenseData "releasenotes.txt" | 70 | LicenseData "releasenotes.txt" |
@@ -65,30 +72,30 @@ LicenseData "releasenotes.txt" | |||
65 | InstallDir "$PROGRAMFILES\${INSTNAME}" | 72 | InstallDir "$PROGRAMFILES\${INSTNAME}" |
66 | InstallDirRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\${INSTNAME}" "" | 73 | InstallDirRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\${INSTNAME}" "" |
67 | !ifdef UPDATE | 74 | !ifdef UPDATE |
68 | DirText "Installation Directory" "Select the Second Life directory to update:" | 75 | DirText $(DirectoryChooseTitle) $(DirectoryChooseUpdate) |
69 | !else | 76 | !else |
70 | DirText "Installation Directory" "Select the directory to install Second Life in:" | 77 | DirText $(DirectoryChooseTitle) $(DirectoryChooseSetup) |
71 | !endif | 78 | !endif |
72 | 79 | ||
73 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 80 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
74 | ;;; Variables | 81 | ;;; Variables |
75 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 82 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
76 | Var INSTPROG | 83 | Var INSTPROG |
77 | Var INSTEXE | 84 | Var INSTEXE |
78 | Var INSTFLAGS | 85 | Var INSTFLAGS |
86 | Var LANGFLAGS | ||
79 | Var INSTSHORTCUT | 87 | Var INSTSHORTCUT |
80 | 88 | ||
81 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 89 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
82 | ;;; Sections | 90 | ;;; Sections |
83 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 91 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
84 | |||
85 | Section "" ; (default section) | 92 | Section "" ; (default section) |
86 | 93 | ||
87 | SetShellVarContext all ; install for all users (if you change this, change it in the uninstall as well) | 94 | SetShellVarContext all ; install for all users (if you change this, change it in the uninstall as well) |
88 | 95 | ||
89 | |||
90 | ; Start with some default values. | 96 | ; Start with some default values. |
91 | StrCpy $INSTFLAGS "${INSTFLAGS}" | 97 | StrCpy $INSTFLAGS "${INSTFLAGS}" |
98 | StrCpy $INSTFLAGS "$INSTFLAGS $LANGFLAGS" | ||
92 | StrCpy $INSTPROG "${INSTNAME}" | 99 | StrCpy $INSTPROG "${INSTNAME}" |
93 | StrCpy $INSTEXE "${INSTEXE}" | 100 | StrCpy $INSTEXE "${INSTEXE}" |
94 | StrCpy $INSTSHORTCUT "${SHORTCUT}" | 101 | StrCpy $INSTSHORTCUT "${SHORTCUT}" |
@@ -103,21 +110,22 @@ Call CheckIfAlreadyCurrent ; Make sure that we haven't already installed this v | |||
103 | Call CloseSecondLife ; Make sure we're not running | 110 | Call CloseSecondLife ; Make sure we're not running |
104 | Call RemoveNSIS ; Check for old NSIS install to remove | 111 | Call RemoveNSIS ; Check for old NSIS install to remove |
105 | 112 | ||
113 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
106 | ;;; Don't remove cache files during a regular install, removing the inventory cache on upgrades results in lots of damage to the servers. | 114 | ;;; Don't remove cache files during a regular install, removing the inventory cache on upgrades results in lots of damage to the servers. |
107 | ;Call RemoveCacheFiles ; Installing over removes potentially corrupted | 115 | ;Call RemoveCacheFiles ; Installing over removes potentially corrupted |
108 | ; VFS and cache files. | 116 | ; VFS and cache files. |
109 | 117 | ||
110 | 118 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
111 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
112 | ;;; Files | 119 | ;;; Files |
113 | ;;; | 120 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
114 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
115 | ;; This placeholder is replaced by the complete list of all the files in the installer, by viewer_manifest.py | 121 | ;; This placeholder is replaced by the complete list of all the files in the installer, by viewer_manifest.py |
116 | %%INSTALL_FILES%% | 122 | %%INSTALL_FILES%% |
117 | 123 | ||
124 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
118 | ; If this is a silent update, we don't need to re-create these shortcuts or registry entries. | 125 | ; If this is a silent update, we don't need to re-create these shortcuts or registry entries. |
119 | IfSilent POST_INSTALL | 126 | IfSilent POST_INSTALL |
120 | 127 | ||
128 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
121 | ; Shortcuts in start menu | 129 | ; Shortcuts in start menu |
122 | CreateDirectory "$SMPROGRAMS\$INSTSHORTCUT" | 130 | CreateDirectory "$SMPROGRAMS\$INSTSHORTCUT" |
123 | SetOutPath "$INSTDIR" | 131 | SetOutPath "$INSTDIR" |
@@ -146,6 +154,7 @@ CreateShortCut "$SMPROGRAMS\$INSTSHORTCUT\SL Scripting Language Help.lnk" \ | |||
146 | CreateShortCut "$SMPROGRAMS\$INSTSHORTCUT\Uninstall $INSTSHORTCUT.lnk" \ | 154 | CreateShortCut "$SMPROGRAMS\$INSTSHORTCUT\Uninstall $INSTSHORTCUT.lnk" \ |
147 | '"$INSTDIR\uninst.exe"' '/P="$INSTPROG"' | 155 | '"$INSTDIR\uninst.exe"' '/P="$INSTPROG"' |
148 | 156 | ||
157 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
149 | ; Other shortcuts | 158 | ; Other shortcuts |
150 | SetOutPath "$INSTDIR" | 159 | SetOutPath "$INSTDIR" |
151 | CreateShortCut "$DESKTOP\$INSTSHORTCUT.lnk" "$INSTDIR\$INSTEXE" "$INSTFLAGS" | 160 | CreateShortCut "$DESKTOP\$INSTSHORTCUT.lnk" "$INSTDIR\$INSTEXE" "$INSTFLAGS" |
@@ -164,6 +173,7 @@ CreateShortCut "$INSTDIR\$INSTSHORTCUT Museum Spanish.lnk" "$INSTDIR\$INSTEXE" " | |||
164 | 173 | ||
165 | !endif | 174 | !endif |
166 | 175 | ||
176 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
167 | ; Write registry | 177 | ; Write registry |
168 | WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "" "$INSTDIR" | 178 | WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "" "$INSTDIR" |
169 | WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Version" "${VERSION_LONG}" | 179 | WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Version" "${VERSION_LONG}" |
@@ -173,6 +183,7 @@ WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Exe" | |||
173 | WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\$INSTPROG" "DisplayName" "$INSTPROG (remove only)" | 183 | WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\$INSTPROG" "DisplayName" "$INSTPROG (remove only)" |
174 | WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\$INSTPROG" "UninstallString" '"$INSTDIR\uninst.exe" /P="$INSTPROG"' | 184 | WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\$INSTPROG" "UninstallString" '"$INSTDIR\uninst.exe" /P="$INSTPROG"' |
175 | 185 | ||
186 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
176 | ; Write URL registry info | 187 | ; Write URL registry info |
177 | WriteRegStr HKEY_CLASSES_ROOT "${URLNAME}" "(default)" "URL:Second Life" | 188 | WriteRegStr HKEY_CLASSES_ROOT "${URLNAME}" "(default)" "URL:Second Life" |
178 | WriteRegStr HKEY_CLASSES_ROOT "${URLNAME}" "URL Protocol" "" | 189 | WriteRegStr HKEY_CLASSES_ROOT "${URLNAME}" "URL Protocol" "" |
@@ -192,10 +203,10 @@ WriteUninstaller "$INSTDIR\uninst.exe" | |||
192 | ; end of default section | 203 | ; end of default section |
193 | SectionEnd | 204 | SectionEnd |
194 | 205 | ||
195 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 206 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
196 | ; PostInstallExe | 207 | ; PostInstallExe |
197 | ; This just runs any post installation scripts. | 208 | ; This just runs any post installation scripts. |
198 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 209 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
199 | Function PostInstallExe | 210 | Function PostInstallExe |
200 | push $0 | 211 | push $0 |
201 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "PostInstallExe" | 212 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "PostInstallExe" |
@@ -204,11 +215,10 @@ push $0 | |||
204 | pop $0 | 215 | pop $0 |
205 | FunctionEnd | 216 | FunctionEnd |
206 | 217 | ||
207 | 218 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
208 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
209 | ; CheckStartupParameters | 219 | ; CheckStartupParameters |
210 | ; Sets INSTFLAGS, INSTPROG, and INSTEXE. | 220 | ; Sets INSTFLAGS, INSTPROG, and INSTEXE. |
211 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 221 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
212 | Function CheckStartupParams | 222 | Function CheckStartupParams |
213 | push $0 | 223 | push $0 |
214 | push $R0 | 224 | push $R0 |
@@ -237,7 +247,7 @@ push $R0 | |||
237 | Goto FINISHED | 247 | Goto FINISHED |
238 | 248 | ||
239 | ABORT: | 249 | ABORT: |
240 | MessageBox MB_OK "Could not find the program '$INSTPROG'. Silent update failed." | 250 | MessageBox MB_OK $(CheckStartupParamsMB) |
241 | Quit | 251 | Quit |
242 | 252 | ||
243 | FINISHED: | 253 | FINISHED: |
@@ -246,6 +256,9 @@ pop $R0 | |||
246 | pop $0 | 256 | pop $0 |
247 | FunctionEnd | 257 | FunctionEnd |
248 | 258 | ||
259 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
260 | ;; | ||
261 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
249 | Function un.CheckStartupParams | 262 | Function un.CheckStartupParams |
250 | push $0 | 263 | push $0 |
251 | push $R0 | 264 | push $R0 |
@@ -274,7 +287,7 @@ push $R0 | |||
274 | Goto FINISHED | 287 | Goto FINISHED |
275 | 288 | ||
276 | ABORT: | 289 | ABORT: |
277 | MessageBox MB_OK "Could not find the program '$INSTPROG'. Silent update failed." | 290 | MessageBox MB_OK $(CheckStartupParamsMB) |
278 | Quit | 291 | Quit |
279 | 292 | ||
280 | FINISHED: | 293 | FINISHED: |
@@ -283,26 +296,26 @@ pop $R0 | |||
283 | pop $0 | 296 | pop $0 |
284 | FunctionEnd | 297 | FunctionEnd |
285 | 298 | ||
286 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 299 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
287 | ;;; After install completes, offer readme file | 300 | ;;; After install completes, offer readme file |
288 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 301 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
289 | Function .onInstSuccess | 302 | Function .onInstSuccess |
290 | MessageBox MB_YESNO \ | 303 | MessageBox MB_YESNO \ |
291 | "Start Second Life now?" /SD IDYES IDNO NoReadme | 304 | $(InstSuccesssQuestion) /SD IDYES IDNO NoReadme |
292 | ; Assumes SetOutPath $INSTDIR | 305 | ; Assumes SetOutPath $INSTDIR |
293 | Exec '"$INSTDIR\$INSTEXE" $INSTFLAGS' | 306 | Exec '"$INSTDIR\$INSTEXE" $INSTFLAGS' |
294 | NoReadme: | 307 | NoReadme: |
295 | FunctionEnd | 308 | FunctionEnd |
296 | 309 | ||
297 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 310 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
298 | ; Remove old NSIS version. Modifies no variables. | 311 | ; Remove old NSIS version. Modifies no variables. |
299 | ; Does NOT delete the LindenWorld directory, or any | 312 | ; Does NOT delete the LindenWorld directory, or any |
300 | ; user files in that directory. | 313 | ; user files in that directory. |
301 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 314 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
302 | Function RemoveNSIS | 315 | Function RemoveNSIS |
303 | Push $0 | 316 | Push $0 |
304 | ; Grab the installation directory of the old version | 317 | ; Grab the installation directory of the old version |
305 | DetailPrint "Checking for old version..." | 318 | DetailPrint $(RemoveOldNSISVersion) |
306 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "" | 319 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "" |
307 | 320 | ||
308 | ; If key doesn't exist, skip uninstall | 321 | ; If key doesn't exist, skip uninstall |
@@ -323,9 +336,9 @@ Function RemoveNSIS | |||
323 | Pop $0 | 336 | Pop $0 |
324 | FunctionEnd | 337 | FunctionEnd |
325 | 338 | ||
326 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 339 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
327 | ; Make sure we're not on Windows 98 / ME | 340 | ; Make sure we're not on Windows 98 / ME |
328 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 341 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
329 | Function CheckWindowsVersion | 342 | Function CheckWindowsVersion |
330 | DetailPrint "Checking Windows version..." | 343 | DetailPrint "Checking Windows version..." |
331 | Call GetWindowsVersion | 344 | Call GetWindowsVersion |
@@ -339,46 +352,49 @@ Function CheckWindowsVersion | |||
339 | StrCmp $R0 "NT" win_ver_bad | 352 | StrCmp $R0 "NT" win_ver_bad |
340 | Return | 353 | Return |
341 | win_ver_bad: | 354 | win_ver_bad: |
342 | MessageBox MB_YESNO 'Second Life only supports Windows XP, Windows 2000, and Mac OS X.$\n$\nAttempting to install on Windows $R0 can result in crashes and data loss.$\n$\nInstall anyway?' IDNO win_ver_abort | 355 | MessageBox MB_YESNO $(CheckWindowsVersionMB) IDNO win_ver_abort |
343 | Return | 356 | Return |
344 | win_ver_abort: | 357 | win_ver_abort: |
345 | Quit | 358 | Quit |
346 | FunctionEnd | 359 | FunctionEnd |
347 | 360 | ||
348 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 361 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
349 | ; Make sure the user can install/uninstall | 362 | ; Make sure the user can install/uninstall |
350 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 363 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
351 | Function CheckIfAdministrator | 364 | Function CheckIfAdministrator |
352 | DetailPrint "Checking for permission to install..." | 365 | DetailPrint $(CheckAdministratorInstDP) |
353 | UserInfo::GetAccountType | 366 | UserInfo::GetAccountType |
354 | Pop $R0 | 367 | Pop $R0 |
355 | StrCmp $R0 "Admin" is_admin | 368 | StrCmp $R0 "Admin" is_admin |
356 | MessageBox MB_OK 'You appear to be using a "limited" account.$\nYou must be an "administrator" to install Second Life.' | 369 | MessageBox MB_OK $(CheckAdministratorInstMB) |
357 | Quit | 370 | Quit |
358 | is_admin: | 371 | is_admin: |
359 | Return | 372 | Return |
360 | FunctionEnd | 373 | FunctionEnd |
361 | 374 | ||
375 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
376 | ;; | ||
377 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
362 | Function un.CheckIfAdministrator | 378 | Function un.CheckIfAdministrator |
363 | DetailPrint "Checking for permission to uninstall..." | 379 | DetailPrint $(CheckAdministratorUnInstDP) |
364 | UserInfo::GetAccountType | 380 | UserInfo::GetAccountType |
365 | Pop $R0 | 381 | Pop $R0 |
366 | StrCmp $R0 "Admin" is_admin | 382 | StrCmp $R0 "Admin" is_admin |
367 | MessageBox MB_OK 'You appear to be using a "limited" account.$\nYou must be an "administrator" to uninstall Second Life.' | 383 | MessageBox MB_OK $(CheckAdministratorUnInstMB) |
368 | Quit | 384 | Quit |
369 | is_admin: | 385 | is_admin: |
370 | Return | 386 | Return |
371 | FunctionEnd | 387 | FunctionEnd |
372 | 388 | ||
373 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 389 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
374 | ; Checks to see if the current version has already been installed (according to the registry). | 390 | ; Checks to see if the current version has already been installed (according to the registry). |
375 | ; If it has, allow user to bail out of install process. | 391 | ; If it has, allow user to bail out of install process. |
376 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 392 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
377 | Function CheckIfAlreadyCurrent | 393 | Function CheckIfAlreadyCurrent |
378 | Push $0 | 394 | Push $0 |
379 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Version" | 395 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Version" |
380 | StrCmp $0 ${VERSION_LONG} 0 DONE | 396 | StrCmp $0 ${VERSION_LONG} 0 DONE |
381 | MessageBox MB_OKCANCEL "It appears that Second Life ${VERSION_LONG} is already installed.$\n$\nWould you like to install it again?" /SD IDOK IDOK DONE | 397 | MessageBox MB_OKCANCEL $(CheckIfCurrentMB) /SD IDOK IDOK DONE |
382 | Quit | 398 | Quit |
383 | 399 | ||
384 | DONE: | 400 | DONE: |
@@ -386,22 +402,21 @@ Function CheckIfAlreadyCurrent | |||
386 | Return | 402 | Return |
387 | FunctionEnd | 403 | FunctionEnd |
388 | 404 | ||
389 | 405 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
390 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
391 | ; Close the program, if running. Modifies no variables. | 406 | ; Close the program, if running. Modifies no variables. |
392 | ; Allows user to bail out of install process. | 407 | ; Allows user to bail out of install process. |
393 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 408 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
394 | Function CloseSecondLife | 409 | Function CloseSecondLife |
395 | Push $0 | 410 | Push $0 |
396 | FindWindow $0 "Second Life" "" | 411 | FindWindow $0 "Second Life" "" |
397 | IntCmp $0 0 DONE | 412 | IntCmp $0 0 DONE |
398 | MessageBox MB_OKCANCEL "Second Life can't be installed while it is already running.$\n$\nFinish what you're doing then select OK to close Second Life and continue.$\nSelect CANCEL to cancel installation." IDOK CLOSE IDCANCEL CANCEL_INSTALL | 413 | MessageBox MB_OKCANCEL $(CloseSecondLifeInstMB) IDOK CLOSE IDCANCEL CANCEL_INSTALL |
399 | 414 | ||
400 | CANCEL_INSTALL: | 415 | CANCEL_INSTALL: |
401 | Quit | 416 | Quit |
402 | 417 | ||
403 | CLOSE: | 418 | CLOSE: |
404 | DetailPrint "Waiting for Second Life to shut down..." | 419 | DetailPrint $(CloseSecondLifeInstDP) |
405 | SendMessage $0 16 0 0 | 420 | SendMessage $0 16 0 0 |
406 | 421 | ||
407 | LOOP: | 422 | LOOP: |
@@ -416,59 +431,59 @@ Function CloseSecondLife | |||
416 | FunctionEnd | 431 | FunctionEnd |
417 | 432 | ||
418 | 433 | ||
419 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 434 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
420 | ; Delete files in Documents and Settings\<user>\SecondLife\cache | 435 | ; Delete files in Documents and Settings\<user>\SecondLife\cache |
421 | ; Delete files in Documents and Settings\All Users\SecondLife\cache | 436 | ; Delete files in Documents and Settings\All Users\SecondLife\cache |
422 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 437 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
423 | Function RemoveCacheFiles | 438 | ;Function RemoveCacheFiles |
424 | 439 | ; | |
425 | ; Delete files in Documents and Settings\<user>\SecondLife | 440 | ;; Delete files in Documents and Settings\<user>\SecondLife |
426 | Push $0 | 441 | ;Push $0 |
427 | Push $1 | 442 | ;Push $1 |
428 | Push $2 | 443 | ;Push $2 |
429 | DetailPrint "Deleting cache files in Documents and Settings folder" | 444 | ; DetailPrint $(RemoveCacheFilesDP) |
430 | 445 | ; | |
431 | StrCpy $0 0 ; Index number used to iterate via EnumRegKey | 446 | ; StrCpy $0 0 ; Index number used to iterate via EnumRegKey |
432 | 447 | ; | |
433 | LOOP: | 448 | ; LOOP: |
434 | EnumRegKey $1 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList" $0 | 449 | ; EnumRegKey $1 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList" $0 |
435 | StrCmp $1 "" DONE ; no more users | 450 | ; StrCmp $1 "" DONE ; no more users |
436 | 451 | ; | |
437 | ReadRegStr $2 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\$1" "ProfileImagePath" | 452 | ; ReadRegStr $2 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\$1" "ProfileImagePath" |
438 | StrCmp $2 "" CONTINUE 0 ; "ProfileImagePath" value is missing | 453 | ; StrCmp $2 "" CONTINUE 0 ; "ProfileImagePath" value is missing |
439 | 454 | ; | |
440 | ; Required since ProfileImagePath is of type REG_EXPAND_SZ | 455 | ; ; Required since ProfileImagePath is of type REG_EXPAND_SZ |
441 | ExpandEnvStrings $2 $2 | 456 | ; ExpandEnvStrings $2 $2 |
442 | 457 | ; | |
443 | ; When explicitly uninstalling, everything goes away | 458 | ; ; When explicitly uninstalling, everything goes away |
444 | RMDir /r "$2\Application Data\SecondLife\cache" | 459 | ; RMDir /r "$2\Application Data\SecondLife\cache" |
445 | 460 | ; | |
446 | CONTINUE: | 461 | ; CONTINUE: |
447 | IntOp $0 $0 + 1 | 462 | ; IntOp $0 $0 + 1 |
448 | Goto LOOP | 463 | ; Goto LOOP |
449 | DONE: | 464 | ; DONE: |
450 | Pop $2 | 465 | ;Pop $2 |
451 | Pop $1 | 466 | ;Pop $1 |
452 | Pop $0 | 467 | ;Pop $0 |
453 | 468 | ; | |
454 | ; Delete files in Documents and Settings\All Users\SecondLife | 469 | ;; Delete files in Documents and Settings\All Users\SecondLife |
455 | Push $0 | 470 | ;Push $0 |
456 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" "Common AppData" | 471 | ; ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" "Common AppData" |
457 | StrCmp $0 "" +2 | 472 | ; StrCmp $0 "" +2 |
458 | RMDir /r "$0\SecondLife\cache" | 473 | ; RMDir /r "$0\SecondLife\cache" |
459 | Pop $0 | 474 | ;Pop $0 |
460 | 475 | ; | |
461 | ; Delete filse in C:\Windows\Application Data\SecondLife | 476 | ;; Delete filse in C:\Windows\Application Data\SecondLife |
462 | ; If the user is running on a pre-NT system, Application Data lives here instead of | 477 | ;; If the user is running on a pre-NT system, Application Data lives here instead of |
463 | ; in Documents and Settings. | 478 | ;; in Documents and Settings. |
464 | RMDir /r "$WINDIR\Application Data\SecondLife\cache" | 479 | ;RMDir /r "$WINDIR\Application Data\SecondLife\cache" |
465 | 480 | ; | |
466 | FunctionEnd | 481 | ;FunctionEnd |
467 | 482 | ||
468 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 483 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
469 | ; Delete files in Documents and Settings\<user>\SecondLife | 484 | ; Delete files in Documents and Settings\<user>\SecondLife |
470 | ; Delete files in Documents and Settings\All Users\SecondLife | 485 | ; Delete files in Documents and Settings\All Users\SecondLife |
471 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 486 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
472 | Function un.DocumentsAndSettingsFolder | 487 | Function un.DocumentsAndSettingsFolder |
473 | 488 | ||
474 | ; Delete files in Documents and Settings\<user>\SecondLife | 489 | ; Delete files in Documents and Settings\<user>\SecondLife |
@@ -522,21 +537,21 @@ RMDir /r "$WINDIR\Application Data\SecondLife" | |||
522 | 537 | ||
523 | FunctionEnd | 538 | FunctionEnd |
524 | 539 | ||
525 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 540 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
526 | ; Close the program, if running. Modifies no variables. | 541 | ; Close the program, if running. Modifies no variables. |
527 | ; Allows user to bail out of uninstall process. | 542 | ; Allows user to bail out of uninstall process. |
528 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 543 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
529 | Function un.CloseSecondLife | 544 | Function un.CloseSecondLife |
530 | Push $0 | 545 | Push $0 |
531 | FindWindow $0 "Second Life" "" | 546 | FindWindow $0 "Second Life" "" |
532 | IntCmp $0 0 DONE | 547 | IntCmp $0 0 DONE |
533 | MessageBox MB_OKCANCEL "Second Life can't be uninstalled while it is already running.$\n$\nFinish what you're doing then select OK to close Second Life and continue.$\nSelect CANCEL to cancel installation." IDOK CLOSE IDCANCEL CANCEL_UNINSTALL | 548 | MessageBox MB_OKCANCEL $(CloseSecondLifeUnInstMB) IDOK CLOSE IDCANCEL CANCEL_UNINSTALL |
534 | 549 | ||
535 | CANCEL_UNINSTALL: | 550 | CANCEL_UNINSTALL: |
536 | Quit | 551 | Quit |
537 | 552 | ||
538 | CLOSE: | 553 | CLOSE: |
539 | DetailPrint "Waiting for Second Life to shut down..." | 554 | DetailPrint $(CloseSecondLifeUnInstDP) |
540 | SendMessage $0 16 0 0 | 555 | SendMessage $0 16 0 0 |
541 | 556 | ||
542 | LOOP: | 557 | LOOP: |
@@ -550,7 +565,7 @@ Function un.CloseSecondLife | |||
550 | Return | 565 | Return |
551 | FunctionEnd | 566 | FunctionEnd |
552 | 567 | ||
553 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 568 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
554 | ;;; Delete the installed files | 569 | ;;; Delete the installed files |
555 | ;;; This deletes the uninstall executable, but it works | 570 | ;;; This deletes the uninstall executable, but it works |
556 | ;;; because it is copied to temp directory before running | 571 | ;;; because it is copied to temp directory before running |
@@ -558,7 +573,7 @@ FunctionEnd | |||
558 | ;;; Note: You must list all files here, because we only | 573 | ;;; Note: You must list all files here, because we only |
559 | ;;; want to delete our files, not things users left in the | 574 | ;;; want to delete our files, not things users left in the |
560 | ;;; application directories. | 575 | ;;; application directories. |
561 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 576 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
562 | Function un.ProgramFiles | 577 | Function un.ProgramFiles |
563 | 578 | ||
564 | ;; Remove mozilla file first so recursive directory deletion doesn't get hung up | 579 | ;; Remove mozilla file first so recursive directory deletion doesn't get hung up |
@@ -597,26 +612,26 @@ RMDir "$INSTDIR" | |||
597 | IfFileExists "$INSTDIR" FOLDERFOUND NOFOLDER | 612 | IfFileExists "$INSTDIR" FOLDERFOUND NOFOLDER |
598 | 613 | ||
599 | FOLDERFOUND: | 614 | FOLDERFOUND: |
600 | MessageBox MB_YESNO "There are still files in your SecondLife program directory.$\n$\nThese are possibly files you created or moved to:$\n$INSTDIR$\n$\nDo you want to remove them?" IDNO NOFOLDER | 615 | MessageBox MB_YESNO $(DeleteProgramFilesMB) IDNO NOFOLDER |
601 | RMDir /r "$INSTDIR" | 616 | RMDir /r "$INSTDIR" |
602 | 617 | ||
603 | NOFOLDER: | 618 | NOFOLDER: |
604 | 619 | ||
605 | FunctionEnd | 620 | FunctionEnd |
606 | 621 | ||
607 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 622 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
608 | ;;; Uninstall settings | 623 | ;;; Uninstall settings |
609 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 624 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
610 | UninstallText "This will uninstall Second Life ${VERSION_LONG} from your system." | 625 | UninstallText $(UninstallTextMsg) |
611 | ShowUninstDetails show | 626 | ShowUninstDetails show |
612 | 627 | ||
613 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 628 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
614 | ;;; Uninstall section | 629 | ;;; Uninstall section |
615 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 630 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
616 | Section Uninstall | 631 | Section Uninstall |
617 | 632 | ||
618 | ; Start with some default values. | 633 | ; Start with some default values. |
619 | StrCpy $INSTFLAGS "${INSTFLAGS}" | 634 | StrCpy $INSTFLAGS "" |
620 | StrCpy $INSTPROG "${INSTNAME}" | 635 | StrCpy $INSTPROG "${INSTNAME}" |
621 | StrCpy $INSTEXE "${INSTEXE}" | 636 | StrCpy $INSTEXE "${INSTEXE}" |
622 | StrCpy $INSTSHORTCUT "${SHORTCUT}" | 637 | StrCpy $INSTSHORTCUT "${SHORTCUT}" |
@@ -629,9 +644,10 @@ SetShellVarContext all | |||
629 | ; Make sure we're not running | 644 | ; Make sure we're not running |
630 | Call un.CloseSecondLife | 645 | Call un.CloseSecondLife |
631 | 646 | ||
632 | ; Clean up registry keys | 647 | ; Clean up registry keys (these should all be !defines somewhere) |
633 | DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" | 648 | DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" |
634 | DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$INSTPROG" | 649 | DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$INSTPROG" |
650 | DeleteRegKey HKEY_LOCAL_MACHINE "Software\Linden Research, Inc.\Installer Language" | ||
635 | 651 | ||
636 | ; Clean up shortcuts | 652 | ; Clean up shortcuts |
637 | Delete "$SMPROGRAMS\$INSTSHORTCUT\*.*" | 653 | Delete "$SMPROGRAMS\$INSTSHORTCUT\*.*" |
@@ -652,7 +668,7 @@ Call un.ProgramFiles | |||
652 | 668 | ||
653 | SectionEnd ; end of uninstall section | 669 | SectionEnd ; end of uninstall section |
654 | 670 | ||
655 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 671 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
656 | ; (From the NSIS wiki, DK) | 672 | ; (From the NSIS wiki, DK) |
657 | ; GetParameterValue | 673 | ; GetParameterValue |
658 | ; | 674 | ; |
@@ -667,7 +683,7 @@ SectionEnd ; end of uninstall section | |||
667 | ; or: | 683 | ; or: |
668 | ; foo.exe /S "/L=1033" /D="C:\Program Files\Foo" | 684 | ; foo.exe /S "/L=1033" /D="C:\Program Files\Foo" |
669 | ; gpv "/L=" "1033" | 685 | ; gpv "/L=" "1033" |
670 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 686 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
671 | 687 | ||
672 | !macro GetParameterValue SWITCH DEFAULT | 688 | !macro GetParameterValue SWITCH DEFAULT |
673 | Push $0 | 689 | Push $0 |
@@ -770,7 +786,7 @@ Function un.GetProgramName | |||
770 | !insertmacro GetParameterValue "/P=" "SecondLife" | 786 | !insertmacro GetParameterValue "/P=" "SecondLife" |
771 | FunctionEnd | 787 | FunctionEnd |
772 | 788 | ||
773 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 789 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
774 | ; (From the NSIS documentation, JC) | 790 | ; (From the NSIS documentation, JC) |
775 | ; GetWindowsVersion | 791 | ; GetWindowsVersion |
776 | ; | 792 | ; |
@@ -787,8 +803,7 @@ FunctionEnd | |||
787 | ; Call GetWindowsVersion | 803 | ; Call GetWindowsVersion |
788 | ; Pop $R0 | 804 | ; Pop $R0 |
789 | ; ; at this point $R0 is "NT 4.0" or whatnot | 805 | ; ; at this point $R0 is "NT 4.0" or whatnot |
790 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 806 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
791 | |||
792 | Function GetWindowsVersion | 807 | Function GetWindowsVersion |
793 | 808 | ||
794 | Push $R0 | 809 | Push $R0 |
@@ -860,3 +875,61 @@ Function GetWindowsVersion | |||
860 | Exch $R0 | 875 | Exch $R0 |
861 | 876 | ||
862 | FunctionEnd | 877 | FunctionEnd |
878 | |||
879 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
880 | ;; Note: to add new languages, add a language file include to the list | ||
881 | ;; at the top of this file, add an entry to the menu and then add an | ||
882 | ;; entry to the language ID selector below | ||
883 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
884 | Function .onInit | ||
885 | |||
886 | ; read the language from registry (ok if not there) and set langauge menu | ||
887 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\${INSTNAME}" "InstallerLanguage" | ||
888 | StrCpy $LANGUAGE $0 | ||
889 | |||
890 | Push "" | ||
891 | Push ${LANG_ENGLISH} | ||
892 | Push English | ||
893 | # Push ${LANG_GERMAN} | ||
894 | # Push German | ||
895 | # Push ${LANG_JAPANESE} | ||
896 | # Push Japanese | ||
897 | Push ${LANG_KOREAN} | ||
898 | Push Korean | ||
899 | Push A ; A means auto count languages for the auto count to work the first empty push (Push "") must remain | ||
900 | LangDLL::LangDialog "Installer Language" "Please select the language of the installer" | ||
901 | Pop $LANGUAGE | ||
902 | StrCmp $LANGUAGE "cancel" 0 +2 | ||
903 | Abort | ||
904 | |||
905 | ; save language in registry | ||
906 | WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\${INSTNAME}" "InstallerLanguage" $LANGUAGE | ||
907 | |||
908 | ; generate language ID that will be used as a command line arg | ||
909 | StrCmp $LANGUAGE "1042" 0 +3 | ||
910 | StrCpy $LANGFLAGS " -set SystemLanguage ko" | ||
911 | Goto EndOfFunc | ||
912 | # StrCmp $LANGUAGE "1041" 0 +3 | ||
913 | # StrCpy $LANGFLAGS " -set SystemLanguage ja" | ||
914 | # Goto EndOfFunc | ||
915 | # StrCmp $LANGUAGE "1031" 0 +3 | ||
916 | # StrCpy $LANGFLAGS " -set SystemLanguage de" | ||
917 | # Goto EndOfFunc | ||
918 | StrCmp $LANGUAGE "1033" 0 +3 | ||
919 | StrCpy $LANGFLAGS " -set SystemLanguage en-us" | ||
920 | Goto EndOfFunc | ||
921 | |||
922 | EndOfFunc: | ||
923 | |||
924 | FunctionEnd | ||
925 | |||
926 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
927 | Function un.onInit | ||
928 | |||
929 | ; read language from registry and set for ininstaller | ||
930 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\${INSTNAME}" "InstallerLanguage" | ||
931 | StrCpy $LANGUAGE $0 | ||
932 | |||
933 | FunctionEnd | ||
934 | |||
935 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; EOF ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; \ No newline at end of file | ||
diff --git a/linden/indra/newview/installers/windows/installer_template_multilang.nsi b/linden/indra/newview/installers/windows/installer_template_multilang.nsi deleted file mode 100644 index b722a0f..0000000 --- a/linden/indra/newview/installers/windows/installer_template_multilang.nsi +++ /dev/null | |||
@@ -1,938 +0,0 @@ | |||
1 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
2 | ;; secondlife setup.nsi | ||
3 | ;; Copyright 2004-2007, Linden Research, Inc. | ||
4 | ;; For info, see http://www.nullsoft.com/free/nsis/ | ||
5 | ;; | ||
6 | ;; NSIS 2.22 or higher required | ||
7 | ;; Author: James Cook, Don Kjer, Callum Prentice | ||
8 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
9 | |||
10 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
11 | ;;; Detect NSIS compiler version | ||
12 | !define "NSIS${NSIS_VERSION}" | ||
13 | !ifdef "NSISv2.02" | "NSISv2.03" | "NSISv2.04" | "NSISv2.05" | "NSISv2.06" | ||
14 | ;; before 2.07 defaulted lzma to solid (whole file) | ||
15 | SetCompressor lzma | ||
16 | !else | ||
17 | ;; after 2.07 required /solid for whole file compression | ||
18 | SetCompressor /solid lzma | ||
19 | !endif | ||
20 | |||
21 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
22 | ;; Compiler flags | ||
23 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
24 | SetOverwrite on ; overwrite files | ||
25 | SetCompress auto ; compress iff saves space | ||
26 | SetDatablockOptimize off ; only saves us 0.1%, not worth it | ||
27 | XPStyle on ; add an XP manifest to the installer | ||
28 | |||
29 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
30 | ;;; Project flags | ||
31 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
32 | |||
33 | %%VERSION%% | ||
34 | |||
35 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
36 | ;; - language files - one for each language (or flavor thereof) | ||
37 | ;; (these files are in the same place as the nsi template but the python script generates a new nsi file in the | ||
38 | ;; application directory so we have to add a path to these include files) | ||
39 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
40 | !include "installers\windows\lang_de.nsi" | ||
41 | !include "installers\windows\lang_en-us.nsi" | ||
42 | !include "installers\windows\lang_ja.nsi" | ||
43 | !include "installers\windows\lang_ko.nsi" | ||
44 | |||
45 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
46 | ;; Tweak for different servers/builds (this placeholder is replaced by viewer_manifest.py) | ||
47 | %%GRID_VARS%% | ||
48 | |||
49 | Name ${INSTNAME} | ||
50 | |||
51 | SubCaption 0 $(LicenseSubTitleSetup) ; override "license agreement" text | ||
52 | |||
53 | BrandingText " " ; bottom of window text | ||
54 | Icon res\install_icon.ico ; our custom icon | ||
55 | UninstallIcon res\uninstall_icon.ico ; our custom icon | ||
56 | WindowIcon on ; show our icon in left corner | ||
57 | BGGradient off ; no big background window | ||
58 | CRCCheck on ; make sure CRC is OK | ||
59 | InstProgressFlags smooth colored ; new colored smooth look | ||
60 | ShowInstDetails nevershow ; no details, no "show" button | ||
61 | SetOverwrite on ; stomp files by default | ||
62 | AutoCloseWindow true ; after all files install, close window | ||
63 | |||
64 | !ifdef UPDATE | ||
65 | LicenseText $(LicenseDescUpdate) $(LicenseDescNext) | ||
66 | !else | ||
67 | LicenseText $(LicenseDescSetup) $(LicenseDescNext) | ||
68 | !endif | ||
69 | |||
70 | LicenseData "releasenotes.txt" | ||
71 | |||
72 | InstallDir "$PROGRAMFILES\${INSTNAME}" | ||
73 | InstallDirRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\${INSTNAME}" "" | ||
74 | !ifdef UPDATE | ||
75 | DirText $(DirectoryChooseTitle) $(DirectoryChooseUpdate) | ||
76 | !else | ||
77 | DirText $(DirectoryChooseTitle) $(DirectoryChooseSetup) | ||
78 | !endif | ||
79 | |||
80 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
81 | ;;; Variables | ||
82 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
83 | Var INSTPROG | ||
84 | Var INSTEXE | ||
85 | Var INSTFLAGS | ||
86 | Var LANGFLAGS | ||
87 | Var INSTSHORTCUT | ||
88 | |||
89 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
90 | ;;; Sections | ||
91 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
92 | Section "" ; (default section) | ||
93 | |||
94 | SetShellVarContext all ; install for all users (if you change this, change it in the uninstall as well) | ||
95 | |||
96 | ; Start with some default values. | ||
97 | StrCpy $INSTFLAGS "${INSTFLAGS}" | ||
98 | StrCpy $INSTFLAGS "$INSTFLAGS $LANGFLAGS" | ||
99 | StrCpy $INSTPROG "${INSTNAME}" | ||
100 | StrCpy $INSTEXE "${INSTEXE}" | ||
101 | StrCpy $INSTSHORTCUT "${SHORTCUT}" | ||
102 | |||
103 | IfSilent +2 | ||
104 | Goto NOT_SILENT | ||
105 | Call CheckStartupParams ; Figure out where, what and how to install. | ||
106 | NOT_SILENT: | ||
107 | Call CheckWindowsVersion ; warn if on Windows 98/ME | ||
108 | Call CheckIfAdministrator ; Make sure the user can install/uninstall | ||
109 | Call CheckIfAlreadyCurrent ; Make sure that we haven't already installed this version | ||
110 | Call CloseSecondLife ; Make sure we're not running | ||
111 | Call RemoveNSIS ; Check for old NSIS install to remove | ||
112 | |||
113 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
114 | ;;; Don't remove cache files during a regular install, removing the inventory cache on upgrades results in lots of damage to the servers. | ||
115 | ;Call RemoveCacheFiles ; Installing over removes potentially corrupted | ||
116 | ; VFS and cache files. | ||
117 | |||
118 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
119 | ;;; Files | ||
120 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
121 | ;; This placeholder is replaced by the complete list of all the files in the installer, by viewer_manifest.py | ||
122 | %%INSTALL_FILES%% | ||
123 | |||
124 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
125 | ; If this is a silent update, we don't need to re-create these shortcuts or registry entries. | ||
126 | IfSilent POST_INSTALL | ||
127 | |||
128 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
129 | ; Shortcuts in start menu | ||
130 | CreateDirectory "$SMPROGRAMS\$INSTSHORTCUT" | ||
131 | SetOutPath "$INSTDIR" | ||
132 | CreateShortCut "$SMPROGRAMS\$INSTSHORTCUT\$INSTSHORTCUT.lnk" \ | ||
133 | "$INSTDIR\$INSTEXE" "$INSTFLAGS" | ||
134 | |||
135 | !ifdef MUSEUM | ||
136 | CreateShortCut "$SMPROGRAMS\$INSTSHORTCUT\$INSTSHORTCUT Museum.lnk" \ | ||
137 | |||
138 | "$INSTDIR\$INSTEXE" "$INSTFLAGS -simple" | ||
139 | CreateShortCut "$SMPROGRAMS\$INSTSHORTCUT\$INSTSHORTCUT Museum Spanish.lnk" \ | ||
140 | |||
141 | "$INSTDIR\$INSTEXE" "$INSTFLAGS -simple -spanish" | ||
142 | !endif | ||
143 | |||
144 | WriteINIStr "$SMPROGRAMS\$INSTSHORTCUT\SL Create Trial Account.url" \ | ||
145 | "InternetShortcut" "URL" \ | ||
146 | "http://www.secondlife.com/registration/" | ||
147 | WriteINIStr "$SMPROGRAMS\$INSTSHORTCUT\SL Your Account.url" \ | ||
148 | "InternetShortcut" "URL" \ | ||
149 | "http://www.secondlife.com/account/" | ||
150 | CreateShortCut "$SMPROGRAMS\$INSTSHORTCUT\SL Release Notes.lnk" \ | ||
151 | "$INSTDIR\releasenotes.txt" | ||
152 | CreateShortCut "$SMPROGRAMS\$INSTSHORTCUT\SL Scripting Language Help.lnk" \ | ||
153 | "$INSTDIR\lsl_guide.html" | ||
154 | CreateShortCut "$SMPROGRAMS\$INSTSHORTCUT\Uninstall $INSTSHORTCUT.lnk" \ | ||
155 | '"$INSTDIR\uninst.exe"' '/P="$INSTPROG"' | ||
156 | |||
157 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
158 | ; Other shortcuts | ||
159 | SetOutPath "$INSTDIR" | ||
160 | CreateShortCut "$DESKTOP\$INSTSHORTCUT.lnk" "$INSTDIR\$INSTEXE" "$INSTFLAGS" | ||
161 | CreateShortCut "$INSTDIR\$INSTSHORTCUT.lnk" "$INSTDIR\$INSTEXE" "$INSTFLAGS" | ||
162 | CreateShortCut "$INSTDIR\Uninstall $INSTSHORTCUT.lnk" \ | ||
163 | '"$INSTDIR\uninst.exe"' '/P="$INSTPROG"' | ||
164 | |||
165 | !ifdef MUSEUM | ||
166 | CreateShortCut "$DESKTOP\$INSTSHORTCUT Museum.lnk" "$INSTDIR\$INSTEXE" "$INSTFLAGS -simple" | ||
167 | |||
168 | CreateShortCut "$DESKTOP\$INSTSHORTCUT Museum Spanish.lnk" "$INSTDIR\$INSTEXE" "$INSTFLAGS -simple -spanish" | ||
169 | |||
170 | CreateShortCut "$INSTDIR\$INSTSHORTCUT Museum.lnk" "$INSTDIR\$INSTEXE" "$INSTFLAGS -simple" | ||
171 | |||
172 | CreateShortCut "$INSTDIR\$INSTSHORTCUT Museum Spanish.lnk" "$INSTDIR\$INSTEXE" "$INSTFLAGS -simple -spanish" | ||
173 | |||
174 | !endif | ||
175 | |||
176 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
177 | ; Write registry | ||
178 | WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "" "$INSTDIR" | ||
179 | WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Version" "${VERSION_LONG}" | ||
180 | WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Flags" "$INSTFLAGS" | ||
181 | WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Shortcut" "$INSTSHORTCUT" | ||
182 | WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Exe" "$INSTEXE" | ||
183 | WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\$INSTPROG" "DisplayName" "$INSTPROG (remove only)" | ||
184 | WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\$INSTPROG" "UninstallString" '"$INSTDIR\uninst.exe" /P="$INSTPROG"' | ||
185 | |||
186 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
187 | ; Write URL registry info | ||
188 | WriteRegStr HKEY_CLASSES_ROOT "${URLNAME}" "(default)" "URL:Second Life" | ||
189 | WriteRegStr HKEY_CLASSES_ROOT "${URLNAME}" "URL Protocol" "" | ||
190 | WriteRegStr HKEY_CLASSES_ROOT "${URLNAME}\DefaultIcon" "" '"$INSTDIR\$INSTEXE"' | ||
191 | WriteRegExpandStr HKEY_CLASSES_ROOT "${URLNAME}\shell\open\command" "" '"$INSTDIR\$INSTEXE" $INSTFLAGS -url "%1"' | ||
192 | |||
193 | Goto WRITE_UNINST | ||
194 | |||
195 | POST_INSTALL: | ||
196 | ; Run a post-executable script if necessary. | ||
197 | Call PostInstallExe | ||
198 | |||
199 | WRITE_UNINST: | ||
200 | ; write out uninstaller | ||
201 | WriteUninstaller "$INSTDIR\uninst.exe" | ||
202 | |||
203 | ; end of default section | ||
204 | SectionEnd | ||
205 | |||
206 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
207 | ; PostInstallExe | ||
208 | ; This just runs any post installation scripts. | ||
209 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
210 | Function PostInstallExe | ||
211 | push $0 | ||
212 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "PostInstallExe" | ||
213 | ;MessageBox MB_OK '$0' | ||
214 | ExecWait '$0' | ||
215 | pop $0 | ||
216 | FunctionEnd | ||
217 | |||
218 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
219 | ; CheckStartupParameters | ||
220 | ; Sets INSTFLAGS, INSTPROG, and INSTEXE. | ||
221 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
222 | Function CheckStartupParams | ||
223 | push $0 | ||
224 | push $R0 | ||
225 | |||
226 | ; Look for a registry entry with info about where to update. | ||
227 | Call GetProgramName | ||
228 | pop $R0 | ||
229 | StrCpy $INSTPROG "$R0" | ||
230 | StrCpy $INSTEXE "$R0.exe" | ||
231 | |||
232 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "" | ||
233 | ; If key doesn't exist, skip install | ||
234 | IfErrors ABORT | ||
235 | StrCpy $INSTDIR "$0" | ||
236 | |||
237 | ; We now have a directory to install to. Get the startup parameters and shortcut as well. | ||
238 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Flags" | ||
239 | IfErrors +2 | ||
240 | StrCpy $INSTFLAGS "$0" | ||
241 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Shortcut" | ||
242 | IfErrors +2 | ||
243 | StrCpy $INSTSHORTCUT "$0" | ||
244 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Exe" | ||
245 | IfErrors +2 | ||
246 | StrCpy $INSTEXE "$0" | ||
247 | Goto FINISHED | ||
248 | |||
249 | ABORT: | ||
250 | MessageBox MB_OK $(CheckStartupParamsMB) | ||
251 | Quit | ||
252 | |||
253 | FINISHED: | ||
254 | ;MessageBox MB_OK "INSTPROG: $INSTPROG, INSTEXE: $INSTEXE, INSTFLAGS: $INSTFLAGS" | ||
255 | pop $R0 | ||
256 | pop $0 | ||
257 | FunctionEnd | ||
258 | |||
259 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
260 | ;; | ||
261 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
262 | Function un.CheckStartupParams | ||
263 | push $0 | ||
264 | push $R0 | ||
265 | |||
266 | ; Look for a registry entry with info about where to update. | ||
267 | Call un.GetProgramName | ||
268 | pop $R0 | ||
269 | StrCpy $INSTPROG "$R0" | ||
270 | StrCpy $INSTEXE "$R0.exe" | ||
271 | |||
272 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "" | ||
273 | ; If key doesn't exist, skip install | ||
274 | IfErrors ABORT | ||
275 | StrCpy $INSTDIR "$0" | ||
276 | |||
277 | ; We now have a directory to install to. Get the startup parameters and shortcut as well. | ||
278 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Flags" | ||
279 | IfErrors +2 | ||
280 | StrCpy $INSTFLAGS "$0" | ||
281 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Shortcut" | ||
282 | IfErrors +2 | ||
283 | StrCpy $INSTSHORTCUT "$0" | ||
284 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Exe" | ||
285 | IfErrors +2 | ||
286 | StrCpy $INSTEXE "$0" | ||
287 | Goto FINISHED | ||
288 | |||
289 | ABORT: | ||
290 | MessageBox MB_OK $(CheckStartupParamsMB) | ||
291 | Quit | ||
292 | |||
293 | FINISHED: | ||
294 | ;MessageBox MB_OK "INSTPROG: $INSTPROG, INSTEXE: $INSTEXE, INSTFLAGS: $INSTFLAGS" | ||
295 | pop $R0 | ||
296 | pop $0 | ||
297 | FunctionEnd | ||
298 | |||
299 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
300 | ;;; After install completes, offer readme file | ||
301 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
302 | Function .onInstSuccess | ||
303 | MessageBox MB_YESNO \ | ||
304 | $(InstSuccesssQuestion) /SD IDYES IDNO NoReadme | ||
305 | ; Assumes SetOutPath $INSTDIR | ||
306 | Exec '"$INSTDIR\$INSTEXE" $INSTFLAGS' | ||
307 | NoReadme: | ||
308 | FunctionEnd | ||
309 | |||
310 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
311 | ; Remove old NSIS version. Modifies no variables. | ||
312 | ; Does NOT delete the LindenWorld directory, or any | ||
313 | ; user files in that directory. | ||
314 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
315 | Function RemoveNSIS | ||
316 | Push $0 | ||
317 | ; Grab the installation directory of the old version | ||
318 | DetailPrint $(RemoveOldNSISVersion) | ||
319 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "" | ||
320 | |||
321 | ; If key doesn't exist, skip uninstall | ||
322 | IfErrors NO_NSIS | ||
323 | |||
324 | ; Clean up legacy beta shortcuts | ||
325 | Delete "$SMPROGRAMS\Second Life Beta.lnk" | ||
326 | Delete "$DESKTOP\Second Life Beta.lnk" | ||
327 | Delete "$SMPROGRAMS\Second Life.lnk" | ||
328 | |||
329 | ; Clean up old newview.exe file | ||
330 | Delete "$INSTDIR\newview.exe" | ||
331 | |||
332 | ; Intentionally don't delete the stuff in | ||
333 | ; Documents and Settings, so we keep the user's settings | ||
334 | |||
335 | NO_NSIS: | ||
336 | Pop $0 | ||
337 | FunctionEnd | ||
338 | |||
339 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
340 | ; Make sure we're not on Windows 98 / ME | ||
341 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
342 | Function CheckWindowsVersion | ||
343 | DetailPrint "Checking Windows version..." | ||
344 | Call GetWindowsVersion | ||
345 | Pop $R0 | ||
346 | ; Just get first two characters, ignore 4.0 part of "NT 4.0" | ||
347 | StrCpy $R0 $R0 2 | ||
348 | ; Blacklist certain OS versions | ||
349 | StrCmp $R0 "95" win_ver_bad | ||
350 | StrCmp $R0 "98" win_ver_bad | ||
351 | StrCmp $R0 "ME" win_ver_bad | ||
352 | StrCmp $R0 "NT" win_ver_bad | ||
353 | Return | ||
354 | win_ver_bad: | ||
355 | MessageBox MB_YESNO $(CheckWindowsVersionMB) IDNO win_ver_abort | ||
356 | Return | ||
357 | win_ver_abort: | ||
358 | Quit | ||
359 | FunctionEnd | ||
360 | |||
361 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
362 | ; Make sure the user can install/uninstall | ||
363 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
364 | Function CheckIfAdministrator | ||
365 | DetailPrint $(CheckAdministratorInstDP) | ||
366 | UserInfo::GetAccountType | ||
367 | Pop $R0 | ||
368 | StrCmp $R0 "Admin" is_admin | ||
369 | MessageBox MB_OK $(CheckAdministratorInstMB) | ||
370 | Quit | ||
371 | is_admin: | ||
372 | Return | ||
373 | FunctionEnd | ||
374 | |||
375 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
376 | ;; | ||
377 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
378 | Function un.CheckIfAdministrator | ||
379 | DetailPrint $(CheckAdministratorUnInstDP) | ||
380 | UserInfo::GetAccountType | ||
381 | Pop $R0 | ||
382 | StrCmp $R0 "Admin" is_admin | ||
383 | MessageBox MB_OK $(CheckAdministratorUnInstMB) | ||
384 | Quit | ||
385 | is_admin: | ||
386 | Return | ||
387 | FunctionEnd | ||
388 | |||
389 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
390 | ; Checks to see if the current version has already been installed (according to the registry). | ||
391 | ; If it has, allow user to bail out of install process. | ||
392 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
393 | Function CheckIfAlreadyCurrent | ||
394 | Push $0 | ||
395 | ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Version" | ||
396 | StrCmp $0 ${VERSION_LONG} 0 DONE | ||
397 | MessageBox MB_OKCANCEL $(CheckIfCurrentMB) /SD IDOK IDOK DONE | ||
398 | Quit | ||
399 | |||
400 | DONE: | ||
401 | Pop $0 | ||
402 | Return | ||
403 | FunctionEnd | ||
404 | |||
405 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
406 | ; Close the program, if running. Modifies no variables. | ||
407 | ; Allows user to bail out of install process. | ||
408 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
409 | Function CloseSecondLife | ||
410 | Push $0 | ||
411 | FindWindow $0 "Second Life" "" | ||
412 | IntCmp $0 0 DONE | ||
413 | MessageBox MB_OKCANCEL $(CloseSecondLifeInstMB) IDOK CLOSE IDCANCEL CANCEL_INSTALL | ||
414 | |||
415 | CANCEL_INSTALL: | ||
416 | Quit | ||
417 | |||
418 | CLOSE: | ||
419 | DetailPrint $(CloseSecondLifeInstDP) | ||
420 | SendMessage $0 16 0 0 | ||
421 | |||
422 | LOOP: | ||
423 | FindWindow $0 "Second Life" "" | ||
424 | IntCmp $0 0 DONE | ||
425 | Sleep 500 | ||
426 | Goto LOOP | ||
427 | |||
428 | DONE: | ||
429 | Pop $0 | ||
430 | Return | ||
431 | FunctionEnd | ||
432 | |||
433 | |||
434 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
435 | ; Delete files in Documents and Settings\<user>\SecondLife\cache | ||
436 | ; Delete files in Documents and Settings\All Users\SecondLife\cache | ||
437 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
438 | ;Function RemoveCacheFiles | ||
439 | ; | ||
440 | ;; Delete files in Documents and Settings\<user>\SecondLife | ||
441 | ;Push $0 | ||
442 | ;Push $1 | ||
443 | ;Push $2 | ||
444 | ; DetailPrint $(RemoveCacheFilesDP) | ||
445 | ; | ||
446 | ; StrCpy $0 0 ; Index number used to iterate via EnumRegKey | ||
447 | ; | ||
448 | ; LOOP: | ||
449 | ; EnumRegKey $1 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList" $0 | ||
450 | ; StrCmp $1 "" DONE ; no more users | ||
451 | ; | ||
452 | ; ReadRegStr $2 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\$1" "ProfileImagePath" | ||
453 | ; StrCmp $2 "" CONTINUE 0 ; "ProfileImagePath" value is missing | ||
454 | ; | ||
455 | ; ; Required since ProfileImagePath is of type REG_EXPAND_SZ | ||
456 | ; ExpandEnvStrings $2 $2 | ||
457 | ; | ||
458 | ; ; When explicitly uninstalling, everything goes away | ||
459 | ; RMDir /r "$2\Application Data\SecondLife\cache" | ||
460 | ; | ||
461 | ; CONTINUE: | ||
462 | ; IntOp $0 $0 + 1 | ||
463 | ; Goto LOOP | ||
464 | ; DONE: | ||
465 | ;Pop $2 | ||
466 | ;Pop $1 | ||
467 | ;Pop $0 | ||
468 | ; | ||
469 | ;; Delete files in Documents and Settings\All Users\SecondLife | ||
470 | ;Push $0 | ||
471 | ; ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" "Common AppData" | ||
472 | ; StrCmp $0 "" +2 | ||
473 | ; RMDir /r "$0\SecondLife\cache" | ||
474 | ;Pop $0 | ||
475 | ; | ||
476 | ;; Delete filse in C:\Windows\Application Data\SecondLife | ||
477 | ;; If the user is running on a pre-NT system, Application Data lives here instead of | ||
478 | ;; in Documents and Settings. | ||
479 | ;RMDir /r "$WINDIR\Application Data\SecondLife\cache" | ||
480 | ; | ||
481 | ;FunctionEnd | ||
482 | |||
483 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
484 | ; Delete files in Documents and Settings\<user>\SecondLife | ||
485 | ; Delete files in Documents and Settings\All Users\SecondLife | ||
486 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
487 | ;Function un.DocumentsAndSettingsFolder | ||
488 | ; | ||
489 | ;; Delete files in Documents and Settings\<user>\SecondLife | ||
490 | ;Push $0 | ||
491 | ;Push $1 | ||
492 | ;Push $2 | ||
493 | ; | ||
494 | ; DetailPrint "Deleting files in Documents and Settings folder" | ||
495 | ; | ||
496 | ; StrCpy $0 0 ; Index number used to iterate via EnumRegKey | ||
497 | ; | ||
498 | ; LOOP: | ||
499 | ; EnumRegKey $1 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList" $0 | ||
500 | ; StrCmp $1 "" DONE ; no more users | ||
501 | ; | ||
502 | ; ReadRegStr $2 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\$1" "ProfileImagePath" | ||
503 | ; StrCmp $2 "" CONTINUE 0 ; "ProfileImagePath" value is missing | ||
504 | ; | ||
505 | ; ; Required since ProfileImagePath is of type REG_EXPAND_SZ | ||
506 | ; ExpandEnvStrings $2 $2 | ||
507 | ; | ||
508 | ; ; If uninstalling a normal install remove everything | ||
509 | ; ; Otherwise (preview/dmz etc) just remove cache | ||
510 | ; StrCmp $INSTFLAGS "" RM_ALL RM_CACHE | ||
511 | ; RM_ALL: | ||
512 | ; RMDir /r "$2\Application Data\SecondLife" | ||
513 | ; GoTo CONTINUE | ||
514 | ; RM_CACHE: | ||
515 | ; RMDir /r "$2\Application Data\SecondLife\Cache" | ||
516 | ; | ||
517 | ; CONTINUE: | ||
518 | ; IntOp $0 $0 + 1 | ||
519 | ; Goto LOOP | ||
520 | ; DONE: | ||
521 | ; | ||
522 | ;Pop $2 | ||
523 | ;Pop $1 | ||
524 | ;Pop $0 | ||
525 | ; | ||
526 | ;; Delete files in Documents and Settings\All Users\SecondLife | ||
527 | ;Push $0 | ||
528 | ; ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" "Common AppData" | ||
529 | ; StrCmp $0 "" +2 | ||
530 | ; RMDir /r "$0\SecondLife" | ||
531 | ;Pop $0 | ||
532 | ; | ||
533 | ;; Delete filse in C:\Windows\Application Data\SecondLife | ||
534 | ;; If the user is running on a pre-NT system, Application Data lives here instead of | ||
535 | ;; in Documents and Settings. | ||
536 | ;RMDir /r "$WINDIR\Application Data\SecondLife" | ||
537 | ; | ||
538 | ;FunctionEnd | ||
539 | |||
540 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
541 | ; Close the program, if running. Modifies no variables. | ||
542 | ; Allows user to bail out of uninstall process. | ||
543 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
544 | Function un.CloseSecondLife | ||
545 | Push $0 | ||
546 | FindWindow $0 "Second Life" "" | ||
547 | IntCmp $0 0 DONE | ||
548 | MessageBox MB_OKCANCEL $(CloseSecondLifeUnInstMB) IDOK CLOSE IDCANCEL CANCEL_UNINSTALL | ||
549 | |||
550 | CANCEL_UNINSTALL: | ||
551 | Quit | ||
552 | |||
553 | CLOSE: | ||
554 | DetailPrint $(CloseSecondLifeUnInstDP) | ||
555 | SendMessage $0 16 0 0 | ||
556 | |||
557 | LOOP: | ||
558 | FindWindow $0 "Second Life" "" | ||
559 | IntCmp $0 0 DONE | ||
560 | Sleep 500 | ||
561 | Goto LOOP | ||
562 | |||
563 | DONE: | ||
564 | Pop $0 | ||
565 | Return | ||
566 | FunctionEnd | ||
567 | |||
568 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
569 | ;;; Delete the installed files | ||
570 | ;;; This deletes the uninstall executable, but it works | ||
571 | ;;; because it is copied to temp directory before running | ||
572 | ;;; | ||
573 | ;;; Note: You must list all files here, because we only | ||
574 | ;;; want to delete our files, not things users left in the | ||
575 | ;;; application directories. | ||
576 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
577 | Function un.ProgramFiles | ||
578 | |||
579 | ;; Remove mozilla file first so recursive directory deletion doesn't get hung up | ||
580 | Delete "$INSTDIR\app_settings\mozilla\components" | ||
581 | |||
582 | ;; This placeholder is replaced by the complete list of files to uninstall by viewer_manifest.py | ||
583 | %%DELETE_FILES%% | ||
584 | |||
585 | ;; Optional/obsolete files. Delete won't fail if they don't exist. | ||
586 | Delete "$INSTDIR\dronesettings.ini" | ||
587 | Delete "$INSTDIR\message_template.msg" | ||
588 | Delete "$INSTDIR\newview.pdb" | ||
589 | Delete "$INSTDIR\newview.map" | ||
590 | Delete "$INSTDIR\SecondLife.pdb" | ||
591 | Delete "$INSTDIR\SecondLife.map" | ||
592 | Delete "$INSTDIR\comm.dat" | ||
593 | Delete "$INSTDIR\*.glsl" | ||
594 | Delete "$INSTDIR\motions\*.lla" | ||
595 | Delete "$INSTDIR\trial\*.html" | ||
596 | Delete "$INSTDIR\newview.exe" | ||
597 | ;; Remove entire help directory | ||
598 | Delete "$INSTDIR\help\Advanced\*" | ||
599 | RMDir "$INSTDIR\help\Advanced" | ||
600 | Delete "$INSTDIR\help\basics\*" | ||
601 | RMDir "$INSTDIR\help\basics" | ||
602 | Delete "$INSTDIR\help\Concepts\*" | ||
603 | RMDir "$INSTDIR\help\Concepts" | ||
604 | Delete "$INSTDIR\help\welcome\*" | ||
605 | RMDir "$INSTDIR\help\welcome" | ||
606 | Delete "$INSTDIR\help\*" | ||
607 | RMDir "$INSTDIR\help" | ||
608 | |||
609 | Delete "$INSTDIR\uninst.exe" | ||
610 | RMDir "$INSTDIR" | ||
611 | |||
612 | IfFileExists "$INSTDIR" FOLDERFOUND NOFOLDER | ||
613 | |||
614 | FOLDERFOUND: | ||
615 | MessageBox MB_YESNO $(DeleteProgramFilesMB) IDNO NOFOLDER | ||
616 | RMDir /r "$INSTDIR" | ||
617 | |||
618 | NOFOLDER: | ||
619 | |||
620 | FunctionEnd | ||
621 | |||
622 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
623 | ;;; Uninstall settings | ||
624 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
625 | UninstallText $(UninstallTextMsg) | ||
626 | ShowUninstDetails show | ||
627 | |||
628 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
629 | ;;; Uninstall section | ||
630 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
631 | Section Uninstall | ||
632 | |||
633 | ; Start with some default values. | ||
634 | StrCpy $INSTFLAGS "" | ||
635 | StrCpy $INSTPROG "${INSTNAME}" | ||
636 | StrCpy $INSTEXE "${INSTEXE}" | ||
637 | StrCpy $INSTSHORTCUT "${SHORTCUT}" | ||
638 | Call un.CheckStartupParams ; Figure out where, what and how to uninstall. | ||
639 | Call un.CheckIfAdministrator ; Make sure the user can install/uninstall | ||
640 | |||
641 | ; uninstall for all users (if you change this, change it in the install as well) | ||
642 | SetShellVarContext all | ||
643 | |||
644 | ; Make sure we're not running | ||
645 | Call un.CloseSecondLife | ||
646 | |||
647 | ; Clean up registry keys | ||
648 | DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" | ||
649 | DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$INSTPROG" | ||
650 | |||
651 | ; Clean up shortcuts | ||
652 | Delete "$SMPROGRAMS\$INSTSHORTCUT\*.*" | ||
653 | RMDir "$SMPROGRAMS\$INSTSHORTCUT" | ||
654 | |||
655 | Delete "$DESKTOP\$INSTSHORTCUT.lnk" | ||
656 | Delete "$INSTDIR\$INSTSHORTCUT.lnk" | ||
657 | Delete "$INSTDIR\Uninstall $INSTSHORTCUT.lnk" | ||
658 | |||
659 | ; Clean up cache and log files. | ||
660 | ; Leave them in-place for non AGNI installs. | ||
661 | |||
662 | !ifdef UNINSTALL_SETTINGS | ||
663 | Call un.DocumentsAndSettingsFolder | ||
664 | !endif | ||
665 | |||
666 | Call un.ProgramFiles | ||
667 | |||
668 | SectionEnd ; end of uninstall section | ||
669 | |||
670 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
671 | ; (From the NSIS wiki, DK) | ||
672 | ; GetParameterValue | ||
673 | ; | ||
674 | ; Usage: | ||
675 | ; !insertmacro GetParameterValue "/L=" "1033" | ||
676 | ; pop $R0 | ||
677 | ; | ||
678 | ; Returns on top of stack | ||
679 | ; | ||
680 | ; Example command lines: | ||
681 | ; foo.exe /S /L=1033 /D=C:\Program Files\Foo | ||
682 | ; or: | ||
683 | ; foo.exe /S "/L=1033" /D="C:\Program Files\Foo" | ||
684 | ; gpv "/L=" "1033" | ||
685 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
686 | |||
687 | !macro GetParameterValue SWITCH DEFAULT | ||
688 | Push $0 | ||
689 | Push $1 | ||
690 | Push $2 | ||
691 | Push $3 | ||
692 | Push $4 | ||
693 | |||
694 | ;$CMDLINE='"My Setup\Setup.exe" /L=1033 /S' | ||
695 | Push "$CMDLINE" | ||
696 | Push '${SWITCH}"' | ||
697 | !insertmacro StrStr | ||
698 | Pop $0 | ||
699 | StrCmp "$0" "" gpv_notquoted | ||
700 | ;$0='/L="1033" /S' | ||
701 | StrLen $2 "$0" | ||
702 | Strlen $1 "${SWITCH}" | ||
703 | IntOp $1 $1 + 1 | ||
704 | StrCpy $0 "$0" $2 $1 | ||
705 | ;$0='1033" /S' | ||
706 | Push "$0" | ||
707 | Push '"' | ||
708 | !insertmacro StrStr | ||
709 | Pop $1 | ||
710 | StrLen $2 "$0" | ||
711 | StrLen $3 "$1" | ||
712 | IntOp $4 $2 - $3 | ||
713 | StrCpy $0 $0 $4 0 | ||
714 | Goto gpv_done | ||
715 | |||
716 | gpv_notquoted: | ||
717 | Push "$CMDLINE" | ||
718 | Push "${SWITCH}" | ||
719 | !insertmacro StrStr | ||
720 | Pop $0 | ||
721 | StrCmp "$0" "" gpv_done | ||
722 | ;$0='/L="1033" /S' | ||
723 | StrLen $2 "$0" | ||
724 | Strlen $1 "${SWITCH}" | ||
725 | StrCpy $0 "$0" $2 $1 | ||
726 | ;$0=1033 /S' | ||
727 | Push "$0" | ||
728 | Push ' ' | ||
729 | !insertmacro StrStr | ||
730 | Pop $1 | ||
731 | StrLen $2 "$0" | ||
732 | StrLen $3 "$1" | ||
733 | IntOp $4 $2 - $3 | ||
734 | StrCpy $0 $0 $4 0 | ||
735 | Goto gpv_done | ||
736 | |||
737 | gpv_done: | ||
738 | StrCmp "$0" "" 0 +2 | ||
739 | StrCpy $0 "${DEFAULT}" | ||
740 | |||
741 | Pop $4 | ||
742 | Pop $3 | ||
743 | Pop $2 | ||
744 | Pop $1 | ||
745 | Exch $0 | ||
746 | !macroend | ||
747 | |||
748 | ; And I had to modify StrStr a tiny bit. | ||
749 | ; Possible upgrade switch the goto's to use ${__LINE__} | ||
750 | |||
751 | !macro STRSTR | ||
752 | Exch $R1 ; st=haystack,old$R1, $R1=needle | ||
753 | Exch ; st=old$R1,haystack | ||
754 | Exch $R2 ; st=old$R1,old$R2, $R2=haystack | ||
755 | Push $R3 | ||
756 | Push $R4 | ||
757 | Push $R5 | ||
758 | StrLen $R3 $R1 | ||
759 | StrCpy $R4 0 | ||
760 | ; $R1=needle | ||
761 | ; $R2=haystack | ||
762 | ; $R3=len(needle) | ||
763 | ; $R4=cnt | ||
764 | ; $R5=tmp | ||
765 | ; loop; | ||
766 | StrCpy $R5 $R2 $R3 $R4 | ||
767 | StrCmp $R5 $R1 +4 | ||
768 | StrCmp $R5 "" +3 | ||
769 | IntOp $R4 $R4 + 1 | ||
770 | Goto -4 | ||
771 | ; done; | ||
772 | StrCpy $R1 $R2 "" $R4 | ||
773 | Pop $R5 | ||
774 | Pop $R4 | ||
775 | Pop $R3 | ||
776 | Pop $R2 | ||
777 | Exch $R1 | ||
778 | !macroend | ||
779 | |||
780 | Function GetProgramName | ||
781 | !insertmacro GetParameterValue "/P=" "SecondLife" | ||
782 | FunctionEnd | ||
783 | |||
784 | Function un.GetProgramName | ||
785 | !insertmacro GetParameterValue "/P=" "SecondLife" | ||
786 | FunctionEnd | ||
787 | |||
788 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
789 | ; (From the NSIS documentation, JC) | ||
790 | ; GetWindowsVersion | ||
791 | ; | ||
792 | ; Based on Yazno's function, http://yazno.tripod.com/powerpimpit/ | ||
793 | ; Updated by Joost Verburg | ||
794 | ; | ||
795 | ; Returns on top of stack | ||
796 | ; | ||
797 | ; Windows Version (95, 98, ME, NT x.x, 2000, XP, 2003) | ||
798 | ; or | ||
799 | ; '' (Unknown Windows Version) | ||
800 | ; | ||
801 | ; Usage: | ||
802 | ; Call GetWindowsVersion | ||
803 | ; Pop $R0 | ||
804 | ; ; at this point $R0 is "NT 4.0" or whatnot | ||
805 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
806 | Function GetWindowsVersion | ||
807 | |||
808 | Push $R0 | ||
809 | Push $R1 | ||
810 | |||
811 | ReadRegStr $R0 HKLM \ | ||
812 | "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion | ||
813 | |||
814 | IfErrors 0 lbl_winnt | ||
815 | |||
816 | ; we are not NT | ||
817 | ReadRegStr $R0 HKLM \ | ||
818 | "SOFTWARE\Microsoft\Windows\CurrentVersion" VersionNumber | ||
819 | |||
820 | StrCpy $R1 $R0 1 | ||
821 | StrCmp $R1 '4' 0 lbl_error | ||
822 | |||
823 | StrCpy $R1 $R0 3 | ||
824 | |||
825 | StrCmp $R1 '4.0' lbl_win32_95 | ||
826 | StrCmp $R1 '4.9' lbl_win32_ME lbl_win32_98 | ||
827 | |||
828 | lbl_win32_95: | ||
829 | StrCpy $R0 '95' | ||
830 | Goto lbl_done | ||
831 | |||
832 | lbl_win32_98: | ||
833 | StrCpy $R0 '98' | ||
834 | Goto lbl_done | ||
835 | |||
836 | lbl_win32_ME: | ||
837 | StrCpy $R0 'ME' | ||
838 | Goto lbl_done | ||
839 | |||
840 | lbl_winnt: | ||
841 | |||
842 | StrCpy $R1 $R0 1 | ||
843 | |||
844 | StrCmp $R1 '3' lbl_winnt_x | ||
845 | StrCmp $R1 '4' lbl_winnt_x | ||
846 | |||
847 | StrCpy $R1 $R0 3 | ||
848 | |||
849 | StrCmp $R1 '5.0' lbl_winnt_2000 | ||
850 | StrCmp $R1 '5.1' lbl_winnt_XP | ||
851 | StrCmp $R1 '5.2' lbl_winnt_2003 lbl_error | ||
852 | |||
853 | lbl_winnt_x: | ||
854 | StrCpy $R0 "NT $R0" 6 | ||
855 | Goto lbl_done | ||
856 | |||
857 | lbl_winnt_2000: | ||
858 | Strcpy $R0 '2000' | ||
859 | Goto lbl_done | ||
860 | |||
861 | lbl_winnt_XP: | ||
862 | Strcpy $R0 'XP' | ||
863 | Goto lbl_done | ||
864 | |||
865 | lbl_winnt_2003: | ||
866 | Strcpy $R0 '2003' | ||
867 | Goto lbl_done | ||
868 | |||
869 | lbl_error: | ||
870 | Strcpy $R0 '' | ||
871 | lbl_done: | ||
872 | |||
873 | Pop $R1 | ||
874 | Exch $R0 | ||
875 | |||
876 | FunctionEnd | ||
877 | |||
878 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
879 | !define LANGUAGE_SELECTION_REGISTRY_ROOT "HKCU" | ||
880 | !define LANGUAGE_SELECTION_REGISTRY_KEY "Software\Linden Research, Inc." | ||
881 | !define LANGUAGE_SELECTION_REGISTRY_VALUENAME "Installer Language" | ||
882 | |||
883 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
884 | ;; Note: to add new languages, add an entry to the menu | ||
885 | ;; and then add an entry to the language ID selector below | ||
886 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
887 | Function .onInit | ||
888 | |||
889 | ; read the language from registry (ok if not there) and set langauge menu | ||
890 | ReadRegStr $0 '${LANGUAGE_SELECTION_REGISTRY_ROOT}' '${LANGUAGE_SELECTION_REGISTRY_KEY}' '${LANGUAGE_SELECTION_REGISTRY_VALUENAME}' | ||
891 | StrCpy $LANGUAGE $0 | ||
892 | |||
893 | Push "" | ||
894 | Push ${LANG_ENGLISH} | ||
895 | Push English | ||
896 | Push ${LANG_GERMAN} | ||
897 | Push German | ||
898 | Push ${LANG_JAPANESE} | ||
899 | Push Japanese | ||
900 | Push ${LANG_KOREAN} | ||
901 | Push Korean | ||
902 | Push A ; A means auto count languages for the auto count to work the first empty push (Push "") must remain | ||
903 | LangDLL::LangDialog "Installer Language" "Please select the language of the installer" | ||
904 | Pop $LANGUAGE | ||
905 | StrCmp $LANGUAGE "cancel" 0 +2 | ||
906 | Abort | ||
907 | |||
908 | ; save language in registry | ||
909 | WriteRegStr '${LANGUAGE_SELECTION_REGISTRY_ROOT}' '${LANGUAGE_SELECTION_REGISTRY_KEY}' '${LANGUAGE_SELECTION_REGISTRY_VALUENAME}' $LANGUAGE | ||
910 | |||
911 | ; generate language ID that will be used as a command line arg | ||
912 | StrCmp $LANGUAGE "1042" 0 +3 | ||
913 | StrCpy $LANGFLAGS " -set SystemLanguage ko" | ||
914 | Goto EndOfFunc | ||
915 | StrCmp $LANGUAGE "1041" 0 +3 | ||
916 | StrCpy $LANGFLAGS " -set SystemLanguage ja" | ||
917 | Goto EndOfFunc | ||
918 | StrCmp $LANGUAGE "1031" 0 +3 | ||
919 | StrCpy $LANGFLAGS " -set SystemLanguage de" | ||
920 | Goto EndOfFunc | ||
921 | StrCmp $LANGUAGE "1033" 0 +3 | ||
922 | StrCpy $LANGFLAGS " -set SystemLanguage en-us" | ||
923 | Goto EndOfFunc | ||
924 | |||
925 | EndOfFunc: | ||
926 | |||
927 | FunctionEnd | ||
928 | |||
929 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
930 | Function un.onInit | ||
931 | |||
932 | ; read language from registry and set for ininstaller | ||
933 | ReadRegStr $0 '${LANGUAGE_SELECTION_REGISTRY_ROOT}' '${LANGUAGE_SELECTION_REGISTRY_KEY}' '${LANGUAGE_SELECTION_REGISTRY_VALUENAME}' | ||
934 | StrCpy $LANGUAGE $0 | ||
935 | |||
936 | FunctionEnd | ||
937 | |||
938 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; EOF ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; \ No newline at end of file | ||
diff --git a/linden/indra/newview/licenses-linux.txt b/linden/indra/newview/licenses-linux.txt index a0dc048..1892b81 100644 --- a/linden/indra/newview/licenses-linux.txt +++ b/linden/indra/newview/licenses-linux.txt | |||
@@ -514,3 +514,36 @@ jloup@gzip.org | |||
514 | 514 | ||
515 | Mark Adler | 515 | Mark Adler |
516 | madler@alumni.caltech.edu | 516 | madler@alumni.caltech.edu |
517 | |||
518 | ================================= | ||
519 | tcmalloc/Google perftools license | ||
520 | ================================= | ||
521 | |||
522 | Copyright (c) 2005, Google Inc. | ||
523 | All rights reserved. | ||
524 | |||
525 | Redistribution and use in source and binary forms, with or without | ||
526 | modification, are permitted provided that the following conditions are | ||
527 | met: | ||
528 | |||
529 | * Redistributions of source code must retain the above copyright | ||
530 | notice, this list of conditions and the following disclaimer. | ||
531 | * Redistributions in binary form must reproduce the above | ||
532 | copyright notice, this list of conditions and the following disclaimer | ||
533 | in the documentation and/or other materials provided with the | ||
534 | distribution. | ||
535 | * Neither the name of Google Inc. nor the names of its | ||
536 | contributors may be used to endorse or promote products derived from | ||
537 | this software without specific prior written permission. | ||
538 | |||
539 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
540 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
541 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
542 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
543 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
544 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
545 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
546 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
547 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
548 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
549 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
diff --git a/linden/indra/newview/linux_tools/wrapper.sh b/linden/indra/newview/linux_tools/wrapper.sh index 5f128e8..048aaf6 100755 --- a/linden/indra/newview/linux_tools/wrapper.sh +++ b/linden/indra/newview/linux_tools/wrapper.sh | |||
@@ -33,6 +33,13 @@ export LL_GL_BASICEXT=x | |||
33 | ## LL_GL_BLACKLIST which solves your problems. | 33 | ## LL_GL_BLACKLIST which solves your problems. |
34 | #export LL_GL_BLACKLIST=abcdefghijklmno | 34 | #export LL_GL_BLACKLIST=abcdefghijklmno |
35 | 35 | ||
36 | ## - For advanced debugging cases, you can run the viewer under the | ||
37 | ## control of another program, such as strace, gdb, or valgrind. If | ||
38 | ## you're building your own viewer, bear in mind that the executable | ||
39 | ## in the bin directory will be stripped: you should replace it with | ||
40 | ## an unstripped binary before you run. | ||
41 | #export LL_WRAPPER='valgrind --log-file=secondlife.vg --leak-check=full --suppressions=/usr/lib/valgrind/glibc-2.5.supp --suppressions=secondlife-i686.supp' | ||
42 | |||
36 | ## - Avoids an often-buggy X feature that doesn't really benefit us anyway. | 43 | ## - Avoids an often-buggy X feature that doesn't really benefit us anyway. |
37 | export SDL_VIDEO_X11_DGAMOUSE=0 | 44 | export SDL_VIDEO_X11_DGAMOUSE=0 |
38 | 45 | ||
@@ -41,7 +48,7 @@ export SDL_VIDEO_X11_DGAMOUSE=0 | |||
41 | 48 | ||
42 | RUN_PATH=`dirname "$0" || echo .` | 49 | RUN_PATH=`dirname "$0" || echo .` |
43 | cd "${RUN_PATH}" | 50 | cd "${RUN_PATH}" |
44 | LD_LIBRARY_PATH="`pwd`"/lib:"`pwd`"/app_settings/mozilla-runtime-linux-i686:"${LD_LIBRARY_PATH}" bin/do-not-directly-run-secondlife-bin `cat gridargs.dat` $@ | cat | 51 | LD_LIBRARY_PATH="`pwd`"/lib:"`pwd`"/app_settings/mozilla-runtime-linux-i686:"${LD_LIBRARY_PATH}" $LL_WRAPPER bin/do-not-directly-run-secondlife-bin `cat gridargs.dat` $@ | cat |
45 | 52 | ||
46 | echo | 53 | echo |
47 | echo '*********************************************************' | 54 | echo '*********************************************************' |
diff --git a/linden/indra/newview/llagent.cpp b/linden/indra/newview/llagent.cpp index ab51120..83b8c0c 100644 --- a/linden/indra/newview/llagent.cpp +++ b/linden/indra/newview/llagent.cpp | |||
@@ -4983,7 +4983,7 @@ BOOL LLAgent::allowOperation(PermissionBit op, | |||
4983 | const LLPermissions& perm, | 4983 | const LLPermissions& perm, |
4984 | U64 group_proxy_power, | 4984 | U64 group_proxy_power, |
4985 | U8 god_minimum) | 4985 | U8 god_minimum) |
4986 | { | 4986 | { |
4987 | // Check god level. | 4987 | // Check god level. |
4988 | if (getGodLevel() >= god_minimum) return TRUE; | 4988 | if (getGodLevel() >= god_minimum) return TRUE; |
4989 | 4989 | ||
diff --git a/linden/indra/newview/llagent.h b/linden/indra/newview/llagent.h index af593e0..e375227 100644 --- a/linden/indra/newview/llagent.h +++ b/linden/indra/newview/llagent.h | |||
@@ -851,12 +851,12 @@ private: | |||
851 | 851 | ||
852 | class createStandardWearablesAllDoneCallback : public LLRefCount | 852 | class createStandardWearablesAllDoneCallback : public LLRefCount |
853 | { | 853 | { |
854 | public: | 854 | protected: |
855 | ~createStandardWearablesAllDoneCallback(); | 855 | ~createStandardWearablesAllDoneCallback(); |
856 | }; | 856 | }; |
857 | class sendAgentWearablesUpdateCallback : public LLRefCount | 857 | class sendAgentWearablesUpdateCallback : public LLRefCount |
858 | { | 858 | { |
859 | public: | 859 | protected: |
860 | ~sendAgentWearablesUpdateCallback(); | 860 | ~sendAgentWearablesUpdateCallback(); |
861 | }; | 861 | }; |
862 | 862 | ||
@@ -886,7 +886,6 @@ private: | |||
886 | S32 index, | 886 | S32 index, |
887 | LLWearable* wearable, | 887 | LLWearable* wearable, |
888 | U32 todo = CALL_NONE); | 888 | U32 todo = CALL_NONE); |
889 | ~addWearableToAgentInventoryCallback() {}; | ||
890 | virtual void fire(const LLUUID& inv_item); | 889 | virtual void fire(const LLUUID& inv_item); |
891 | 890 | ||
892 | private: | 891 | private: |
diff --git a/linden/indra/newview/llcallingcard.cpp b/linden/indra/newview/llcallingcard.cpp index 3e00f40..22a7f20 100644 --- a/linden/indra/newview/llcallingcard.cpp +++ b/linden/indra/newview/llcallingcard.cpp | |||
@@ -130,6 +130,7 @@ LLAvatarTracker::~LLAvatarTracker() | |||
130 | { | 130 | { |
131 | deleteTrackingData(); | 131 | deleteTrackingData(); |
132 | std::for_each(mObservers.begin(), mObservers.end(), DeletePointer()); | 132 | std::for_each(mObservers.begin(), mObservers.end(), DeletePointer()); |
133 | std::for_each(mBuddyInfo.begin(), mBuddyInfo.end(), DeletePairedPointer()); | ||
133 | } | 134 | } |
134 | 135 | ||
135 | void LLAvatarTracker::track(const LLUUID& avatar_id, const std::string& name) | 136 | void LLAvatarTracker::track(const LLUUID& avatar_id, const std::string& name) |
diff --git a/linden/indra/newview/llchatbar.cpp b/linden/indra/newview/llchatbar.cpp index a6feac7..539c935 100644 --- a/linden/indra/newview/llchatbar.cpp +++ b/linden/indra/newview/llchatbar.cpp | |||
@@ -118,8 +118,8 @@ LLChatBar::LLChatBar(const std::string& name, const LLRect& rect) | |||
118 | mInputEditor->setRevertOnEsc( FALSE ); | 118 | mInputEditor->setRevertOnEsc( FALSE ); |
119 | mInputEditor->setIgnoreTab(TRUE); | 119 | mInputEditor->setIgnoreTab(TRUE); |
120 | mInputEditor->setPassDelete(TRUE); | 120 | mInputEditor->setPassDelete(TRUE); |
121 | |||
122 | mInputEditor->setMaxTextLength(1023); | 121 | mInputEditor->setMaxTextLength(1023); |
122 | mInputEditor->setEnableLineHistory(TRUE); | ||
123 | } | 123 | } |
124 | 124 | ||
125 | // Build the list of gestures | 125 | // Build the list of gestures |
@@ -446,6 +446,8 @@ void LLChatBar::sendChat( EChatType type ) | |||
446 | 446 | ||
447 | if (!text.empty()) | 447 | if (!text.empty()) |
448 | { | 448 | { |
449 | // store sent line in history, duplicates will get filtered | ||
450 | mInputEditor->updateHistory(); | ||
449 | // Check if this is destined for another channel | 451 | // Check if this is destined for another channel |
450 | S32 channel = 0; | 452 | S32 channel = 0; |
451 | stripChannelNumber(text, &channel); | 453 | stripChannelNumber(text, &channel); |
diff --git a/linden/indra/newview/llcontroldef.cpp b/linden/indra/newview/llcontroldef.cpp index 01d7edf..2b394e9 100644 --- a/linden/indra/newview/llcontroldef.cpp +++ b/linden/indra/newview/llcontroldef.cpp | |||
@@ -742,6 +742,9 @@ void declare_settings() | |||
742 | // Threading | 742 | // Threading |
743 | gSavedSettings.declareBOOL("RunMultipleThreads", FALSE, "If TRUE keep background threads active during render"); | 743 | gSavedSettings.declareBOOL("RunMultipleThreads", FALSE, "If TRUE keep background threads active during render"); |
744 | 744 | ||
745 | // Cooperative Multitasking | ||
746 | gSavedSettings.declareS32("BackgroundYieldTime", 40, "Amount of time to yield every frame to other applications when SL is not the foreground window (milliseconds)"); | ||
747 | |||
745 | // Camera control | 748 | // Camera control |
746 | gSavedSettings.declareBOOL("AutoPilotLocksCamera", FALSE, "Keep camera position locked when avatar walks to selected position"); | 749 | gSavedSettings.declareBOOL("AutoPilotLocksCamera", FALSE, "Keep camera position locked when avatar walks to selected position"); |
747 | //gSavedSettings.declareBOOL("AvatarLooksAtCamera", TRUE, "[NOT USED]"); | 750 | //gSavedSettings.declareBOOL("AvatarLooksAtCamera", TRUE, "[NOT USED]"); |
@@ -1143,10 +1146,12 @@ void declare_settings() | |||
1143 | // Time in seconds. | 1146 | // Time in seconds. |
1144 | gSavedSettings.declareF32("NotifyTipDuration", 4.f, "Length of time that notification tips stay on screen (seconds)"); | 1147 | gSavedSettings.declareF32("NotifyTipDuration", 4.f, "Length of time that notification tips stay on screen (seconds)"); |
1145 | 1148 | ||
1146 | |||
1147 | gSavedSettings.declareBOOL("NotifyMoneyChange", TRUE, "Pop up notifications for all L$ transactions"); | 1149 | gSavedSettings.declareBOOL("NotifyMoneyChange", TRUE, "Pop up notifications for all L$ transactions"); |
1150 | |||
1148 | gSavedSettings.declareBOOL("ShowNewInventory", TRUE, | 1151 | gSavedSettings.declareBOOL("ShowNewInventory", TRUE, |
1149 | "Automatic Previews of new notecards/textures/landmarks"); | 1152 | "Automatically views new notecards/textures/landmarks"); |
1153 | gSavedSettings.declareBOOL("AutoAcceptNewInventory", FALSE, | ||
1154 | "Automatically accept new notecards/textures/landmarks"); | ||
1150 | 1155 | ||
1151 | // Bitfield | 1156 | // Bitfield |
1152 | // 1 = by date | 1157 | // 1 = by date |
@@ -1245,6 +1250,7 @@ void declare_settings() | |||
1245 | // CP: making this TRUE by default since there is no internal Web browser | 1250 | // CP: making this TRUE by default since there is no internal Web browser |
1246 | // now and other components may interrogate this setting | 1251 | // now and other components may interrogate this setting |
1247 | gSavedSettings.declareBOOL("UseExternalBrowser", TRUE, "[NOT USED]"); | 1252 | gSavedSettings.declareBOOL("UseExternalBrowser", TRUE, "[NOT USED]"); |
1253 | gSavedSettings.declareBOOL("CookiesEnabled", TRUE, "Accept cookies from Web sites?"); | ||
1248 | 1254 | ||
1249 | // browser home page | 1255 | // browser home page |
1250 | gSavedSettings.declareString("BrowserHomePage", "http://www.secondlife.com", "[NOT USED]"); | 1256 | gSavedSettings.declareString("BrowserHomePage", "http://www.secondlife.com", "[NOT USED]"); |
diff --git a/linden/indra/newview/llcubemap.h b/linden/indra/newview/llcubemap.h index d75d6e7..911248f 100644 --- a/linden/indra/newview/llcubemap.h +++ b/linden/indra/newview/llcubemap.h | |||
@@ -41,7 +41,6 @@ class LLCubeMap : public LLRefCount | |||
41 | { | 41 | { |
42 | public: | 42 | public: |
43 | LLCubeMap(); | 43 | LLCubeMap(); |
44 | ~LLCubeMap(); | ||
45 | void init(const std::vector<LLPointer<LLImageRaw> >& rawimages); | 44 | void init(const std::vector<LLPointer<LLImageRaw> >& rawimages); |
46 | void initGL(); | 45 | void initGL(); |
47 | void initRawData(const std::vector<LLPointer<LLImageRaw> >& rawimages); | 46 | void initRawData(const std::vector<LLPointer<LLImageRaw> >& rawimages); |
@@ -66,6 +65,7 @@ public: | |||
66 | void destroyGL(); | 65 | void destroyGL(); |
67 | 66 | ||
68 | protected: | 67 | protected: |
68 | ~LLCubeMap(); | ||
69 | LLGLenum mTargets[6]; | 69 | LLGLenum mTargets[6]; |
70 | LLPointer<LLImageGL> mImages[6]; | 70 | LLPointer<LLImageGL> mImages[6]; |
71 | LLPointer<LLImageRaw> mRawImages[6]; | 71 | LLPointer<LLImageRaw> mRawImages[6]; |
diff --git a/linden/indra/newview/lldrawable.h b/linden/indra/newview/lldrawable.h index 3bb5525..7429292 100644 --- a/linden/indra/newview/lldrawable.h +++ b/linden/indra/newview/lldrawable.h | |||
@@ -199,7 +199,7 @@ public: | |||
199 | static void cleanupDeadDrawables(); | 199 | static void cleanupDeadDrawables(); |
200 | 200 | ||
201 | protected: | 201 | protected: |
202 | virtual ~LLDrawable() { destroy(); } | 202 | ~LLDrawable() { destroy(); } |
203 | void moveUpdatePipeline(BOOL moved); | 203 | void moveUpdatePipeline(BOOL moved); |
204 | void updatePartition(); | 204 | void updatePartition(); |
205 | BOOL updateMoveDamped(); | 205 | BOOL updateMoveDamped(); |
diff --git a/linden/indra/newview/llflexibleobject.cpp b/linden/indra/newview/llflexibleobject.cpp index d4080c5..0dce348 100644 --- a/linden/indra/newview/llflexibleobject.cpp +++ b/linden/indra/newview/llflexibleobject.cpp | |||
@@ -62,6 +62,7 @@ LLVolumeImplFlexible::LLVolumeImplFlexible(LLViewerObject* vo, LLFlexibleObjectD | |||
62 | mInitializedRes = -1; | 62 | mInitializedRes = -1; |
63 | mSimulateRes = 0; | 63 | mSimulateRes = 0; |
64 | mFrameNum = 0; | 64 | mFrameNum = 0; |
65 | mRenderRes = 1; | ||
65 | }//----------------------------------------------- | 66 | }//----------------------------------------------- |
66 | 67 | ||
67 | LLVector3 LLVolumeImplFlexible::getFramePosition() const | 68 | LLVector3 LLVolumeImplFlexible::getFramePosition() const |
@@ -253,7 +254,7 @@ BOOL LLVolumeImplFlexible::doIdleUpdate(LLAgent &agent, LLWorld &world, const F6 | |||
253 | { | 254 | { |
254 | if (!gPipeline.hasRenderDebugFeatureMask(LLPipeline::RENDER_DEBUG_FEATURE_FLEXIBLE)) | 255 | if (!gPipeline.hasRenderDebugFeatureMask(LLPipeline::RENDER_DEBUG_FEATURE_FLEXIBLE)) |
255 | { | 256 | { |
256 | return TRUE; | 257 | return FALSE; // (we are not initialized or updated) |
257 | } | 258 | } |
258 | 259 | ||
259 | LLFastTimer ftm(LLFastTimer::FTM_FLEXIBLE_UPDATE); | 260 | LLFastTimer ftm(LLFastTimer::FTM_FLEXIBLE_UPDATE); |
@@ -261,7 +262,7 @@ BOOL LLVolumeImplFlexible::doIdleUpdate(LLAgent &agent, LLWorld &world, const F6 | |||
261 | if (mVO->mDrawable.isNull()) | 262 | if (mVO->mDrawable.isNull()) |
262 | { | 263 | { |
263 | // Don't do anything until we have a drawable | 264 | // Don't do anything until we have a drawable |
264 | return TRUE; | 265 | return FALSE; // (we are not initialized or updated) |
265 | } | 266 | } |
266 | 267 | ||
267 | //flexible objects never go static | 268 | //flexible objects never go static |
@@ -346,8 +347,13 @@ void LLVolumeImplFlexible::doFlexibleUpdate() | |||
346 | if (mSimulateRes == 0) | 347 | if (mSimulateRes == 0) |
347 | { | 348 | { |
348 | mVO->markForUpdate(TRUE); | 349 | mVO->markForUpdate(TRUE); |
349 | doIdleUpdate(gAgent, *gWorldp, 0.0); | 350 | if (!doIdleUpdate(gAgent, *gWorldp, 0.0)) |
351 | { | ||
352 | return; // we did not get updated or initialized, proceeding without can be dangerous | ||
353 | } | ||
350 | } | 354 | } |
355 | |||
356 | llassert_always(mInitialized); | ||
351 | 357 | ||
352 | S32 num_sections = 1 << mSimulateRes; | 358 | S32 num_sections = 1 << mSimulateRes; |
353 | 359 | ||
diff --git a/linden/indra/newview/llfloateravatarinfo.cpp b/linden/indra/newview/llfloateravatarinfo.cpp index 2245d31..c4b8167 100644 --- a/linden/indra/newview/llfloateravatarinfo.cpp +++ b/linden/indra/newview/llfloateravatarinfo.cpp | |||
@@ -267,6 +267,12 @@ void LLFloaterAvatarInfo::draw() | |||
267 | LLFloater::draw(); | 267 | LLFloater::draw(); |
268 | } | 268 | } |
269 | 269 | ||
270 | // virtual | ||
271 | BOOL LLFloaterAvatarInfo::canClose() | ||
272 | { | ||
273 | return mPanelAvatarp && mPanelAvatarp->canClose(); | ||
274 | } | ||
275 | |||
270 | LLFloaterAvatarInfo* LLFloaterAvatarInfo::getInstance(const LLUUID &id) | 276 | LLFloaterAvatarInfo* LLFloaterAvatarInfo::getInstance(const LLUUID &id) |
271 | { | 277 | { |
272 | return gAvatarInfoInstances.getIfThere(gAgentID); | 278 | return gAvatarInfoInstances.getIfThere(gAgentID); |
diff --git a/linden/indra/newview/llfloateravatarinfo.h b/linden/indra/newview/llfloateravatarinfo.h index 7ca6882..eedbfba 100644 --- a/linden/indra/newview/llfloateravatarinfo.h +++ b/linden/indra/newview/llfloateravatarinfo.h | |||
@@ -69,6 +69,8 @@ public: | |||
69 | 69 | ||
70 | /*virtual*/ void draw(); | 70 | /*virtual*/ void draw(); |
71 | 71 | ||
72 | /*virtual*/ BOOL canClose(); | ||
73 | |||
72 | /*virtual*/ void loadAsset(); | 74 | /*virtual*/ void loadAsset(); |
73 | /*virtual*/ EAssetStatus getAssetStatus(); | 75 | /*virtual*/ EAssetStatus getAssetStatus(); |
74 | 76 | ||
diff --git a/linden/indra/newview/llfloaterbuy.cpp b/linden/indra/newview/llfloaterbuy.cpp index be52084..4070ea7 100644 --- a/linden/indra/newview/llfloaterbuy.cpp +++ b/linden/indra/newview/llfloaterbuy.cpp | |||
@@ -59,7 +59,7 @@ LLFloaterBuy::LLFloaterBuy() | |||
59 | childSetAction("cancel_btn", onClickCancel, this); | 59 | childSetAction("cancel_btn", onClickCancel, this); |
60 | childSetAction("buy_btn", onClickBuy, this); | 60 | childSetAction("buy_btn", onClickBuy, this); |
61 | 61 | ||
62 | setDefaultBtn("buy_btn"); | 62 | setDefaultBtn("cancel_btn"); // to avoid accidental buy (SL-43130) |
63 | } | 63 | } |
64 | 64 | ||
65 | LLFloaterBuy::~LLFloaterBuy() | 65 | LLFloaterBuy::~LLFloaterBuy() |
diff --git a/linden/indra/newview/llfloaterbuycontents.cpp b/linden/indra/newview/llfloaterbuycontents.cpp index 5e8d921..7288b8d 100644 --- a/linden/indra/newview/llfloaterbuycontents.cpp +++ b/linden/indra/newview/llfloaterbuycontents.cpp | |||
@@ -64,7 +64,7 @@ LLFloaterBuyContents::LLFloaterBuyContents() | |||
64 | childDisable("buy_btn"); | 64 | childDisable("buy_btn"); |
65 | childDisable("wear_check"); | 65 | childDisable("wear_check"); |
66 | 66 | ||
67 | setDefaultBtn("buy_btn"); | 67 | setDefaultBtn("cancel_btn"); // to avoid accidental buy (SL-43130) |
68 | } | 68 | } |
69 | 69 | ||
70 | LLFloaterBuyContents::~LLFloaterBuyContents() | 70 | LLFloaterBuyContents::~LLFloaterBuyContents() |
diff --git a/linden/indra/newview/llfloatergesture.cpp b/linden/indra/newview/llfloatergesture.cpp index 5b191e4..9746787 100644 --- a/linden/indra/newview/llfloatergesture.cpp +++ b/linden/indra/newview/llfloatergesture.cpp | |||
@@ -352,7 +352,6 @@ public: | |||
352 | { | 352 | { |
353 | mTitle = title; | 353 | mTitle = title; |
354 | } | 354 | } |
355 | ~GestureShowCallback() {} | ||
356 | void fire(const LLUUID &inv_item) | 355 | void fire(const LLUUID &inv_item) |
357 | { | 356 | { |
358 | LLPreviewGesture::show(mTitle.c_str(), inv_item, LLUUID::null); | 357 | LLPreviewGesture::show(mTitle.c_str(), inv_item, LLUUID::null); |
diff --git a/linden/indra/newview/llfloaterinspect.cpp b/linden/indra/newview/llfloaterinspect.cpp index 80da7b6..4899649 100644 --- a/linden/indra/newview/llfloaterinspect.cpp +++ b/linden/indra/newview/llfloaterinspect.cpp | |||
@@ -1,3 +1,31 @@ | |||
1 | /** | ||
2 | * @file llfloaterinspect.cpp | ||
3 | * @brief Floater for object inspection tool | ||
4 | * | ||
5 | * Copyright (c) 2002-2007, Linden Research, Inc. | ||
6 | * | ||
7 | * Second Life Viewer Source Code | ||
8 | * The source code in this file ("Source Code") is provided by Linden Lab | ||
9 | * to you under the terms of the GNU General Public License, version 2.0 | ||
10 | * ("GPL"), unless you have obtained a separate licensing agreement | ||
11 | * ("Other License"), formally executed by you and Linden Lab. Terms of | ||
12 | * the GPL can be found in doc/GPL-license.txt in this distribution, or | ||
13 | * online at http://secondlife.com/developers/opensource/gplv2 | ||
14 | * | ||
15 | * There are special exceptions to the terms and conditions of the GPL as | ||
16 | * it is applied to this Source Code. View the full text of the exception | ||
17 | * in the file doc/FLOSS-exception.txt in this software distribution, or | ||
18 | * online at http://secondlife.com/developers/opensource/flossexception | ||
19 | * | ||
20 | * By copying, modifying or distributing this software, you acknowledge | ||
21 | * that you have read and understood your obligations described above, | ||
22 | * and agree to abide by those obligations. | ||
23 | * | ||
24 | * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO | ||
25 | * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, | ||
26 | * COMPLETENESS OR PERFORMANCE. | ||
27 | */ | ||
28 | |||
1 | #include "llviewerprecompiledheaders.h" | 29 | #include "llviewerprecompiledheaders.h" |
2 | #include "llfloateravatarinfo.h" | 30 | #include "llfloateravatarinfo.h" |
3 | #include "llfloaterinspect.h" | 31 | #include "llfloaterinspect.h" |
diff --git a/linden/indra/newview/llfloaterpreference.cpp b/linden/indra/newview/llfloaterpreference.cpp index 963c268..f7392c4 100644 --- a/linden/indra/newview/llfloaterpreference.cpp +++ b/linden/indra/newview/llfloaterpreference.cpp | |||
@@ -52,7 +52,7 @@ | |||
52 | #include "llpanelgeneral.h" | 52 | #include "llpanelgeneral.h" |
53 | #include "llpanelinput.h" | 53 | #include "llpanelinput.h" |
54 | #include "llpanelmsgs.h" | 54 | #include "llpanelmsgs.h" |
55 | //#include "llpanelweb.h" | 55 | #include "llpanelweb.h" |
56 | #include "llprefschat.h" | 56 | #include "llprefschat.h" |
57 | #include "llprefsim.h" | 57 | #include "llprefsim.h" |
58 | #include "llresizehandle.h" | 58 | #include "llresizehandle.h" |
@@ -63,7 +63,6 @@ | |||
63 | #include "llviewernetwork.h" | 63 | #include "llviewernetwork.h" |
64 | #include "llvieweruictrlfactory.h" | 64 | #include "llvieweruictrlfactory.h" |
65 | #include "llviewerwindow.h" | 65 | #include "llviewerwindow.h" |
66 | //#include "viewer.h" | ||
67 | #include "llkeyboard.h" | 66 | #include "llkeyboard.h" |
68 | #include "llscrollcontainer.h" | 67 | #include "llscrollcontainer.h" |
69 | 68 | ||
@@ -119,6 +118,12 @@ LLPreferenceCore::LLPreferenceCore(LLTabContainerCommon* tab_container, LLButton | |||
119 | mTabContainer->addTabPanel(mNetworkPanel, mNetworkPanel->getLabel(), FALSE, onTabChanged, mTabContainer); | 118 | mTabContainer->addTabPanel(mNetworkPanel, mNetworkPanel->getLabel(), FALSE, onTabChanged, mTabContainer); |
120 | mNetworkPanel->setDefaultBtn(default_btn); | 119 | mNetworkPanel->setDefaultBtn(default_btn); |
121 | 120 | ||
121 | #if LL_LIBXUL_ENABLED | ||
122 | mWebPanel = new LLPanelWeb(); | ||
123 | mTabContainer->addTabPanel(mWebPanel, mWebPanel->getLabel(), FALSE, onTabChanged, mTabContainer); | ||
124 | mWebPanel->setDefaultBtn(default_btn); | ||
125 | #endif | ||
126 | |||
122 | mDisplayPanel = new LLPanelDisplay(); | 127 | mDisplayPanel = new LLPanelDisplay(); |
123 | mTabContainer->addTabPanel(mDisplayPanel, mDisplayPanel->getLabel(), FALSE, onTabChanged, mTabContainer); | 128 | mTabContainer->addTabPanel(mDisplayPanel, mDisplayPanel->getLabel(), FALSE, onTabChanged, mTabContainer); |
124 | mDisplayPanel->setDefaultBtn(default_btn); | 129 | mDisplayPanel->setDefaultBtn(default_btn); |
@@ -144,16 +149,10 @@ LLPreferenceCore::LLPreferenceCore(LLTabContainerCommon* tab_container, LLButton | |||
144 | mPrefsIM->getPanel()->setDefaultBtn(default_btn); | 149 | mPrefsIM->getPanel()->setDefaultBtn(default_btn); |
145 | 150 | ||
146 | mMsgPanel = new LLPanelMsgs(); | 151 | mMsgPanel = new LLPanelMsgs(); |
147 | gUICtrlFactory->buildPanel(mMsgPanel, "panel_settings_msgbox.xml"); | ||
148 | mTabContainer->addTabPanel(mMsgPanel, mMsgPanel->getLabel(), FALSE, onTabChanged, mTabContainer); | 152 | mTabContainer->addTabPanel(mMsgPanel, mMsgPanel->getLabel(), FALSE, onTabChanged, mTabContainer); |
149 | mMsgPanel->setDefaultBtn(default_btn); | 153 | mMsgPanel->setDefaultBtn(default_btn); |
150 | 154 | ||
151 | mTabContainer->selectTab(gSavedSettings.getS32("LastPrefTab")); | 155 | mTabContainer->selectTab(gSavedSettings.getS32("LastPrefTab")); |
152 | |||
153 | // Web prefs removed from Loopy build | ||
154 | // mWebPanel = new LLPanelWeb(); | ||
155 | // gUICtrlFactory->buildPanel(mWebPanel, "panel_settings_web.xml"); | ||
156 | // addTabPanel(mWebPanel, "Web", FALSE, onTabChanged, this); | ||
157 | } | 156 | } |
158 | 157 | ||
159 | LLPreferenceCore::~LLPreferenceCore() | 158 | LLPreferenceCore::~LLPreferenceCore() |
@@ -208,11 +207,13 @@ LLPreferenceCore::~LLPreferenceCore() | |||
208 | delete mMsgPanel; | 207 | delete mMsgPanel; |
209 | mMsgPanel = NULL; | 208 | mMsgPanel = NULL; |
210 | } | 209 | } |
211 | //if (mWebPanel) | 210 | #if LL_LIBXUL_ENABLED |
212 | //{ | 211 | if (mWebPanel) |
213 | // delete mWebPanel; | 212 | { |
214 | // mWebPanel = NULL; | 213 | delete mWebPanel; |
215 | //} | 214 | mWebPanel = NULL; |
215 | } | ||
216 | #endif | ||
216 | } | 217 | } |
217 | 218 | ||
218 | 219 | ||
@@ -228,7 +229,9 @@ void LLPreferenceCore::apply() | |||
228 | mPrefsChat->apply(); | 229 | mPrefsChat->apply(); |
229 | mPrefsIM->apply(); | 230 | mPrefsIM->apply(); |
230 | mMsgPanel->apply(); | 231 | mMsgPanel->apply(); |
231 | // mWebPanel->apply(); | 232 | #if LL_LIBXUL_ENABLED |
233 | mWebPanel->apply(); | ||
234 | #endif | ||
232 | } | 235 | } |
233 | 236 | ||
234 | 237 | ||
@@ -244,7 +247,9 @@ void LLPreferenceCore::cancel() | |||
244 | mPrefsChat->cancel(); | 247 | mPrefsChat->cancel(); |
245 | mPrefsIM->cancel(); | 248 | mPrefsIM->cancel(); |
246 | mMsgPanel->cancel(); | 249 | mMsgPanel->cancel(); |
247 | // mWebPanel->cancel(); | 250 | #if LL_LIBXUL_ENABLED |
251 | mWebPanel->cancel(); | ||
252 | #endif | ||
248 | } | 253 | } |
249 | 254 | ||
250 | // static | 255 | // static |
@@ -311,6 +316,7 @@ BOOL LLFloaterPreference::postBuild() | |||
311 | LLFloaterPreference::~LLFloaterPreference() | 316 | LLFloaterPreference::~LLFloaterPreference() |
312 | { | 317 | { |
313 | sInstance = NULL; | 318 | sInstance = NULL; |
319 | delete mPreferenceCore; | ||
314 | } | 320 | } |
315 | 321 | ||
316 | 322 | ||
diff --git a/linden/indra/newview/llfloaterpreference.h b/linden/indra/newview/llfloaterpreference.h index 7a6789f..1823069 100644 --- a/linden/indra/newview/llfloaterpreference.h +++ b/linden/indra/newview/llfloaterpreference.h | |||
@@ -46,11 +46,11 @@ class LLPanelDisplay3; | |||
46 | class LLPanelAudioPrefs; | 46 | class LLPanelAudioPrefs; |
47 | class LLPanelDebug; | 47 | class LLPanelDebug; |
48 | class LLPanelNetwork; | 48 | class LLPanelNetwork; |
49 | class LLPanelWeb; | ||
49 | class LLMessageSystem; | 50 | class LLMessageSystem; |
50 | class LLPrefsChat; | 51 | class LLPrefsChat; |
51 | class LLPrefsIM; | 52 | class LLPrefsIM; |
52 | class LLPanelMsgs; | 53 | class LLPanelMsgs; |
53 | //class LLPanelWeb; // Web prefs removed from Loopy build | ||
54 | class LLScrollListCtrl; | 54 | class LLScrollListCtrl; |
55 | 55 | ||
56 | class LLPreferenceCore | 56 | class LLPreferenceCore |
@@ -85,7 +85,7 @@ private: | |||
85 | LLPrefsChat *mPrefsChat; | 85 | LLPrefsChat *mPrefsChat; |
86 | LLPrefsIM *mPrefsIM; | 86 | LLPrefsIM *mPrefsIM; |
87 | LLPanelMsgs *mMsgPanel; | 87 | LLPanelMsgs *mMsgPanel; |
88 | // LLPanelWeb* mWebPanel; | 88 | LLPanelWeb *mWebPanel; |
89 | }; | 89 | }; |
90 | 90 | ||
91 | // Floater to control preferences (display, audio, bandwidth, general. | 91 | // Floater to control preferences (display, audio, bandwidth, general. |
diff --git a/linden/indra/newview/llfolderview.cpp b/linden/indra/newview/llfolderview.cpp index ff0ad3f..bd5be8e 100644 --- a/linden/indra/newview/llfolderview.cpp +++ b/linden/indra/newview/llfolderview.cpp | |||
@@ -1921,7 +1921,7 @@ void LLFolderViewFolder::requestArrange(BOOL include_descendants) | |||
1921 | { | 1921 | { |
1922 | mLastArrangeGeneration = -1; | 1922 | mLastArrangeGeneration = -1; |
1923 | // flag all items up to root | 1923 | // flag all items up to root |
1924 | if (mParentFolder && !mParentFolder->needsArrange()) | 1924 | if (mParentFolder) |
1925 | { | 1925 | { |
1926 | mParentFolder->requestArrange(); | 1926 | mParentFolder->requestArrange(); |
1927 | } | 1927 | } |
@@ -4282,7 +4282,8 @@ void LLFolderView::idle(void* user_data) | |||
4282 | { | 4282 | { |
4283 | self->scrollToShowItem(self->mSelectedItems.back()); | 4283 | self->scrollToShowItem(self->mSelectedItems.back()); |
4284 | // continue scrolling until animated layout change is done | 4284 | // continue scrolling until animated layout change is done |
4285 | if (!self->needsArrange() || !self->isInVisibleChain()) | 4285 | if (self->getCompletedFilterGeneration() >= self->mFilter.getMinRequiredGeneration() && |
4286 | (!self->needsArrange() || !self->isInVisibleChain())) | ||
4286 | { | 4287 | { |
4287 | self->mNeedsScroll = FALSE; | 4288 | self->mNeedsScroll = FALSE; |
4288 | } | 4289 | } |
diff --git a/linden/indra/newview/llgroupmgr.cpp b/linden/indra/newview/llgroupmgr.cpp index fbdcf81..8e49749 100644 --- a/linden/indra/newview/llgroupmgr.cpp +++ b/linden/indra/newview/llgroupmgr.cpp | |||
@@ -49,6 +49,7 @@ | |||
49 | #include "llviewerwindow.h" | 49 | #include "llviewerwindow.h" |
50 | #include "llfloaterdirectory.h" | 50 | #include "llfloaterdirectory.h" |
51 | #include "llfloatergroupinfo.h" | 51 | #include "llfloatergroupinfo.h" |
52 | #include "lluictrlfactory.h" | ||
52 | 53 | ||
53 | LLGroupMgr sGroupMgr; // use local instance so that it gets cleaned up on application exit | 54 | LLGroupMgr sGroupMgr; // use local instance so that it gets cleaned up on application exit |
54 | LLGroupMgr* gGroupMgr = &sGroupMgr; | 55 | LLGroupMgr* gGroupMgr = &sGroupMgr; |
@@ -1729,21 +1730,28 @@ void LLGroupMgr::cancelGroupRoleChanges(const LLUUID& group_id) | |||
1729 | //static | 1730 | //static |
1730 | bool LLGroupMgr::parseRoleActions(const LLString& xml_filename) | 1731 | bool LLGroupMgr::parseRoleActions(const LLString& xml_filename) |
1731 | { | 1732 | { |
1732 | LLXmlTree xml_tree; | 1733 | LLXMLNodePtr root; |
1733 | LLString xml_file = LLUI::locateSkin(xml_filename); | 1734 | |
1734 | BOOL success = xml_tree.parseFile(xml_file, TRUE ); | 1735 | BOOL success = LLUICtrlFactory::getLayeredXMLNode(xml_filename, root); |
1735 | LLXmlTreeNode* root = xml_tree.getRoot(); | 1736 | |
1736 | if (!success || !root || !root->hasName( "role_actions" )) | 1737 | if (!success || !root || !root->hasName( "role_actions" )) |
1737 | { | 1738 | { |
1738 | llerrs << "Problem reading UI role_actions file: " << xml_filename << llendl; | 1739 | llerrs << "Problem reading UI role_actions file: " << xml_filename << llendl; |
1739 | return false; | 1740 | return false; |
1740 | } | 1741 | } |
1741 | 1742 | ||
1742 | for (LLXmlTreeNode* action_set = root->getChildByName("action_set"); | 1743 | LLXMLNodeList role_list; |
1743 | action_set != NULL; action_set = root->getNextNamedChild()) | 1744 | LLXMLNodeList::iterator role_iter; |
1745 | |||
1746 | root->getChildren("action_set", role_list, false); | ||
1747 | |||
1748 | for (role_iter = role_list.begin(); role_iter != role_list.end(); ++role_iter) | ||
1744 | { | 1749 | { |
1750 | LLXMLNodePtr action_set = role_iter->second; | ||
1751 | |||
1745 | LLRoleActionSet* role_action_set = new LLRoleActionSet(); | 1752 | LLRoleActionSet* role_action_set = new LLRoleActionSet(); |
1746 | LLRoleAction* role_action_data = new LLRoleAction(); | 1753 | LLRoleAction* role_action_data = new LLRoleAction(); |
1754 | |||
1747 | // name= | 1755 | // name= |
1748 | LLString action_set_name; | 1756 | LLString action_set_name; |
1749 | if (action_set->getAttributeString("name", action_set_name)) | 1757 | if (action_set->getAttributeString("name", action_set_name)) |
@@ -1774,9 +1782,15 @@ bool LLGroupMgr::parseRoleActions(const LLString& xml_filename) | |||
1774 | // power mask= | 1782 | // power mask= |
1775 | U64 set_power_mask = 0; | 1783 | U64 set_power_mask = 0; |
1776 | 1784 | ||
1777 | for (LLXmlTreeNode* action = action_set->getChildByName("action"); | 1785 | LLXMLNodeList action_list; |
1778 | action != NULL; action = action_set->getNextNamedChild()) | 1786 | LLXMLNodeList::iterator action_iter; |
1787 | |||
1788 | action_set->getChildren("action", action_list, false); | ||
1789 | |||
1790 | for (action_iter = action_list.begin(); action_iter != action_list.end(); ++action_iter) | ||
1779 | { | 1791 | { |
1792 | LLXMLNodePtr action = action_iter->second; | ||
1793 | |||
1780 | LLRoleAction* role_action = new LLRoleAction(); | 1794 | LLRoleAction* role_action = new LLRoleAction(); |
1781 | 1795 | ||
1782 | // name= | 1796 | // name= |
diff --git a/linden/indra/newview/llgroupnotify.cpp b/linden/indra/newview/llgroupnotify.cpp index ef20138..aa84e3d 100644 --- a/linden/indra/newview/llgroupnotify.cpp +++ b/linden/indra/newview/llgroupnotify.cpp | |||
@@ -215,8 +215,8 @@ LLGroupNotifyBox::LLGroupNotifyBox(const char* subject, | |||
215 | LLStyle headerstyle(true,LLColor4::black,"SansSerifBig"); | 215 | LLStyle headerstyle(true,LLColor4::black,"SansSerifBig"); |
216 | LLStyle datestyle(true,LLColor4::black,"serif"); | 216 | LLStyle datestyle(true,LLColor4::black,"serif"); |
217 | 217 | ||
218 | text->appendStyledText(subject,false,false,headerstyle); | 218 | text->appendStyledText(subject,false,false,&headerstyle); |
219 | text->appendStyledText(time_buf,false,false,datestyle); | 219 | text->appendStyledText(time_buf,false,false,&datestyle); |
220 | // Sadly, our LLTextEditor can't handle both styled and unstyled text | 220 | // Sadly, our LLTextEditor can't handle both styled and unstyled text |
221 | // at the same time. Hence this space must be styled. JC | 221 | // at the same time. Hence this space must be styled. JC |
222 | text->appendColoredText(" ",false,false,LLColor4::grey4); | 222 | text->appendColoredText(" ",false,false,LLColor4::grey4); |
diff --git a/linden/indra/newview/llhudeffecttrail.cpp b/linden/indra/newview/llhudeffecttrail.cpp index 79c05d7..7cfc3e1 100644 --- a/linden/indra/newview/llhudeffecttrail.cpp +++ b/linden/indra/newview/llhudeffecttrail.cpp | |||
@@ -188,7 +188,7 @@ void LLHUDEffectSpiral::triggerLocal() | |||
188 | { | 188 | { |
189 | if (show_beam) | 189 | if (show_beam) |
190 | { | 190 | { |
191 | LLViewerPartSourceBeam *psb = new LLViewerPartSourceBeam; | 191 | LLPointer<LLViewerPartSourceBeam> psb = new LLViewerPartSourceBeam; |
192 | psb->setColor(color); | 192 | psb->setColor(color); |
193 | psb->setSourceObject(mSourceObject); | 193 | psb->setSourceObject(mSourceObject); |
194 | psb->setTargetObject(mTargetObject); | 194 | psb->setTargetObject(mTargetObject); |
@@ -203,7 +203,7 @@ void LLHUDEffectSpiral::triggerLocal() | |||
203 | { | 203 | { |
204 | if (show_beam) | 204 | if (show_beam) |
205 | { | 205 | { |
206 | LLViewerPartSourceBeam *psb = new LLViewerPartSourceBeam; | 206 | LLPointer<LLViewerPartSourceBeam> psb = new LLViewerPartSourceBeam; |
207 | psb->setSourceObject(mSourceObject); | 207 | psb->setSourceObject(mSourceObject); |
208 | psb->setTargetObject(NULL); | 208 | psb->setTargetObject(NULL); |
209 | psb->setColor(color); | 209 | psb->setColor(color); |
@@ -224,7 +224,7 @@ void LLHUDEffectSpiral::triggerLocal() | |||
224 | { | 224 | { |
225 | pos = gAgent.getPosAgentFromGlobal(mPositionGlobal); | 225 | pos = gAgent.getPosAgentFromGlobal(mPositionGlobal); |
226 | } | 226 | } |
227 | LLViewerPartSourceSpiral *pss = new LLViewerPartSourceSpiral(pos); | 227 | LLPointer<LLViewerPartSourceSpiral> pss = new LLViewerPartSourceSpiral(pos); |
228 | if (!mSourceObject.isNull()) | 228 | if (!mSourceObject.isNull()) |
229 | { | 229 | { |
230 | pss->setSourceObject(mSourceObject); | 230 | pss->setSourceObject(mSourceObject); |
@@ -238,10 +238,10 @@ void LLHUDEffectSpiral::triggerLocal() | |||
238 | } | 238 | } |
239 | else | 239 | else |
240 | { | 240 | { |
241 | LLViewerPartSource *ps = mPartSourcep; | 241 | LLPointer<LLViewerPartSource>& ps = mPartSourcep; |
242 | if (mPartSourcep->getType() == LLViewerPartSource::LL_PART_SOURCE_BEAM) | 242 | if (mPartSourcep->getType() == LLViewerPartSource::LL_PART_SOURCE_BEAM) |
243 | { | 243 | { |
244 | LLViewerPartSourceBeam *psb = (LLViewerPartSourceBeam *)ps; | 244 | LLViewerPartSourceBeam *psb = (LLViewerPartSourceBeam *)ps.get(); |
245 | psb->setSourceObject(mSourceObject); | 245 | psb->setSourceObject(mSourceObject); |
246 | psb->setTargetObject(mTargetObject); | 246 | psb->setTargetObject(mTargetObject); |
247 | psb->setColor(color); | 247 | psb->setColor(color); |
@@ -252,7 +252,7 @@ void LLHUDEffectSpiral::triggerLocal() | |||
252 | } | 252 | } |
253 | else | 253 | else |
254 | { | 254 | { |
255 | LLViewerPartSourceSpiral *pss = (LLViewerPartSourceSpiral *)ps; | 255 | LLViewerPartSourceSpiral *pss = (LLViewerPartSourceSpiral *)ps.get(); |
256 | pss->setSourceObject(mSourceObject); | 256 | pss->setSourceObject(mSourceObject); |
257 | } | 257 | } |
258 | } | 258 | } |
diff --git a/linden/indra/newview/llhudobject.h b/linden/indra/newview/llhudobject.h index bacffce..b3af006 100644 --- a/linden/indra/newview/llhudobject.h +++ b/linden/indra/newview/llhudobject.h | |||
@@ -94,7 +94,7 @@ protected: | |||
94 | static void sortObjects(); | 94 | static void sortObjects(); |
95 | 95 | ||
96 | LLHUDObject(const U8 type); | 96 | LLHUDObject(const U8 type); |
97 | virtual ~LLHUDObject(); | 97 | ~LLHUDObject(); |
98 | 98 | ||
99 | virtual void render() = 0; | 99 | virtual void render() = 0; |
100 | virtual void renderForSelect() {}; | 100 | virtual void renderForSelect() {}; |
diff --git a/linden/indra/newview/llimpanel.cpp b/linden/indra/newview/llimpanel.cpp index d95abf3..3c89131 100644 --- a/linden/indra/newview/llimpanel.cpp +++ b/linden/indra/newview/llimpanel.cpp | |||
@@ -33,6 +33,7 @@ | |||
33 | #include "indra_constants.h" | 33 | #include "indra_constants.h" |
34 | #include "llfocusmgr.h" | 34 | #include "llfocusmgr.h" |
35 | #include "llfontgl.h" | 35 | #include "llfontgl.h" |
36 | #include "llhttpclient.h" | ||
36 | #include "llrect.h" | 37 | #include "llrect.h" |
37 | #include "llerror.h" | 38 | #include "llerror.h" |
38 | #include "llstring.h" | 39 | #include "llstring.h" |
@@ -60,6 +61,7 @@ | |||
60 | #include "llvieweruictrlfactory.h" | 61 | #include "llvieweruictrlfactory.h" |
61 | #include "lllogchat.h" | 62 | #include "lllogchat.h" |
62 | #include "llfloaterhtml.h" | 63 | #include "llfloaterhtml.h" |
64 | #include "llviewerregion.h" | ||
63 | #include "llweb.h" | 65 | #include "llweb.h" |
64 | 66 | ||
65 | // | 67 | // |
@@ -113,8 +115,7 @@ bool send_start_session_messages(const LLUUID& temp_session_id, | |||
113 | const LLDynamicArray<LLUUID>& ids, | 115 | const LLDynamicArray<LLUUID>& ids, |
114 | EInstantMessage dialog) | 116 | EInstantMessage dialog) |
115 | { | 117 | { |
116 | if ( (dialog == IM_SESSION_911_START) || | 118 | if ( (dialog == IM_SESSION_GROUP_START) || |
117 | (dialog == IM_SESSION_GROUP_START) || | ||
118 | (dialog == IM_SESSION_CONFERENCE_START) ) | 119 | (dialog == IM_SESSION_CONFERENCE_START) ) |
119 | { | 120 | { |
120 | S32 count = ids.size(); | 121 | S32 count = ids.size(); |
@@ -129,7 +130,6 @@ bool send_start_session_messages(const LLUUID& temp_session_id, | |||
129 | switch(dialog) | 130 | switch(dialog) |
130 | { | 131 | { |
131 | case IM_SESSION_GROUP_START: | 132 | case IM_SESSION_GROUP_START: |
132 | case IM_SESSION_911_START: | ||
133 | gMessageSystem->addBinaryDataFast(_PREHASH_BinaryBucket, | 133 | gMessageSystem->addBinaryDataFast(_PREHASH_BinaryBucket, |
134 | EMPTY_BINARY_BUCKET, | 134 | EMPTY_BINARY_BUCKET, |
135 | EMPTY_BINARY_BUCKET_SIZE); | 135 | EMPTY_BINARY_BUCKET_SIZE); |
@@ -210,35 +210,58 @@ LLFloaterIMPanel::LLFloaterIMPanel(const std::string& name, | |||
210 | mSessionInitialized(FALSE), | 210 | mSessionInitialized(FALSE), |
211 | mSessionInitRequested(FALSE) | 211 | mSessionInitRequested(FALSE) |
212 | { | 212 | { |
213 | init(session_label); | ||
214 | |||
215 | mSessionInitialTargetIDs = ids; | 213 | mSessionInitialTargetIDs = ids; |
214 | init(session_label); | ||
216 | } | 215 | } |
217 | 216 | ||
218 | 217 | ||
219 | void LLFloaterIMPanel::init(const LLString& session_label) | 218 | void LLFloaterIMPanel::init(const LLString& session_label) |
220 | { | 219 | { |
221 | gUICtrlFactory->buildFloater(this, | 220 | gUICtrlFactory->buildFloater(this, |
222 | "floater_instant_message.xml", | 221 | "floater_instant_message.xml", |
223 | NULL, | 222 | NULL, |
224 | FALSE); | 223 | FALSE); |
225 | 224 | ||
226 | setLabel(session_label); | 225 | setLabel(session_label); |
227 | setTitle(session_label); | 226 | setTitle(session_label); |
228 | mInputEditor->setMaxTextLength(1023); | 227 | mInputEditor->setMaxTextLength(1023); |
228 | // enable line history support for instant message bar | ||
229 | mInputEditor->setEnableLineHistory(TRUE); | ||
229 | 230 | ||
230 | if ( gSavedPerAccountSettings.getBOOL("LogShowHistory") ) | 231 | if ( gSavedPerAccountSettings.getBOOL("LogShowHistory") ) |
231 | { | 232 | { |
232 | LLLogChat::loadHistory(session_label, | 233 | LLLogChat::loadHistory(session_label, |
233 | &chatFromLogFile, | 234 | &chatFromLogFile, |
234 | (void *)this); | 235 | (void *)this); |
235 | } | 236 | } |
236 | 237 | ||
237 | if(IM_SESSION_911_START == mDialog) | 238 | if ( !mSessionInitialized ) |
238 | { | 239 | { |
239 | LLTextBox* live_help_text = | 240 | if ( !send_start_session_messages( |
240 | LLUICtrlFactory::getTextBoxByName(this, "live_help_dialog"); | 241 | mSessionUUID, |
241 | addHistoryLine(live_help_text->getText()); | 242 | mOtherParticipantUUID, |
243 | mSessionInitialTargetIDs, | ||
244 | mDialog) ) | ||
245 | { | ||
246 | //we don't need to need to wait for any responses | ||
247 | //so we're already initialized | ||
248 | mSessionInitialized = TRUE; | ||
249 | } | ||
250 | else | ||
251 | { | ||
252 | //locally echo a little "starting session" message | ||
253 | LLUIString session_start = sSessionStartString; | ||
254 | |||
255 | session_start.setArg("[NAME]", getTitle()); | ||
256 | mSessionStartMsgPos = | ||
257 | mHistoryEditor->getText().length(); | ||
258 | |||
259 | bool log_to_file = false; | ||
260 | addHistoryLine( | ||
261 | session_start, | ||
262 | LLColor4::grey, | ||
263 | log_to_file); | ||
264 | } | ||
242 | } | 265 | } |
243 | } | 266 | } |
244 | 267 | ||
@@ -253,7 +276,6 @@ BOOL LLFloaterIMPanel::postBuild() | |||
253 | requires("title_string", WIDGET_TYPE_TEXT_BOX); | 276 | requires("title_string", WIDGET_TYPE_TEXT_BOX); |
254 | requires("typing_start_string", WIDGET_TYPE_TEXT_BOX); | 277 | requires("typing_start_string", WIDGET_TYPE_TEXT_BOX); |
255 | requires("session_start_string", WIDGET_TYPE_TEXT_BOX); | 278 | requires("session_start_string", WIDGET_TYPE_TEXT_BOX); |
256 | requires("teleport_btn", WIDGET_TYPE_BUTTON); | ||
257 | 279 | ||
258 | if (checkRequirements()) | 280 | if (checkRequirements()) |
259 | { | 281 | { |
@@ -271,16 +293,10 @@ BOOL LLFloaterIMPanel::postBuild() | |||
271 | LLButton* close_btn = LLUICtrlFactory::getButtonByName(this, "close_btn"); | 293 | LLButton* close_btn = LLUICtrlFactory::getButtonByName(this, "close_btn"); |
272 | close_btn->setClickedCallback(&LLFloaterIMPanel::onClickClose, this); | 294 | close_btn->setClickedCallback(&LLFloaterIMPanel::onClickClose, this); |
273 | 295 | ||
274 | LLButton* tp_btn = LLUICtrlFactory::getButtonByName(this, "teleport_btn"); | ||
275 | tp_btn->setClickedCallback(&LLFloaterIMPanel::onTeleport, this); | ||
276 | tp_btn->setVisible(FALSE); | ||
277 | tp_btn->setEnabled(FALSE); | ||
278 | |||
279 | mHistoryEditor = LLViewerUICtrlFactory::getViewerTextEditorByName(this, "im_history"); | 296 | mHistoryEditor = LLViewerUICtrlFactory::getViewerTextEditorByName(this, "im_history"); |
280 | mHistoryEditor->setParseHTML(TRUE); | 297 | mHistoryEditor->setParseHTML(TRUE); |
281 | 298 | ||
282 | if (IM_SESSION_GROUP_START == mDialog | 299 | if (IM_SESSION_GROUP_START == mDialog) |
283 | || IM_SESSION_911_START == mDialog) | ||
284 | { | 300 | { |
285 | profile_btn->setEnabled(FALSE); | 301 | profile_btn->setEnabled(FALSE); |
286 | } | 302 | } |
@@ -326,55 +342,55 @@ void LLFloaterIMPanel::draw() | |||
326 | LLFloater::draw(); | 342 | LLFloater::draw(); |
327 | } | 343 | } |
328 | 344 | ||
345 | class LLSessionInviteResponder : public LLHTTPClient::Responder | ||
346 | { | ||
347 | public: | ||
348 | LLSessionInviteResponder(const LLUUID& session_id) | ||
349 | { | ||
350 | mSessionID = session_id; | ||
351 | } | ||
352 | |||
353 | void error(U32 statusNum, const std::string& reason) | ||
354 | { | ||
355 | llinfos << "Error inviting all agents to session" << llendl; | ||
329 | 356 | ||
330 | BOOL LLFloaterIMPanel::addParticipants(const LLDynamicArray<LLUUID>& ids) | 357 | //throw something back to the viewer here? |
358 | } | ||
359 | |||
360 | private: | ||
361 | LLUUID mSessionID; | ||
362 | }; | ||
363 | |||
364 | BOOL LLFloaterIMPanel::inviteToSession(const LLDynamicArray<LLUUID>& ids) | ||
331 | { | 365 | { |
332 | S32 count = ids.count(); | 366 | S32 count = ids.count(); |
333 | 367 | ||
334 | if( isAddAllowed() && (count > 0) ) | 368 | if( isAddAllowed() && (count > 0) ) |
335 | { | 369 | { |
336 | llinfos << "LLFloaterIMPanel::addParticipants() - adding participants" << llendl; | 370 | llinfos << "LLFloaterIMPanel::inviteToSession() - adding participants" << llendl; |
337 | const S32 MAX_AGENTS = 50; | ||
338 | if(count > MAX_AGENTS) return FALSE; | ||
339 | |||
340 | LLMessageSystem *msg = gMessageSystem; | ||
341 | msg->newMessageFast(_PREHASH_ImprovedInstantMessage); | ||
342 | msg->nextBlockFast(_PREHASH_AgentData); | ||
343 | msg->addUUIDFast(_PREHASH_AgentID, gAgent.getID()); | ||
344 | msg->addUUIDFast(_PREHASH_SessionID, gAgent.getSessionID()); | ||
345 | msg->nextBlockFast(_PREHASH_MessageBlock); | ||
346 | msg->addBOOLFast(_PREHASH_FromGroup, FALSE); | ||
347 | msg->addUUIDFast(_PREHASH_ToAgentID, mOtherParticipantUUID); | ||
348 | msg->addU8Fast(_PREHASH_Offline, IM_ONLINE); | ||
349 | msg->addU8Fast(_PREHASH_Dialog, IM_SESSION_ADD); | ||
350 | msg->addUUIDFast(_PREHASH_ID, mSessionUUID); | ||
351 | msg->addU32Fast(_PREHASH_Timestamp, NO_TIMESTAMP); // no timestamp necessary | ||
352 | std::string name; | ||
353 | gAgent.buildFullname(name); | ||
354 | msg->addStringFast(_PREHASH_FromAgentName, name); | ||
355 | msg->addStringFast(_PREHASH_Message, LLString::null); | ||
356 | msg->addU32Fast(_PREHASH_ParentEstateID, 0); | ||
357 | msg->addUUIDFast(_PREHASH_RegionID, LLUUID::null); | ||
358 | msg->addVector3Fast(_PREHASH_Position, gAgent.getPositionAgent()); | ||
359 | 371 | ||
360 | // *FIX: this could suffer from endian issues | 372 | std::string url = |
361 | S32 bucket_size = UUID_BYTES * count; | 373 | gAgent.getRegion()->getCapability("ChatSessionRequest"); |
362 | U8* bucket = new U8[bucket_size]; | 374 | |
363 | U8* pos = bucket; | 375 | LLSD data; |
364 | for(S32 i = 0; i < count; ++i) | 376 | data["params"] = LLSD::emptyArray(); |
377 | for (int i = 0; i < count; i++) | ||
365 | { | 378 | { |
366 | memcpy(pos, &(ids.get(i)), UUID_BYTES); | 379 | data["params"].append(ids.get(i)); |
367 | pos += UUID_BYTES; | ||
368 | } | 380 | } |
369 | msg->addBinaryDataFast(_PREHASH_BinaryBucket, | 381 | |
370 | bucket, | 382 | data["method"] = "invite"; |
371 | bucket_size); | 383 | data["session-id"] = mSessionUUID; |
372 | delete[] bucket; | 384 | LLHTTPClient::post( |
373 | gAgent.sendReliableMessage(); | 385 | url, |
386 | data, | ||
387 | new LLSessionInviteResponder(mSessionUUID)); | ||
388 | |||
374 | } | 389 | } |
375 | else | 390 | else |
376 | { | 391 | { |
377 | llinfos << "LLFloaterIMPanel::addParticipants() - no need to add agents for " | 392 | llinfos << "LLFloaterIMPanel::inviteToSession -" |
393 | << " no need to invite agents for " | ||
378 | << mDialog << llendl; | 394 | << mDialog << llendl; |
379 | // successful add, because everyone that needed to get added | 395 | // successful add, because everyone that needed to get added |
380 | // was added. | 396 | // was added. |
@@ -530,7 +546,7 @@ BOOL LLFloaterIMPanel::dropCallingCard(LLInventoryItem* item, BOOL drop) | |||
530 | { | 546 | { |
531 | LLDynamicArray<LLUUID> ids; | 547 | LLDynamicArray<LLUUID> ids; |
532 | ids.put(item->getCreatorUUID()); | 548 | ids.put(item->getCreatorUUID()); |
533 | addParticipants(ids); | 549 | inviteToSession(ids); |
534 | } | 550 | } |
535 | } | 551 | } |
536 | else | 552 | else |
@@ -566,7 +582,7 @@ BOOL LLFloaterIMPanel::dropCategory(LLInventoryCategory* category, BOOL drop) | |||
566 | { | 582 | { |
567 | ids.put(items.get(i)->getCreatorUUID()); | 583 | ids.put(items.get(i)->getCreatorUUID()); |
568 | } | 584 | } |
569 | addParticipants(ids); | 585 | inviteToSession(ids); |
570 | } | 586 | } |
571 | } | 587 | } |
572 | return rv; | 588 | return rv; |
@@ -576,7 +592,7 @@ BOOL LLFloaterIMPanel::isAddAllowed() const | |||
576 | { | 592 | { |
577 | 593 | ||
578 | return ((IM_SESSION_CONFERENCE_START == mDialog) | 594 | return ((IM_SESSION_CONFERENCE_START == mDialog) |
579 | || (IM_SESSION_ADD) ); | 595 | || (IM_SESSION_INVITE) ); |
580 | } | 596 | } |
581 | 597 | ||
582 | 598 | ||
@@ -610,39 +626,6 @@ void LLFloaterIMPanel::onClickClose( void* userdata ) | |||
610 | } | 626 | } |
611 | } | 627 | } |
612 | 628 | ||
613 | void LLFloaterIMPanel::addTeleportButton() | ||
614 | { | ||
615 | LLButton* btn = | ||
616 | LLViewerUICtrlFactory::getButtonByName(this, "teleport_btn"); | ||
617 | |||
618 | if ( !btn->getEnabled() ) | ||
619 | { | ||
620 | //it's required, don't need to check for null here | ||
621 | // adjust the size of the editor to make room for the button | ||
622 | LLRect rect = mInputEditor->getRect(); | ||
623 | S32 editor_right = rect.mRight - btn->getRect().getWidth(); | ||
624 | rect.mRight = editor_right; | ||
625 | mInputEditor->reshape(rect.getWidth(), rect.getHeight(), FALSE); | ||
626 | mInputEditor->setRect(rect); | ||
627 | |||
628 | btn->setVisible(TRUE); | ||
629 | btn->setEnabled(TRUE); | ||
630 | } | ||
631 | } | ||
632 | |||
633 | // static | ||
634 | void LLFloaterIMPanel::onTeleport(void* userdata) | ||
635 | { | ||
636 | LLFloaterIMPanel* self = (LLFloaterIMPanel*) userdata; | ||
637 | if(self) | ||
638 | { | ||
639 | send_simple_im(self->mSessionUUID, //to | ||
640 | "", | ||
641 | IM_TELEPORT_911, | ||
642 | self->mSessionUUID);//session | ||
643 | } | ||
644 | } | ||
645 | |||
646 | // static | 629 | // static |
647 | void LLFloaterIMPanel::onInputEditorFocusReceived( LLUICtrl* caller, void* userdata ) | 630 | void LLFloaterIMPanel::onInputEditorFocusReceived( LLUICtrl* caller, void* userdata ) |
648 | { | 631 | { |
@@ -690,7 +673,7 @@ void LLFloaterIMPanel::onClose(bool app_quitting) | |||
690 | name.c_str(), | 673 | name.c_str(), |
691 | "", | 674 | "", |
692 | IM_ONLINE, | 675 | IM_ONLINE, |
693 | IM_SESSION_DROP, | 676 | IM_SESSION_LEAVE, |
694 | mSessionUUID); | 677 | mSessionUUID); |
695 | gAgent.sendReliableMessage(); | 678 | gAgent.sendReliableMessage(); |
696 | } | 679 | } |
@@ -715,11 +698,7 @@ void deliver_message(const std::string& utf8_text, | |||
715 | // which case it's probably an IM to everyone. | 698 | // which case it's probably an IM to everyone. |
716 | U8 new_dialog = dialog; | 699 | U8 new_dialog = dialog; |
717 | 700 | ||
718 | if ( dialog == IM_SESSION_911_START ) | 701 | if ( dialog != IM_NOTHING_SPECIAL ) |
719 | { | ||
720 | new_dialog = IM_SESSION_911_SEND; | ||
721 | } | ||
722 | else if ( dialog != IM_NOTHING_SPECIAL ) | ||
723 | { | 702 | { |
724 | new_dialog = IM_SESSION_SEND; | 703 | new_dialog = IM_SESSION_SEND; |
725 | } | 704 | } |
@@ -755,49 +734,6 @@ void LLFloaterIMPanel::sendMsg() | |||
755 | std::string utf8_text = wstring_to_utf8str(text); | 734 | std::string utf8_text = wstring_to_utf8str(text); |
756 | utf8_text = utf8str_truncate(utf8_text, MAX_MSG_BUF_SIZE - 1); | 735 | utf8_text = utf8str_truncate(utf8_text, MAX_MSG_BUF_SIZE - 1); |
757 | 736 | ||
758 | if ( !mSessionInitialized ) | ||
759 | { | ||
760 | //we send requests (if we need to) to initialize our session | ||
761 | if ( !mSessionInitRequested ) | ||
762 | { | ||
763 | mSessionInitRequested = TRUE; | ||
764 | if ( !send_start_session_messages(mSessionUUID, | ||
765 | mOtherParticipantUUID, | ||
766 | mSessionInitialTargetIDs, | ||
767 | mDialog) ) | ||
768 | { | ||
769 | //we don't need to need to wait for any responses | ||
770 | //so we don't need to disable | ||
771 | mSessionInitialized = TRUE; | ||
772 | } | ||
773 | else | ||
774 | { | ||
775 | //queue up the message to send once the session is | ||
776 | //initialized | ||
777 | mQueuedMsgsForInit.append(utf8_text); | ||
778 | |||
779 | //locally echo a little "starting session" message | ||
780 | LLUIString session_start = sSessionStartString; | ||
781 | |||
782 | session_start.setArg("[NAME]", getTitle()); | ||
783 | mSessionStartMsgPos = | ||
784 | mHistoryEditor->getText().length(); | ||
785 | |||
786 | bool log_to_file = false; | ||
787 | addHistoryLine(session_start, | ||
788 | LLColor4::grey, | ||
789 | log_to_file); | ||
790 | |||
791 | } | ||
792 | } | ||
793 | else | ||
794 | { | ||
795 | //queue up the message to send once the session is | ||
796 | //initialized | ||
797 | mQueuedMsgsForInit.append(utf8_text); | ||
798 | } | ||
799 | } | ||
800 | |||
801 | if ( mSessionInitialized ) | 737 | if ( mSessionInitialized ) |
802 | { | 738 | { |
803 | deliver_message(utf8_text, | 739 | deliver_message(utf8_text, |
@@ -831,6 +767,10 @@ void LLFloaterIMPanel::sendMsg() | |||
831 | addHistoryLine(history_echo); | 767 | addHistoryLine(history_echo); |
832 | } | 768 | } |
833 | } | 769 | } |
770 | else | ||
771 | { | ||
772 | mQueuedMsgsForInit.append(utf8_text); | ||
773 | } | ||
834 | 774 | ||
835 | gViewerStats->incStat(LLViewerStats::ST_IM_COUNT); | 775 | gViewerStats->incStat(LLViewerStats::ST_IM_COUNT); |
836 | } | 776 | } |
@@ -969,3 +909,4 @@ void LLFloaterIMPanel::chatFromLogFile(LLString line, void* userdata) | |||
969 | self->mHistoryEditor->appendColoredText(line, false, true, LLColor4::grey); | 909 | self->mHistoryEditor->appendColoredText(line, false, true, LLColor4::grey); |
970 | 910 | ||
971 | } | 911 | } |
912 | |||
diff --git a/linden/indra/newview/llimpanel.h b/linden/indra/newview/llimpanel.h index e760513..00b7033 100644 --- a/linden/indra/newview/llimpanel.h +++ b/linden/indra/newview/llimpanel.h | |||
@@ -71,7 +71,7 @@ public: | |||
71 | 71 | ||
72 | // add target ids to the session. | 72 | // add target ids to the session. |
73 | // Return TRUE if successful, otherwise FALSE. | 73 | // Return TRUE if successful, otherwise FALSE. |
74 | BOOL addParticipants(const LLDynamicArray<LLUUID>& agent_ids); | 74 | BOOL inviteToSession(const LLDynamicArray<LLUUID>& agent_ids); |
75 | 75 | ||
76 | void addHistoryLine(const std::string &utf8msg, | 76 | void addHistoryLine(const std::string &utf8msg, |
77 | const LLColor4& color = LLColor4::white, | 77 | const LLColor4& color = LLColor4::white, |
@@ -98,10 +98,7 @@ public: | |||
98 | 98 | ||
99 | const LLUUID& getSessionID() const { return mSessionUUID; } | 99 | const LLUUID& getSessionID() const { return mSessionUUID; } |
100 | const LLUUID& getOtherParticipantID() const { return mOtherParticipantUUID; } | 100 | const LLUUID& getOtherParticipantID() const { return mOtherParticipantUUID; } |
101 | 101 | const EInstantMessage getDialogType() const { return mDialog; } | |
102 | // HACK -- for enabling a teleport button for helpers | ||
103 | static void onTeleport(void* userdata); | ||
104 | void addTeleportButton(); | ||
105 | 102 | ||
106 | void sessionInitReplyReceived(const LLUUID& im_session_id); | 103 | void sessionInitReplyReceived(const LLUUID& im_session_id); |
107 | 104 | ||
diff --git a/linden/indra/newview/llimview.cpp b/linden/indra/newview/llimview.cpp index 02578d2..111852d 100644 --- a/linden/indra/newview/llimview.cpp +++ b/linden/indra/newview/llimview.cpp | |||
@@ -32,29 +32,37 @@ | |||
32 | 32 | ||
33 | #include "llfontgl.h" | 33 | #include "llfontgl.h" |
34 | #include "llrect.h" | 34 | #include "llrect.h" |
35 | #include "lldbstrings.h" | ||
35 | #include "llerror.h" | 36 | #include "llerror.h" |
36 | #include "llbutton.h" | 37 | #include "llbutton.h" |
38 | #include "llsdutil.h" | ||
37 | #include "llstring.h" | 39 | #include "llstring.h" |
38 | #include "linked_lists.h" | 40 | #include "linked_lists.h" |
39 | #include "llvieweruictrlfactory.h" | 41 | #include "llvieweruictrlfactory.h" |
40 | 42 | ||
41 | #include "llagent.h" | 43 | #include "llagent.h" |
42 | #include "llcallingcard.h" | 44 | #include "llcallingcard.h" |
45 | #include "llchat.h" | ||
43 | #include "llviewerwindow.h" | 46 | #include "llviewerwindow.h" |
44 | #include "llresmgr.h" | 47 | #include "llresmgr.h" |
48 | #include "llfloaterchat.h" | ||
45 | #include "llfloaternewim.h" | 49 | #include "llfloaternewim.h" |
50 | #include "llhttpclient.h" | ||
46 | #include "llhttpnode.h" | 51 | #include "llhttpnode.h" |
47 | #include "llimpanel.h" | 52 | #include "llimpanel.h" |
48 | #include "llresizebar.h" | 53 | #include "llresizebar.h" |
49 | #include "lltabcontainer.h" | 54 | #include "lltabcontainer.h" |
50 | #include "viewer.h" | 55 | #include "viewer.h" |
51 | #include "llfloater.h" | 56 | #include "llfloater.h" |
57 | #include "llmutelist.h" | ||
52 | #include "llresizehandle.h" | 58 | #include "llresizehandle.h" |
53 | #include "llkeyboard.h" | 59 | #include "llkeyboard.h" |
54 | #include "llui.h" | 60 | #include "llui.h" |
55 | #include "llviewermenu.h" | 61 | #include "llviewermenu.h" |
56 | #include "llcallingcard.h" | 62 | #include "llcallingcard.h" |
57 | #include "lltoolbar.h" | 63 | #include "lltoolbar.h" |
64 | #include "llviewermessage.h" | ||
65 | #include "llviewerregion.h" | ||
58 | 66 | ||
59 | const EInstantMessage GROUP_DIALOG = IM_SESSION_GROUP_START; | 67 | const EInstantMessage GROUP_DIALOG = IM_SESSION_GROUP_START; |
60 | const EInstantMessage DEFAULT_DIALOG = IM_NOTHING_SPECIAL; | 68 | const EInstantMessage DEFAULT_DIALOG = IM_NOTHING_SPECIAL; |
@@ -149,11 +157,9 @@ BOOL LLFloaterIM::postBuild() | |||
149 | sErrorStringsMap["no_user_911"] = | 157 | sErrorStringsMap["no_user_911"] = |
150 | childGetText("user_no_help"); | 158 | childGetText("user_no_help"); |
151 | 159 | ||
152 | sEventStringsMap["add"] = childGetText("add_session_event");; | 160 | sEventStringsMap["add"] = childGetText("add_session_event"); |
153 | sEventStringsMap["message"] = | 161 | sEventStringsMap["message"] = |
154 | childGetText("message_session_event");; | 162 | childGetText("message_session_event"); |
155 | sEventStringsMap["teleport"] = | ||
156 | childGetText("teleport_session_event");; | ||
157 | 163 | ||
158 | sForceCloseSessionMap["removed"] = | 164 | sForceCloseSessionMap["removed"] = |
159 | childGetText("removed_from_group"); | 165 | childGetText("removed_from_group"); |
@@ -377,10 +383,10 @@ void LLIMView::addMessage( | |||
377 | //if we have recently requsted to be dropped from a session | 383 | //if we have recently requsted to be dropped from a session |
378 | //but are still receiving messages from the session, don't make | 384 | //but are still receiving messages from the session, don't make |
379 | //a new floater | 385 | //a new floater |
380 | // if ( mSessionsDropRequested.has(session_id.asString()) ) | 386 | if ( mSessionsDropRequested.has(session_id.asString()) ) |
381 | // { | 387 | { |
382 | // return ; | 388 | return ; |
383 | // } | 389 | } |
384 | 390 | ||
385 | const char* name = from; | 391 | const char* name = from; |
386 | if(session_name && (strlen(session_name)>1)) | 392 | if(session_name && (strlen(session_name)>1)) |
@@ -543,10 +549,10 @@ void LLIMView::removeSession(const LLUUID& session_id) | |||
543 | //mTabContainer->removeTabPanel(floater); | 549 | //mTabContainer->removeTabPanel(floater); |
544 | } | 550 | } |
545 | 551 | ||
546 | // if ( session_id.notNull() ) | 552 | if ( session_id.notNull() && floater->getDialogType() != IM_NOTHING_SPECIAL ) |
547 | // { | 553 | { |
548 | // mSessionsDropRequested[session_id.asString()] = LLSD(); | 554 | mSessionsDropRequested[session_id.asString()] = LLSD(); |
549 | // } | 555 | } |
550 | } | 556 | } |
551 | 557 | ||
552 | void LLIMView::refresh() | 558 | void LLIMView::refresh() |
@@ -851,9 +857,10 @@ public: | |||
851 | desc.source(__FILE__, __LINE__); | 857 | desc.source(__FILE__, __LINE__); |
852 | } | 858 | } |
853 | 859 | ||
854 | virtual void post(ResponsePtr response, | 860 | virtual void post( |
855 | const LLSD& context, | 861 | ResponsePtr response, |
856 | const LLSD& input) const | 862 | const LLSD& context, |
863 | const LLSD& input) const | ||
857 | { | 864 | { |
858 | LLSD body; | 865 | LLSD body; |
859 | LLUUID temp_session_id; | 866 | LLUUID temp_session_id; |
@@ -867,8 +874,9 @@ public: | |||
867 | if ( success ) | 874 | if ( success ) |
868 | { | 875 | { |
869 | session_id = body["session_id"].asUUID(); | 876 | session_id = body["session_id"].asUUID(); |
870 | gIMView->updateFloaterSessionID(temp_session_id, | 877 | gIMView->updateFloaterSessionID( |
871 | session_id); | 878 | temp_session_id, |
879 | session_id); | ||
872 | } | 880 | } |
873 | else | 881 | else |
874 | { | 882 | { |
@@ -883,11 +891,11 @@ public: | |||
883 | sErrorStringsMap[body["error"].asString()]; | 891 | sErrorStringsMap[body["error"].asString()]; |
884 | args["[RECIPIENT]"] = floater->getTitle(); | 892 | args["[RECIPIENT]"] = floater->getTitle(); |
885 | 893 | ||
886 | gViewerWindow->alertXml("IMSessionStartError", | 894 | gViewerWindow->alertXml( |
887 | args, | 895 | "IMSessionStartError", |
888 | onConfirmForceCloseError, | 896 | args, |
889 | floater); | 897 | onConfirmForceCloseError, |
890 | 898 | floater); | |
891 | } | 899 | } |
892 | } | 900 | } |
893 | } | 901 | } |
@@ -990,18 +998,163 @@ public: | |||
990 | } | 998 | } |
991 | }; | 999 | }; |
992 | 1000 | ||
1001 | class LLViewerChatterBoxSessionAgentListUpdates : public LLHTTPNode | ||
1002 | { | ||
1003 | public: | ||
1004 | virtual void post( | ||
1005 | ResponsePtr responder, | ||
1006 | const LLSD& context, | ||
1007 | const LLSD& input) const | ||
1008 | { | ||
1009 | } | ||
1010 | }; | ||
1011 | |||
1012 | class LLViewerChatterBoxInvitation : public LLHTTPNode | ||
1013 | { | ||
1014 | public: | ||
1015 | virtual void post( | ||
1016 | ResponsePtr responder, | ||
1017 | const LLSD& context, | ||
1018 | const LLSD& input) const | ||
1019 | { | ||
1020 | if ( input["body"].has("instantmessage") ) | ||
1021 | { | ||
1022 | LLSD message_params = | ||
1023 | input["body"]["instantmessage"]["message_params"]; | ||
1024 | |||
1025 | //this is just replicated code from process_improved_im | ||
1026 | //and should really go in it's own function -jwolk | ||
1027 | if (gNoRender) | ||
1028 | { | ||
1029 | return; | ||
1030 | } | ||
1031 | |||
1032 | char buffer[DB_IM_MSG_BUF_SIZE * 2]; /* Flawfinder: ignore */ | ||
1033 | LLChat chat; | ||
1034 | |||
1035 | std::string message = message_params["message"].asString(); | ||
1036 | std::string name = message_params["from_name"].asString(); | ||
1037 | LLUUID from_id = message_params["from_id"].asUUID(); | ||
1038 | LLUUID session_id = message_params["id"].asUUID(); | ||
1039 | std::vector<U8> bin_bucket = message_params["data"]["binary_bucket"].asBinary(); | ||
1040 | U8 offline = (U8)message_params["offline"].asInteger(); | ||
1041 | |||
1042 | time_t timestamp = | ||
1043 | (time_t) message_params["timestamp"].asInteger(); | ||
1044 | |||
1045 | BOOL is_busy = gAgent.getBusy(); | ||
1046 | BOOL is_muted = gMuteListp->isMuted(from_id, name); | ||
1047 | BOOL is_linden = gMuteListp->isLinden( | ||
1048 | name.c_str()); | ||
1049 | char separator_string[3]=": "; /* Flawfinder: ignore */ | ||
1050 | int message_offset=0; | ||
1051 | |||
1052 | //Handle IRC styled /me messages. | ||
1053 | if (!strncmp(message.c_str(), "/me ", 4) || | ||
1054 | !strncmp(message.c_str(), "/me'", 4)) | ||
1055 | { | ||
1056 | strcpy(separator_string,""); /* Flawfinder: ignore */ | ||
1057 | message_offset = 3; | ||
1058 | } | ||
1059 | |||
1060 | chat.mMuted = is_muted && !is_linden; | ||
1061 | chat.mFromID = from_id; | ||
1062 | chat.mFromName = name; | ||
1063 | if (!is_linden && is_busy) | ||
1064 | { | ||
1065 | return; | ||
1066 | } | ||
1067 | |||
1068 | // standard message, not from system | ||
1069 | char saved[MAX_STRING]; /* Flawfinder: ignore */ | ||
1070 | saved[0] = '\0'; | ||
1071 | if(offline == IM_OFFLINE) | ||
1072 | { | ||
1073 | char time_buf[TIME_STR_LENGTH]; /* Flawfinder: ignore */ | ||
1074 | snprintf(saved, /* Flawfinder: ignore */ | ||
1075 | MAX_STRING, | ||
1076 | "(Saved %s) ", | ||
1077 | formatted_time(timestamp, time_buf)); | ||
1078 | } | ||
1079 | snprintf( | ||
1080 | buffer, | ||
1081 | sizeof(buffer), | ||
1082 | "%s%s%s%s", | ||
1083 | name.c_str(), | ||
1084 | separator_string, | ||
1085 | saved, | ||
1086 | (message.c_str() + message_offset)); /*Flawfinder: ignore*/ | ||
1087 | |||
1088 | BOOL is_this_agent = FALSE; | ||
1089 | if(from_id == gAgentID) | ||
1090 | { | ||
1091 | from_id = LLUUID::null; | ||
1092 | is_this_agent = TRUE; | ||
1093 | } | ||
1094 | gIMView->addMessage( | ||
1095 | session_id, | ||
1096 | from_id, | ||
1097 | name.c_str(), | ||
1098 | buffer, | ||
1099 | (char*)&bin_bucket[0], | ||
1100 | IM_SESSION_INVITE, | ||
1101 | message_params["parent_estate_id"].asInteger(), | ||
1102 | message_params["region_id"].asUUID(), | ||
1103 | ll_vector3_from_sd(message_params["position"])); | ||
1104 | |||
1105 | snprintf( | ||
1106 | buffer, | ||
1107 | sizeof(buffer), | ||
1108 | "IM: %s%s%s%s", | ||
1109 | name.c_str(), | ||
1110 | separator_string, | ||
1111 | saved, | ||
1112 | (message.c_str()+message_offset)); /* Flawfinder: ignore */ | ||
1113 | chat.mText = buffer; | ||
1114 | LLFloaterChat::addChat(chat, TRUE, is_this_agent); | ||
1115 | |||
1116 | //if we succesfully accepted the invitation | ||
1117 | //send a message back down | ||
1118 | |||
1119 | //TODO - When availble, have this response just be part | ||
1120 | //of an automatic response system | ||
1121 | std::string url = gAgent.getRegion()->getCapability( | ||
1122 | "ChatSessionRequest"); | ||
1123 | |||
1124 | if ( url != "" ) | ||
1125 | { | ||
1126 | LLSD data; | ||
1127 | data["method"] = "accept invitation"; | ||
1128 | data["session-id"] = input["body"]["session_id"]; | ||
1129 | LLHTTPClient::post( | ||
1130 | url, | ||
1131 | data, | ||
1132 | NULL); | ||
1133 | } | ||
1134 | } //end if invitation has instant message | ||
1135 | } | ||
1136 | }; | ||
1137 | |||
993 | LLHTTPRegistration<LLViewerIMSessionStartReply> | 1138 | LLHTTPRegistration<LLViewerIMSessionStartReply> |
994 | gHTTPRegistrationMessageImsessionstartreply( | 1139 | gHTTPRegistrationMessageImsessionstartreply( |
995 | "/message/IMSessionStartReply"); | 1140 | "/message/ChatterBoxSessionStartReply"); |
996 | 1141 | ||
997 | LLHTTPRegistration<LLViewerIMSessionEventReply> | 1142 | LLHTTPRegistration<LLViewerIMSessionEventReply> |
998 | gHTTPRegistrationMessageImsessioneventreply( | 1143 | gHTTPRegistrationMessageImsessioneventreply( |
999 | "/message/IMSessionEventReply"); | 1144 | "/message/ChatterBoxSessionEventReply"); |
1000 | 1145 | ||
1001 | LLHTTPRegistration<LLViewerForceCloseIMSession> | 1146 | LLHTTPRegistration<LLViewerForceCloseIMSession> |
1002 | gHTTPRegistrationMessageForceCloseImSession( | 1147 | gHTTPRegistrationMessageForceCloseImSession( |
1003 | "/message/ForceCloseIMSession"); | 1148 | "/message/ForceCloseChatterBoxSession"); |
1004 | 1149 | ||
1005 | LLHTTPRegistration<LLViewerIMSessionDropReply> | 1150 | LLHTTPRegistration<LLViewerIMSessionDropReply> |
1006 | gHTTPRegistrationMessageImSessionDropReply( | 1151 | gHTTPRegistrationMessageImSessionDropReply( |
1007 | "/message/IMSessionDropReply"); | 1152 | "/message/ChatterBoxSessionLeaveReply"); |
1153 | |||
1154 | LLHTTPRegistration<LLViewerChatterBoxSessionAgentListUpdates> | ||
1155 | gHTTPRegistrationMessageChatterboxsessionagentlistupdates( | ||
1156 | "/message/ChatterBoxSessionAgentListUpdates"); | ||
1157 | |||
1158 | LLHTTPRegistration<LLViewerChatterBoxInvitation> | ||
1159 | gHTTPRegistrationMessageChatterBoxInvitation( | ||
1160 | "/message/ChatterBoxInvitation"); | ||
diff --git a/linden/indra/newview/llinventorybridge.cpp b/linden/indra/newview/llinventorybridge.cpp index a7b80ae..0d5c30e 100644 --- a/linden/indra/newview/llinventorybridge.cpp +++ b/linden/indra/newview/llinventorybridge.cpp | |||
@@ -822,7 +822,7 @@ LLString LLItemBridge::getLabelSuffix() const | |||
822 | if(item) | 822 | if(item) |
823 | { | 823 | { |
824 | // it's a bit confusing to put nocopy/nomod/etc on calling cards. | 824 | // it's a bit confusing to put nocopy/nomod/etc on calling cards. |
825 | if(LLAssetType::AT_CALLINGCARD != item->getType() | 825 | if( LLAssetType::AT_CALLINGCARD != item->getType() |
826 | && item->getPermissions().getOwner() == gAgent.getID()) | 826 | && item->getPermissions().getOwner() == gAgent.getID()) |
827 | { | 827 | { |
828 | BOOL copy = item->getPermissions().allowCopyBy(gAgent.getID()); | 828 | BOOL copy = item->getPermissions().allowCopyBy(gAgent.getID()); |
@@ -834,14 +834,32 @@ LLString LLItemBridge::getLabelSuffix() const | |||
834 | const char* NO_MOD = " (no modify)"; | 834 | const char* NO_MOD = " (no modify)"; |
835 | const char* NO_XFER = " (no transfer)"; | 835 | const char* NO_XFER = " (no transfer)"; |
836 | const char* scopy; | 836 | const char* scopy; |
837 | if(copy) scopy = EMPTY; | 837 | if(copy) |
838 | else scopy = NO_COPY; | 838 | { |
839 | scopy = EMPTY; | ||
840 | } | ||
841 | else | ||
842 | { | ||
843 | scopy = NO_COPY; | ||
844 | }; | ||
839 | const char* smod; | 845 | const char* smod; |
840 | if(mod) smod = EMPTY; | 846 | if(mod) |
841 | else smod = NO_MOD; | 847 | { |
848 | smod = EMPTY; | ||
849 | } | ||
850 | else | ||
851 | { | ||
852 | smod = NO_MOD; | ||
853 | }; | ||
842 | const char* sxfer; | 854 | const char* sxfer; |
843 | if(xfer) sxfer = EMPTY; | 855 | if(xfer) |
844 | else sxfer = NO_XFER; | 856 | { |
857 | sxfer = EMPTY; | ||
858 | } | ||
859 | else | ||
860 | { | ||
861 | sxfer = NO_XFER; | ||
862 | }; | ||
845 | char buffer[MAX_STRING]; /*Flawfinder: ignore*/ | 863 | char buffer[MAX_STRING]; /*Flawfinder: ignore*/ |
846 | snprintf( /* Flawfinder: ignore */ | 864 | snprintf( /* Flawfinder: ignore */ |
847 | buffer, | 865 | buffer, |
@@ -2510,14 +2528,14 @@ void LLLandmarkBridge::performAction(LLFolderView* folder, LLInventoryModel* mod | |||
2510 | else LLItemBridge::performAction(folder, model, action); | 2528 | else LLItemBridge::performAction(folder, model, action); |
2511 | } | 2529 | } |
2512 | 2530 | ||
2513 | void open_landmark(const LLUUID& item_id, | 2531 | void open_landmark(LLViewerInventoryItem* inv_item, |
2514 | const LLString& title, | 2532 | const LLString& title, |
2515 | BOOL show_keep_discard, | 2533 | BOOL show_keep_discard, |
2516 | const LLUUID& source_id, | 2534 | const LLUUID& source_id, |
2517 | BOOL take_focus) | 2535 | BOOL take_focus) |
2518 | { | 2536 | { |
2519 | // See if we can bring an exiting preview to the front | 2537 | // See if we can bring an exiting preview to the front |
2520 | if( !LLPreview::show( item_id, take_focus ) ) | 2538 | if( !LLPreview::show( inv_item->getUUID(), take_focus ) ) |
2521 | { | 2539 | { |
2522 | // There isn't one, so make a new preview | 2540 | // There isn't one, so make a new preview |
2523 | S32 left, top; | 2541 | S32 left, top; |
@@ -2525,11 +2543,12 @@ void open_landmark(const LLUUID& item_id, | |||
2525 | LLRect rect = gSavedSettings.getRect("PreviewLandmarkRect"); | 2543 | LLRect rect = gSavedSettings.getRect("PreviewLandmarkRect"); |
2526 | rect.translate( left - rect.mLeft, top - rect.mTop ); | 2544 | rect.translate( left - rect.mLeft, top - rect.mTop ); |
2527 | 2545 | ||
2528 | LLPreviewLandmark* preview = new LLPreviewLandmark("preview landmark", | 2546 | LLPreviewLandmark* preview = new LLPreviewLandmark(title, |
2529 | rect, | 2547 | rect, |
2530 | title, | 2548 | title, |
2531 | item_id, | 2549 | inv_item->getUUID(), |
2532 | show_keep_discard); | 2550 | show_keep_discard, |
2551 | inv_item); | ||
2533 | preview->setSourceID(source_id); | 2552 | preview->setSourceID(source_id); |
2534 | if(take_focus) preview->setFocus(TRUE); | 2553 | if(take_focus) preview->setFocus(TRUE); |
2535 | // keep onscreen | 2554 | // keep onscreen |
@@ -2542,7 +2561,7 @@ void LLLandmarkBridge::openItem() | |||
2542 | LLViewerInventoryItem* item = getItem(); | 2561 | LLViewerInventoryItem* item = getItem(); |
2543 | if( item ) | 2562 | if( item ) |
2544 | { | 2563 | { |
2545 | open_landmark(mUUID, LLString(" ") + getPrefix() + item->getName(), FALSE); | 2564 | open_landmark(item, LLString(" ") + getPrefix() + item->getName(), FALSE); |
2546 | } | 2565 | } |
2547 | } | 2566 | } |
2548 | 2567 | ||
@@ -2769,14 +2788,15 @@ LLViewerImage* LLNotecardBridge::getIcon() const | |||
2769 | return get_item_icon(LLAssetType::AT_NOTECARD, LLInventoryType::IT_NOTECARD, 0, FALSE); | 2788 | return get_item_icon(LLAssetType::AT_NOTECARD, LLInventoryType::IT_NOTECARD, 0, FALSE); |
2770 | } | 2789 | } |
2771 | 2790 | ||
2772 | void open_notecard(const LLUUID& item_id, | 2791 | void open_notecard(LLViewerInventoryItem* inv_item, |
2773 | const LLString& title, | 2792 | const LLString& title, |
2793 | const LLUUID& object_id, | ||
2774 | BOOL show_keep_discard, | 2794 | BOOL show_keep_discard, |
2775 | const LLUUID& source_id, | 2795 | const LLUUID& source_id, |
2776 | BOOL take_focus) | 2796 | BOOL take_focus) |
2777 | { | 2797 | { |
2778 | // See if we can bring an existing preview to the front | 2798 | // See if we can bring an existing preview to the front |
2779 | if(!LLPreview::show(item_id, take_focus)) | 2799 | if(!LLPreview::show(inv_item->getUUID(), take_focus)) |
2780 | { | 2800 | { |
2781 | // There isn't one, so make a new preview | 2801 | // There isn't one, so make a new preview |
2782 | S32 left, top; | 2802 | S32 left, top; |
@@ -2784,13 +2804,9 @@ void open_notecard(const LLUUID& item_id, | |||
2784 | LLRect rect = gSavedSettings.getRect("NotecardEditorRect"); | 2804 | LLRect rect = gSavedSettings.getRect("NotecardEditorRect"); |
2785 | rect.translate(left - rect.mLeft, top - rect.mTop); | 2805 | rect.translate(left - rect.mLeft, top - rect.mTop); |
2786 | LLPreviewNotecard* preview; | 2806 | LLPreviewNotecard* preview; |
2787 | preview = new LLPreviewNotecard("preview notecard", | 2807 | preview = new LLPreviewNotecard("preview notecard", rect, title, |
2788 | rect, | 2808 | inv_item->getUUID(), object_id, inv_item->getAssetUUID(), |
2789 | title, | 2809 | show_keep_discard, inv_item); |
2790 | item_id, | ||
2791 | LLUUID::null, | ||
2792 | LLUUID::null, | ||
2793 | show_keep_discard); | ||
2794 | preview->setSourceID(source_id); | 2810 | preview->setSourceID(source_id); |
2795 | if(take_focus) preview->setFocus(TRUE); | 2811 | if(take_focus) preview->setFocus(TRUE); |
2796 | // Force to be entirely onscreen. | 2812 | // Force to be entirely onscreen. |
@@ -2809,23 +2825,22 @@ void open_notecard(const LLUUID& item_id, | |||
2809 | // { | 2825 | // { |
2810 | // // create new multipreview if it doesn't exist | 2826 | // // create new multipreview if it doesn't exist |
2811 | // LLMultiPreview* preview_hostp = new LLMultiPreview(existing_preview->getRect()); | 2827 | // LLMultiPreview* preview_hostp = new LLMultiPreview(existing_preview->getRect()); |
2812 | |||
2813 | // preview_hostp->addFloater(existing_preview); | 2828 | // preview_hostp->addFloater(existing_preview); |
2814 | // } | 2829 | // } |
2815 | // // add this preview to existing host | 2830 | // // add this preview to existing host |
2816 | // preview_hostp->addFloater(preview); | 2831 | // preview_hostp->addFloater(preview); |
2817 | // } | 2832 | // } |
2818 | //} | 2833 | //} |
2819 | |||
2820 | } | 2834 | } |
2821 | } | 2835 | } |
2822 | 2836 | ||
2837 | |||
2823 | void LLNotecardBridge::openItem() | 2838 | void LLNotecardBridge::openItem() |
2824 | { | 2839 | { |
2825 | LLViewerInventoryItem* item = getItem(); | 2840 | LLViewerInventoryItem* item = getItem(); |
2826 | if (item) | 2841 | if (item) |
2827 | { | 2842 | { |
2828 | open_notecard(mUUID, getPrefix() + item->getName(), FALSE); | 2843 | open_notecard(item, getPrefix() + item->getName(), LLUUID::null, FALSE); |
2829 | } | 2844 | } |
2830 | } | 2845 | } |
2831 | 2846 | ||
@@ -3460,10 +3475,13 @@ public: | |||
3460 | * Do nothing. We only care about the destructor | 3475 | * Do nothing. We only care about the destructor |
3461 | */ | 3476 | */ |
3462 | } | 3477 | } |
3478 | |||
3479 | protected: | ||
3463 | ~LLWearInventoryCategoryCallback() | 3480 | ~LLWearInventoryCategoryCallback() |
3464 | { | 3481 | { |
3465 | wear_inventory_category_on_avatar(gInventory.getCategory(mCatID), mAppend); | 3482 | wear_inventory_category_on_avatar(gInventory.getCategory(mCatID), mAppend); |
3466 | } | 3483 | } |
3484 | |||
3467 | private: | 3485 | private: |
3468 | LLUUID mCatID; | 3486 | LLUUID mCatID; |
3469 | bool mAppend; | 3487 | bool mAppend; |
diff --git a/linden/indra/newview/llinventoryview.h b/linden/indra/newview/llinventoryview.h index 7b29864..536370b 100644 --- a/linden/indra/newview/llinventoryview.h +++ b/linden/indra/newview/llinventoryview.h | |||
@@ -329,8 +329,8 @@ void wear_outfit_by_name(const char* name); | |||
329 | void wear_inventory_category(LLInventoryCategory* category, bool copy, bool append); | 329 | void wear_inventory_category(LLInventoryCategory* category, bool copy, bool append); |
330 | 330 | ||
331 | // These methods can open items without the inventory being visible | 331 | // These methods can open items without the inventory being visible |
332 | void open_notecard(const LLUUID& item_id, const LLString& title, BOOL show_keep_discard, const LLUUID& source_id = LLUUID::null, BOOL take_focus = TRUE); | 332 | void open_notecard(LLViewerInventoryItem* inv_item, const LLString& title, const LLUUID& object_id, BOOL show_keep_discard, const LLUUID& source_id = LLUUID::null, BOOL take_focus = TRUE); |
333 | void open_landmark(const LLUUID& item_id, const LLString& title, BOOL show_keep_discard, const LLUUID& source_id = LLUUID::null, BOOL take_focus = TRUE); | 333 | void open_landmark(LLViewerInventoryItem* inv_item, const LLString& title, BOOL show_keep_discard, const LLUUID& source_id = LLUUID::null, BOOL take_focus = TRUE); |
334 | void open_texture(const LLUUID& item_id, const LLString& title, BOOL show_keep_discard, const LLUUID& source_id = LLUUID::null, BOOL take_focus = TRUE); | 334 | void open_texture(const LLUUID& item_id, const LLString& title, BOOL show_keep_discard, const LLUUID& source_id = LLUUID::null, BOOL take_focus = TRUE); |
335 | 335 | ||
336 | LLUUID get_item_icon_uuid(LLAssetType::EType asset_type, | 336 | LLUUID get_item_icon_uuid(LLAssetType::EType asset_type, |
diff --git a/linden/indra/newview/llmutelist.cpp b/linden/indra/newview/llmutelist.cpp index e62bf19..c2ca740 100644 --- a/linden/indra/newview/llmutelist.cpp +++ b/linden/indra/newview/llmutelist.cpp | |||
@@ -185,12 +185,7 @@ BOOL LLMuteList::isLinden(const LLString& name) const | |||
185 | if (token_iter == tokens.end()) return FALSE; | 185 | if (token_iter == tokens.end()) return FALSE; |
186 | 186 | ||
187 | LLString last_name = *token_iter; | 187 | LLString last_name = *token_iter; |
188 | 188 | return last_name == "Linden"; | |
189 | if (last_name == "Linden") | ||
190 | { | ||
191 | return TRUE; | ||
192 | } | ||
193 | return FALSE; | ||
194 | } | 189 | } |
195 | 190 | ||
196 | 191 | ||
diff --git a/linden/indra/newview/llnotify.cpp b/linden/indra/newview/llnotify.cpp index a84341d..e2626b4 100644 --- a/linden/indra/newview/llnotify.cpp +++ b/linden/indra/newview/llnotify.cpp | |||
@@ -89,6 +89,13 @@ void LLNotifyBox::showXml( const LLString& xml_desc, const LLString::format_map_ | |||
89 | gNotifyBoxView->addChild(notify); | 89 | gNotifyBoxView->addChild(notify); |
90 | } | 90 | } |
91 | 91 | ||
92 | LLPointer<LLNotifyBoxTemplate> LLNotifyBox::sDefaultTemplate; | ||
93 | |||
94 | void LLNotifyBox::cleanup() | ||
95 | { | ||
96 | sDefaultTemplate = NULL; | ||
97 | } | ||
98 | |||
92 | //--------------------------------------------------------------------------- | 99 | //--------------------------------------------------------------------------- |
93 | 100 | ||
94 | LLNotifyBox::LLNotifyBox(const LLString& xml_desc, const LLString::format_map_t& args, | 101 | LLNotifyBox::LLNotifyBox(const LLString& xml_desc, const LLString::format_map_t& args, |
@@ -118,8 +125,12 @@ LLNotifyBox::LLNotifyBox(const LLString& xml_desc, const LLString::format_map_t& | |||
118 | 125 | ||
119 | // get template | 126 | // get template |
120 | 127 | ||
121 | static LLNotifyBoxTemplate default_template; | 128 | if (!sDefaultTemplate) |
122 | LLNotifyBoxTemplate* xml_template; | 129 | { |
130 | sDefaultTemplate = new LLNotifyBoxTemplate; | ||
131 | } | ||
132 | |||
133 | LLPointer<LLNotifyBoxTemplate> xml_template; | ||
123 | template_map_t::iterator iter = sNotifyTemplates.find(xml_desc); | 134 | template_map_t::iterator iter = sNotifyTemplates.find(xml_desc); |
124 | if (iter != sNotifyTemplates.end()) | 135 | if (iter != sNotifyTemplates.end()) |
125 | { | 136 | { |
@@ -128,8 +139,8 @@ LLNotifyBox::LLNotifyBox(const LLString& xml_desc, const LLString::format_map_t& | |||
128 | else | 139 | else |
129 | { | 140 | { |
130 | LLString tmsg = "[Notification template not found:\n " + xml_desc + " ]"; | 141 | LLString tmsg = "[Notification template not found:\n " + xml_desc + " ]"; |
131 | default_template.setMessage(tmsg); | 142 | sDefaultTemplate->setMessage(tmsg); |
132 | xml_template = &default_template; | 143 | xml_template = sDefaultTemplate; |
133 | } | 144 | } |
134 | 145 | ||
135 | // setup paramaters | 146 | // setup paramaters |
@@ -630,31 +641,24 @@ bool LLNotifyBox::parseNotify(const LLString& xml_filename) | |||
630 | continue; | 641 | continue; |
631 | } | 642 | } |
632 | 643 | ||
633 | LLNotifyBoxTemplate* xml_template = new LLNotifyBoxTemplate; | 644 | LLPointer<LLNotifyBoxTemplate> xml_template = new LLNotifyBoxTemplate; |
634 | 645 | ||
635 | // label= | 646 | // label= |
636 | LLString notify_name; | 647 | LLString notify_name; |
637 | if (notify->getAttributeString("name", notify_name)) | 648 | if (notify->getAttributeString("name", notify_name)) |
638 | { | 649 | { |
639 | if (xml_template) | 650 | xml_template->mLabel = notify_name; |
640 | { | ||
641 | xml_template->mLabel = notify_name; | ||
642 | } | ||
643 | } | 651 | } |
644 | else | 652 | else |
645 | { | 653 | { |
646 | llwarns << "Unable to parse notify with no name" << llendl; | 654 | llwarns << "Unable to parse notify with no name" << llendl; |
647 | delete xml_template; | ||
648 | continue; | 655 | continue; |
649 | } | 656 | } |
650 | // modal= | 657 | // modal= |
651 | BOOL tip; | 658 | BOOL tip; |
652 | if (notify->getAttributeBOOL("tip", tip)) | 659 | if (notify->getAttributeBOOL("tip", tip)) |
653 | { | 660 | { |
654 | if (xml_template) | 661 | xml_template->mIsTip = tip; |
655 | { | ||
656 | xml_template->mIsTip = tip; | ||
657 | } | ||
658 | } | 662 | } |
659 | 663 | ||
660 | S32 btn_idx = 0; | 664 | S32 btn_idx = 0; |
@@ -664,10 +668,7 @@ bool LLNotifyBox::parseNotify(const LLString& xml_filename) | |||
664 | // <message> | 668 | // <message> |
665 | if (child->hasName("message")) | 669 | if (child->hasName("message")) |
666 | { | 670 | { |
667 | if (xml_template) | 671 | xml_template->mMessage = child->getTextContents(); |
668 | { | ||
669 | xml_template->mMessage = child->getTextContents(); | ||
670 | } | ||
671 | } | 672 | } |
672 | 673 | ||
673 | // <option> | 674 | // <option> |
@@ -681,10 +682,7 @@ bool LLNotifyBox::parseNotify(const LLString& xml_filename) | |||
681 | { | 682 | { |
682 | ignore_text = label; | 683 | ignore_text = label; |
683 | } | 684 | } |
684 | if (xml_template) | 685 | xml_template->addOption(label, is_default); |
685 | { | ||
686 | xml_template->addOption(label, is_default); | ||
687 | } | ||
688 | btn_idx++; | 686 | btn_idx++; |
689 | } | 687 | } |
690 | } | 688 | } |
@@ -694,10 +692,7 @@ bool LLNotifyBox::parseNotify(const LLString& xml_filename) | |||
694 | { | 692 | { |
695 | xml_template->addOption("OK", FALSE); | 693 | xml_template->addOption("OK", FALSE); |
696 | } | 694 | } |
697 | if (xml_template) | 695 | sNotifyTemplates[xml_template->mLabel] = xml_template; |
698 | { | ||
699 | sNotifyTemplates[xml_template->mLabel] = xml_template; | ||
700 | } | ||
701 | } | 696 | } |
702 | return true; | 697 | return true; |
703 | } | 698 | } |
diff --git a/linden/indra/newview/llnotify.h b/linden/indra/newview/llnotify.h index 013b2d9..8136cfc 100644 --- a/linden/indra/newview/llnotify.h +++ b/linden/indra/newview/llnotify.h | |||
@@ -61,6 +61,11 @@ public: | |||
61 | BOOL isTip() const { return mIsTip; } | 61 | BOOL isTip() const { return mIsTip; } |
62 | /*virtual*/ void setVisible(BOOL visible); | 62 | /*virtual*/ void setVisible(BOOL visible); |
63 | 63 | ||
64 | notify_callback_t getNotifyCallback() { return mCallback; } | ||
65 | void* getUserData() { return mData; } | ||
66 | |||
67 | static void cleanup(); | ||
68 | |||
64 | protected: | 69 | protected: |
65 | LLNotifyBox(const LLString& xml_desc, const LLString::format_map_t& args, | 70 | LLNotifyBox(const LLString& xml_desc, const LLString::format_map_t& args, |
66 | notify_callback_t callback, void* user_data, | 71 | notify_callback_t callback, void* user_data, |
@@ -93,6 +98,8 @@ protected: | |||
93 | private: | 98 | private: |
94 | void drawBackground() const; | 99 | void drawBackground() const; |
95 | 100 | ||
101 | static LLPointer<LLNotifyBoxTemplate> sDefaultTemplate; | ||
102 | |||
96 | protected: | 103 | protected: |
97 | BOOL mIsTip; | 104 | BOOL mIsTip; |
98 | BOOL mAnimating; // Are we sliding onscreen? | 105 | BOOL mAnimating; // Are we sliding onscreen? |
diff --git a/linden/indra/newview/lloverlaybar.cpp b/linden/indra/newview/lloverlaybar.cpp index f34dc87..401cb02 100644 --- a/linden/indra/newview/lloverlaybar.cpp +++ b/linden/indra/newview/lloverlaybar.cpp | |||
@@ -328,27 +328,6 @@ void LLOverlayBar::refresh() | |||
328 | { | 328 | { |
329 | mMusicRemote->setVisible(TRUE); | 329 | mMusicRemote->setVisible(TRUE); |
330 | mMusicRemote->setEnabled(TRUE); | 330 | mMusicRemote->setEnabled(TRUE); |
331 | |||
332 | S32 musicPlaying = gAudiop->isInternetStreamPlaying(); | ||
333 | |||
334 | if ( musicPlaying == 0 ) // stopped | ||
335 | { | ||
336 | mMusicRemote->setTransportState ( LLMediaRemoteCtrl::Stop, FALSE ); | ||
337 | } | ||
338 | else | ||
339 | if ( musicPlaying == 1 ) // playing | ||
340 | { | ||
341 | mMusicRemote->setTransportState ( LLMediaRemoteCtrl::Play, FALSE ); | ||
342 | if (gAudiop) | ||
343 | { | ||
344 | gAudiop->setInternetStreamGain ( gSavedSettings.getF32 ( "AudioLevelMusic" ) ); | ||
345 | } | ||
346 | } | ||
347 | else | ||
348 | if ( musicPlaying == 2 ) // paused | ||
349 | { | ||
350 | mMusicRemote->setTransportState ( LLMediaRemoteCtrl::Stop, FALSE ); | ||
351 | } | ||
352 | } | 331 | } |
353 | } | 332 | } |
354 | 333 | ||
diff --git a/linden/indra/newview/llpanelavatar.cpp b/linden/indra/newview/llpanelavatar.cpp index 9c73dad..0180bb3 100644 --- a/linden/indra/newview/llpanelavatar.cpp +++ b/linden/indra/newview/llpanelavatar.cpp | |||
@@ -865,14 +865,44 @@ void LLPanelAvatarClassified::refresh() | |||
865 | bool allow_delete = (tab_count > 0); | 865 | bool allow_delete = (tab_count > 0); |
866 | bool show_help = (tab_count == 0); | 866 | bool show_help = (tab_count == 0); |
867 | 867 | ||
868 | childSetEnabled("New...",self && allow_new); | 868 | // *HACK: Don't allow making new classifieds from inside the directory. |
869 | childSetEnabled("Delete...",self && allow_delete); | 869 | // The logic for save/don't save when closing is too hairy, and the |
870 | // directory is conceptually read-only. JC | ||
871 | bool in_directory = false; | ||
872 | LLView* view = this; | ||
873 | while (view) | ||
874 | { | ||
875 | if (view->getName() == "directory") | ||
876 | { | ||
877 | in_directory = true; | ||
878 | break; | ||
879 | } | ||
880 | view = view->getParent(); | ||
881 | } | ||
882 | childSetEnabled("New...", self && !in_directory && allow_new); | ||
883 | childSetVisible("New...", !in_directory); | ||
884 | childSetEnabled("Delete...", self && !in_directory && allow_delete); | ||
885 | childSetVisible("Delete...", !in_directory); | ||
870 | childSetVisible("classified tab",!show_help); | 886 | childSetVisible("classified tab",!show_help); |
871 | 887 | ||
872 | sendAvatarProfileRequestIfNeeded("avatarclassifiedsrequest"); | 888 | sendAvatarProfileRequestIfNeeded("avatarclassifiedsrequest"); |
873 | } | 889 | } |
874 | 890 | ||
875 | 891 | ||
892 | BOOL LLPanelAvatarClassified::canClose() | ||
893 | { | ||
894 | LLTabContainerCommon* tabs = LLViewerUICtrlFactory::getTabContainerByName(this, "classified tab"); | ||
895 | for (S32 i = 0; i < tabs->getTabCount(); i++) | ||
896 | { | ||
897 | LLPanelClassified* panel = (LLPanelClassified*)tabs->getPanelByIndex(i); | ||
898 | if (!panel->canClose()) | ||
899 | { | ||
900 | return FALSE; | ||
901 | } | ||
902 | } | ||
903 | return TRUE; | ||
904 | } | ||
905 | |||
876 | BOOL LLPanelAvatarClassified::titleIsValid() | 906 | BOOL LLPanelAvatarClassified::titleIsValid() |
877 | { | 907 | { |
878 | LLTabContainerCommon* tabs = LLViewerUICtrlFactory::getTabContainerByName(this, "classified tab"); | 908 | LLTabContainerCommon* tabs = LLViewerUICtrlFactory::getTabContainerByName(this, "classified tab"); |
@@ -1300,6 +1330,11 @@ LLPanelAvatar::~LLPanelAvatar() | |||
1300 | } | 1330 | } |
1301 | 1331 | ||
1302 | 1332 | ||
1333 | BOOL LLPanelAvatar::canClose() | ||
1334 | { | ||
1335 | return mPanelClassified && mPanelClassified->canClose(); | ||
1336 | } | ||
1337 | |||
1303 | void LLPanelAvatar::setAvatar(LLViewerObject *avatarp) | 1338 | void LLPanelAvatar::setAvatar(LLViewerObject *avatarp) |
1304 | { | 1339 | { |
1305 | // find the avatar and grab the name | 1340 | // find the avatar and grab the name |
diff --git a/linden/indra/newview/llpanelavatar.h b/linden/indra/newview/llpanelavatar.h index 8df5df1..b3b4e72 100644 --- a/linden/indra/newview/llpanelavatar.h +++ b/linden/indra/newview/llpanelavatar.h | |||
@@ -214,6 +214,10 @@ public: | |||
214 | 214 | ||
215 | /*virtual*/ void refresh(); | 215 | /*virtual*/ void refresh(); |
216 | 216 | ||
217 | // If can close, return TRUE. If cannot close, pop save/discard dialog | ||
218 | // and return FALSE. | ||
219 | BOOL canClose(); | ||
220 | |||
217 | void apply(); | 221 | void apply(); |
218 | 222 | ||
219 | BOOL titleIsValid(); | 223 | BOOL titleIsValid(); |
@@ -267,6 +271,10 @@ public: | |||
267 | 271 | ||
268 | /*virtual*/ BOOL postBuild(void); | 272 | /*virtual*/ BOOL postBuild(void); |
269 | 273 | ||
274 | // If can close, return TRUE. If cannot close, pop save/discard dialog | ||
275 | // and return FALSE. | ||
276 | BOOL canClose(); | ||
277 | |||
270 | void setAvatar(LLViewerObject *avatarp); | 278 | void setAvatar(LLViewerObject *avatarp); |
271 | 279 | ||
272 | // Fill in the avatar ID and handle some field fill-in, as well as | 280 | // Fill in the avatar ID and handle some field fill-in, as well as |
diff --git a/linden/indra/newview/llpanelclassified.cpp b/linden/indra/newview/llpanelclassified.cpp index 7a2542d..408f91a 100644 --- a/linden/indra/newview/llpanelclassified.cpp +++ b/linden/indra/newview/llpanelclassified.cpp | |||
@@ -60,6 +60,7 @@ | |||
60 | #include "llfloaterworldmap.h" | 60 | #include "llfloaterworldmap.h" |
61 | #include "llviewergenericmessage.h" // send_generic_message | 61 | #include "llviewergenericmessage.h" // send_generic_message |
62 | #include "llviewerwindow.h" // for window width, height | 62 | #include "llviewerwindow.h" // for window width, height |
63 | #include "viewer.h" // app_abort_quit() | ||
63 | 64 | ||
64 | const S32 MINIMUM_PRICE_FOR_LISTING = 50; // L$ | 65 | const S32 MINIMUM_PRICE_FOR_LISTING = 50; // L$ |
65 | 66 | ||
@@ -97,11 +98,12 @@ std::list<LLPanelClassified*> LLPanelClassified::sAllPanels; | |||
97 | LLPanelClassified::LLPanelClassified(BOOL in_finder) | 98 | LLPanelClassified::LLPanelClassified(BOOL in_finder) |
98 | : LLPanel("Classified Panel"), | 99 | : LLPanel("Classified Panel"), |
99 | mInFinder(in_finder), | 100 | mInFinder(in_finder), |
101 | mDirty(false), | ||
102 | mForceClose(false), | ||
100 | mClassifiedID(), | 103 | mClassifiedID(), |
101 | mCreatorID(), | 104 | mCreatorID(), |
102 | mPriceForListing(0), | 105 | mPriceForListing(0), |
103 | mDataRequested(FALSE), | 106 | mDataRequested(FALSE), |
104 | mEnableCommit(FALSE), | ||
105 | mPaidFor(FALSE), | 107 | mPaidFor(FALSE), |
106 | mPosGlobal(), | 108 | mPosGlobal(), |
107 | mSnapshotCtrl(NULL), | 109 | mSnapshotCtrl(NULL), |
@@ -152,7 +154,7 @@ void LLPanelClassified::reset() | |||
152 | // Don't request data, this isn't valid | 154 | // Don't request data, this isn't valid |
153 | mDataRequested = TRUE; | 155 | mDataRequested = TRUE; |
154 | 156 | ||
155 | mEnableCommit = FALSE; | 157 | mDirty = false; |
156 | mPaidFor = FALSE; | 158 | mPaidFor = FALSE; |
157 | 159 | ||
158 | mPosGlobal.clearVec(); | 160 | mPosGlobal.clearVec(); |
@@ -235,7 +237,6 @@ BOOL LLPanelClassified::postBuild() | |||
235 | mUpdateBtn = LLUICtrlFactory::getButtonByName(this, "classified_update_btn"); | 237 | mUpdateBtn = LLUICtrlFactory::getButtonByName(this, "classified_update_btn"); |
236 | mUpdateBtn->setClickedCallback(onClickUpdate); | 238 | mUpdateBtn->setClickedCallback(onClickUpdate); |
237 | mUpdateBtn->setCallbackUserData(this); | 239 | mUpdateBtn->setCallbackUserData(this); |
238 | mEnableCommit = TRUE; | ||
239 | 240 | ||
240 | if (!mInFinder) | 241 | if (!mInFinder) |
241 | { | 242 | { |
@@ -268,12 +269,58 @@ void LLPanelClassified::apply() | |||
268 | { | 269 | { |
269 | // Apply is used for automatically saving results, so only | 270 | // Apply is used for automatically saving results, so only |
270 | // do that if there is a difference, and this is a save not create. | 271 | // do that if there is a difference, and this is a save not create. |
271 | if (mEnableCommit && mPaidFor) | 272 | if (mDirty && mPaidFor) |
272 | { | 273 | { |
273 | sendClassifiedInfoUpdate(); | 274 | sendClassifiedInfoUpdate(); |
274 | } | 275 | } |
275 | } | 276 | } |
276 | 277 | ||
278 | |||
279 | // static | ||
280 | void LLPanelClassified::saveCallback(S32 option, void* data) | ||
281 | { | ||
282 | LLPanelClassified* self = (LLPanelClassified*)data; | ||
283 | switch(option) | ||
284 | { | ||
285 | case 0: // Save | ||
286 | self->sendClassifiedInfoUpdate(); | ||
287 | // fall through to close | ||
288 | |||
289 | case 1: // Don't Save | ||
290 | { | ||
291 | self->mForceClose = true; | ||
292 | // Close containing floater | ||
293 | LLView* view = self; | ||
294 | while (view) | ||
295 | { | ||
296 | if (view->getWidgetType() == WIDGET_TYPE_FLOATER) | ||
297 | { | ||
298 | LLFloater* f = (LLFloater*)view; | ||
299 | f->close(); | ||
300 | break; | ||
301 | } | ||
302 | view = view->getParent(); | ||
303 | } | ||
304 | } | ||
305 | break; | ||
306 | |||
307 | case 2: // Cancel | ||
308 | default: | ||
309 | app_abort_quit(); | ||
310 | break; | ||
311 | } | ||
312 | } | ||
313 | |||
314 | BOOL LLPanelClassified::canClose() | ||
315 | { | ||
316 | if (mForceClose || !mDirty) return TRUE; | ||
317 | |||
318 | LLString::format_map_t args; | ||
319 | args["[NAME]"] = mNameEditor->getText(); | ||
320 | LLAlertDialog::showXml("ClassifiedSave", args, saveCallback, this); | ||
321 | return FALSE; | ||
322 | } | ||
323 | |||
277 | // Fill in some reasonable defaults for a new classified. | 324 | // Fill in some reasonable defaults for a new classified. |
278 | void LLPanelClassified::initNewClassified() | 325 | void LLPanelClassified::initNewClassified() |
279 | { | 326 | { |
@@ -416,6 +463,8 @@ void LLPanelClassified::sendClassifiedInfoUpdate() | |||
416 | msg->addU8Fast(_PREHASH_ClassifiedFlags, flags); | 463 | msg->addU8Fast(_PREHASH_ClassifiedFlags, flags); |
417 | msg->addS32("PriceForListing", mPriceForListing); | 464 | msg->addS32("PriceForListing", mPriceForListing); |
418 | gAgent.sendReliableMessage(); | 465 | gAgent.sendReliableMessage(); |
466 | |||
467 | mDirty = false; | ||
419 | } | 468 | } |
420 | 469 | ||
421 | 470 | ||
@@ -627,7 +676,7 @@ void LLPanelClassified::refresh() | |||
627 | mSetBtn->setVisible(is_self); | 676 | mSetBtn->setVisible(is_self); |
628 | mSetBtn->setEnabled(is_self); | 677 | mSetBtn->setEnabled(is_self); |
629 | 678 | ||
630 | mUpdateBtn->setEnabled(is_self && mEnableCommit); | 679 | mUpdateBtn->setEnabled(is_self && mDirty); |
631 | mUpdateBtn->setVisible(is_self); | 680 | mUpdateBtn->setVisible(is_self); |
632 | } | 681 | } |
633 | } | 682 | } |
@@ -710,7 +759,6 @@ void LLPanelClassified::callbackConfirmPublish(S32 option, void* data) | |||
710 | LLTabContainerVertical* tab = (LLTabContainerVertical*)self->getParent(); | 759 | LLTabContainerVertical* tab = (LLTabContainerVertical*)self->getParent(); |
711 | tab->setCurrentTabName(self->mNameEditor->getText()); | 760 | tab->setCurrentTabName(self->mNameEditor->getText()); |
712 | } | 761 | } |
713 | self->mEnableCommit = FALSE; | ||
714 | } | 762 | } |
715 | 763 | ||
716 | // static | 764 | // static |
@@ -789,14 +837,14 @@ void LLPanelClassified::onCommitAny(LLUICtrl* ctrl, void* data) | |||
789 | LLPanelClassified* self = (LLPanelClassified*)data; | 837 | LLPanelClassified* self = (LLPanelClassified*)data; |
790 | if (self) | 838 | if (self) |
791 | { | 839 | { |
792 | self->mEnableCommit = TRUE; | 840 | self->mDirty = true; |
793 | } | 841 | } |
794 | } | 842 | } |
795 | 843 | ||
796 | // static | 844 | // static |
797 | void LLPanelClassified::onFocusReceived(LLUICtrl* ctrl, void* data) | 845 | void LLPanelClassified::onFocusReceived(LLUICtrl* ctrl, void* data) |
798 | { | 846 | { |
799 | // first, allow the data to be saved | 847 | // allow the data to be saved |
800 | onCommitAny(ctrl, data); | 848 | onCommitAny(ctrl, data); |
801 | } | 849 | } |
802 | 850 | ||
diff --git a/linden/indra/newview/llpanelclassified.h b/linden/indra/newview/llpanelclassified.h index 498f8a5..0ebac2c 100644 --- a/linden/indra/newview/llpanelclassified.h +++ b/linden/indra/newview/llpanelclassified.h | |||
@@ -63,10 +63,14 @@ public: | |||
63 | 63 | ||
64 | /*virtual*/ void draw(); | 64 | /*virtual*/ void draw(); |
65 | 65 | ||
66 | void refresh(); | 66 | /*virtual*/ void refresh(); |
67 | 67 | ||
68 | void apply(); | 68 | void apply(); |
69 | 69 | ||
70 | // If can close, return TRUE. If cannot close, pop save/discard dialog | ||
71 | // and return FALSE. | ||
72 | BOOL canClose(); | ||
73 | |||
70 | // Setup a new classified, including creating an id, giving a sane | 74 | // Setup a new classified, including creating an id, giving a sane |
71 | // initial position, etc. | 75 | // initial position, etc. |
72 | void initNewClassified(); | 76 | void initNewClassified(); |
@@ -94,6 +98,8 @@ public: | |||
94 | static void callbackConfirmPublish(S32 option, void* data); | 98 | static void callbackConfirmPublish(S32 option, void* data); |
95 | 99 | ||
96 | protected: | 100 | protected: |
101 | static void saveCallback(S32 option, void* data); | ||
102 | |||
97 | static void onClickUpdate(void* data); | 103 | static void onClickUpdate(void* data); |
98 | static void onClickTeleport(void* data); | 104 | static void onClickTeleport(void* data); |
99 | static void onClickMap(void* data); | 105 | static void onClickMap(void* data); |
@@ -107,6 +113,8 @@ protected: | |||
107 | 113 | ||
108 | protected: | 114 | protected: |
109 | BOOL mInFinder; | 115 | BOOL mInFinder; |
116 | bool mDirty; | ||
117 | bool mForceClose; | ||
110 | LLUUID mClassifiedID; | 118 | LLUUID mClassifiedID; |
111 | LLUUID mRequestedID; | 119 | LLUUID mRequestedID; |
112 | LLUUID mCreatorID; | 120 | LLUUID mCreatorID; |
@@ -115,7 +123,6 @@ protected: | |||
115 | 123 | ||
116 | // Data will be requested on first draw | 124 | // Data will be requested on first draw |
117 | BOOL mDataRequested; | 125 | BOOL mDataRequested; |
118 | BOOL mEnableCommit; | ||
119 | 126 | ||
120 | // For avatar panel classifieds only, has the user been charged | 127 | // For avatar panel classifieds only, has the user been charged |
121 | // yet for this classified? That is, have they saved once? | 128 | // yet for this classified? That is, have they saved once? |
diff --git a/linden/indra/newview/llpanelgeneral.cpp b/linden/indra/newview/llpanelgeneral.cpp index d60471d..10aef2c 100644 --- a/linden/indra/newview/llpanelgeneral.cpp +++ b/linden/indra/newview/llpanelgeneral.cpp | |||
@@ -196,7 +196,6 @@ void LLPanelGeneral::refresh() | |||
196 | mAFKTimeout = gSavedSettings.getF32("AFKTimeout"); | 196 | mAFKTimeout = gSavedSettings.getF32("AFKTimeout"); |
197 | mMiniMapRotate = gSavedSettings.getBOOL("MiniMapRotate"); | 197 | mMiniMapRotate = gSavedSettings.getBOOL("MiniMapRotate"); |
198 | mNotifyMoney = gSavedSettings.getBOOL("NotifyMoneyChange"); | 198 | mNotifyMoney = gSavedSettings.getBOOL("NotifyMoneyChange"); |
199 | mShowNewInventory = gSavedSettings.getBOOL("ShowNewInventory"); | ||
200 | mUseDefaultColor = gSavedSettings.getBOOL("UseDefaultColorPicker"); | 199 | mUseDefaultColor = gSavedSettings.getBOOL("UseDefaultColorPicker"); |
201 | mEffectColor = gSavedSettings.getColor4("EffectColor"); | 200 | mEffectColor = gSavedSettings.getColor4("EffectColor"); |
202 | 201 | ||
@@ -217,7 +216,6 @@ void LLPanelGeneral::cancel() | |||
217 | gSavedSettings.setF32("AFKTimeout", mAFKTimeout ); | 216 | gSavedSettings.setF32("AFKTimeout", mAFKTimeout ); |
218 | gSavedSettings.setBOOL("MiniMapRotate", mMiniMapRotate ); | 217 | gSavedSettings.setBOOL("MiniMapRotate", mMiniMapRotate ); |
219 | gSavedSettings.setBOOL("NotifyMoneyChange", mNotifyMoney ); | 218 | gSavedSettings.setBOOL("NotifyMoneyChange", mNotifyMoney ); |
220 | gSavedSettings.setBOOL("ShowNewInventory", mShowNewInventory); | ||
221 | gSavedSettings.setBOOL("UseDefaultColorPicker", mUseDefaultColor ); | 219 | gSavedSettings.setBOOL("UseDefaultColorPicker", mUseDefaultColor ); |
222 | gSavedSettings.setColor4("EffectColor", mEffectColor ); | 220 | gSavedSettings.setColor4("EffectColor", mEffectColor ); |
223 | gSavedSettings.setString("Language", mLanguage); | 221 | gSavedSettings.setString("Language", mLanguage); |
diff --git a/linden/indra/newview/llpanelgeneral.h b/linden/indra/newview/llpanelgeneral.h index fe4ff4e..a9bc662 100644 --- a/linden/indra/newview/llpanelgeneral.h +++ b/linden/indra/newview/llpanelgeneral.h | |||
@@ -61,7 +61,6 @@ protected: | |||
61 | BOOL mChatOnlineNotification; | 61 | BOOL mChatOnlineNotification; |
62 | F32 mAFKTimeout; | 62 | F32 mAFKTimeout; |
63 | BOOL mNotifyMoney; | 63 | BOOL mNotifyMoney; |
64 | BOOL mShowNewInventory; | ||
65 | BOOL mUseDefaultColor; | 64 | BOOL mUseDefaultColor; |
66 | LLColor4 mEffectColor; | 65 | LLColor4 mEffectColor; |
67 | BOOL mMiniMapRotate; | 66 | BOOL mMiniMapRotate; |
diff --git a/linden/indra/newview/llpanelgroup.cpp b/linden/indra/newview/llpanelgroup.cpp index 47dacf3..8061e42 100644 --- a/linden/indra/newview/llpanelgroup.cpp +++ b/linden/indra/newview/llpanelgroup.cpp | |||
@@ -78,7 +78,7 @@ BOOL LLPanelGroupTab::postBuild() | |||
78 | if (txt) | 78 | if (txt) |
79 | { | 79 | { |
80 | mHelpText = txt->getText(); | 80 | mHelpText = txt->getText(); |
81 | removeChild(txt); | 81 | removeChild(txt, TRUE); |
82 | } | 82 | } |
83 | return TRUE; | 83 | return TRUE; |
84 | } | 84 | } |
@@ -285,13 +285,13 @@ BOOL LLPanelGroup::postBuild() | |||
285 | if (txt) | 285 | if (txt) |
286 | { | 286 | { |
287 | mDefaultNeedsApplyMesg = txt->getText(); | 287 | mDefaultNeedsApplyMesg = txt->getText(); |
288 | removeChild(txt); | 288 | removeChild(txt, TRUE); |
289 | } | 289 | } |
290 | txt = (LLTextBox*)getChildByName("want_apply_text"); | 290 | txt = (LLTextBox*)getChildByName("want_apply_text"); |
291 | if (txt) | 291 | if (txt) |
292 | { | 292 | { |
293 | mWantApplyMesg = txt->getText(); | 293 | mWantApplyMesg = txt->getText(); |
294 | removeChild(txt); | 294 | removeChild(txt, TRUE); |
295 | } | 295 | } |
296 | 296 | ||
297 | LLButton* button = (LLButton*) getChildByName("btn_ok"); | 297 | LLButton* button = (LLButton*) getChildByName("btn_ok"); |
diff --git a/linden/indra/newview/llpanelgroupgeneral.cpp b/linden/indra/newview/llpanelgroupgeneral.cpp index 5ec9651..0888cad 100644 --- a/linden/indra/newview/llpanelgroupgeneral.cpp +++ b/linden/indra/newview/llpanelgroupgeneral.cpp | |||
@@ -135,7 +135,7 @@ BOOL LLPanelGroupGeneral::postBuild() | |||
135 | if (founder) | 135 | if (founder) |
136 | { | 136 | { |
137 | mFounderName = new LLNameBox(founder->getName(),founder->getRect(),LLUUID::null,FALSE,founder->getFont(),founder->getMouseOpaque()); | 137 | mFounderName = new LLNameBox(founder->getName(),founder->getRect(),LLUUID::null,FALSE,founder->getFont(),founder->getMouseOpaque()); |
138 | removeChild(founder); | 138 | removeChild(founder, TRUE); |
139 | addChild(mFounderName); | 139 | addChild(mFounderName); |
140 | } | 140 | } |
141 | 141 | ||
@@ -221,14 +221,14 @@ BOOL LLPanelGroupGeneral::postBuild() | |||
221 | if (txt) | 221 | if (txt) |
222 | { | 222 | { |
223 | mIncompleteMemberDataStr = txt->getText(); | 223 | mIncompleteMemberDataStr = txt->getText(); |
224 | removeChild(txt); | 224 | removeChild(txt, TRUE); |
225 | } | 225 | } |
226 | 226 | ||
227 | txt = (LLTextBox*)getChildByName("confirm_group_create_str"); | 227 | txt = (LLTextBox*)getChildByName("confirm_group_create_str"); |
228 | if (txt) | 228 | if (txt) |
229 | { | 229 | { |
230 | mConfirmGroupCreateStr = txt->getText(); | 230 | mConfirmGroupCreateStr = txt->getText(); |
231 | removeChild(txt); | 231 | removeChild(txt, TRUE); |
232 | } | 232 | } |
233 | 233 | ||
234 | // If the group_id is null, then we are creating a new group | 234 | // If the group_id is null, then we are creating a new group |
diff --git a/linden/indra/newview/llpanelgrouplandmoney.cpp b/linden/indra/newview/llpanelgrouplandmoney.cpp index b7a74b1..117145e 100644 --- a/linden/indra/newview/llpanelgrouplandmoney.cpp +++ b/linden/indra/newview/llpanelgrouplandmoney.cpp | |||
@@ -569,14 +569,14 @@ BOOL LLPanelGroupLandMoney::postBuild() | |||
569 | if ( no_permsp ) | 569 | if ( no_permsp ) |
570 | { | 570 | { |
571 | mImplementationp->mCantViewParcelsText = no_permsp->getText(); | 571 | mImplementationp->mCantViewParcelsText = no_permsp->getText(); |
572 | removeChild(no_permsp); | 572 | removeChild(no_permsp, TRUE); |
573 | } | 573 | } |
574 | 574 | ||
575 | no_permsp = (LLTextBox*) getChildByName("cant_view_group_accounting_text"); | 575 | no_permsp = (LLTextBox*) getChildByName("cant_view_group_accounting_text"); |
576 | if ( no_permsp ) | 576 | if ( no_permsp ) |
577 | { | 577 | { |
578 | mImplementationp->mCantViewAccountsText = no_permsp->getText(); | 578 | mImplementationp->mCantViewAccountsText = no_permsp->getText(); |
579 | removeChild(no_permsp); | 579 | removeChild(no_permsp, TRUE); |
580 | } | 580 | } |
581 | 581 | ||
582 | 582 | ||
diff --git a/linden/indra/newview/llpanelgroupnotices.cpp b/linden/indra/newview/llpanelgroupnotices.cpp index a001455..e335929 100644 --- a/linden/indra/newview/llpanelgroupnotices.cpp +++ b/linden/indra/newview/llpanelgroupnotices.cpp | |||
@@ -279,7 +279,7 @@ BOOL LLPanelGroupNotices::postBuild() | |||
279 | if (txt) | 279 | if (txt) |
280 | { | 280 | { |
281 | mNoNoticesStr = txt->getText(); | 281 | mNoNoticesStr = txt->getText(); |
282 | removeChild(txt); | 282 | removeChild(txt, TRUE); |
283 | } | 283 | } |
284 | 284 | ||
285 | mPanelCreateNotice = (LLPanel*) getChildByName("panel_create_new_notice",recurse); | 285 | mPanelCreateNotice = (LLPanel*) getChildByName("panel_create_new_notice",recurse); |
@@ -294,7 +294,7 @@ BOOL LLPanelGroupNotices::postBuild() | |||
294 | target->setToolTip(dtv->getToolTip()); | 294 | target->setToolTip(dtv->getToolTip()); |
295 | 295 | ||
296 | mPanelCreateNotice->addChild(target); | 296 | mPanelCreateNotice->addChild(target); |
297 | mPanelCreateNotice->removeChild(dtv); | 297 | mPanelCreateNotice->removeChild(dtv, TRUE); |
298 | 298 | ||
299 | arrangeNoticeView(VIEW_PAST_NOTICE); | 299 | arrangeNoticeView(VIEW_PAST_NOTICE); |
300 | 300 | ||
diff --git a/linden/indra/newview/llpanelgrouproles.cpp b/linden/indra/newview/llpanelgrouproles.cpp index 5765a12..e6944d9 100644 --- a/linden/indra/newview/llpanelgrouproles.cpp +++ b/linden/indra/newview/llpanelgrouproles.cpp | |||
@@ -172,13 +172,13 @@ BOOL LLPanelGroupRoles::postBuild() | |||
172 | if (txt) | 172 | if (txt) |
173 | { | 173 | { |
174 | mDefaultNeedsApplyMesg = txt->getText(); | 174 | mDefaultNeedsApplyMesg = txt->getText(); |
175 | removeChild(txt); | 175 | removeChild(txt, TRUE); |
176 | } | 176 | } |
177 | txt = (LLTextBox*)getChildByName("want_apply_text"); | 177 | txt = (LLTextBox*)getChildByName("want_apply_text"); |
178 | if (txt) | 178 | if (txt) |
179 | { | 179 | { |
180 | mWantApplyMesg = txt->getText(); | 180 | mWantApplyMesg = txt->getText(); |
181 | removeChild(txt); | 181 | removeChild(txt, TRUE); |
182 | } | 182 | } |
183 | 183 | ||
184 | return LLPanelGroupTab::postBuild(); | 184 | return LLPanelGroupTab::postBuild(); |
@@ -541,21 +541,21 @@ BOOL LLPanelGroupSubTab::postBuild() | |||
541 | if (icon && icon->getImage().notNull()) | 541 | if (icon && icon->getImage().notNull()) |
542 | { | 542 | { |
543 | mActionIcons["folder"] = icon->getImage(); | 543 | mActionIcons["folder"] = icon->getImage(); |
544 | removeChild(icon); | 544 | removeChild(icon, TRUE); |
545 | } | 545 | } |
546 | 546 | ||
547 | icon = (LLIconCtrl*) getChildByName("power_all_have_icon",no_recurse); | 547 | icon = (LLIconCtrl*) getChildByName("power_all_have_icon",no_recurse); |
548 | if (icon && icon->getImage().notNull()) | 548 | if (icon && icon->getImage().notNull()) |
549 | { | 549 | { |
550 | mActionIcons["full"] = icon->getImage(); | 550 | mActionIcons["full"] = icon->getImage(); |
551 | removeChild(icon); | 551 | removeChild(icon, TRUE); |
552 | } | 552 | } |
553 | 553 | ||
554 | icon = (LLIconCtrl*) getChildByName("power_partial_icon",no_recurse); | 554 | icon = (LLIconCtrl*) getChildByName("power_partial_icon",no_recurse); |
555 | if (icon && icon->getImage().notNull()) | 555 | if (icon && icon->getImage().notNull()) |
556 | { | 556 | { |
557 | mActionIcons["partial"] = icon->getImage(); | 557 | mActionIcons["partial"] = icon->getImage(); |
558 | removeChild(icon); | 558 | removeChild(icon, TRUE); |
559 | } | 559 | } |
560 | 560 | ||
561 | return LLPanelGroupTab::postBuild(); | 561 | return LLPanelGroupTab::postBuild(); |
@@ -1825,7 +1825,7 @@ BOOL LLPanelGroupRolesSubTab::postBuildSubTab(LLView* root) | |||
1825 | if (txt) | 1825 | if (txt) |
1826 | { | 1826 | { |
1827 | mRemoveEveryoneTxt = txt->getText(); | 1827 | mRemoveEveryoneTxt = txt->getText(); |
1828 | parent->removeChild(txt); | 1828 | parent->removeChild(txt, TRUE); |
1829 | } | 1829 | } |
1830 | 1830 | ||
1831 | mCreateRoleButton = | 1831 | mCreateRoleButton = |
diff --git a/linden/indra/newview/llpanelgroupvoting.cpp b/linden/indra/newview/llpanelgroupvoting.cpp index eca188e..8b8cd76 100644 --- a/linden/indra/newview/llpanelgroupvoting.cpp +++ b/linden/indra/newview/llpanelgroupvoting.cpp | |||
@@ -1299,28 +1299,28 @@ BOOL LLPanelGroupVoting::postBuild() | |||
1299 | if (txt) | 1299 | if (txt) |
1300 | { | 1300 | { |
1301 | mImpl->mViewProposalHeaderText = txt->getText(); | 1301 | mImpl->mViewProposalHeaderText = txt->getText(); |
1302 | removeChild(txt); | 1302 | removeChild(txt, TRUE); |
1303 | } | 1303 | } |
1304 | 1304 | ||
1305 | txt = (LLTextBox*) getChildByName("proposals_header_create_txt", recurse); | 1305 | txt = (LLTextBox*) getChildByName("proposals_header_create_txt", recurse); |
1306 | if (txt) | 1306 | if (txt) |
1307 | { | 1307 | { |
1308 | mImpl->mCreateProposalHeaderText = txt->getText(); | 1308 | mImpl->mCreateProposalHeaderText = txt->getText(); |
1309 | removeChild(txt); | 1309 | removeChild(txt, TRUE); |
1310 | } | 1310 | } |
1311 | 1311 | ||
1312 | txt = (LLTextBox*) getChildByName("proposals_header_vote_txt", recurse); | 1312 | txt = (LLTextBox*) getChildByName("proposals_header_vote_txt", recurse); |
1313 | if (txt) | 1313 | if (txt) |
1314 | { | 1314 | { |
1315 | mImpl->mVoteProposalHeaderText = txt->getText(); | 1315 | mImpl->mVoteProposalHeaderText = txt->getText(); |
1316 | removeChild(txt); | 1316 | removeChild(txt, TRUE); |
1317 | } | 1317 | } |
1318 | 1318 | ||
1319 | txt = (LLTextBox*) getChildByName("empty_proposal_txt", recurse); | 1319 | txt = (LLTextBox*) getChildByName("empty_proposal_txt", recurse); |
1320 | if (txt) | 1320 | if (txt) |
1321 | { | 1321 | { |
1322 | mImpl->mEmptyProposalText = txt->getText(); | 1322 | mImpl->mEmptyProposalText = txt->getText(); |
1323 | removeChild(txt); | 1323 | removeChild(txt, TRUE); |
1324 | } | 1324 | } |
1325 | 1325 | ||
1326 | mImpl->updateQuorumText(); | 1326 | mImpl->updateQuorumText(); |
diff --git a/linden/indra/newview/llpanelmsgs.cpp b/linden/indra/newview/llpanelmsgs.cpp index 3f5314c..3a8729c 100644 --- a/linden/indra/newview/llpanelmsgs.cpp +++ b/linden/indra/newview/llpanelmsgs.cpp | |||
@@ -35,14 +35,29 @@ | |||
35 | #include "llviewercontrol.h" | 35 | #include "llviewercontrol.h" |
36 | #include "llvieweruictrlfactory.h" | 36 | #include "llvieweruictrlfactory.h" |
37 | 37 | ||
38 | class LLPopupData | ||
39 | { | ||
40 | public: | ||
41 | LLPopupData() : mShowNewInventory(FALSE), mAutoAcceptNewInventory(FALSE) { } | ||
42 | |||
43 | BOOL mShowNewInventory; | ||
44 | BOOL mAutoAcceptNewInventory; | ||
45 | }; | ||
46 | |||
47 | LLPopupData sPopupData; | ||
38 | 48 | ||
39 | //----------------------------------------------------------------------------- | 49 | //----------------------------------------------------------------------------- |
40 | LLPanelMsgs::LLPanelMsgs() : | 50 | LLPanelMsgs::LLPanelMsgs() : |
41 | LLPanel("Messages Panel"), | 51 | LLPanel("Messages Panel"), |
42 | mDisabledPopups( 0 ), | 52 | mDisabledPopups( NULL ), |
43 | mEnabledPopups( 0 ) | 53 | mEnabledPopups( NULL ) |
44 | { | 54 | { |
45 | }; | 55 | gUICtrlFactory->buildPanel(this, "panel_preferences_popups.xml"); |
56 | } | ||
57 | |||
58 | |||
59 | LLPanelMsgs::~LLPanelMsgs() | ||
60 | { } | ||
46 | 61 | ||
47 | //----------------------------------------------------------------------------- | 62 | //----------------------------------------------------------------------------- |
48 | // postBuild() | 63 | // postBuild() |
@@ -54,6 +69,10 @@ BOOL LLPanelMsgs::postBuild() | |||
54 | childSetAction("enable_popup", onClickEnablePopup, this); | 69 | childSetAction("enable_popup", onClickEnablePopup, this); |
55 | childSetAction("reset_dialogs_btn", onClickResetDialogs, this); | 70 | childSetAction("reset_dialogs_btn", onClickResetDialogs, this); |
56 | buildLists(); | 71 | buildLists(); |
72 | |||
73 | sPopupData.mAutoAcceptNewInventory = gSavedSettings.getBOOL("AutoAcceptNewInventory"); | ||
74 | sPopupData.mShowNewInventory = gSavedSettings.getBOOL("ShowNewInventory"); | ||
75 | |||
57 | return TRUE; | 76 | return TRUE; |
58 | } | 77 | } |
59 | 78 | ||
@@ -132,14 +151,19 @@ void LLPanelMsgs::draw() | |||
132 | LLPanel::draw(); | 151 | LLPanel::draw(); |
133 | } | 152 | } |
134 | 153 | ||
154 | |||
135 | void LLPanelMsgs::apply() | 155 | void LLPanelMsgs::apply() |
136 | { | 156 | { |
137 | } | 157 | } |
138 | 158 | ||
159 | |||
139 | void LLPanelMsgs::cancel() | 160 | void LLPanelMsgs::cancel() |
140 | { | 161 | { |
162 | gSavedSettings.setBOOL("ShowNewInventory", sPopupData.mShowNewInventory); | ||
163 | gSavedSettings.setBOOL("AutoAcceptNewInventory", sPopupData.mAutoAcceptNewInventory); | ||
141 | } | 164 | } |
142 | 165 | ||
166 | |||
143 | //static | 167 | //static |
144 | void LLPanelMsgs::onClickEnablePopup(void* user_data) | 168 | void LLPanelMsgs::onClickEnablePopup(void* user_data) |
145 | { | 169 | { |
diff --git a/linden/indra/newview/llpanelmsgs.h b/linden/indra/newview/llpanelmsgs.h index 51e0498..58b6b95 100644 --- a/linden/indra/newview/llpanelmsgs.h +++ b/linden/indra/newview/llpanelmsgs.h | |||
@@ -37,10 +37,10 @@ class LLPanelMsgs : public LLPanel | |||
37 | { | 37 | { |
38 | public: | 38 | public: |
39 | LLPanelMsgs(); | 39 | LLPanelMsgs(); |
40 | virtual ~LLPanelMsgs() {}; | 40 | /*virtual*/ ~LLPanelMsgs(); |
41 | 41 | ||
42 | virtual BOOL postBuild(); | 42 | /*virtual*/ BOOL postBuild(); |
43 | virtual void draw(); | 43 | /*virtual*/ void draw(); |
44 | 44 | ||
45 | void apply(); | 45 | void apply(); |
46 | void cancel(); | 46 | void cancel(); |
diff --git a/linden/indra/newview/llpanelnetwork.cpp b/linden/indra/newview/llpanelnetwork.cpp index eaf2075..8676c33 100644 --- a/linden/indra/newview/llpanelnetwork.cpp +++ b/linden/indra/newview/llpanelnetwork.cpp | |||
@@ -53,11 +53,6 @@ | |||
53 | #include "llvieweruictrlfactory.h" | 53 | #include "llvieweruictrlfactory.h" |
54 | #include "llviewerwindow.h" | 54 | #include "llviewerwindow.h" |
55 | 55 | ||
56 | #if LL_LIBXUL_ENABLED | ||
57 | #include "llmozlib.h" | ||
58 | #endif // LL_LIBXUL_ENABLED | ||
59 | |||
60 | |||
61 | LLPanelNetwork::LLPanelNetwork() | 56 | LLPanelNetwork::LLPanelNetwork() |
62 | { | 57 | { |
63 | gUICtrlFactory->buildPanel(this, "panel_preferences_network.xml"); | 58 | gUICtrlFactory->buildPanel(this, "panel_preferences_network.xml"); |
@@ -113,11 +108,6 @@ void LLPanelNetwork::cancel() | |||
113 | // static | 108 | // static |
114 | void LLPanelNetwork::onClickClearCache(void*) | 109 | void LLPanelNetwork::onClickClearCache(void*) |
115 | { | 110 | { |
116 | #if LL_LIBXUL_ENABLED | ||
117 | // clear Mozilla cache | ||
118 | LLMozLib::getInstance()->clearCache(); | ||
119 | #endif // LL_LIBXUL_ENABLED | ||
120 | |||
121 | // flag client cache for clearing next time the client runs | 111 | // flag client cache for clearing next time the client runs |
122 | gSavedSettings.setBOOL("PurgeCacheOnNextStartup", TRUE); | 112 | gSavedSettings.setBOOL("PurgeCacheOnNextStartup", TRUE); |
123 | gViewerWindow->alertXml("CacheWillClear"); | 113 | gViewerWindow->alertXml("CacheWillClear"); |
diff --git a/linden/indra/newview/llpanelobject.cpp b/linden/indra/newview/llpanelobject.cpp index 9fe94f9..ae1c213 100644 --- a/linden/indra/newview/llpanelobject.cpp +++ b/linden/indra/newview/llpanelobject.cpp | |||
@@ -1182,6 +1182,9 @@ void LLPanelObject::onCommitParametric( LLUICtrl* ctrl, void* userdata ) | |||
1182 | if (selected_type == MI_SCULPT) | 1182 | if (selected_type == MI_SCULPT) |
1183 | { | 1183 | { |
1184 | self->mObject->setParameterEntryInUse(LLNetworkData::PARAMS_SCULPT, TRUE, TRUE); | 1184 | self->mObject->setParameterEntryInUse(LLNetworkData::PARAMS_SCULPT, TRUE, TRUE); |
1185 | LLSculptParams *sculpt_params = (LLSculptParams *)self->mObject->getParameterEntry(LLNetworkData::PARAMS_SCULPT); | ||
1186 | if (sculpt_params) | ||
1187 | volume_params.setSculptID(sculpt_params->getSculptTexture(), 0); | ||
1185 | } | 1188 | } |
1186 | else | 1189 | else |
1187 | { | 1190 | { |
diff --git a/linden/indra/newview/llpanelweb.cpp b/linden/indra/newview/llpanelweb.cpp index e1e4247..5b0b7e6 100644 --- a/linden/indra/newview/llpanelweb.cpp +++ b/linden/indra/newview/llpanelweb.cpp | |||
@@ -1,8 +1,8 @@ | |||
1 | /** | 1 | /** |
2 | * @file llpanelweb.cpp | 2 | * @file LLPanelWeb.cpp |
3 | * @brief Web browser options | 3 | * @brief Network preferences panel |
4 | * | 4 | * |
5 | * Copyright (c) 2003-2007, Linden Research, Inc. | 5 | * Copyright (c) 2001-2007, Linden Research, Inc. |
6 | * | 6 | * |
7 | * Second Life Viewer Source Code | 7 | * Second Life Viewer Source Code |
8 | * The source code in this file ("Source Code") is provided by Linden Lab | 8 | * The source code in this file ("Source Code") is provided by Linden Lab |
@@ -28,345 +28,127 @@ | |||
28 | 28 | ||
29 | #include "llviewerprecompiledheaders.h" | 29 | #include "llviewerprecompiledheaders.h" |
30 | 30 | ||
31 | // file include | ||
31 | #include "llpanelweb.h" | 32 | #include "llpanelweb.h" |
32 | 33 | ||
34 | // linden library includes | ||
35 | #include "llerror.h" | ||
36 | #include "llrect.h" | ||
37 | #include "llstring.h" | ||
38 | |||
39 | // project includes | ||
33 | #include "llbutton.h" | 40 | #include "llbutton.h" |
34 | #include "llscrolllistctrl.h" | 41 | #include "llui.h" |
42 | #include "lluictrlfactory.h" | ||
35 | #include "llcheckboxctrl.h" | 43 | #include "llcheckboxctrl.h" |
36 | #include "llradiogroup.h" | ||
37 | #include "lllineeditor.h" | ||
38 | #include "llfirstuse.h" | ||
39 | #include "llviewercontrol.h" | 44 | #include "llviewercontrol.h" |
40 | #include "llmediaengine.h" | ||
41 | #include "llstartup.h" | ||
42 | #include "llurlwhitelist.h" | ||
43 | #include "llvieweruictrlfactory.h" | 45 | #include "llvieweruictrlfactory.h" |
46 | #include "llviewerwindow.h" | ||
47 | |||
48 | #if LL_LIBXUL_ENABLED | ||
49 | #include "llmozlib.h" | ||
50 | #endif // LL_LIBXUL_ENABLED | ||
44 | 51 | ||
45 | LLPanelWeb::LLPanelWeb() | 52 | LLPanelWeb::LLPanelWeb() |
46 | : LLPanel("Web Panel"), | ||
47 | mExternalBrowserCheck(NULL), | ||
48 | mBrowserHomePage(NULL), | ||
49 | mWebPagesOnPrimsCheck(NULL), | ||
50 | mTrustedSitesList(NULL), | ||
51 | mProxyEnabled(NULL), | ||
52 | mProxyAddress(NULL), | ||
53 | mProxyPort(NULL), | ||
54 | mProxySocks45(NULL), | ||
55 | mProxyExclusions(NULL), | ||
56 | mAddTrustedSite(NULL), | ||
57 | mTrustedSiteEntry(NULL), | ||
58 | mRemTrustedSite(NULL) | ||
59 | { | 53 | { |
60 | mLoggedIn = ( gStartupState >= STATE_STARTED ); | 54 | gUICtrlFactory->buildPanel(this, "panel_preferences_web.xml"); |
61 | } | 55 | } |
62 | 56 | ||
63 | //----------------------------------------------------------------------------- | ||
64 | // postBuild() | ||
65 | //----------------------------------------------------------------------------- | ||
66 | BOOL LLPanelWeb::postBuild() | 57 | BOOL LLPanelWeb::postBuild() |
67 | { | 58 | { |
68 | mExternalBrowserCheck = LLViewerUICtrlFactory::getCheckBoxByName(this, "external_browser_check"); | 59 | childSetAction( "clear_cache", onClickClearCache, this ); |
69 | mExternalBrowserCheck->setCallbackUserData ( this ); | 60 | childSetAction( "clear_cookies", onClickClearCookies, this ); |
70 | mExternalBrowserCheck->setCommitCallback ( onCommitExternalBrowser ); | 61 | childSetEnabled( "connection_port", gSavedSettings.getBOOL( "CookiesEnabled" ) ); |
71 | 62 | childSetCommitCallback( "cookies_enabled", onCommitCookies, this ); | |
72 | mWebPagesOnPrimsCheck = LLViewerUICtrlFactory::getCheckBoxByName(this, "web_pages_on_prims_check"); | ||
73 | |||
74 | mBrowserHomePage = LLViewerUICtrlFactory::getLineEditorByName(this, "home_page"); | ||
75 | |||
76 | mProxyEnabled = LLViewerUICtrlFactory::getCheckBoxByName(this, "proxy_enabled"); | ||
77 | mProxyEnabled->setCallbackUserData ( this ); | ||
78 | mProxyEnabled->setCommitCallback ( onCommitProxyEnabled ); | ||
79 | mProxyAddress = LLViewerUICtrlFactory::getLineEditorByName(this, "proxy_address"); | ||
80 | mProxyPort = LLViewerUICtrlFactory::getLineEditorByName(this, "proxy_port"); | ||
81 | mProxySocks45 = LLViewerUICtrlFactory::getRadioGroupByName(this, "socks_4_5"); | ||
82 | mProxyExclusions = LLViewerUICtrlFactory::getLineEditorByName(this, "proxy_exclusions"); | ||
83 | |||
84 | mAddTrustedSite = LLViewerUICtrlFactory::getButtonByName(this, "add_trusted"); | ||
85 | mAddTrustedSite->setEnabled ( FALSE ); | ||
86 | mAddTrustedSite->setCallbackUserData ( this ); | ||
87 | mAddTrustedSite->setClickedCallback ( onAddTrustedSite ); | ||
88 | |||
89 | mTrustedSitesList = LLViewerUICtrlFactory::getScrollListByName(this, "trusted_sites_list"); | ||
90 | mTrustedSitesList->setAllowMultipleSelection ( TRUE ); | ||
91 | mTrustedSitesList->setCommitOnSelectionChange ( TRUE ); | ||
92 | mTrustedSitesList->setCallbackUserData ( this ); | ||
93 | mTrustedSitesList->setCommitCallback ( onTrustedSiteListCommit ); | ||
94 | |||
95 | mTrustedSiteEntry = LLViewerUICtrlFactory::getLineEditorByName(this, "trusted_site_entry"); | ||
96 | mTrustedSiteEntry->setCallbackUserData ( this ); | ||
97 | mTrustedSiteEntry->setKeystrokeCallback ( onTrustedSiteEntryKeystroke ); | ||
98 | |||
99 | mRemTrustedSite = LLViewerUICtrlFactory::getButtonByName(this, "rem_trusted"); | ||
100 | mRemTrustedSite->setEnabled ( FALSE ); | ||
101 | mRemTrustedSite->setCallbackUserData ( this ); | ||
102 | mRemTrustedSite->setClickedCallback ( onRemTrustedSite ); | ||
103 | |||
104 | BOOL use_external_browser = gSavedSettings.getBOOL("UseExternalBrowser"); | ||
105 | mExternalBrowserCheck->set(use_external_browser); | ||
106 | |||
107 | LLString strVal = gSavedSettings.getString ( "BrowserHomePage" ); | ||
108 | mBrowserHomePage->setText ( strVal ); | ||
109 | |||
110 | BOOL boolVal = gSavedSettings.getBOOL ( "BrowserProxyEnabled" ); | ||
111 | mProxyEnabled->set ( boolVal ); | ||
112 | |||
113 | strVal = gSavedSettings.getString ( "BrowserProxyAddress" ); | ||
114 | mProxyAddress->setText ( strVal ); | ||
115 | |||
116 | S32 port = gSavedSettings.getS32 ( "BrowserProxyPort" ); | ||
117 | std::stringstream codec; | ||
118 | codec << port; | ||
119 | mProxyPort->setText ( codec.str () ); | ||
120 | |||
121 | S32 numVal = gSavedSettings.getS32 ( "BrowserProxySocks45" ); | ||
122 | mProxySocks45->setSelectedIndex ( numVal - 4 ); | ||
123 | |||
124 | strVal = gSavedSettings.getString ( "BrowserProxyExclusions" ); | ||
125 | mProxyExclusions->setText ( strVal ); | ||
126 | |||
127 | // switch on/off UI depending on state of 'use external browser' checkbox | ||
128 | configExternaBrowserEnabledUI ( mExternalBrowserCheck->get() ); | ||
129 | |||
130 | // switch on/off UI depending on which type of proxy is chosen (only if internal browseR) | ||
131 | if ( ! mExternalBrowserCheck->get() ) | ||
132 | configProxyEnabledUI ( mProxyEnabled->get() ); | ||
133 | 63 | ||
134 | BOOL use_web_pages_on_prims = gSavedSettings.getBOOL("UseWebPagesOnPrims"); | 64 | refresh(); |
135 | mWebPagesOnPrimsCheck->set(use_web_pages_on_prims); | ||
136 | |||
137 | // load the list of trusted sites | ||
138 | loadTrustedSiteList (); | ||
139 | 65 | ||
140 | return TRUE; | 66 | return TRUE; |
141 | } | 67 | } |
142 | 68 | ||
143 | // helper function to enable/disable proxy UI based on what type of proxy is selected | 69 | LLPanelWeb::~LLPanelWeb() |
144 | void LLPanelWeb::configProxyEnabledUI ( BOOL enabled ) | ||
145 | { | 70 | { |
146 | if ( enabled ) | 71 | // Children all cleaned up by default view destructor. |
147 | { | ||
148 | mProxyAddress->setEnabled ( TRUE ); | ||
149 | mProxyPort->setEnabled ( TRUE ); | ||
150 | mProxySocks45->setEnabled ( TRUE); | ||
151 | mProxyExclusions->setEnabled ( TRUE ); | ||
152 | } | ||
153 | else | ||
154 | { | ||
155 | mProxyAddress->setEnabled ( FALSE ); | ||
156 | mProxyPort->setEnabled ( FALSE ); | ||
157 | mProxySocks45->setEnabled ( FALSE ); | ||
158 | mProxyExclusions->setEnabled ( FALSE ); | ||
159 | }; | ||
160 | } | 72 | } |
161 | 73 | ||
162 | // helper function to enable/disable proxy UI based on what type of proxy is selected | 74 | void LLPanelWeb::apply() |
163 | void LLPanelWeb::configExternaBrowserEnabledUI ( BOOL enabled ) | ||
164 | { | 75 | { |
165 | if ( enabled ) | ||
166 | { | ||
167 | mBrowserHomePage->setEnabled ( FALSE ); | ||
168 | mWebPagesOnPrimsCheck->setEnabled ( FALSE ); | ||
169 | mTrustedSitesList->setEnabled ( FALSE ); | ||
170 | mProxyEnabled->setEnabled ( FALSE ); | ||
171 | mProxyAddress->setEnabled ( FALSE ); | ||
172 | mProxyPort->setEnabled ( FALSE ); | ||
173 | mProxySocks45->setEnabled ( FALSE ); | ||
174 | mProxyExclusions->setEnabled ( FALSE ); | ||
175 | mAddTrustedSite->setEnabled ( FALSE ); | ||
176 | mTrustedSiteEntry->setEnabled ( FALSE ); | ||
177 | mRemTrustedSite->setEnabled ( FALSE ); | ||
178 | } | ||
179 | else | ||
180 | { | ||
181 | mBrowserHomePage->setEnabled ( TRUE ); | ||
182 | mWebPagesOnPrimsCheck->setEnabled ( TRUE ); | ||
183 | mTrustedSitesList->setEnabled ( TRUE ); | ||
184 | mProxyEnabled->setEnabled ( TRUE ); | ||
185 | mProxyAddress->setEnabled ( TRUE ); | ||
186 | mProxyPort->setEnabled ( TRUE ); | ||
187 | mProxySocks45->setEnabled ( TRUE); | ||
188 | mProxyExclusions->setEnabled ( TRUE ); | ||
189 | mAddTrustedSite->setEnabled ( TRUE ); | ||
190 | mTrustedSiteEntry->setEnabled ( TRUE ); | ||
191 | |||
192 | // only set this to enabled if there is text in the entry widget | ||
193 | if ( mTrustedSiteEntry->getLength() ) | ||
194 | mAddTrustedSite->setEnabled ( TRUE ); | ||
195 | else | ||
196 | mAddTrustedSite->setEnabled ( FALSE ); | ||
197 | |||
198 | // only set this to enabled if something is selected in the list of trusted sites | ||
199 | if ( mTrustedSitesList->getFirstSelected () ) | ||
200 | mRemTrustedSite->setEnabled ( TRUE ); | ||
201 | else | ||
202 | mRemTrustedSite->setEnabled ( FALSE ); | ||
203 | }; | ||
204 | |||
205 | // final check - disable the white list options if not | ||
206 | // logged in since they are on a per-user basis | ||
207 | if ( ! mLoggedIn ) | ||
208 | { | ||
209 | mTrustedSitesList->setEnabled ( FALSE ); | ||
210 | mAddTrustedSite->setEnabled ( FALSE ); | ||
211 | mTrustedSiteEntry->setEnabled ( FALSE ); | ||
212 | mRemTrustedSite->setEnabled ( FALSE ); | ||
213 | }; | ||
214 | } | 76 | } |
215 | 77 | ||
216 | void LLPanelWeb::onCommitExternalBrowser ( LLUICtrl* ctrl, void* data ) | 78 | void LLPanelWeb::refresh() |
217 | { | 79 | { |
218 | LLPanelWeb* self = (LLPanelWeb*)data; | 80 | LLPanel::refresh(); |
219 | 81 | ||
220 | // update state of UI when proxy type changes | 82 | mCookiesEnabled = gSavedSettings.getBOOL("CookiesEnabled"); |
221 | BOOL value = self->mExternalBrowserCheck->get (); | ||
222 | self->configExternaBrowserEnabledUI ( value ); | ||
223 | } | ||
224 | 83 | ||
225 | void LLPanelWeb::onCommitProxyEnabled ( LLUICtrl* ctrl, void* data ) | 84 | #if LL_LIBXUL_ENABLED |
226 | { | 85 | llinfos << "setting cookies enabled to " << mCookiesEnabled << llendl; |
227 | LLPanelWeb* self = (LLPanelWeb*)data; | 86 | LLMozLib::getInstance()->enableCookies( mCookiesEnabled ); |
87 | #endif // LL_LIBXUL_ENABLED | ||
228 | 88 | ||
229 | // update state of UI when proxy type changes | ||
230 | BOOL value = self->mProxyEnabled->get (); | ||
231 | self->configProxyEnabledUI ( value ); | ||
232 | } | 89 | } |
233 | 90 | ||
234 | void LLPanelWeb::onTrustedSiteListCommit ( LLUICtrl* ctrl, void* data ) | 91 | void LLPanelWeb::cancel() |
235 | { | ||
236 | LLPanelWeb* self = (LLPanelWeb*)data; | ||
237 | |||
238 | // something was selected so enable the REMOVE button | ||
239 | self->mRemTrustedSite->setEnabled ( TRUE ); | ||
240 | }; | ||
241 | |||
242 | void LLPanelWeb::onTrustedSiteEntryKeystroke ( LLLineEditor* caller, void* data ) | ||
243 | { | 92 | { |
244 | LLPanelWeb* self = (LLPanelWeb*)data; | 93 | #if LL_LIBXUL_ENABLED |
94 | llinfos << "setting cookies enabled to " << mCookiesEnabled << llendl; | ||
95 | LLMozLib::getInstance()->enableCookies( mCookiesEnabled ); | ||
96 | #endif // LL_LIBXUL_ENABLED | ||
245 | 97 | ||
246 | if ( caller->getLength () ) | 98 | gSavedSettings.setBOOL( "CookiesEnabled", mCookiesEnabled ); |
247 | self->mAddTrustedSite->setEnabled ( TRUE ); | ||
248 | else | ||
249 | self->mAddTrustedSite->setEnabled ( FALSE ); | ||
250 | } | 99 | } |
251 | 100 | ||
252 | // add site to list | 101 | // static |
253 | void LLPanelWeb::onAddTrustedSite ( void* data ) | 102 | void LLPanelWeb::onClickClearCache(void*) |
254 | { | 103 | { |
255 | LLPanelWeb* self = (LLPanelWeb*)data; | 104 | #if LL_LIBXUL_ENABLED |
256 | 105 | gViewerWindow->alertXml("ConfirmClearBrowserCache", callback_clear_browser_cache, 0); | |
257 | if ( self->mTrustedSiteEntry->getLength () ) | 106 | #endif // LL_LIBXUL_ENABLED |
258 | { | ||
259 | // add to list | ||
260 | self->mTrustedSitesList->addSimpleItem ( self->mTrustedSiteEntry->getText () ); | ||
261 | |||
262 | // remove from entry field | ||
263 | self->mTrustedSiteEntry->clear (); | ||
264 | |||
265 | // nothing in entry field so disable add button | ||
266 | self->mAddTrustedSite->setEnabled ( FALSE ); | ||
267 | }; | ||
268 | } | 107 | } |
269 | 108 | ||
270 | // remove site from list | 109 | //static |
271 | void LLPanelWeb::onRemTrustedSite ( void* data ) | 110 | void LLPanelWeb::callback_clear_browser_cache(S32 option, void* userdata) |
272 | { | 111 | { |
273 | LLPanelWeb* self = (LLPanelWeb*)data; | 112 | #if LL_LIBXUL_ENABLED |
274 | 113 | if ( option == 0 ) // YES | |
275 | self->mTrustedSitesList->deleteSelectedItems (); | 114 | { |
276 | 115 | llinfos << "clearing browser cache" << llendl; | |
277 | // once we delete something, nothing is selected so disable the REMOVE button | 116 | LLMozLib::getInstance()->clearCache(); |
278 | self->mRemTrustedSite->setEnabled ( FALSE ); | 117 | } |
118 | #endif // LL_LIBXUL_ENABLED | ||
279 | } | 119 | } |
280 | 120 | ||
281 | // save off the list of trusted sites | 121 | // static |
282 | void LLPanelWeb::loadTrustedSiteList () | 122 | void LLPanelWeb::onClickClearCookies(void*) |
283 | { | 123 | { |
284 | // can't access white list file when not logged in since | 124 | #if LL_LIBXUL_ENABLED |
285 | // the filename is based on the SL username | 125 | gViewerWindow->alertXml("ConfirmClearCookies", callback_clear_cookies, 0); |
286 | if ( ! mLoggedIn ) | 126 | #endif // LL_LIBXUL_ENABLED |
287 | return; | ||
288 | |||
289 | LLUrlWhiteList* theWhiteList = LLUrlWhiteList::getInstance (); | ||
290 | |||
291 | if ( theWhiteList->load () ) | ||
292 | { | ||
293 | mTrustedSitesList->clear (); | ||
294 | |||
295 | LLString each; | ||
296 | if ( theWhiteList->getFirst ( each ) ) | ||
297 | { | ||
298 | mTrustedSitesList->addSimpleItem ( each ); | ||
299 | |||
300 | while ( theWhiteList->getNext ( each ) ) | ||
301 | { | ||
302 | mTrustedSitesList->addSimpleItem ( each ); | ||
303 | }; | ||
304 | }; | ||
305 | }; | ||
306 | } | 127 | } |
307 | 128 | ||
308 | // save off the list of trusted sites | 129 | //static |
309 | void LLPanelWeb::saveTrustedSiteList () | 130 | void LLPanelWeb::callback_clear_cookies(S32 option, void* userdata) |
310 | { | 131 | { |
311 | // can't access white list file when not logged in since | 132 | #if LL_LIBXUL_ENABLED |
312 | // the filename is based on the SL username | 133 | if ( option == 0 ) // YES |
313 | if ( ! mLoggedIn ) | ||
314 | return; | ||
315 | |||
316 | // erase the white list before we re-add items to it | ||
317 | LLUrlWhiteList::getInstance ()->clear (); | ||
318 | |||
319 | // step through each item in the scroll list | ||
320 | std::vector<LLScrollListItem*> data_list = mTrustedSitesList->getAllData(); | ||
321 | std::vector<LLScrollListItem*>::iterator data_itor; | ||
322 | for (data_itor = data_list.begin(); data_itor != data_list.end(); ++data_itor) | ||
323 | { | 134 | { |
324 | LLScrollListItem* each = *data_itor; | 135 | llinfos << "clearing browser cookies" << llendl; |
325 | LLUrlWhiteList::getInstance ()->addItem ( each->getColumn ( 0 )->getText (), false ); | 136 | LLMozLib::getInstance()->clearAllCookies(); |
326 | } | 137 | } |
327 | 138 | #endif // LL_LIBXUL_ENABLED | |
328 | LLUrlWhiteList::getInstance ()->save (); | ||
329 | } | 139 | } |
330 | 140 | ||
331 | // save off the list of trusted sites | 141 | // static |
332 | void LLPanelWeb::apply() | 142 | void LLPanelWeb::onCommitCookies(LLUICtrl* ctrl, void* data) |
333 | { | 143 | { |
144 | LLPanelWeb* self = (LLPanelWeb*)data; | ||
145 | LLCheckBoxCtrl* check = (LLCheckBoxCtrl*)ctrl; | ||
334 | 146 | ||
335 | BOOL use_external_browser = mExternalBrowserCheck->get(); | 147 | if (!self || !check) return; |
336 | gSavedSettings.setBOOL("UseExternalBrowser", use_external_browser); | ||
337 | |||
338 | gSavedSettings.setString ( "BrowserHomePage", mBrowserHomePage->getText() ); | ||
339 | |||
340 | BOOL enabled = mProxyEnabled->get (); | ||
341 | gSavedSettings.setBOOL ( "BrowserProxyEnabled", enabled ); | ||
342 | |||
343 | gSavedSettings.setString ( "BrowserProxyAddress", mProxyAddress->getText() ); | ||
344 | |||
345 | S32 port; | ||
346 | std::stringstream codec ( mProxyPort->getText () ); | ||
347 | codec >> port; | ||
348 | gSavedSettings.setS32 ( "BrowserProxyPort", port ); | ||
349 | |||
350 | S32 socks = mProxySocks45->getSelectedIndex () + 4; | ||
351 | gSavedSettings.setS32 ( "BrowserProxySocks45", socks ); | ||
352 | 148 | ||
353 | gSavedSettings.setString ( "BrowserProxyExclusions", mProxyExclusions->getText() ); | 149 | #if LL_LIBXUL_ENABLED |
354 | 150 | llinfos << "setting cookies enabled to " << check->get() << llendl; | |
355 | BOOL use_web_pages_on_prims = mWebPagesOnPrimsCheck->get(); | 151 | LLMozLib::getInstance()->enableCookies( check->get() ); |
356 | gSavedSettings.setBOOL("UseWebPagesOnPrims", use_web_pages_on_prims); | 152 | #endif // LL_LIBXUL_ENABLED |
357 | 153 | ||
358 | // save off the list of trusted sites | ||
359 | saveTrustedSiteList (); | ||
360 | |||
361 | // update the media engine with the proxy information | ||
362 | if ( LLMediaEngine::getInstance() && LLMediaEngine::getInstance()->isAvailable() ) | ||
363 | { | ||
364 | LLMediaEngine::getInstance()->setNetworkProxy ( enabled, | ||
365 | mProxyAddress->getText(), port, socks, | ||
366 | mProxyExclusions->getText() ); | ||
367 | }; | ||
368 | } | ||
369 | |||
370 | void LLPanelWeb::cancel() | ||
371 | { | ||
372 | } | 154 | } |
diff --git a/linden/indra/newview/llpanelweb.h b/linden/indra/newview/llpanelweb.h index 0703f90..48b0742 100644 --- a/linden/indra/newview/llpanelweb.h +++ b/linden/indra/newview/llpanelweb.h | |||
@@ -30,53 +30,31 @@ | |||
30 | #define LL_LLPANELWEB_H | 30 | #define LL_LLPANELWEB_H |
31 | 31 | ||
32 | #include "llpanel.h" | 32 | #include "llpanel.h" |
33 | #include "llviewerthrottle.h" | ||
33 | 34 | ||
34 | class LLScrollListCtrl; | ||
35 | class LLCheckBoxCtrl; | 35 | class LLCheckBoxCtrl; |
36 | class LLLineEditor; | 36 | class LLButton; |
37 | class LLRadioGroup; | ||
38 | //class LLButton; | ||
39 | 37 | ||
40 | class LLPanelWeb : public LLPanel | 38 | class LLPanelWeb : public LLPanel |
41 | { | 39 | { |
42 | public: | 40 | public: |
43 | LLPanelWeb(); | 41 | LLPanelWeb(); |
44 | virtual ~LLPanelWeb(){}; | 42 | virtual ~LLPanelWeb(); |
45 | 43 | ||
46 | virtual BOOL postBuild(); | 44 | virtual BOOL postBuild(); |
47 | 45 | virtual void refresh(); | |
48 | void apply(); | 46 | virtual void apply(); // Apply the changed values. |
49 | void cancel(); | 47 | virtual void cancel(); // Cancel the changed values. |
50 | 48 | ||
51 | void loadTrustedSiteList (); | 49 | private: |
52 | void saveTrustedSiteList (); | 50 | static void onClickClearCache(void*); |
53 | 51 | static void onClickClearCookies(void*); | |
54 | void configProxyEnabledUI ( BOOL enabled ); | 52 | static void callback_clear_browser_cache(S32 option, void* userdata); |
55 | static void onCommitProxyEnabled ( LLUICtrl* ctrl, void* data ); | 53 | static void callback_clear_cookies(S32 option, void* userdata); |
56 | 54 | static void onCommitCookies(LLUICtrl* ctrl, void* data); | |
57 | void configExternaBrowserEnabledUI ( BOOL enabled ); | 55 | |
58 | static void onCommitExternalBrowser ( LLUICtrl* ctrl, void* data ); | 56 | private: |
59 | 57 | BOOL mCookiesEnabled; | |
60 | static void onTrustedSiteListCommit ( LLUICtrl* ctrl, void* data ); | ||
61 | static void onTrustedSiteEntryFocusChange ( LLUICtrl* ctrl, void* data ); | ||
62 | static void onTrustedSiteEntryKeystroke ( LLLineEditor* caller, void* data ); | ||
63 | static void onAddTrustedSite ( void* data ); | ||
64 | static void onRemTrustedSite ( void* data ); | ||
65 | |||
66 | protected: | ||
67 | BOOL mLoggedIn; | ||
68 | LLCheckBoxCtrl* mExternalBrowserCheck; | ||
69 | LLLineEditor* mBrowserHomePage; | ||
70 | LLCheckBoxCtrl* mWebPagesOnPrimsCheck; | ||
71 | LLScrollListCtrl* mTrustedSitesList; | ||
72 | LLCheckBoxCtrl* mProxyEnabled; | ||
73 | LLLineEditor* mProxyAddress; | ||
74 | LLLineEditor* mProxyPort; | ||
75 | LLRadioGroup* mProxySocks45; | ||
76 | LLLineEditor* mProxyExclusions; | ||
77 | LLButton* mAddTrustedSite; | ||
78 | LLLineEditor* mTrustedSiteEntry; | ||
79 | LLButton* mRemTrustedSite; | ||
80 | }; | 58 | }; |
81 | 59 | ||
82 | #endif | 60 | #endif |
diff --git a/linden/indra/newview/llpreview.cpp b/linden/indra/newview/llpreview.cpp index 7137f85..9b2d3f8 100644 --- a/linden/indra/newview/llpreview.cpp +++ b/linden/indra/newview/llpreview.cpp | |||
@@ -70,7 +70,7 @@ LLPreview::LLPreview(const std::string& name) : | |||
70 | mAutoFocus = FALSE; | 70 | mAutoFocus = FALSE; |
71 | } | 71 | } |
72 | 72 | ||
73 | LLPreview::LLPreview(const std::string& name, const LLRect& rect, const std::string& title, const LLUUID& item_uuid, const LLUUID& object_uuid, BOOL allow_resize, S32 min_width, S32 min_height ) | 73 | LLPreview::LLPreview(const std::string& name, const LLRect& rect, const std::string& title, const LLUUID& item_uuid, const LLUUID& object_uuid, BOOL allow_resize, S32 min_width, S32 min_height, LLPointer<LLViewerInventoryItem> inv_item ) |
74 | : LLFloater(name, rect, title, allow_resize, min_width, min_height ), | 74 | : LLFloater(name, rect, title, allow_resize, min_width, min_height ), |
75 | mItemUUID(item_uuid), | 75 | mItemUUID(item_uuid), |
76 | mSourceID(LLUUID::null), | 76 | mSourceID(LLUUID::null), |
@@ -79,7 +79,8 @@ LLPreview::LLPreview(const std::string& name, const LLRect& rect, const std::str | |||
79 | mForceClose( FALSE ), | 79 | mForceClose( FALSE ), |
80 | mUserResized(FALSE), | 80 | mUserResized(FALSE), |
81 | mCloseAfterSave(FALSE), | 81 | mCloseAfterSave(FALSE), |
82 | mAssetStatus(PREVIEW_ASSET_UNLOADED) | 82 | mAssetStatus(PREVIEW_ASSET_UNLOADED), |
83 | mItem(inv_item) | ||
83 | { | 84 | { |
84 | mAuxItem = new LLInventoryItem; | 85 | mAuxItem = new LLInventoryItem; |
85 | // don't necessarily steal focus on creation -- sometimes these guys pop up without user action | 86 | // don't necessarily steal focus on creation -- sometimes these guys pop up without user action |
@@ -154,9 +155,11 @@ void LLPreview::setSourceID(const LLUUID& source_id) | |||
154 | sPreviewsBySource.insert(preview_multimap_t::value_type(mSourceID, mViewHandle)); | 155 | sPreviewsBySource.insert(preview_multimap_t::value_type(mSourceID, mViewHandle)); |
155 | } | 156 | } |
156 | 157 | ||
157 | LLViewerInventoryItem* LLPreview::getItem() const | 158 | const LLViewerInventoryItem *LLPreview::getItem() const |
158 | { | 159 | { |
159 | LLViewerInventoryItem* item = NULL; | 160 | if(mItem) |
161 | return mItem; | ||
162 | const LLViewerInventoryItem *item = NULL; | ||
160 | if(mObjectUUID.isNull()) | 163 | if(mObjectUUID.isNull()) |
161 | { | 164 | { |
162 | // it's an inventory item, so get the item. | 165 | // it's an inventory item, so get the item. |
@@ -177,7 +180,7 @@ LLViewerInventoryItem* LLPreview::getItem() const | |||
177 | // Sub-classes should override this function if they allow editing | 180 | // Sub-classes should override this function if they allow editing |
178 | void LLPreview::onCommit() | 181 | void LLPreview::onCommit() |
179 | { | 182 | { |
180 | LLViewerInventoryItem* item = getItem(); | 183 | const LLViewerInventoryItem *item = getItem(); |
181 | if(item) | 184 | if(item) |
182 | { | 185 | { |
183 | if (!item->isComplete()) | 186 | if (!item->isComplete()) |
@@ -350,7 +353,7 @@ BOOL LLPreview::handleHover(S32 x, S32 y, MASK mask) | |||
350 | { | 353 | { |
351 | S32 screen_x; | 354 | S32 screen_x; |
352 | S32 screen_y; | 355 | S32 screen_y; |
353 | LLViewerInventoryItem *item = getItem(); | 356 | const LLViewerInventoryItem *item = getItem(); |
354 | 357 | ||
355 | localPointToScreen(x, y, &screen_x, &screen_y ); | 358 | localPointToScreen(x, y, &screen_x, &screen_y ); |
356 | if(item | 359 | if(item |
@@ -436,7 +439,7 @@ void LLPreview::onDiscardBtn(void* data) | |||
436 | { | 439 | { |
437 | LLPreview* self = (LLPreview*)data; | 440 | LLPreview* self = (LLPreview*)data; |
438 | 441 | ||
439 | LLViewerInventoryItem* item = self->getItem(); | 442 | const LLViewerInventoryItem* item = self->getItem(); |
440 | if (!item) return; | 443 | if (!item) return; |
441 | 444 | ||
442 | self->mForceClose = TRUE; | 445 | self->mForceClose = TRUE; |
diff --git a/linden/indra/newview/llpreview.h b/linden/indra/newview/llpreview.h index c8c0355..0369227 100644 --- a/linden/indra/newview/llpreview.h +++ b/linden/indra/newview/llpreview.h | |||
@@ -71,13 +71,13 @@ public: | |||
71 | public: | 71 | public: |
72 | // Used for XML-based construction. | 72 | // Used for XML-based construction. |
73 | LLPreview(const std::string& name); | 73 | LLPreview(const std::string& name); |
74 | LLPreview(const std::string& name, const LLRect& rect, const std::string& title, const LLUUID& item_uuid, const LLUUID& object_uuid, BOOL allow_resize = FALSE, S32 min_width = 0, S32 min_height = 0 ); | 74 | LLPreview(const std::string& name, const LLRect& rect, const std::string& title, const LLUUID& item_uuid, const LLUUID& object_uuid, BOOL allow_resize = FALSE, S32 min_width = 0, S32 min_height = 0, LLPointer<LLViewerInventoryItem> inv_item = NULL ); |
75 | virtual ~LLPreview(); | 75 | virtual ~LLPreview(); |
76 | 76 | ||
77 | void setItemID(const LLUUID& item_id); | 77 | void setItemID(const LLUUID& item_id); |
78 | void setObjectID(const LLUUID& object_id); | 78 | void setObjectID(const LLUUID& object_id); |
79 | void setSourceID(const LLUUID& source_id); | 79 | void setSourceID(const LLUUID& source_id); |
80 | LLViewerInventoryItem* getItem() const; | 80 | const LLViewerInventoryItem *getItem() const; // searches if not constructed with it |
81 | 81 | ||
82 | static LLPreview* find(const LLUUID& item_uuid); | 82 | static LLPreview* find(const LLUUID& item_uuid); |
83 | static LLPreview* show(const LLUUID& item_uuid, BOOL take_focus = TRUE ); | 83 | static LLPreview* show(const LLUUID& item_uuid, BOOL take_focus = TRUE ); |
@@ -154,6 +154,7 @@ protected: | |||
154 | static preview_map_t sInstances; | 154 | static preview_map_t sInstances; |
155 | LLUUID mNotecardInventoryID; | 155 | LLUUID mNotecardInventoryID; |
156 | LLUUID mObjectID; | 156 | LLUUID mObjectID; |
157 | LLPointer<LLViewerInventoryItem> mItem; | ||
157 | }; | 158 | }; |
158 | 159 | ||
159 | 160 | ||
diff --git a/linden/indra/newview/llpreviewanim.cpp b/linden/indra/newview/llpreviewanim.cpp index ae98fb0..2eb3b75 100644 --- a/linden/indra/newview/llpreviewanim.cpp +++ b/linden/indra/newview/llpreviewanim.cpp | |||
@@ -51,7 +51,7 @@ LLPreviewAnim::LLPreviewAnim(const std::string& name, const LLRect& rect, const | |||
51 | childSetAction("Anim play btn",playAnim,this); | 51 | childSetAction("Anim play btn",playAnim,this); |
52 | childSetAction("Anim audition btn",auditionAnim,this); | 52 | childSetAction("Anim audition btn",auditionAnim,this); |
53 | 53 | ||
54 | LLInventoryItem* item = getItem(); | 54 | const LLInventoryItem* item = getItem(); |
55 | 55 | ||
56 | childSetCommitCallback("desc", LLPreview::onText, this); | 56 | childSetCommitCallback("desc", LLPreview::onText, this); |
57 | childSetText("desc", item->getDescription()); | 57 | childSetText("desc", item->getDescription()); |
@@ -107,7 +107,7 @@ void LLPreviewAnim::endAnimCallback( void *userdata ) | |||
107 | void LLPreviewAnim::playAnim( void *userdata ) | 107 | void LLPreviewAnim::playAnim( void *userdata ) |
108 | { | 108 | { |
109 | LLPreviewAnim* self = (LLPreviewAnim*) userdata; | 109 | LLPreviewAnim* self = (LLPreviewAnim*) userdata; |
110 | LLInventoryItem *item = self->getItem(); | 110 | const LLInventoryItem *item = self->getItem(); |
111 | 111 | ||
112 | if(item) | 112 | if(item) |
113 | { | 113 | { |
@@ -144,7 +144,7 @@ void LLPreviewAnim::playAnim( void *userdata ) | |||
144 | void LLPreviewAnim::auditionAnim( void *userdata ) | 144 | void LLPreviewAnim::auditionAnim( void *userdata ) |
145 | { | 145 | { |
146 | LLPreviewAnim* self = (LLPreviewAnim*) userdata; | 146 | LLPreviewAnim* self = (LLPreviewAnim*) userdata; |
147 | LLInventoryItem *item = self->getItem(); | 147 | const LLInventoryItem *item = self->getItem(); |
148 | 148 | ||
149 | if(item) | 149 | if(item) |
150 | { | 150 | { |
@@ -180,7 +180,7 @@ void LLPreviewAnim::auditionAnim( void *userdata ) | |||
180 | void LLPreviewAnim::saveAnim( void *userdata ) | 180 | void LLPreviewAnim::saveAnim( void *userdata ) |
181 | { | 181 | { |
182 | LLPreviewAnim* self = (LLPreviewAnim*) userdata; | 182 | LLPreviewAnim* self = (LLPreviewAnim*) userdata; |
183 | LLInventoryItem *item = self->getItem(); | 183 | const LLInventoryItem *item = self->getItem(); |
184 | 184 | ||
185 | if(item) | 185 | if(item) |
186 | { | 186 | { |
@@ -206,7 +206,7 @@ void LLPreviewAnim::saveAnim( void *userdata ) | |||
206 | 206 | ||
207 | void LLPreviewAnim::onClose(bool app_quitting) | 207 | void LLPreviewAnim::onClose(bool app_quitting) |
208 | { | 208 | { |
209 | LLInventoryItem *item = getItem(); | 209 | const LLInventoryItem *item = getItem(); |
210 | 210 | ||
211 | if(item) | 211 | if(item) |
212 | { | 212 | { |
diff --git a/linden/indra/newview/llpreviewgesture.cpp b/linden/indra/newview/llpreviewgesture.cpp index 2bb0108..23e6aa5 100644 --- a/linden/indra/newview/llpreviewgesture.cpp +++ b/linden/indra/newview/llpreviewgesture.cpp | |||
@@ -524,7 +524,7 @@ BOOL LLPreviewGesture::postBuild() | |||
524 | addSounds(); | 524 | addSounds(); |
525 | 525 | ||
526 | 526 | ||
527 | LLInventoryItem* item = getItem(); | 527 | const LLInventoryItem* item = getItem(); |
528 | 528 | ||
529 | if (item) | 529 | if (item) |
530 | { | 530 | { |
@@ -850,7 +850,7 @@ void LLPreviewGesture::initDefaultGesture() | |||
850 | 850 | ||
851 | void LLPreviewGesture::loadAsset() | 851 | void LLPreviewGesture::loadAsset() |
852 | { | 852 | { |
853 | LLInventoryItem* item = getItem(); | 853 | const LLInventoryItem* item = getItem(); |
854 | if (!item) return; | 854 | if (!item) return; |
855 | 855 | ||
856 | LLUUID asset_id = item->getAssetUUID(); | 856 | LLUUID asset_id = item->getAssetUUID(); |
@@ -1120,7 +1120,7 @@ void LLPreviewGesture::saveIfNeeded() | |||
1120 | file.write((U8*)buffer, size); | 1120 | file.write((U8*)buffer, size); |
1121 | 1121 | ||
1122 | // Upload that asset to the database | 1122 | // Upload that asset to the database |
1123 | LLInventoryItem* item = getItem(); | 1123 | const LLInventoryItem* item = getItem(); |
1124 | if (item) | 1124 | if (item) |
1125 | { | 1125 | { |
1126 | std::string agent_url = gAgent.getRegion()->getCapability("UpdateGestureAgentInventory"); | 1126 | std::string agent_url = gAgent.getRegion()->getCapability("UpdateGestureAgentInventory"); |
diff --git a/linden/indra/newview/llpreviewlandmark.cpp b/linden/indra/newview/llpreviewlandmark.cpp index f4637dd..62d103b 100644 --- a/linden/indra/newview/llpreviewlandmark.cpp +++ b/linden/indra/newview/llpreviewlandmark.cpp | |||
@@ -70,7 +70,8 @@ LLPreviewLandmark::LLPreviewLandmark(const std::string& name, | |||
70 | const LLRect& rect, | 70 | const LLRect& rect, |
71 | const std::string& title, | 71 | const std::string& title, |
72 | const LLUUID& item_uuid, | 72 | const LLUUID& item_uuid, |
73 | BOOL show_keep_discard) | 73 | BOOL show_keep_discard, |
74 | LLViewerInventoryItem* inv_item) | ||
74 | : LLPreview(name, | 75 | : LLPreview(name, |
75 | LLRect(rect.mLeft, | 76 | LLRect(rect.mLeft, |
76 | rect.mTop, | 77 | rect.mTop, |
@@ -78,7 +79,10 @@ LLPreviewLandmark::LLPreviewLandmark(const std::string& name, | |||
78 | rect.mBottom), | 79 | rect.mBottom), |
79 | title, | 80 | title, |
80 | item_uuid, | 81 | item_uuid, |
81 | LLUUID::null), | 82 | LLUUID::null, // object id |
83 | FALSE, // allow resize | ||
84 | 0, 0, // min dimensions | ||
85 | inv_item), | ||
82 | mLandmark( NULL ) | 86 | mLandmark( NULL ) |
83 | { | 87 | { |
84 | 88 | ||
@@ -97,7 +101,7 @@ LLPreviewLandmark::LLPreviewLandmark(const std::string& name, | |||
97 | childSetAction("Teleport btn", onTeleportBtn,this); | 101 | childSetAction("Teleport btn", onTeleportBtn,this); |
98 | childSetAction("Show on Map btn", onMapBtn,this); | 102 | childSetAction("Show on Map btn", onMapBtn,this); |
99 | 103 | ||
100 | LLInventoryItem* item = getItem(); | 104 | const LLInventoryItem* item = getItem(); |
101 | 105 | ||
102 | childSetCommitCallback("desc", LLPreview::onText, this); | 106 | childSetCommitCallback("desc", LLPreview::onText, this); |
103 | childSetText("desc", item->getDescription()); | 107 | childSetText("desc", item->getDescription()); |
@@ -135,7 +139,7 @@ void LLPreviewLandmark::onTeleportBtn( void* userdata ) | |||
135 | LLPreviewLandmark* self = (LLPreviewLandmark*) userdata; | 139 | LLPreviewLandmark* self = (LLPreviewLandmark*) userdata; |
136 | gFocusMgr.setKeyboardFocus(NULL, NULL); | 140 | gFocusMgr.setKeyboardFocus(NULL, NULL); |
137 | 141 | ||
138 | LLInventoryItem *item = self->getItem(); | 142 | const LLInventoryItem *item = self->getItem(); |
139 | if(item) | 143 | if(item) |
140 | { | 144 | { |
141 | gAgent.teleportViaLandmark(item->getAssetUUID()); | 145 | gAgent.teleportViaLandmark(item->getAssetUUID()); |
@@ -181,7 +185,7 @@ void LLPreviewLandmark::getDegreesAndDist( F32* degrees, F64* horiz_dist, F64* v | |||
181 | 185 | ||
182 | const LLString& LLPreviewLandmark::getName() const | 186 | const LLString& LLPreviewLandmark::getName() const |
183 | { | 187 | { |
184 | LLInventoryItem *item = getItem(); | 188 | const LLInventoryItem *item = getItem(); |
185 | if (item) | 189 | if (item) |
186 | { | 190 | { |
187 | return item->getName(); | 191 | return item->getName(); |
@@ -210,7 +214,7 @@ void LLPreviewLandmark::draw() | |||
210 | { | 214 | { |
211 | if( getVisible() ) | 215 | if( getVisible() ) |
212 | { | 216 | { |
213 | LLInventoryItem *item = getItem(); | 217 | const LLInventoryItem *item = getItem(); |
214 | 218 | ||
215 | if( item && !mLandmark ) | 219 | if( item && !mLandmark ) |
216 | { | 220 | { |
@@ -248,7 +252,7 @@ void LLPreviewLandmark::draw() | |||
248 | 252 | ||
249 | void LLPreviewLandmark::loadAsset() | 253 | void LLPreviewLandmark::loadAsset() |
250 | { | 254 | { |
251 | LLInventoryItem *item = getItem(); | 255 | const LLInventoryItem *item = getItem(); |
252 | 256 | ||
253 | if( item && !mLandmark ) | 257 | if( item && !mLandmark ) |
254 | { | 258 | { |
@@ -259,7 +263,7 @@ void LLPreviewLandmark::loadAsset() | |||
259 | 263 | ||
260 | LLPreview::EAssetStatus LLPreviewLandmark::getAssetStatus() | 264 | LLPreview::EAssetStatus LLPreviewLandmark::getAssetStatus() |
261 | { | 265 | { |
262 | LLInventoryItem *item = getItem(); | 266 | const LLInventoryItem *item = getItem(); |
263 | if (item && gLandmarkList.assetExists(item->getAssetUUID())) | 267 | if (item && gLandmarkList.assetExists(item->getAssetUUID())) |
264 | { | 268 | { |
265 | mAssetStatus = PREVIEW_ASSET_LOADED; | 269 | mAssetStatus = PREVIEW_ASSET_LOADED; |
diff --git a/linden/indra/newview/llpreviewlandmark.h b/linden/indra/newview/llpreviewlandmark.h index 76ab452..ff3f88c 100644 --- a/linden/indra/newview/llpreviewlandmark.h +++ b/linden/indra/newview/llpreviewlandmark.h | |||
@@ -60,7 +60,8 @@ class LLPreviewLandmark : public LLPreview | |||
60 | public: | 60 | public: |
61 | LLPreviewLandmark(const std::string& name, const LLRect& rect, const std::string& title, | 61 | LLPreviewLandmark(const std::string& name, const LLRect& rect, const std::string& title, |
62 | const LLUUID& item_uuid, | 62 | const LLUUID& item_uuid, |
63 | BOOL show_keep_discard = FALSE); | 63 | BOOL show_keep_discard = FALSE, |
64 | LLViewerInventoryItem* inv_item = NULL); | ||
64 | virtual ~LLPreviewLandmark(); | 65 | virtual ~LLPreviewLandmark(); |
65 | 66 | ||
66 | /*virtual*/ void draw(); | 67 | /*virtual*/ void draw(); |
diff --git a/linden/indra/newview/llpreviewnotecard.cpp b/linden/indra/newview/llpreviewnotecard.cpp index 471fe8a..5943b3e 100644 --- a/linden/indra/newview/llpreviewnotecard.cpp +++ b/linden/indra/newview/llpreviewnotecard.cpp | |||
@@ -81,10 +81,12 @@ LLPreviewNotecard::LLPreviewNotecard(const std::string& name, | |||
81 | const LLUUID& item_id, | 81 | const LLUUID& item_id, |
82 | const LLUUID& object_id, | 82 | const LLUUID& object_id, |
83 | const LLUUID& asset_id, | 83 | const LLUUID& asset_id, |
84 | BOOL show_keep_discard) : | 84 | BOOL show_keep_discard, |
85 | LLPointer<LLViewerInventoryItem> inv_item) : | ||
85 | LLPreview(name, rect, title, item_id, object_id, TRUE, | 86 | LLPreview(name, rect, title, item_id, object_id, TRUE, |
86 | PREVIEW_MIN_WIDTH, | 87 | PREVIEW_MIN_WIDTH, |
87 | PREVIEW_MIN_HEIGHT), | 88 | PREVIEW_MIN_HEIGHT, |
89 | inv_item), | ||
88 | mAssetID( asset_id ), | 90 | mAssetID( asset_id ), |
89 | mNotecardItemID(item_id), | 91 | mNotecardItemID(item_id), |
90 | mObjectID(object_id) | 92 | mObjectID(object_id) |
@@ -104,7 +106,7 @@ LLPreviewNotecard::LLPreviewNotecard(const std::string& name, | |||
104 | 106 | ||
105 | if( mAssetID.isNull() ) | 107 | if( mAssetID.isNull() ) |
106 | { | 108 | { |
107 | LLInventoryItem* item = getItem(); | 109 | const LLInventoryItem* item = getItem(); |
108 | if( item ) | 110 | if( item ) |
109 | { | 111 | { |
110 | mAssetID = item->getAssetUUID(); | 112 | mAssetID = item->getAssetUUID(); |
@@ -121,7 +123,7 @@ LLPreviewNotecard::LLPreviewNotecard(const std::string& name, | |||
121 | 123 | ||
122 | childSetVisible("lock", FALSE); | 124 | childSetVisible("lock", FALSE); |
123 | 125 | ||
124 | LLInventoryItem* item = getItem(); | 126 | const LLInventoryItem* item = getItem(); |
125 | 127 | ||
126 | childSetCommitCallback("desc", LLPreview::onText, this); | 128 | childSetCommitCallback("desc", LLPreview::onText, this); |
127 | if (item) | 129 | if (item) |
@@ -260,7 +262,7 @@ void LLPreviewNotecard::refreshFromInventory() | |||
260 | void LLPreviewNotecard::loadAsset() | 262 | void LLPreviewNotecard::loadAsset() |
261 | { | 263 | { |
262 | // request the asset. | 264 | // request the asset. |
263 | LLInventoryItem* item = getItem(); | 265 | const LLInventoryItem* item = getItem(); |
264 | LLViewerTextEditor* editor = LLViewerUICtrlFactory::getViewerTextEditorByName(this, "Notecard Editor"); | 266 | LLViewerTextEditor* editor = LLViewerUICtrlFactory::getViewerTextEditorByName(this, "Notecard Editor"); |
265 | 267 | ||
266 | if (!editor) | 268 | if (!editor) |
@@ -384,7 +386,7 @@ void LLPreviewNotecard::onLoadComplete(LLVFS *vfs, | |||
384 | 386 | ||
385 | previewEditor->makePristine(); | 387 | previewEditor->makePristine(); |
386 | 388 | ||
387 | LLInventoryItem* item = preview->getItem(); | 389 | const LLInventoryItem* item = preview->getItem(); |
388 | BOOL modifiable = item && gAgent.allowOperation(PERM_MODIFY, | 390 | BOOL modifiable = item && gAgent.allowOperation(PERM_MODIFY, |
389 | item->getPermissions(), GP_OBJECT_MANIPULATE); | 391 | item->getPermissions(), GP_OBJECT_MANIPULATE); |
390 | preview->setEnabled(modifiable); | 392 | preview->setEnabled(modifiable); |
@@ -489,7 +491,7 @@ bool LLPreviewNotecard::saveIfNeeded(LLInventoryItem* copyitem) | |||
489 | file.setMaxSize(size); | 491 | file.setMaxSize(size); |
490 | file.write((U8*)buffer.c_str(), size); | 492 | file.write((U8*)buffer.c_str(), size); |
491 | 493 | ||
492 | LLInventoryItem* item = getItem(); | 494 | const LLInventoryItem* item = getItem(); |
493 | // save it out to database | 495 | // save it out to database |
494 | if (item) | 496 | if (item) |
495 | { | 497 | { |
diff --git a/linden/indra/newview/llpreviewnotecard.h b/linden/indra/newview/llpreviewnotecard.h index 89352e8..715abac 100644 --- a/linden/indra/newview/llpreviewnotecard.h +++ b/linden/indra/newview/llpreviewnotecard.h | |||
@@ -49,7 +49,8 @@ public: | |||
49 | const LLUUID& item_id, | 49 | const LLUUID& item_id, |
50 | const LLUUID& object_id = LLUUID::null, | 50 | const LLUUID& object_id = LLUUID::null, |
51 | const LLUUID& asset_id = LLUUID::null, | 51 | const LLUUID& asset_id = LLUUID::null, |
52 | BOOL show_keep_discard = FALSE); | 52 | BOOL show_keep_discard = FALSE, |
53 | LLPointer<LLViewerInventoryItem> inv_item = NULL); | ||
53 | 54 | ||
54 | // llpreview | 55 | // llpreview |
55 | virtual bool saveItem(LLPointer<LLInventoryItem>* itemptr); | 56 | virtual bool saveItem(LLPointer<LLInventoryItem>* itemptr); |
diff --git a/linden/indra/newview/llpreviewscript.cpp b/linden/indra/newview/llpreviewscript.cpp index 86c78a5..9f3533e 100644 --- a/linden/indra/newview/llpreviewscript.cpp +++ b/linden/indra/newview/llpreviewscript.cpp | |||
@@ -1097,7 +1097,7 @@ LLPreviewLSL::LLPreviewLSL(const std::string& name, const LLRect& rect, | |||
1097 | moveResizeHandleToFront(); | 1097 | moveResizeHandleToFront(); |
1098 | 1098 | ||
1099 | 1099 | ||
1100 | LLInventoryItem* item = getItem(); | 1100 | const LLInventoryItem* item = getItem(); |
1101 | 1101 | ||
1102 | childSetCommitCallback("desc", LLPreview::onText, this); | 1102 | childSetCommitCallback("desc", LLPreview::onText, this); |
1103 | childSetText("desc", item->getDescription()); | 1103 | childSetText("desc", item->getDescription()); |
@@ -1151,7 +1151,7 @@ void LLPreviewLSL::loadAsset() | |||
1151 | // *HACK: we poke into inventory to see if it's there, and if so, | 1151 | // *HACK: we poke into inventory to see if it's there, and if so, |
1152 | // then it might be part of the inventory library. If it's in the | 1152 | // then it might be part of the inventory library. If it's in the |
1153 | // library, then you can see the script, but not modify it. | 1153 | // library, then you can see the script, but not modify it. |
1154 | LLInventoryItem* item = gInventory.getItem(mItemUUID); | 1154 | const LLInventoryItem* item = gInventory.getItem(mItemUUID); |
1155 | BOOL is_library = item | 1155 | BOOL is_library = item |
1156 | && !gInventory.isObjectDescendentOf(mItemUUID, | 1156 | && !gInventory.isObjectDescendentOf(mItemUUID, |
1157 | gAgent.getInventoryRootID()); | 1157 | gAgent.getInventoryRootID()); |
@@ -1278,7 +1278,7 @@ void LLPreviewLSL::saveIfNeeded() | |||
1278 | fclose(fp); | 1278 | fclose(fp); |
1279 | fp = NULL; | 1279 | fp = NULL; |
1280 | 1280 | ||
1281 | LLInventoryItem *inv_item = getItem(); | 1281 | const LLInventoryItem *inv_item = getItem(); |
1282 | // save it out to asset server | 1282 | // save it out to asset server |
1283 | std::string url = gAgent.getRegion()->getCapability("UpdateScriptAgentInventory"); | 1283 | std::string url = gAgent.getRegion()->getCapability("UpdateScriptAgentInventory"); |
1284 | if(inv_item) | 1284 | if(inv_item) |
@@ -1393,8 +1393,8 @@ void LLPreviewLSL::onSaveComplete(const LLUUID& asset_uuid, void* user_data, S32 | |||
1393 | { | 1393 | { |
1394 | if (info) | 1394 | if (info) |
1395 | { | 1395 | { |
1396 | LLViewerInventoryItem* item; | 1396 | const LLViewerInventoryItem* item; |
1397 | item = (LLViewerInventoryItem*)gInventory.getItem(info->mItemUUID); | 1397 | item = (const LLViewerInventoryItem*)gInventory.getItem(info->mItemUUID); |
1398 | if(item) | 1398 | if(item) |
1399 | { | 1399 | { |
1400 | LLPointer<LLViewerInventoryItem> new_item = new LLViewerInventoryItem(item); | 1400 | LLPointer<LLViewerInventoryItem> new_item = new LLViewerInventoryItem(item); |
diff --git a/linden/indra/newview/llpreviewsound.cpp b/linden/indra/newview/llpreviewsound.cpp index 63a8226..4e12cd0 100644 --- a/linden/indra/newview/llpreviewsound.cpp +++ b/linden/indra/newview/llpreviewsound.cpp | |||
@@ -59,7 +59,7 @@ LLPreviewSound::LLPreviewSound(const std::string& name, const LLRect& rect, cons | |||
59 | button = LLUICtrlFactory::getButtonByName(this, "Sound audition btn"); | 59 | button = LLUICtrlFactory::getButtonByName(this, "Sound audition btn"); |
60 | button->setSoundFlags(LLView::SILENT); | 60 | button->setSoundFlags(LLView::SILENT); |
61 | 61 | ||
62 | LLInventoryItem* item = getItem(); | 62 | const LLInventoryItem* item = getItem(); |
63 | 63 | ||
64 | childSetCommitCallback("desc", LLPreview::onText, this); | 64 | childSetCommitCallback("desc", LLPreview::onText, this); |
65 | childSetText("desc", item->getDescription()); | 65 | childSetText("desc", item->getDescription()); |
@@ -85,7 +85,7 @@ LLPreviewSound::LLPreviewSound(const std::string& name, const LLRect& rect, cons | |||
85 | void LLPreviewSound::playSound( void *userdata ) | 85 | void LLPreviewSound::playSound( void *userdata ) |
86 | { | 86 | { |
87 | LLPreviewSound* self = (LLPreviewSound*) userdata; | 87 | LLPreviewSound* self = (LLPreviewSound*) userdata; |
88 | LLInventoryItem *item = self->getItem(); | 88 | const LLInventoryItem *item = self->getItem(); |
89 | 89 | ||
90 | if(item && gAudiop) | 90 | if(item && gAudiop) |
91 | { | 91 | { |
@@ -97,7 +97,7 @@ void LLPreviewSound::playSound( void *userdata ) | |||
97 | void LLPreviewSound::auditionSound( void *userdata ) | 97 | void LLPreviewSound::auditionSound( void *userdata ) |
98 | { | 98 | { |
99 | LLPreviewSound* self = (LLPreviewSound*) userdata; | 99 | LLPreviewSound* self = (LLPreviewSound*) userdata; |
100 | LLInventoryItem *item = self->getItem(); | 100 | const LLInventoryItem *item = self->getItem(); |
101 | 101 | ||
102 | if(item && gAudiop) | 102 | if(item && gAudiop) |
103 | { | 103 | { |
diff --git a/linden/indra/newview/llpreviewtexture.cpp b/linden/indra/newview/llpreviewtexture.cpp index b59846d..af727b9 100644 --- a/linden/indra/newview/llpreviewtexture.cpp +++ b/linden/indra/newview/llpreviewtexture.cpp | |||
@@ -67,7 +67,7 @@ LLPreviewTexture::LLPreviewTexture(const std::string& name, | |||
67 | mLastHeight(0), | 67 | mLastHeight(0), |
68 | mLastWidth(0) | 68 | mLastWidth(0) |
69 | { | 69 | { |
70 | LLInventoryItem *item = getItem(); | 70 | const LLInventoryItem *item = getItem(); |
71 | if(item) | 71 | if(item) |
72 | { | 72 | { |
73 | mImageID = item->getAssetUUID(); | 73 | mImageID = item->getAssetUUID(); |
@@ -177,7 +177,7 @@ void LLPreviewTexture::init() | |||
177 | 177 | ||
178 | if (!mCopyToInv) | 178 | if (!mCopyToInv) |
179 | { | 179 | { |
180 | LLInventoryItem* item = getItem(); | 180 | const LLInventoryItem* item = getItem(); |
181 | 181 | ||
182 | if (item) | 182 | if (item) |
183 | { | 183 | { |
diff --git a/linden/indra/newview/llselectmgr.cpp b/linden/indra/newview/llselectmgr.cpp index ec7ba78..5086432 100644 --- a/linden/indra/newview/llselectmgr.cpp +++ b/linden/indra/newview/llselectmgr.cpp | |||
@@ -121,7 +121,7 @@ LLColor4 LLSelectMgr::sHighlightParentColor; | |||
121 | LLColor4 LLSelectMgr::sHighlightChildColor; | 121 | LLColor4 LLSelectMgr::sHighlightChildColor; |
122 | LLColor4 LLSelectMgr::sContextSilhouetteColor; | 122 | LLColor4 LLSelectMgr::sContextSilhouetteColor; |
123 | 123 | ||
124 | static LLObjectSelection* get_null_object_selection(); | 124 | static LLObjectSelection *get_null_object_selection(); |
125 | template<> | 125 | template<> |
126 | const LLHandle<LLObjectSelection>::NullFunc | 126 | const LLHandle<LLObjectSelection>::NullFunc |
127 | LLHandle<LLObjectSelection>::sNullFunc = get_null_object_selection; | 127 | LLHandle<LLObjectSelection>::sNullFunc = get_null_object_selection; |
@@ -145,14 +145,26 @@ struct LLDeRezInfo | |||
145 | // | 145 | // |
146 | 146 | ||
147 | 147 | ||
148 | static LLPointer<LLObjectSelection> sNullSelection; | ||
149 | |||
148 | // | 150 | // |
149 | // Functions | 151 | // Functions |
150 | // | 152 | // |
151 | 153 | ||
152 | LLObjectSelection* get_null_object_selection() | 154 | void LLSelectMgr::cleanupGlobals() |
155 | { | ||
156 | delete gSelectMgr; | ||
157 | gSelectMgr = NULL; | ||
158 | sNullSelection = NULL; | ||
159 | } | ||
160 | |||
161 | LLObjectSelection *get_null_object_selection() | ||
153 | { | 162 | { |
154 | static LLObjectSelection null_selection; | 163 | if (sNullSelection.isNull()) |
155 | return &null_selection;; | 164 | { |
165 | sNullSelection = new LLObjectSelection; | ||
166 | } | ||
167 | return sNullSelection; | ||
156 | } | 168 | } |
157 | 169 | ||
158 | 170 | ||
diff --git a/linden/indra/newview/llselectmgr.h b/linden/indra/newview/llselectmgr.h index 96db8e5..c344181 100644 --- a/linden/indra/newview/llselectmgr.h +++ b/linden/indra/newview/llselectmgr.h | |||
@@ -114,9 +114,12 @@ typedef enum e_selection_type | |||
114 | class LLObjectSelection : public std::list<LLSelectNode*>, public LLRefCount | 114 | class LLObjectSelection : public std::list<LLSelectNode*>, public LLRefCount |
115 | { | 115 | { |
116 | friend class LLSelectMgr; | 116 | friend class LLSelectMgr; |
117 | |||
118 | protected: | ||
119 | ~LLObjectSelection(); | ||
120 | |||
117 | public: | 121 | public: |
118 | LLObjectSelection(); | 122 | LLObjectSelection(); |
119 | virtual ~LLObjectSelection(); | ||
120 | 123 | ||
121 | void updateEffects(); | 124 | void updateEffects(); |
122 | 125 | ||
@@ -215,6 +218,8 @@ public: | |||
215 | LLSelectMgr(); | 218 | LLSelectMgr(); |
216 | ~LLSelectMgr(); | 219 | ~LLSelectMgr(); |
217 | 220 | ||
221 | static void cleanupGlobals(); | ||
222 | |||
218 | // LLEditMenuHandler interface | 223 | // LLEditMenuHandler interface |
219 | virtual BOOL canUndo(); | 224 | virtual BOOL canUndo(); |
220 | virtual void undo(); | 225 | virtual void undo(); |
diff --git a/linden/indra/newview/llspatialpartition.cpp b/linden/indra/newview/llspatialpartition.cpp index d62a93e..dbda813 100644 --- a/linden/indra/newview/llspatialpartition.cpp +++ b/linden/indra/newview/llspatialpartition.cpp | |||
@@ -1717,7 +1717,7 @@ void LLSpatialPartition::processImagery(LLCamera* camera) | |||
1717 | cube_map->initGL(); | 1717 | cube_map->initGL(); |
1718 | } | 1718 | } |
1719 | 1719 | ||
1720 | if (gPipeline.mCubeBuffer == NULL) | 1720 | if (gPipeline.mCubeBuffer.isNull()) |
1721 | { | 1721 | { |
1722 | gPipeline.mCubeBuffer = new LLCubeMap(); | 1722 | gPipeline.mCubeBuffer = new LLCubeMap(); |
1723 | gPipeline.mCubeBuffer->initGL(); | 1723 | gPipeline.mCubeBuffer->initGL(); |
diff --git a/linden/indra/newview/llspatialpartition.h b/linden/indra/newview/llspatialpartition.h index 5f6d257..3046b73 100644 --- a/linden/indra/newview/llspatialpartition.h +++ b/linden/indra/newview/llspatialpartition.h | |||
@@ -166,7 +166,6 @@ public: | |||
166 | } eSetStateMode; | 166 | } eSetStateMode; |
167 | 167 | ||
168 | LLSpatialGroup(OctreeNode* node, LLSpatialPartition* part); | 168 | LLSpatialGroup(OctreeNode* node, LLSpatialPartition* part); |
169 | virtual ~LLSpatialGroup(); | ||
170 | 169 | ||
171 | BOOL isDead() { return isState(DEAD); } | 170 | BOOL isDead() { return isState(DEAD); } |
172 | BOOL isState(U32 state) const { return mState & state ? TRUE : FALSE; } | 171 | BOOL isState(U32 state) const { return mState & state ? TRUE : FALSE; } |
@@ -210,6 +209,8 @@ public: | |||
210 | virtual void handleChildRemoval(const OctreeNode* parent, const OctreeNode* child); | 209 | virtual void handleChildRemoval(const OctreeNode* parent, const OctreeNode* child); |
211 | 210 | ||
212 | protected: | 211 | protected: |
212 | virtual ~LLSpatialGroup(); | ||
213 | |||
213 | U32 mState; | 214 | U32 mState; |
214 | S32 mLODHash; | 215 | S32 mLODHash; |
215 | static S32 sLODSeed; | 216 | static S32 sLODSeed; |
@@ -343,11 +344,13 @@ public: | |||
343 | // class for creating bridges between spatial partitions | 344 | // class for creating bridges between spatial partitions |
344 | class LLSpatialBridge : public LLDrawable, public LLSpatialPartition | 345 | class LLSpatialBridge : public LLDrawable, public LLSpatialPartition |
345 | { | 346 | { |
347 | protected: | ||
348 | ~LLSpatialBridge(); | ||
349 | |||
346 | public: | 350 | public: |
347 | typedef std::vector<LLPointer<LLSpatialBridge> > bridge_vector_t; | 351 | typedef std::vector<LLPointer<LLSpatialBridge> > bridge_vector_t; |
348 | 352 | ||
349 | LLSpatialBridge(LLDrawable* root, U32 data_mask); | 353 | LLSpatialBridge(LLDrawable* root, U32 data_mask); |
350 | virtual ~LLSpatialBridge(); | ||
351 | 354 | ||
352 | virtual BOOL isSpatialBridge() const { return TRUE; } | 355 | virtual BOOL isSpatialBridge() const { return TRUE; } |
353 | 356 | ||
diff --git a/linden/indra/newview/llstartup.cpp b/linden/indra/newview/llstartup.cpp index 54161c0..4af02cb 100644 --- a/linden/indra/newview/llstartup.cpp +++ b/linden/indra/newview/llstartup.cpp | |||
@@ -505,23 +505,23 @@ BOOL idle_startup() | |||
505 | #if LL_DARWIN | 505 | #if LL_DARWIN |
506 | // For Mac OS, we store both the shared libraries and the runtime files (chrome/, plugins/, etc) in | 506 | // For Mac OS, we store both the shared libraries and the runtime files (chrome/, plugins/, etc) in |
507 | // Second Life.app/Contents/MacOS/. This matches the way Firefox is distributed on the Mac. | 507 | // Second Life.app/Contents/MacOS/. This matches the way Firefox is distributed on the Mac. |
508 | std::string profileBaseDir(gDirUtilp->getExecutableDir()); | 508 | std::string componentDir(gDirUtilp->getExecutableDir()); |
509 | #elif LL_WINDOWS | 509 | #elif LL_WINDOWS |
510 | std::string profileBaseDir( gDirUtilp->getExpandedFilename( LL_PATH_APP_SETTINGS, "" ) ); | 510 | std::string componentDir( gDirUtilp->getExpandedFilename( LL_PATH_APP_SETTINGS, "" ) ); |
511 | profileBaseDir += gDirUtilp->getDirDelimiter(); | 511 | componentDir += gDirUtilp->getDirDelimiter(); |
512 | #ifdef LL_DEBUG | 512 | #ifdef LL_DEBUG |
513 | profileBaseDir += "mozilla_debug"; | 513 | componentDir += "mozilla_debug"; |
514 | #else | 514 | #else |
515 | profileBaseDir += "mozilla"; | 515 | componentDir += "mozilla"; |
516 | #endif | 516 | #endif |
517 | #elif LL_LINUX | 517 | #elif LL_LINUX |
518 | std::string profileBaseDir( gDirUtilp->getExpandedFilename( LL_PATH_APP_SETTINGS, "" ) ); | 518 | std::string componentDir( gDirUtilp->getExpandedFilename( LL_PATH_APP_SETTINGS, "" ) ); |
519 | profileBaseDir += gDirUtilp->getDirDelimiter(); | 519 | componentDir += gDirUtilp->getDirDelimiter(); |
520 | profileBaseDir += "mozilla-runtime-linux-i686"; | 520 | componentDir += "mozilla-runtime-linux-i686"; |
521 | #else | 521 | #else |
522 | std::string profileBaseDir( gDirUtilp->getExpandedFilename( LL_PATH_APP_SETTINGS, "" ) ); | 522 | std::string componentDir( gDirUtilp->getExpandedFilename( LL_PATH_APP_SETTINGS, "" ) ); |
523 | profileBaseDir += gDirUtilp->getDirDelimiter(); | 523 | componentDir += gDirUtilp->getDirDelimiter(); |
524 | profileBaseDir += "mozilla"; | 524 | componentDir += "mozilla"; |
525 | #endif | 525 | #endif |
526 | 526 | ||
527 | #if LL_LINUX | 527 | #if LL_LINUX |
@@ -531,7 +531,10 @@ BOOL idle_startup() | |||
531 | // and crashness. (SL-35450) | 531 | // and crashness. (SL-35450) |
532 | std::string saved_locale = setlocale(LC_ALL, NULL); | 532 | std::string saved_locale = setlocale(LC_ALL, NULL); |
533 | #endif // LL_LINUX | 533 | #endif // LL_LINUX |
534 | LLMozLib::getInstance()->init( profileBaseDir, gDirUtilp->getExpandedFilename( LL_PATH_MOZILLA_PROFILE, "" ) ); | 534 | |
535 | // initialize Mozilla - pass in executable dir, location of extra dirs (chrome/, greprefs/, plugins/ etc.) and path to profile dir) | ||
536 | LLMozLib::getInstance()->init( gDirUtilp->getExecutableDir(), componentDir, gDirUtilp->getExpandedFilename( LL_PATH_MOZILLA_PROFILE, "" ) ); | ||
537 | |||
535 | #if LL_LINUX | 538 | #if LL_LINUX |
536 | setlocale(LC_ALL, saved_locale.c_str() ); | 539 | setlocale(LC_ALL, saved_locale.c_str() ); |
537 | #endif // LL_LINUX | 540 | #endif // LL_LINUX |
@@ -2804,25 +2807,26 @@ void update_app(BOOL mandatory, const std::string& auth_msg) | |||
2804 | LLStringBase<char>::format_map_t args; | 2807 | LLStringBase<char>::format_map_t args; |
2805 | args["[MESSAGE]"] = msg; | 2808 | args["[MESSAGE]"] = msg; |
2806 | 2809 | ||
2807 | BOOL *mandatoryp = new BOOL(mandatory); | 2810 | // represent a bool as a null/non-null pointer |
2811 | void *mandatoryp = mandatory ? &mandatory : NULL; | ||
2808 | 2812 | ||
2809 | #if LL_WINDOWS | 2813 | #if LL_WINDOWS |
2810 | if (mandatory) | 2814 | if (mandatory) |
2811 | { | 2815 | { |
2812 | gViewerWindow->alertXml("DownloadWindowsMandatory", args, | 2816 | gViewerWindow->alertXml("DownloadWindowsMandatory", args, |
2813 | update_dialog_callback, | 2817 | update_dialog_callback, |
2814 | (void *)mandatoryp); | 2818 | mandatoryp); |
2815 | } | 2819 | } |
2816 | else | 2820 | else |
2817 | { | 2821 | { |
2818 | #if LL_RELEASE_FOR_DOWNLOAD | 2822 | #if LL_RELEASE_FOR_DOWNLOAD |
2819 | gViewerWindow->alertXml("DownloadWindowsReleaseForDownload", args, | 2823 | gViewerWindow->alertXml("DownloadWindowsReleaseForDownload", args, |
2820 | update_dialog_callback, | 2824 | update_dialog_callback, |
2821 | (void *)mandatoryp); | 2825 | mandatoryp); |
2822 | #else | 2826 | #else |
2823 | gViewerWindow->alertXml("DownloadWindows", args, | 2827 | gViewerWindow->alertXml("DownloadWindows", args, |
2824 | update_dialog_callback, | 2828 | update_dialog_callback, |
2825 | (void *)mandatoryp); | 2829 | mandatoryp); |
2826 | #endif | 2830 | #endif |
2827 | } | 2831 | } |
2828 | #else | 2832 | #else |
@@ -2830,18 +2834,18 @@ void update_app(BOOL mandatory, const std::string& auth_msg) | |||
2830 | { | 2834 | { |
2831 | gViewerWindow->alertXml("DownloadMacMandatory", args, | 2835 | gViewerWindow->alertXml("DownloadMacMandatory", args, |
2832 | update_dialog_callback, | 2836 | update_dialog_callback, |
2833 | (void *)mandatoryp); | 2837 | mandatoryp); |
2834 | } | 2838 | } |
2835 | else | 2839 | else |
2836 | { | 2840 | { |
2837 | #if LL_RELEASE_FOR_DOWNLOAD | 2841 | #if LL_RELEASE_FOR_DOWNLOAD |
2838 | gViewerWindow->alertXml("DownloadMacReleaseForDownload", args, | 2842 | gViewerWindow->alertXml("DownloadMacReleaseForDownload", args, |
2839 | update_dialog_callback, | 2843 | update_dialog_callback, |
2840 | (void *)mandatoryp); | 2844 | mandatoryp); |
2841 | #else | 2845 | #else |
2842 | gViewerWindow->alertXml("DownloadMac", args, | 2846 | gViewerWindow->alertXml("DownloadMac", args, |
2843 | update_dialog_callback, | 2847 | update_dialog_callback, |
2844 | (void *)mandatoryp); | 2848 | mandatoryp); |
2845 | #endif | 2849 | #endif |
2846 | } | 2850 | } |
2847 | #endif | 2851 | #endif |
@@ -2852,7 +2856,7 @@ void update_app(BOOL mandatory, const std::string& auth_msg) | |||
2852 | void update_dialog_callback(S32 option, void *userdata) | 2856 | void update_dialog_callback(S32 option, void *userdata) |
2853 | { | 2857 | { |
2854 | std::string update_exe_path; | 2858 | std::string update_exe_path; |
2855 | BOOL mandatory = *(BOOL *)userdata; | 2859 | BOOL mandatory = userdata != NULL; |
2856 | 2860 | ||
2857 | #if !LL_RELEASE_FOR_DOWNLOAD | 2861 | #if !LL_RELEASE_FOR_DOWNLOAD |
2858 | if (option == 2) | 2862 | if (option == 2) |
diff --git a/linden/indra/newview/lltexturefetch.cpp b/linden/indra/newview/lltexturefetch.cpp index f281207..5cdc854 100644 --- a/linden/indra/newview/lltexturefetch.cpp +++ b/linden/indra/newview/lltexturefetch.cpp | |||
@@ -1257,6 +1257,8 @@ LLTextureFetch::LLTextureFetch(LLTextureCache* cache, bool threaded) | |||
1257 | : LLWorkerThread("TextureFetch", threaded), | 1257 | : LLWorkerThread("TextureFetch", threaded), |
1258 | mDebugCount(0), | 1258 | mDebugCount(0), |
1259 | mDebugPause(FALSE), | 1259 | mDebugPause(FALSE), |
1260 | mPacketCount(0), | ||
1261 | mBadPacketCount(0), | ||
1260 | mQueueMutex(getAPRPool()), | 1262 | mQueueMutex(getAPRPool()), |
1261 | mTextureCache(cache) | 1263 | mTextureCache(cache) |
1262 | { | 1264 | { |
diff --git a/linden/indra/newview/lltoolbrush.cpp b/linden/indra/newview/lltoolbrush.cpp index f2f338e..a1b9526 100644 --- a/linden/indra/newview/lltoolbrush.cpp +++ b/linden/indra/newview/lltoolbrush.cpp | |||
@@ -417,7 +417,7 @@ void LLToolBrushLand::handleSelect() | |||
417 | // if (!mBrushSelected) | 417 | // if (!mBrushSelected) |
418 | { | 418 | { |
419 | mLastShowParcelOwners = gSavedSettings.getBOOL("ShowParcelOwners"); | 419 | mLastShowParcelOwners = gSavedSettings.getBOOL("ShowParcelOwners"); |
420 | gSavedSettings.setBOOL("ShowParcelOwners", TRUE); | 420 | gSavedSettings.setBOOL("ShowParcelOwners", mLastShowParcelOwners); |
421 | mBrushSelected = TRUE; | 421 | mBrushSelected = TRUE; |
422 | } | 422 | } |
423 | } | 423 | } |
@@ -430,6 +430,7 @@ void LLToolBrushLand::handleDeselect() | |||
430 | gEditMenuHandler = NULL; | 430 | gEditMenuHandler = NULL; |
431 | } | 431 | } |
432 | gFloaterTools->setStatusText(""); | 432 | gFloaterTools->setStatusText(""); |
433 | mLastShowParcelOwners = gSavedSettings.getBOOL("ShowParcelOwners"); | ||
433 | gSavedSettings.setBOOL("ShowParcelOwners", mLastShowParcelOwners); | 434 | gSavedSettings.setBOOL("ShowParcelOwners", mLastShowParcelOwners); |
434 | gParcelMgr->setSelectionVisible(TRUE); | 435 | gParcelMgr->setSelectionVisible(TRUE); |
435 | mBrushSelected = FALSE; | 436 | mBrushSelected = FALSE; |
diff --git a/linden/indra/newview/lltoolcomp.cpp b/linden/indra/newview/lltoolcomp.cpp index 2c2c0fe..fd1152d 100644 --- a/linden/indra/newview/lltoolcomp.cpp +++ b/linden/indra/newview/lltoolcomp.cpp | |||
@@ -246,7 +246,14 @@ void LLToolCompTranslate::pickCallback(S32 x, S32 y, MASK mask) | |||
246 | { | 246 | { |
247 | gEditMenuHandler = gSelectMgr; | 247 | gEditMenuHandler = gSelectMgr; |
248 | } | 248 | } |
249 | if( LLManip::LL_NO_PART != gToolTranslate->mManip->getHighlightedPart() ) | 249 | |
250 | BOOL can_move = gToolTranslate->mManip->getSelection()->getObjectCount() != 0; | ||
251 | for (LLViewerObject* objectp = gToolTranslate->mManip->getSelection()->getFirstObject(); objectp; objectp = gToolTranslate->mManip->getSelection()->getNextObject()) | ||
252 | { | ||
253 | can_move = can_move && objectp->permMove() && (objectp->permModify() || gSavedSettings.getBOOL("SelectLinkedSet")); | ||
254 | } | ||
255 | |||
256 | if( LLManip::LL_NO_PART != gToolTranslate->mManip->getHighlightedPart() && can_move) | ||
250 | { | 257 | { |
251 | gToolTranslate->setCurrentTool( gToolTranslate->mManip ); | 258 | gToolTranslate->setCurrentTool( gToolTranslate->mManip ); |
252 | gToolTranslate->mManip->handleMouseDownOnPart( x, y, mask ); | 259 | gToolTranslate->mManip->handleMouseDownOnPart( x, y, mask ); |
diff --git a/linden/indra/newview/lltoolgrab.cpp b/linden/indra/newview/lltoolgrab.cpp index b56e762..d6f1f0e 100644 --- a/linden/indra/newview/lltoolgrab.cpp +++ b/linden/indra/newview/lltoolgrab.cpp | |||
@@ -95,7 +95,11 @@ LLToolGrab::~LLToolGrab() | |||
95 | // virtual | 95 | // virtual |
96 | void LLToolGrab::handleSelect() | 96 | void LLToolGrab::handleSelect() |
97 | { | 97 | { |
98 | gFloaterTools->setStatusText("Drag to move objects, Ctrl to lift, Ctrl-Shift to spin"); | 98 | if(gFloaterTools) |
99 | { | ||
100 | // viewer can crash during startup if we don't check. | ||
101 | gFloaterTools->setStatusText("Drag to move objects, Ctrl to lift, Ctrl-Shift to spin"); | ||
102 | } | ||
99 | gGrabBtnVertical = FALSE; | 103 | gGrabBtnVertical = FALSE; |
100 | gGrabBtnSpin = FALSE; | 104 | gGrabBtnSpin = FALSE; |
101 | } | 105 | } |
diff --git a/linden/indra/newview/lltoolmgr.cpp b/linden/indra/newview/lltoolmgr.cpp index 069bdac..8ce8111 100644 --- a/linden/indra/newview/lltoolmgr.cpp +++ b/linden/indra/newview/lltoolmgr.cpp | |||
@@ -206,6 +206,9 @@ LLToolMgr::~LLToolMgr() | |||
206 | delete gToolPie; | 206 | delete gToolPie; |
207 | gToolPie = NULL; | 207 | gToolPie = NULL; |
208 | 208 | ||
209 | delete gToolInspect; | ||
210 | gToolInspect = NULL; | ||
211 | |||
209 | delete gToolGun; | 212 | delete gToolGun; |
210 | gToolGun = NULL; | 213 | gToolGun = NULL; |
211 | 214 | ||
diff --git a/linden/indra/newview/lltoolselectland.cpp b/linden/indra/newview/lltoolselectland.cpp index 855efd2..3f0d7ba 100644 --- a/linden/indra/newview/lltoolselectland.cpp +++ b/linden/indra/newview/lltoolselectland.cpp | |||
@@ -218,7 +218,7 @@ void LLToolSelectLand::handleSelect() | |||
218 | { | 218 | { |
219 | gFloaterTools->setStatusText("Click and drag to select land"); | 219 | gFloaterTools->setStatusText("Click and drag to select land"); |
220 | mLastShowParcelOwners = gSavedSettings.getBOOL("ShowParcelOwners"); | 220 | mLastShowParcelOwners = gSavedSettings.getBOOL("ShowParcelOwners"); |
221 | gSavedSettings.setBOOL("ShowParcelOwners", TRUE); | 221 | gSavedSettings.setBOOL("ShowParcelOwners", mLastShowParcelOwners); |
222 | } | 222 | } |
223 | 223 | ||
224 | 224 | ||
@@ -226,6 +226,7 @@ void LLToolSelectLand::handleDeselect() | |||
226 | { | 226 | { |
227 | gFloaterTools->setStatusText(""); | 227 | gFloaterTools->setStatusText(""); |
228 | mSelection = NULL; | 228 | mSelection = NULL; |
229 | mLastShowParcelOwners = gSavedSettings.getBOOL("ShowParcelOwners"); | ||
229 | //gParcelMgr->deselectLand(); | 230 | //gParcelMgr->deselectLand(); |
230 | gSavedSettings.setBOOL("ShowParcelOwners", mLastShowParcelOwners); | 231 | gSavedSettings.setBOOL("ShowParcelOwners", mLastShowParcelOwners); |
231 | } | 232 | } |
diff --git a/linden/indra/newview/llviewerinventory.h b/linden/indra/newview/llviewerinventory.h index c60f0e6..513834f 100644 --- a/linden/indra/newview/llviewerinventory.h +++ b/linden/indra/newview/llviewerinventory.h | |||
@@ -191,7 +191,6 @@ protected: | |||
191 | class LLInventoryCallback : public LLRefCount | 191 | class LLInventoryCallback : public LLRefCount |
192 | { | 192 | { |
193 | public: | 193 | public: |
194 | virtual ~LLInventoryCallback() {} | ||
195 | virtual void fire(const LLUUID& inv_item) = 0; | 194 | virtual void fire(const LLUUID& inv_item) = 0; |
196 | }; | 195 | }; |
197 | 196 | ||
@@ -206,8 +205,11 @@ class RezAttachmentCallback : public LLInventoryCallback | |||
206 | { | 205 | { |
207 | public: | 206 | public: |
208 | RezAttachmentCallback(LLViewerJointAttachment *attachmentp); | 207 | RezAttachmentCallback(LLViewerJointAttachment *attachmentp); |
209 | ~RezAttachmentCallback(); | ||
210 | void fire(const LLUUID& inv_item); | 208 | void fire(const LLUUID& inv_item); |
209 | |||
210 | protected: | ||
211 | ~RezAttachmentCallback(); | ||
212 | |||
211 | private: | 213 | private: |
212 | LLViewerJointAttachment* mAttach; | 214 | LLViewerJointAttachment* mAttach; |
213 | }; | 215 | }; |
diff --git a/linden/indra/newview/llviewermenu.cpp b/linden/indra/newview/llviewermenu.cpp index 1ff995e..4119573 100644 --- a/linden/indra/newview/llviewermenu.cpp +++ b/linden/indra/newview/llviewermenu.cpp | |||
@@ -1428,6 +1428,8 @@ void init_server_menu(LLMenuGL* menu) | |||
1428 | menu->createJumpKeys(); | 1428 | menu->createJumpKeys(); |
1429 | } | 1429 | } |
1430 | 1430 | ||
1431 | static std::vector<LLPointer<view_listener_t> > sMenus; | ||
1432 | |||
1431 | //----------------------------------------------------------------------------- | 1433 | //----------------------------------------------------------------------------- |
1432 | // cleanup_menus() | 1434 | // cleanup_menus() |
1433 | //----------------------------------------------------------------------------- | 1435 | //----------------------------------------------------------------------------- |
@@ -1435,6 +1437,32 @@ void cleanup_menus() | |||
1435 | { | 1437 | { |
1436 | delete gMenuParcelObserver; | 1438 | delete gMenuParcelObserver; |
1437 | gMenuParcelObserver = NULL; | 1439 | gMenuParcelObserver = NULL; |
1440 | |||
1441 | delete gPieSelf; | ||
1442 | gPieSelf = NULL; | ||
1443 | |||
1444 | delete gPieAvatar; | ||
1445 | gPieAvatar = NULL; | ||
1446 | |||
1447 | delete gPieObject; | ||
1448 | gPieObject = NULL; | ||
1449 | |||
1450 | delete gPieAttachment; | ||
1451 | gPieAttachment = NULL; | ||
1452 | |||
1453 | delete gPieLand; | ||
1454 | gPieLand = NULL; | ||
1455 | |||
1456 | delete gMenuBarView; | ||
1457 | gMenuBarView = NULL; | ||
1458 | |||
1459 | delete gPopupMenuView; | ||
1460 | gPopupMenuView = NULL; | ||
1461 | |||
1462 | delete gMenuHolder; | ||
1463 | gMenuHolder = NULL; | ||
1464 | |||
1465 | sMenus.clear(); | ||
1438 | } | 1466 | } |
1439 | 1467 | ||
1440 | //----------------------------------------------------------------------------- | 1468 | //----------------------------------------------------------------------------- |
@@ -3002,24 +3030,6 @@ class LLHelpMOTD : public view_listener_t | |||
3002 | } | 3030 | } |
3003 | }; | 3031 | }; |
3004 | 3032 | ||
3005 | class LLHelpLiveHelp : public view_listener_t | ||
3006 | { | ||
3007 | bool handleEvent(LLPointer<LLEvent> event, const LLSD& userdata) | ||
3008 | { | ||
3009 | // the session_id of a 911 session will always be this agent's session id | ||
3010 | static LLUUID session_id(LLUUID::null); | ||
3011 | if (session_id.isNull()) | ||
3012 | { | ||
3013 | session_id.generate(); | ||
3014 | } | ||
3015 | gIMView->setFloaterOpen(TRUE); | ||
3016 | LLDynamicArray<LLUUID> members; | ||
3017 | members.put(gAgent.getID()); | ||
3018 | gIMView->addSession("Help Request", IM_SESSION_911_START, session_id, members); //xui: translate | ||
3019 | return true; | ||
3020 | } | ||
3021 | }; | ||
3022 | |||
3023 | // | 3033 | // |
3024 | // Major mode switching | 3034 | // Major mode switching |
3025 | // | 3035 | // |
@@ -4530,11 +4540,7 @@ class LLToolsStopAllAnimations : public view_listener_t | |||
4530 | 4540 | ||
4531 | if (!avatarp) return true; | 4541 | if (!avatarp) return true; |
4532 | 4542 | ||
4533 | LLVOAvatar::AnimSourceIterator anim_it = avatarp->mAnimationSources.begin(); | 4543 | avatarp->deactivateAllMotions(); |
4534 | for (;anim_it != avatarp->mAnimationSources.end(); ++anim_it) | ||
4535 | { | ||
4536 | avatarp->stopMotion( anim_it->second, TRUE ); | ||
4537 | } | ||
4538 | 4544 | ||
4539 | avatarp->processAnimationStateChanges(); | 4545 | avatarp->processAnimationStateChanges(); |
4540 | return true; | 4546 | return true; |
@@ -7525,199 +7531,204 @@ class LLToolsSelectTool : public view_listener_t | |||
7525 | } | 7531 | } |
7526 | }; | 7532 | }; |
7527 | 7533 | ||
7534 | static void addMenu(view_listener_t *menu, const char *name) | ||
7535 | { | ||
7536 | sMenus.push_back(menu); | ||
7537 | menu->registerListener(gMenuHolder, name); | ||
7538 | } | ||
7539 | |||
7528 | void initialize_menus() | 7540 | void initialize_menus() |
7529 | { | 7541 | { |
7530 | // File menu | 7542 | // File menu |
7531 | init_menu_file(); | 7543 | init_menu_file(); |
7532 | 7544 | ||
7533 | // Edit menu | 7545 | // Edit menu |
7534 | (new LLEditUndo())->registerListener(gMenuHolder, "Edit.Undo"); | 7546 | addMenu(new LLEditUndo(), "Edit.Undo"); |
7535 | (new LLEditRedo())->registerListener(gMenuHolder, "Edit.Redo"); | 7547 | addMenu(new LLEditRedo(), "Edit.Redo"); |
7536 | (new LLEditCut())->registerListener(gMenuHolder, "Edit.Cut"); | 7548 | addMenu(new LLEditCut(), "Edit.Cut"); |
7537 | (new LLEditCopy())->registerListener(gMenuHolder, "Edit.Copy"); | 7549 | addMenu(new LLEditCopy(), "Edit.Copy"); |
7538 | (new LLEditPaste())->registerListener(gMenuHolder, "Edit.Paste"); | 7550 | addMenu(new LLEditPaste(), "Edit.Paste"); |
7539 | (new LLEditDelete())->registerListener(gMenuHolder, "Edit.Delete"); | 7551 | addMenu(new LLEditDelete(), "Edit.Delete"); |
7540 | (new LLEditSearch())->registerListener(gMenuHolder, "Edit.Search"); | 7552 | addMenu(new LLEditSearch(), "Edit.Search"); |
7541 | (new LLEditSelectAll())->registerListener(gMenuHolder, "Edit.SelectAll"); | 7553 | addMenu(new LLEditSelectAll(), "Edit.SelectAll"); |
7542 | (new LLEditDeselect())->registerListener(gMenuHolder, "Edit.Deselect"); | 7554 | addMenu(new LLEditDeselect(), "Edit.Deselect"); |
7543 | (new LLEditDuplicate())->registerListener(gMenuHolder, "Edit.Duplicate"); | 7555 | addMenu(new LLEditDuplicate(), "Edit.Duplicate"); |
7544 | (new LLEditTakeOff())->registerListener(gMenuHolder, "Edit.TakeOff"); | 7556 | addMenu(new LLEditTakeOff(), "Edit.TakeOff"); |
7545 | 7557 | ||
7546 | (new LLEditEnableUndo())->registerListener(gMenuHolder, "Edit.EnableUndo"); | 7558 | addMenu(new LLEditEnableUndo(), "Edit.EnableUndo"); |
7547 | (new LLEditEnableRedo())->registerListener(gMenuHolder, "Edit.EnableRedo"); | 7559 | addMenu(new LLEditEnableRedo(), "Edit.EnableRedo"); |
7548 | (new LLEditEnableCut())->registerListener(gMenuHolder, "Edit.EnableCut"); | 7560 | addMenu(new LLEditEnableCut(), "Edit.EnableCut"); |
7549 | (new LLEditEnableCopy())->registerListener(gMenuHolder, "Edit.EnableCopy"); | 7561 | addMenu(new LLEditEnableCopy(), "Edit.EnableCopy"); |
7550 | (new LLEditEnablePaste())->registerListener(gMenuHolder, "Edit.EnablePaste"); | 7562 | addMenu(new LLEditEnablePaste(), "Edit.EnablePaste"); |
7551 | (new LLEditEnableDelete())->registerListener(gMenuHolder, "Edit.EnableDelete"); | 7563 | addMenu(new LLEditEnableDelete(), "Edit.EnableDelete"); |
7552 | (new LLEditEnableSelectAll())->registerListener(gMenuHolder, "Edit.EnableSelectAll"); | 7564 | addMenu(new LLEditEnableSelectAll(), "Edit.EnableSelectAll"); |
7553 | (new LLEditEnableDeselect())->registerListener(gMenuHolder, "Edit.EnableDeselect"); | 7565 | addMenu(new LLEditEnableDeselect(), "Edit.EnableDeselect"); |
7554 | (new LLEditEnableDuplicate())->registerListener(gMenuHolder, "Edit.EnableDuplicate"); | 7566 | addMenu(new LLEditEnableDuplicate(), "Edit.EnableDuplicate"); |
7555 | (new LLEditEnableTakeOff())->registerListener(gMenuHolder, "Edit.EnableTakeOff"); | 7567 | addMenu(new LLEditEnableTakeOff(), "Edit.EnableTakeOff"); |
7556 | (new LLEditEnableCustomizeAvatar())->registerListener(gMenuHolder, "Edit.EnableCustomizeAvatar"); | 7568 | addMenu(new LLEditEnableCustomizeAvatar(), "Edit.EnableCustomizeAvatar"); |
7557 | 7569 | ||
7558 | // View menu | 7570 | // View menu |
7559 | (new LLViewMouselook())->registerListener(gMenuHolder, "View.Mouselook"); | 7571 | addMenu(new LLViewMouselook(), "View.Mouselook"); |
7560 | (new LLViewBuildMode())->registerListener(gMenuHolder, "View.BuildMode"); | 7572 | addMenu(new LLViewBuildMode(), "View.BuildMode"); |
7561 | (new LLViewResetView())->registerListener(gMenuHolder, "View.ResetView"); | 7573 | addMenu(new LLViewResetView(), "View.ResetView"); |
7562 | (new LLViewLookAtLastChatter())->registerListener(gMenuHolder, "View.LookAtLastChatter"); | 7574 | addMenu(new LLViewLookAtLastChatter(), "View.LookAtLastChatter"); |
7563 | (new LLViewShowHoverTips())->registerListener(gMenuHolder, "View.ShowHoverTips"); | 7575 | addMenu(new LLViewShowHoverTips(), "View.ShowHoverTips"); |
7564 | (new LLViewHighlightTransparent())->registerListener(gMenuHolder, "View.HighlightTransparent"); | 7576 | addMenu(new LLViewHighlightTransparent(), "View.HighlightTransparent"); |
7565 | (new LLViewToggleBeacon())->registerListener(gMenuHolder, "View.ToggleBeacon"); | 7577 | addMenu(new LLViewToggleBeacon(), "View.ToggleBeacon"); |
7566 | (new LLViewToggleRenderType())->registerListener(gMenuHolder, "View.ToggleRenderType"); | 7578 | addMenu(new LLViewToggleRenderType(), "View.ToggleRenderType"); |
7567 | (new LLViewShowHUDAttachments())->registerListener(gMenuHolder, "View.ShowHUDAttachments"); | 7579 | addMenu(new LLViewShowHUDAttachments(), "View.ShowHUDAttachments"); |
7568 | (new LLViewZoomOut())->registerListener(gMenuHolder, "View.ZoomOut"); | 7580 | addMenu(new LLViewZoomOut(), "View.ZoomOut"); |
7569 | (new LLViewZoomIn())->registerListener(gMenuHolder, "View.ZoomIn"); | 7581 | addMenu(new LLViewZoomIn(), "View.ZoomIn"); |
7570 | (new LLViewZoomDefault())->registerListener(gMenuHolder, "View.ZoomDefault"); | 7582 | addMenu(new LLViewZoomDefault(), "View.ZoomDefault"); |
7571 | (new LLViewFullscreen())->registerListener(gMenuHolder, "View.Fullscreen"); | 7583 | addMenu(new LLViewFullscreen(), "View.Fullscreen"); |
7572 | (new LLViewDefaultUISize())->registerListener(gMenuHolder, "View.DefaultUISize"); | 7584 | addMenu(new LLViewDefaultUISize(), "View.DefaultUISize"); |
7573 | 7585 | ||
7574 | (new LLViewEnableMouselook())->registerListener(gMenuHolder, "View.EnableMouselook"); | 7586 | addMenu(new LLViewEnableMouselook(), "View.EnableMouselook"); |
7575 | (new LLViewEnableLastChatter())->registerListener(gMenuHolder, "View.EnableLastChatter"); | 7587 | addMenu(new LLViewEnableLastChatter(), "View.EnableLastChatter"); |
7576 | 7588 | ||
7577 | (new LLViewCheckBuildMode())->registerListener(gMenuHolder, "View.CheckBuildMode"); | 7589 | addMenu(new LLViewCheckBuildMode(), "View.CheckBuildMode"); |
7578 | (new LLViewCheckShowHoverTips())->registerListener(gMenuHolder, "View.CheckShowHoverTips"); | 7590 | addMenu(new LLViewCheckShowHoverTips(), "View.CheckShowHoverTips"); |
7579 | (new LLViewCheckHighlightTransparent())->registerListener(gMenuHolder, "View.CheckHighlightTransparent"); | 7591 | addMenu(new LLViewCheckHighlightTransparent(), "View.CheckHighlightTransparent"); |
7580 | (new LLViewCheckBeaconEnabled())->registerListener(gMenuHolder, "View.CheckBeaconEnabled"); | 7592 | addMenu(new LLViewCheckBeaconEnabled(), "View.CheckBeaconEnabled"); |
7581 | (new LLViewCheckRenderType())->registerListener(gMenuHolder, "View.CheckRenderType"); | 7593 | addMenu(new LLViewCheckRenderType(), "View.CheckRenderType"); |
7582 | (new LLViewCheckHUDAttachments())->registerListener(gMenuHolder, "View.CheckHUDAttachments"); | 7594 | addMenu(new LLViewCheckHUDAttachments(), "View.CheckHUDAttachments"); |
7583 | 7595 | ||
7584 | // World menu | 7596 | // World menu |
7585 | (new LLWorldChat())->registerListener(gMenuHolder, "World.Chat"); | 7597 | addMenu(new LLWorldChat(), "World.Chat"); |
7586 | (new LLWorldStartGesture())->registerListener(gMenuHolder, "World.StartGesture"); | 7598 | addMenu(new LLWorldStartGesture(), "World.StartGesture"); |
7587 | (new LLWorldAlwaysRun())->registerListener(gMenuHolder, "World.AlwaysRun"); | 7599 | addMenu(new LLWorldAlwaysRun(), "World.AlwaysRun"); |
7588 | (new LLWorldFly())->registerListener(gMenuHolder, "World.Fly"); | 7600 | addMenu(new LLWorldFly(), "World.Fly"); |
7589 | (new LLWorldCreateLandmark())->registerListener(gMenuHolder, "World.CreateLandmark"); | 7601 | addMenu(new LLWorldCreateLandmark(), "World.CreateLandmark"); |
7590 | (new LLWorldSetHomeLocation())->registerListener(gMenuHolder, "World.SetHomeLocation"); | 7602 | addMenu(new LLWorldSetHomeLocation(), "World.SetHomeLocation"); |
7591 | (new LLWorldTeleportHome())->registerListener(gMenuHolder, "World.TeleportHome"); | 7603 | addMenu(new LLWorldTeleportHome(), "World.TeleportHome"); |
7592 | (new LLWorldSetAway())->registerListener(gMenuHolder, "World.SetAway"); | 7604 | addMenu(new LLWorldSetAway(), "World.SetAway"); |
7593 | (new LLWorldSetBusy())->registerListener(gMenuHolder, "World.SetBusy"); | 7605 | addMenu(new LLWorldSetBusy(), "World.SetBusy"); |
7594 | 7606 | ||
7595 | (new LLWorldEnableCreateLandmark())->registerListener(gMenuHolder, "World.EnableCreateLandmark"); | 7607 | addMenu(new LLWorldEnableCreateLandmark(), "World.EnableCreateLandmark"); |
7596 | (new LLWorldEnableSetHomeLocation())->registerListener(gMenuHolder, "World.EnableSetHomeLocation"); | 7608 | addMenu(new LLWorldEnableSetHomeLocation(), "World.EnableSetHomeLocation"); |
7597 | (new LLWorldEnableTeleportHome())->registerListener(gMenuHolder, "World.EnableTeleportHome"); | 7609 | addMenu(new LLWorldEnableTeleportHome(), "World.EnableTeleportHome"); |
7598 | (new LLWorldEnableBuyLand())->registerListener(gMenuHolder, "World.EnableBuyLand"); | 7610 | addMenu(new LLWorldEnableBuyLand(), "World.EnableBuyLand"); |
7599 | 7611 | ||
7600 | (new LLWorldCheckAlwaysRun())->registerListener(gMenuHolder, "World.CheckAlwaysRun"); | 7612 | addMenu(new LLWorldCheckAlwaysRun(), "World.CheckAlwaysRun"); |
7601 | 7613 | ||
7602 | (new LLWorldForceSun())->registerListener(gMenuHolder, "World.ForceSun"); | 7614 | addMenu(new LLWorldForceSun(), "World.ForceSun"); |
7603 | 7615 | ||
7604 | // Tools menu | 7616 | // Tools menu |
7605 | (new LLToolsSelectTool())->registerListener(gMenuHolder, "Tools.SelectTool"); | 7617 | addMenu(new LLToolsSelectTool(), "Tools.SelectTool"); |
7606 | (new LLToolsSelectOnlyMyObjects())->registerListener(gMenuHolder, "Tools.SelectOnlyMyObjects"); | 7618 | addMenu(new LLToolsSelectOnlyMyObjects(), "Tools.SelectOnlyMyObjects"); |
7607 | (new LLToolsSelectOnlyMovableObjects())->registerListener(gMenuHolder, "Tools.SelectOnlyMovableObjects"); | 7619 | addMenu(new LLToolsSelectOnlyMovableObjects(), "Tools.SelectOnlyMovableObjects"); |
7608 | (new LLToolsSelectBySurrounding())->registerListener(gMenuHolder, "Tools.SelectBySurrounding"); | 7620 | addMenu(new LLToolsSelectBySurrounding(), "Tools.SelectBySurrounding"); |
7609 | (new LLToolsShowHiddenSelection())->registerListener(gMenuHolder, "Tools.ShowHiddenSelection"); | 7621 | addMenu(new LLToolsShowHiddenSelection(), "Tools.ShowHiddenSelection"); |
7610 | (new LLToolsShowSelectionLightRadius())->registerListener(gMenuHolder, "Tools.ShowSelectionLightRadius"); | 7622 | addMenu(new LLToolsShowSelectionLightRadius(), "Tools.ShowSelectionLightRadius"); |
7611 | (new LLToolsSnapObjectXY())->registerListener(gMenuHolder, "Tools.SnapObjectXY"); | 7623 | addMenu(new LLToolsSnapObjectXY(), "Tools.SnapObjectXY"); |
7612 | (new LLToolsUseSelectionForGrid())->registerListener(gMenuHolder, "Tools.UseSelectionForGrid"); | 7624 | addMenu(new LLToolsUseSelectionForGrid(), "Tools.UseSelectionForGrid"); |
7613 | (new LLToolsLink())->registerListener(gMenuHolder, "Tools.Link"); | 7625 | addMenu(new LLToolsLink(), "Tools.Link"); |
7614 | (new LLToolsUnlink())->registerListener(gMenuHolder, "Tools.Unlink"); | 7626 | addMenu(new LLToolsUnlink(), "Tools.Unlink"); |
7615 | (new LLToolsStopAllAnimations())->registerListener(gMenuHolder, "Tools.StopAllAnimations"); | 7627 | addMenu(new LLToolsStopAllAnimations(), "Tools.StopAllAnimations"); |
7616 | (new LLToolsLookAtSelection())->registerListener(gMenuHolder, "Tools.LookAtSelection"); | 7628 | addMenu(new LLToolsLookAtSelection(), "Tools.LookAtSelection"); |
7617 | (new LLToolsBuyOrTake())->registerListener(gMenuHolder, "Tools.BuyOrTake"); | 7629 | addMenu(new LLToolsBuyOrTake(), "Tools.BuyOrTake"); |
7618 | (new LLToolsTakeCopy())->registerListener(gMenuHolder, "Tools.TakeCopy"); | 7630 | addMenu(new LLToolsTakeCopy(), "Tools.TakeCopy"); |
7619 | (new LLToolsSaveToInventory())->registerListener(gMenuHolder, "Tools.SaveToInventory"); | 7631 | addMenu(new LLToolsSaveToInventory(), "Tools.SaveToInventory"); |
7620 | (new LLToolsSaveToObjectInventory())->registerListener(gMenuHolder, "Tools.SaveToObjectInventory"); | 7632 | addMenu(new LLToolsSaveToObjectInventory(), "Tools.SaveToObjectInventory"); |
7621 | (new LLToolsSelectedScriptAction())->registerListener(gMenuHolder, "Tools.SelectedScriptAction"); | 7633 | addMenu(new LLToolsSelectedScriptAction(), "Tools.SelectedScriptAction"); |
7622 | 7634 | ||
7623 | (new LLToolsEnableToolNotPie())->registerListener(gMenuHolder, "Tools.EnableToolNotPie"); | 7635 | addMenu(new LLToolsEnableToolNotPie(), "Tools.EnableToolNotPie"); |
7624 | (new LLToolsEnableLink())->registerListener(gMenuHolder, "Tools.EnableLink"); | 7636 | addMenu(new LLToolsEnableLink(), "Tools.EnableLink"); |
7625 | (new LLToolsEnableUnlink())->registerListener(gMenuHolder, "Tools.EnableUnlink"); | 7637 | addMenu(new LLToolsEnableUnlink(), "Tools.EnableUnlink"); |
7626 | (new LLToolsEnableBuyOrTake())->registerListener(gMenuHolder, "Tools.EnableBuyOrTake"); | 7638 | addMenu(new LLToolsEnableBuyOrTake(), "Tools.EnableBuyOrTake"); |
7627 | (new LLToolsEnableTakeCopy())->registerListener(gMenuHolder, "Tools.EnableTakeCopy"); | 7639 | addMenu(new LLToolsEnableTakeCopy(), "Tools.EnableTakeCopy"); |
7628 | (new LLToolsEnableSaveToInventory())->registerListener(gMenuHolder, "Tools.SaveToInventory"); | 7640 | addMenu(new LLToolsEnableSaveToInventory(), "Tools.SaveToInventory"); |
7629 | (new LLToolsEnableSaveToObjectInventory())->registerListener(gMenuHolder, "Tools.SaveToObjectInventory"); | 7641 | addMenu(new LLToolsEnableSaveToObjectInventory(), "Tools.SaveToObjectInventory"); |
7630 | 7642 | ||
7631 | /*(new LLToolsVisibleBuyObject())->registerListener(gMenuHolder, "Tools.VisibleBuyObject"); | 7643 | /*addMenu(new LLToolsVisibleBuyObject(), "Tools.VisibleBuyObject"); |
7632 | (new LLToolsVisibleTakeObject())->registerListener(gMenuHolder, "Tools.VisibleTakeObject");*/ | 7644 | addMenu(new LLToolsVisibleTakeObject(), "Tools.VisibleTakeObject");*/ |
7633 | 7645 | ||
7634 | // Help menu | 7646 | // Help menu |
7635 | (new LLHelpLiveHelp())->registerListener(gMenuHolder, "Help.LiveHelp"); | 7647 | addMenu(new LLHelpMOTD(), "Help.MOTD"); |
7636 | (new LLHelpMOTD())->registerListener(gMenuHolder, "Help.MOTD"); | ||
7637 | 7648 | ||
7638 | // Self pie menu | 7649 | // Self pie menu |
7639 | (new LLSelfStandUp())->registerListener(gMenuHolder, "Self.StandUp"); | 7650 | addMenu(new LLSelfStandUp(), "Self.StandUp"); |
7640 | (new LLSelfRemoveAllAttachments())->registerListener(gMenuHolder, "Self.RemoveAllAttachments"); | 7651 | addMenu(new LLSelfRemoveAllAttachments(), "Self.RemoveAllAttachments"); |
7641 | 7652 | ||
7642 | (new LLSelfEnableStandUp())->registerListener(gMenuHolder, "Self.EnableStandUp"); | 7653 | addMenu(new LLSelfEnableStandUp(), "Self.EnableStandUp"); |
7643 | (new LLSelfEnableRemoveAllAttachments())->registerListener(gMenuHolder, "Self.EnableRemoveAllAttachments"); | 7654 | addMenu(new LLSelfEnableRemoveAllAttachments(), "Self.EnableRemoveAllAttachments"); |
7644 | 7655 | ||
7645 | // Avatar pie menu | 7656 | // Avatar pie menu |
7646 | (new LLObjectMute())->registerListener(gMenuHolder, "Avatar.Mute"); | 7657 | addMenu(new LLObjectMute(), "Avatar.Mute"); |
7647 | (new LLAvatarAddFriend())->registerListener(gMenuHolder, "Avatar.AddFriend"); | 7658 | addMenu(new LLAvatarAddFriend(), "Avatar.AddFriend"); |
7648 | (new LLAvatarFreeze())->registerListener(gMenuHolder, "Avatar.Freeze"); | 7659 | addMenu(new LLAvatarFreeze(), "Avatar.Freeze"); |
7649 | (new LLAvatarDebug())->registerListener(gMenuHolder, "Avatar.Debug"); | 7660 | addMenu(new LLAvatarDebug(), "Avatar.Debug"); |
7650 | (new LLAvatarVisibleDebug())->registerListener(gMenuHolder, "Avatar.VisibleDebug"); | 7661 | addMenu(new LLAvatarVisibleDebug(), "Avatar.VisibleDebug"); |
7651 | (new LLAvatarEnableDebug())->registerListener(gMenuHolder, "Avatar.EnableDebug"); | 7662 | addMenu(new LLAvatarEnableDebug(), "Avatar.EnableDebug"); |
7652 | (new LLAvatarGiveCard())->registerListener(gMenuHolder, "Avatar.GiveCard"); | 7663 | addMenu(new LLAvatarGiveCard(), "Avatar.GiveCard"); |
7653 | (new LLAvatarEject())->registerListener(gMenuHolder, "Avatar.Eject"); | 7664 | addMenu(new LLAvatarEject(), "Avatar.Eject"); |
7654 | (new LLAvatarSendIM())->registerListener(gMenuHolder, "Avatar.SendIM"); | 7665 | addMenu(new LLAvatarSendIM(), "Avatar.SendIM"); |
7655 | 7666 | ||
7656 | (new LLObjectEnableMute())->registerListener(gMenuHolder, "Avatar.EnableMute"); | 7667 | addMenu(new LLObjectEnableMute(), "Avatar.EnableMute"); |
7657 | (new LLAvatarEnableAddFriend())->registerListener(gMenuHolder, "Avatar.EnableAddFriend"); | 7668 | addMenu(new LLAvatarEnableAddFriend(), "Avatar.EnableAddFriend"); |
7658 | (new LLAvatarEnableFreezeEject())->registerListener(gMenuHolder, "Avatar.EnableFreezeEject"); | 7669 | addMenu(new LLAvatarEnableFreezeEject(), "Avatar.EnableFreezeEject"); |
7659 | 7670 | ||
7660 | // Object pie menu | 7671 | // Object pie menu |
7661 | (new LLObjectOpen())->registerListener(gMenuHolder, "Object.Open"); | 7672 | addMenu(new LLObjectOpen(), "Object.Open"); |
7662 | (new LLObjectBuild())->registerListener(gMenuHolder, "Object.Build"); | 7673 | addMenu(new LLObjectBuild(), "Object.Build"); |
7663 | (new LLObjectTouch())->registerListener(gMenuHolder, "Object.Touch"); | 7674 | addMenu(new LLObjectTouch(), "Object.Touch"); |
7664 | (new LLObjectSitOrStand())->registerListener(gMenuHolder, "Object.SitOrStand"); | 7675 | addMenu(new LLObjectSitOrStand(), "Object.SitOrStand"); |
7665 | (new LLObjectDelete())->registerListener(gMenuHolder, "Object.Delete"); | 7676 | addMenu(new LLObjectDelete(), "Object.Delete"); |
7666 | (new LLObjectAttachToAvatar())->registerListener(gMenuHolder, "Object.AttachToAvatar"); | 7677 | addMenu(new LLObjectAttachToAvatar(), "Object.AttachToAvatar"); |
7667 | (new LLObjectReturn())->registerListener(gMenuHolder, "Object.Return"); | 7678 | addMenu(new LLObjectReturn(), "Object.Return"); |
7668 | (new LLObjectReportAbuse())->registerListener(gMenuHolder, "Object.ReportAbuse"); | 7679 | addMenu(new LLObjectReportAbuse(), "Object.ReportAbuse"); |
7669 | (new LLObjectMute())->registerListener(gMenuHolder, "Object.Mute"); | 7680 | addMenu(new LLObjectMute(), "Object.Mute"); |
7670 | (new LLObjectBuy())->registerListener(gMenuHolder, "Object.Buy"); | 7681 | addMenu(new LLObjectBuy(), "Object.Buy"); |
7671 | (new LLObjectEdit())->registerListener(gMenuHolder, "Object.Edit"); | 7682 | addMenu(new LLObjectEdit(), "Object.Edit"); |
7672 | (new LLObjectInspect())->registerListener(gMenuHolder, "Object.Inspect"); | 7683 | addMenu(new LLObjectInspect(), "Object.Inspect"); |
7673 | 7684 | ||
7674 | (new LLObjectEnableOpen())->registerListener(gMenuHolder, "Object.EnableOpen"); | 7685 | addMenu(new LLObjectEnableOpen(), "Object.EnableOpen"); |
7675 | (new LLObjectEnableTouch())->registerListener(gMenuHolder, "Object.EnableTouch"); | 7686 | addMenu(new LLObjectEnableTouch(), "Object.EnableTouch"); |
7676 | (new LLObjectEnableSitOrStand())->registerListener(gMenuHolder, "Object.EnableSitOrStand"); | 7687 | addMenu(new LLObjectEnableSitOrStand(), "Object.EnableSitOrStand"); |
7677 | (new LLObjectEnableDelete())->registerListener(gMenuHolder, "Object.EnableDelete"); | 7688 | addMenu(new LLObjectEnableDelete(), "Object.EnableDelete"); |
7678 | (new LLObjectEnableWear())->registerListener(gMenuHolder, "Object.EnableWear"); | 7689 | addMenu(new LLObjectEnableWear(), "Object.EnableWear"); |
7679 | (new LLObjectEnableReturn())->registerListener(gMenuHolder, "Object.EnableReturn"); | 7690 | addMenu(new LLObjectEnableReturn(), "Object.EnableReturn"); |
7680 | (new LLObjectEnableReportAbuse())->registerListener(gMenuHolder, "Object.EnableReportAbuse"); | 7691 | addMenu(new LLObjectEnableReportAbuse(), "Object.EnableReportAbuse"); |
7681 | (new LLObjectEnableMute())->registerListener(gMenuHolder, "Object.EnableMute"); | 7692 | addMenu(new LLObjectEnableMute(), "Object.EnableMute"); |
7682 | (new LLObjectEnableBuy())->registerListener(gMenuHolder, "Object.EnableBuy"); | 7693 | addMenu(new LLObjectEnableBuy(), "Object.EnableBuy"); |
7683 | 7694 | ||
7684 | /*(new LLObjectVisibleTouch())->registerListener(gMenuHolder, "Object.VisibleTouch"); | 7695 | /*addMenu(new LLObjectVisibleTouch(), "Object.VisibleTouch"); |
7685 | (new LLObjectVisibleCustomTouch())->registerListener(gMenuHolder, "Object.VisibleCustomTouch"); | 7696 | addMenu(new LLObjectVisibleCustomTouch(), "Object.VisibleCustomTouch"); |
7686 | (new LLObjectVisibleStandUp())->registerListener(gMenuHolder, "Object.VisibleStandUp"); | 7697 | addMenu(new LLObjectVisibleStandUp(), "Object.VisibleStandUp"); |
7687 | (new LLObjectVisibleSitHere())->registerListener(gMenuHolder, "Object.VisibleSitHere"); | 7698 | addMenu(new LLObjectVisibleSitHere(), "Object.VisibleSitHere"); |
7688 | (new LLObjectVisibleCustomSit())->registerListener(gMenuHolder, "Object.VisibleCustomSit");*/ | 7699 | addMenu(new LLObjectVisibleCustomSit(), "Object.VisibleCustomSit");*/ |
7689 | 7700 | ||
7690 | // Attachment pie menu | 7701 | // Attachment pie menu |
7691 | (new LLAttachmentDrop())->registerListener(gMenuHolder, "Attachment.Drop"); | 7702 | addMenu(new LLAttachmentDrop(), "Attachment.Drop"); |
7692 | (new LLAttachmentDetach())->registerListener(gMenuHolder, "Attachment.Detach"); | 7703 | addMenu(new LLAttachmentDetach(), "Attachment.Detach"); |
7693 | 7704 | ||
7694 | (new LLAttachmentEnableDrop())->registerListener(gMenuHolder, "Attachment.EnableDrop"); | 7705 | addMenu(new LLAttachmentEnableDrop(), "Attachment.EnableDrop"); |
7695 | (new LLAttachmentEnableDetach())->registerListener(gMenuHolder, "Attachment.EnableDetach"); | 7706 | addMenu(new LLAttachmentEnableDetach(), "Attachment.EnableDetach"); |
7696 | 7707 | ||
7697 | // Land pie menu | 7708 | // Land pie menu |
7698 | (new LLLandBuild())->registerListener(gMenuHolder, "Land.Build"); | 7709 | addMenu(new LLLandBuild(), "Land.Build"); |
7699 | (new LLLandSit())->registerListener(gMenuHolder, "Land.Sit"); | 7710 | addMenu(new LLLandSit(), "Land.Sit"); |
7700 | (new LLLandBuyPass())->registerListener(gMenuHolder, "Land.BuyPass"); | 7711 | addMenu(new LLLandBuyPass(), "Land.BuyPass"); |
7701 | (new LLLandEdit())->registerListener(gMenuHolder, "Land.Edit"); | 7712 | addMenu(new LLLandEdit(), "Land.Edit"); |
7702 | 7713 | ||
7703 | (new LLLandEnableBuyPass())->registerListener(gMenuHolder, "Land.EnableBuyPass"); | 7714 | addMenu(new LLLandEnableBuyPass(), "Land.EnableBuyPass"); |
7704 | 7715 | ||
7705 | // Generic actions | 7716 | // Generic actions |
7706 | (new LLShowFloater())->registerListener(gMenuHolder, "ShowFloater"); | 7717 | addMenu(new LLShowFloater(), "ShowFloater"); |
7707 | (new LLPromptShowURL())->registerListener(gMenuHolder, "PromptShowURL"); | 7718 | addMenu(new LLPromptShowURL(), "PromptShowURL"); |
7708 | (new LLPromptShowFile())->registerListener(gMenuHolder, "PromptShowFile"); | 7719 | addMenu(new LLPromptShowFile(), "PromptShowFile"); |
7709 | (new LLShowAgentProfile())->registerListener(gMenuHolder, "ShowAgentProfile"); | 7720 | addMenu(new LLShowAgentProfile(), "ShowAgentProfile"); |
7710 | (new LLShowAgentGroups())->registerListener(gMenuHolder, "ShowAgentGroups"); | 7721 | addMenu(new LLShowAgentGroups(), "ShowAgentGroups"); |
7711 | (new LLToggleControl())->registerListener(gMenuHolder, "ToggleControl"); | 7722 | addMenu(new LLToggleControl(), "ToggleControl"); |
7712 | 7723 | ||
7713 | (new LLGoToObject())->registerListener(gMenuHolder, "GoToObject"); | 7724 | addMenu(new LLGoToObject(), "GoToObject"); |
7714 | (new LLPayObject())->registerListener(gMenuHolder, "PayObject"); | 7725 | addMenu(new LLPayObject(), "PayObject"); |
7715 | 7726 | ||
7716 | (new LLEnablePayObject())->registerListener(gMenuHolder, "EnablePayObject"); | 7727 | addMenu(new LLEnablePayObject(), "EnablePayObject"); |
7717 | (new LLEnableEdit())->registerListener(gMenuHolder, "EnableEdit"); | 7728 | addMenu(new LLEnableEdit(), "EnableEdit"); |
7718 | 7729 | ||
7719 | (new LLFloaterVisible())->registerListener(gMenuHolder, "FloaterVisible"); | 7730 | addMenu(new LLFloaterVisible(), "FloaterVisible"); |
7720 | (new LLSomethingSelected())->registerListener(gMenuHolder, "SomethingSelected"); | 7731 | addMenu(new LLSomethingSelected(), "SomethingSelected"); |
7721 | (new LLSomethingSelectedNoHUD())->registerListener(gMenuHolder, "SomethingSelectedNoHUD"); | 7732 | addMenu(new LLSomethingSelectedNoHUD(), "SomethingSelectedNoHUD"); |
7722 | (new LLEditableSelected())->registerListener(gMenuHolder, "EditableSelected"); | 7733 | addMenu(new LLEditableSelected(), "EditableSelected"); |
7723 | } | 7734 | } |
diff --git a/linden/indra/newview/llviewermessage.cpp b/linden/indra/newview/llviewermessage.cpp index 4973989..87ff5aa 100644 --- a/linden/indra/newview/llviewermessage.cpp +++ b/linden/indra/newview/llviewermessage.cpp | |||
@@ -787,15 +787,15 @@ void open_offer(const std::vector<LLUUID>& items, const std::string& from_name) | |||
787 | if (check_offer_throttle(from_name, false)) | 787 | if (check_offer_throttle(from_name, false)) |
788 | { | 788 | { |
789 | // I'm not sure this is a good idea. JC | 789 | // I'm not sure this is a good idea. JC |
790 | // bool show_keep_discard = item->getPermissions().getCreator() != gAgent.getID(); | 790 | bool show_keep_discard = item->getPermissions().getCreator() != gAgent.getID(); |
791 | bool show_keep_discard = true; | 791 | //bool show_keep_discard = true; |
792 | switch(item->getType()) | 792 | switch(item->getType()) |
793 | { | 793 | { |
794 | case LLAssetType::AT_NOTECARD: | 794 | case LLAssetType::AT_NOTECARD: |
795 | open_notecard(*it, LLString("Note: ") + item->getName(), show_keep_discard, LLUUID::null, FALSE); | 795 | open_notecard((LLViewerInventoryItem*)item, LLString("Note: ") + item->getName(), LLUUID::null, show_keep_discard, LLUUID::null, FALSE); |
796 | break; | 796 | break; |
797 | case LLAssetType::AT_LANDMARK: | 797 | case LLAssetType::AT_LANDMARK: |
798 | open_landmark(*it, LLString("Landmark: ") + item->getName(), show_keep_discard, LLUUID::null, FALSE); | 798 | open_landmark((LLViewerInventoryItem*)item, LLString("Landmark: ") + item->getName(), show_keep_discard, LLUUID::null, FALSE); |
799 | break; | 799 | break; |
800 | case LLAssetType::AT_TEXTURE: | 800 | case LLAssetType::AT_TEXTURE: |
801 | open_texture(*it, LLString("Texture: ") + item->getName(), show_keep_discard, LLUUID::null, FALSE); | 801 | open_texture(*it, LLString("Texture: ") + item->getName(), show_keep_discard, LLUUID::null, FALSE); |
@@ -850,7 +850,7 @@ void inventory_offer_mute_callback(const LLUUID& blocked_id, | |||
850 | const char* first_name, | 850 | const char* first_name, |
851 | const char* last_name, | 851 | const char* last_name, |
852 | BOOL is_group, | 852 | BOOL is_group, |
853 | void*) | 853 | void* user_data) |
854 | { | 854 | { |
855 | LLString from_name; | 855 | LLString from_name; |
856 | LLMute::EType type; | 856 | LLMute::EType type; |
@@ -874,10 +874,35 @@ void inventory_offer_mute_callback(const LLUUID& blocked_id, | |||
874 | gFloaterMute->show(); | 874 | gFloaterMute->show(); |
875 | gFloaterMute->selectMute(blocked_id); | 875 | gFloaterMute->selectMute(blocked_id); |
876 | } | 876 | } |
877 | |||
878 | // purge the offer queue of any previously queued inventory offers from the same source. | ||
879 | LLView::child_list_t notification_queue(*(gNotifyBoxView->getChildList())); | ||
880 | for(LLView::child_list_iter_t iter = notification_queue.begin(); | ||
881 | iter != notification_queue.end(); | ||
882 | iter++) | ||
883 | { | ||
884 | LLNotifyBox* notification = (LLNotifyBox*)*iter; | ||
885 | // scan for other inventory offers (i.e. ignore other types of notifications). | ||
886 | // we can tell by looking for the associated callback they were created with. | ||
887 | if(notification->getNotifyCallback() == inventory_offer_callback) | ||
888 | { | ||
889 | // found one. | ||
890 | // safe to downcast user data because we know it's associated with offer callback. | ||
891 | LLOfferInfo* offer_data = (LLOfferInfo*)notification->getUserData(); | ||
892 | if(offer_data == user_data) | ||
893 | { | ||
894 | continue; // don't remove the msg triggering us. it will be dequeued normally. | ||
895 | } | ||
896 | if(offer_data->mFromID == blocked_id) | ||
897 | { | ||
898 | gNotifyBoxView->removeChild(notification); | ||
899 | } | ||
900 | } | ||
901 | } | ||
877 | } | 902 | } |
878 | 903 | ||
879 | void inventory_offer_callback(S32 option, void* user_data) | 904 | void inventory_offer_callback(S32 button, void* user_data) |
880 | { | 905 | { |
881 | LLChat chat; | 906 | LLChat chat; |
882 | LLString log_message; | 907 | LLString log_message; |
883 | 908 | ||
@@ -889,9 +914,9 @@ void inventory_offer_callback(S32 option, void* user_data) | |||
889 | // * callback may be called immediately, | 914 | // * callback may be called immediately, |
890 | // * adding the mute sends a message, | 915 | // * adding the mute sends a message, |
891 | // * we can't build two messages at once. JC | 916 | // * we can't build two messages at once. JC |
892 | if (option == 2) | 917 | if (2 == button) |
893 | { | 918 | { |
894 | gCacheName->get(info->mFromID, info->mFromGroup, inventory_offer_mute_callback, NULL); | 919 | gCacheName->get(info->mFromID, info->mFromGroup, inventory_offer_mute_callback, user_data); |
895 | } | 920 | } |
896 | 921 | ||
897 | LLMessageSystem* msg = gMessageSystem; | 922 | LLMessageSystem* msg = gMessageSystem; |
@@ -922,7 +947,8 @@ void inventory_offer_callback(S32 option, void* user_data) | |||
922 | } | 947 | } |
923 | 948 | ||
924 | // XUI:translate | 949 | // XUI:translate |
925 | LLString from_string; | 950 | LLString from_string; // Used in the pop-up. |
951 | LLString chatHistory_string; // Used in chat history. | ||
926 | if (info->mFromObject == TRUE) | 952 | if (info->mFromObject == TRUE) |
927 | { | 953 | { |
928 | if (info->mFromGroup) | 954 | if (info->mFromGroup) |
@@ -931,10 +957,12 @@ void inventory_offer_callback(S32 option, void* user_data) | |||
931 | if (gCacheName->getGroupName(info->mFromID, group_name)) | 957 | if (gCacheName->getGroupName(info->mFromID, group_name)) |
932 | { | 958 | { |
933 | from_string = LLString("An object named '") + info->mFromName + "' owned by the group '" + group_name + "'"; | 959 | from_string = LLString("An object named '") + info->mFromName + "' owned by the group '" + group_name + "'"; |
960 | chatHistory_string = info->mFromName + " owned by the group '" + group_name + "'"; | ||
934 | } | 961 | } |
935 | else | 962 | else |
936 | { | 963 | { |
937 | from_string = LLString("An object named '") + info->mFromName + "' owned by an unknown group"; | 964 | from_string = LLString("An object named '") + info->mFromName + "' owned by an unknown group"; |
965 | chatHistory_string = info->mFromName + " owned by an unknown group"; | ||
938 | } | 966 | } |
939 | } | 967 | } |
940 | else | 968 | else |
@@ -944,21 +972,23 @@ void inventory_offer_callback(S32 option, void* user_data) | |||
944 | if (gCacheName->getName(info->mFromID, first_name, last_name)) | 972 | if (gCacheName->getName(info->mFromID, first_name, last_name)) |
945 | { | 973 | { |
946 | from_string = LLString("An object named '") + info->mFromName + "' owned by " + first_name + " " + last_name; | 974 | from_string = LLString("An object named '") + info->mFromName + "' owned by " + first_name + " " + last_name; |
975 | chatHistory_string = info->mFromName + " owned by " + first_name + " " + last_name; | ||
947 | } | 976 | } |
948 | else | 977 | else |
949 | { | 978 | { |
950 | from_string = LLString("An object named '") + info->mFromName + "' owned by an unknown user"; | 979 | from_string = LLString("An object named '") + info->mFromName + "' owned by an unknown user"; |
980 | chatHistory_string = info->mFromName + " owned by an unknown user"; | ||
951 | } | 981 | } |
952 | } | 982 | } |
953 | } | 983 | } |
954 | else | 984 | else |
955 | { | 985 | { |
956 | from_string = info->mFromName; | 986 | from_string = chatHistory_string = info->mFromName; |
957 | } | 987 | } |
958 | 988 | ||
959 | bool busy=FALSE; | 989 | bool busy=FALSE; |
960 | 990 | ||
961 | switch(option) | 991 | switch(button) |
962 | { | 992 | { |
963 | case IOR_ACCEPT: | 993 | case IOR_ACCEPT: |
964 | // ACCEPT. The math for the dialog works, because the accept | 994 | // ACCEPT. The math for the dialog works, because the accept |
@@ -975,7 +1005,7 @@ void inventory_offer_callback(S32 option, void* user_data) | |||
975 | //don't spam them if they are getting flooded | 1005 | //don't spam them if they are getting flooded |
976 | if (check_offer_throttle(info->mFromName, true)) | 1006 | if (check_offer_throttle(info->mFromName, true)) |
977 | { | 1007 | { |
978 | log_message = info->mFromName + " gave you " + info->mDesc + "."; | 1008 | log_message = chatHistory_string + " gave you " + info->mDesc + "."; |
979 | chat.mText = log_message; | 1009 | chat.mText = log_message; |
980 | LLFloaterChat::addChatHistory(chat); | 1010 | LLFloaterChat::addChatHistory(chat); |
981 | } | 1011 | } |
@@ -1017,7 +1047,7 @@ void inventory_offer_callback(S32 option, void* user_data) | |||
1017 | default: | 1047 | default: |
1018 | llwarns << "inventory_offer_callback: unknown offer type" << llendl; | 1048 | llwarns << "inventory_offer_callback: unknown offer type" << llendl; |
1019 | break; | 1049 | break; |
1020 | } | 1050 | } // end switch (info->mIM) |
1021 | break; | 1051 | break; |
1022 | 1052 | ||
1023 | case IOR_BUSY: | 1053 | case IOR_BUSY: |
@@ -1040,6 +1070,10 @@ void inventory_offer_callback(S32 option, void* user_data) | |||
1040 | 1070 | ||
1041 | log_message = "You decline " + info->mDesc + " from " + info->mFromName + "."; | 1071 | log_message = "You decline " + info->mDesc + " from " + info->mFromName + "."; |
1042 | chat.mText = log_message; | 1072 | chat.mText = log_message; |
1073 | if( gMuteListp->isMuted(info->mFromID ) && ! gMuteListp->isLinden(info->mFromName) ) // muting for SL-42269 | ||
1074 | { | ||
1075 | chat.mMuted = TRUE; | ||
1076 | } | ||
1043 | LLFloaterChat::addChatHistory(chat); | 1077 | LLFloaterChat::addChatHistory(chat); |
1044 | 1078 | ||
1045 | // If it's from an agent, we have to fetch the item to throw | 1079 | // If it's from an agent, we have to fetch the item to throw |
@@ -1086,7 +1120,6 @@ void inventory_offer_callback(S32 option, void* user_data) | |||
1086 | 1120 | ||
1087 | void inventory_offer_handler(LLOfferInfo* info, BOOL from_task) | 1121 | void inventory_offer_handler(LLOfferInfo* info, BOOL from_task) |
1088 | { | 1122 | { |
1089 | |||
1090 | //Until throttling is implmented, busy mode should reject inventory instead of silently | 1123 | //Until throttling is implmented, busy mode should reject inventory instead of silently |
1091 | //accepting it. SEE SL-39554 | 1124 | //accepting it. SEE SL-39554 |
1092 | if (gAgent.getBusy()) | 1125 | if (gAgent.getBusy()) |
@@ -1101,15 +1134,15 @@ void inventory_offer_handler(LLOfferInfo* info, BOOL from_task) | |||
1101 | inventory_offer_callback(IOR_MUTE, info); | 1134 | inventory_offer_callback(IOR_MUTE, info); |
1102 | return; | 1135 | return; |
1103 | } | 1136 | } |
1104 | 1137 | ||
1105 | if (gSavedSettings.getBOOL("ShowNewInventory") | 1138 | // Avoid the Accept/Discard dialog if the user so desires. JC |
1139 | if (gSavedSettings.getBOOL("AutoAcceptNewInventory") | ||
1106 | && (info->mType == LLAssetType::AT_NOTECARD | 1140 | && (info->mType == LLAssetType::AT_NOTECARD |
1107 | || info->mType == LLAssetType::AT_LANDMARK | 1141 | || info->mType == LLAssetType::AT_LANDMARK |
1108 | || info->mType == LLAssetType::AT_TEXTURE)) | 1142 | || info->mType == LLAssetType::AT_TEXTURE)) |
1109 | { | 1143 | { |
1110 | // For certain types, just accept the items into the inventory, | 1144 | // For certain types, just accept the items into the inventory, |
1111 | // and we'll automatically open them on receipt. | 1145 | // and possibly open them on receipt depending upon "ShowNewInventory". |
1112 | // 0 = accept button | ||
1113 | inventory_offer_callback(IOR_ACCEPT, info); | 1146 | inventory_offer_callback(IOR_ACCEPT, info); |
1114 | return; | 1147 | return; |
1115 | } | 1148 | } |
@@ -1678,86 +1711,23 @@ void process_improved_im(LLMessageSystem *msg, void **user_data) | |||
1678 | } | 1711 | } |
1679 | break; | 1712 | break; |
1680 | 1713 | ||
1681 | case IM_SESSION_911_SEND: | 1714 | case IM_SESSION_SEND: |
1682 | { | 1715 | { |
1683 | //this is just the same code as IM_SESSION_SEND for a bit | ||
1684 | //I was too lazy to make this a function....sorry - jwolk | ||
1685 | if (!is_linden && is_busy) | 1716 | if (!is_linden && is_busy) |
1686 | { | 1717 | { |
1687 | return; | 1718 | return; |
1688 | } | 1719 | } |
1689 | |||
1690 | // standard message, not from system | ||
1691 | char saved[MAX_STRING]; /* Flawfinder: ignore */ | ||
1692 | saved[0] = '\0'; | ||
1693 | if(offline == IM_OFFLINE) | ||
1694 | { | ||
1695 | char time_buf[TIME_STR_LENGTH]; /* Flawfinder: ignore */ | ||
1696 | snprintf(saved, /* Flawfinder: ignore */ | ||
1697 | MAX_STRING, | ||
1698 | "(Saved %s) ", | ||
1699 | formatted_time(timestamp, time_buf)); | ||
1700 | } | ||
1701 | |||
1702 | snprintf(buffer, /* Flawfinder: ignore */ | ||
1703 | sizeof(buffer), | ||
1704 | "%s%s%s%s", | ||
1705 | name, | ||
1706 | separator_string, | ||
1707 | saved, | ||
1708 | (message+message_offset)); | ||
1709 | |||
1710 | BOOL is_this_agent = FALSE; | ||
1711 | if(from_id == gAgentID) | ||
1712 | { | ||
1713 | from_id = LLUUID::null; | ||
1714 | is_this_agent = TRUE; | ||
1715 | } | ||
1716 | |||
1717 | gIMView->addMessage( | ||
1718 | session_id, | ||
1719 | from_id, | ||
1720 | name, | ||
1721 | buffer, | ||
1722 | (char*)binary_bucket, | ||
1723 | IM_SESSION_ADD, | ||
1724 | parent_estate_id, | ||
1725 | region_id, | ||
1726 | position); | ||
1727 | 1720 | ||
1728 | snprintf(buffer, sizeof(buffer), "IM: %s%s%s%s", name, separator_string, saved, (message+message_offset)); /* Flawfinder: ignore */ | 1721 | // System messages, specifically "Foo Bar has left this session" |
1729 | chat.mText = buffer; | 1722 | // are not shown unless you actually have that session open. |
1730 | LLFloaterChat::addChat(chat, TRUE, is_this_agent); | 1723 | // Band-aid. JC |
1731 | 1724 | if (offline == IM_ONLINE | |
1732 | //ok, now we want to add a teleport button if we are receving | 1725 | && chat.mFromName == SYSTEM_FROM |
1733 | //a message from not ourself | 1726 | && !gIMView->hasSession(session_id)) |
1734 | LLFloaterIMPanel* panel = | ||
1735 | gIMView->findFloaterBySession(session_id); | ||
1736 | |||
1737 | if (panel && !is_this_agent ) | ||
1738 | { | ||
1739 | //don't add a teleport button for yourself | ||
1740 | panel->addTeleportButton(); | ||
1741 | } | ||
1742 | break; | ||
1743 | } | ||
1744 | case IM_SESSION_SEND: | ||
1745 | { | ||
1746 | if (!is_linden && is_busy) | ||
1747 | { | 1727 | { |
1748 | return; | 1728 | return; |
1749 | } | 1729 | } |
1750 | 1730 | ||
1751 | // System messages, specifically "Foo Bar has left this session" | ||
1752 | // are not shown unless you actually have that session open. | ||
1753 | // Band-aid. JC | ||
1754 | if (offline == IM_ONLINE | ||
1755 | && chat.mFromName == SYSTEM_FROM | ||
1756 | && !gIMView->hasSession(session_id)) | ||
1757 | { | ||
1758 | return; | ||
1759 | } | ||
1760 | |||
1761 | // standard message, not from system | 1731 | // standard message, not from system |
1762 | char saved[MAX_STRING]; /* Flawfinder: ignore */ | 1732 | char saved[MAX_STRING]; /* Flawfinder: ignore */ |
1763 | saved[0] = '\0'; | 1733 | saved[0] = '\0'; |
@@ -1782,7 +1752,7 @@ void process_improved_im(LLMessageSystem *msg, void **user_data) | |||
1782 | name, | 1752 | name, |
1783 | buffer, | 1753 | buffer, |
1784 | (char*)binary_bucket, | 1754 | (char*)binary_bucket, |
1785 | IM_SESSION_ADD, | 1755 | IM_SESSION_INVITE, |
1786 | parent_estate_id, | 1756 | parent_estate_id, |
1787 | region_id, | 1757 | region_id, |
1788 | position); | 1758 | position); |
@@ -2184,7 +2154,7 @@ void process_chat_from_simulator(LLMessageSystem *msg, void **user_data) | |||
2184 | if (chat.mSourceType == CHAT_SOURCE_OBJECT | 2154 | if (chat.mSourceType == CHAT_SOURCE_OBJECT |
2185 | && chat.mChatType != CHAT_TYPE_DEBUG_MSG) | 2155 | && chat.mChatType != CHAT_TYPE_DEBUG_MSG) |
2186 | { | 2156 | { |
2187 | LLViewerPartSourceChat *psc = new LLViewerPartSourceChat(chatter->getPositionAgent()); | 2157 | LLPointer<LLViewerPartSourceChat> psc = new LLViewerPartSourceChat(chatter->getPositionAgent()); |
2188 | psc->setSourceObject(chatter); | 2158 | psc->setSourceObject(chatter); |
2189 | psc->setColor(color); | 2159 | psc->setColor(color); |
2190 | //We set the particles to be owned by the object's owner, | 2160 | //We set the particles to be owned by the object's owner, |
diff --git a/linden/indra/newview/llviewerobject.cpp b/linden/indra/newview/llviewerobject.cpp index 88ac978..5a7ef9d 100644 --- a/linden/indra/newview/llviewerobject.cpp +++ b/linden/indra/newview/llviewerobject.cpp | |||
@@ -228,6 +228,12 @@ LLViewerObject::~LLViewerObject() | |||
228 | mJointInfo = NULL; | 228 | mJointInfo = NULL; |
229 | } | 229 | } |
230 | 230 | ||
231 | if (mPartSourcep) | ||
232 | { | ||
233 | mPartSourcep->setDead(); | ||
234 | mPartSourcep = NULL; | ||
235 | } | ||
236 | |||
231 | // Delete memory associated with extra parameters. | 237 | // Delete memory associated with extra parameters. |
232 | std::map<U16, ExtraParameter*>::iterator iter; | 238 | std::map<U16, ExtraParameter*>::iterator iter; |
233 | for (iter = mExtraParameterList.begin(); iter != mExtraParameterList.end(); ++iter) | 239 | for (iter = mExtraParameterList.begin(); iter != mExtraParameterList.end(); ++iter) |
@@ -4014,7 +4020,7 @@ void LLViewerObject::unpackParticleSource(const S32 block_num, const LLUUID& own | |||
4014 | } | 4020 | } |
4015 | else | 4021 | else |
4016 | { | 4022 | { |
4017 | LLViewerPartSourceScript *pss = LLViewerPartSourceScript::unpackPSS(this, NULL, block_num); | 4023 | LLPointer<LLViewerPartSourceScript> pss = LLViewerPartSourceScript::unpackPSS(this, NULL, block_num); |
4018 | //If the owner is muted, don't create the system | 4024 | //If the owner is muted, don't create the system |
4019 | if(gMuteListp->isMuted(owner_id)) return; | 4025 | if(gMuteListp->isMuted(owner_id)) return; |
4020 | 4026 | ||
@@ -4063,7 +4069,7 @@ void LLViewerObject::unpackParticleSource(LLDataPacker &dp, const LLUUID& owner_ | |||
4063 | } | 4069 | } |
4064 | else | 4070 | else |
4065 | { | 4071 | { |
4066 | LLViewerPartSourceScript *pss = LLViewerPartSourceScript::unpackPSS(this, NULL, dp); | 4072 | LLPointer<LLViewerPartSourceScript> pss = LLViewerPartSourceScript::unpackPSS(this, NULL, dp); |
4067 | //If the owner is muted, don't create the system | 4073 | //If the owner is muted, don't create the system |
4068 | if(gMuteListp->isMuted(owner_id)) return; | 4074 | if(gMuteListp->isMuted(owner_id)) return; |
4069 | // We need to be able to deal with a particle source that hasn't changed, but still got an update! | 4075 | // We need to be able to deal with a particle source that hasn't changed, but still got an update! |
diff --git a/linden/indra/newview/llviewerobject.h b/linden/indra/newview/llviewerobject.h index cdf2214..2e92672 100644 --- a/linden/indra/newview/llviewerobject.h +++ b/linden/indra/newview/llviewerobject.h | |||
@@ -116,7 +116,7 @@ public: | |||
116 | class LLViewerObject : public LLPrimitive, public LLRefCount | 116 | class LLViewerObject : public LLPrimitive, public LLRefCount |
117 | { | 117 | { |
118 | protected: | 118 | protected: |
119 | virtual ~LLViewerObject(); // use unref() | 119 | ~LLViewerObject(); // use unref() |
120 | 120 | ||
121 | // TomY: Provide for a list of extra parameter structures, mapped by structure name | 121 | // TomY: Provide for a list of extra parameter structures, mapped by structure name |
122 | struct ExtraParameter | 122 | struct ExtraParameter |
diff --git a/linden/indra/newview/llviewerparcelmgr.cpp b/linden/indra/newview/llviewerparcelmgr.cpp index 3d4bbe5..437a768 100644 --- a/linden/indra/newview/llviewerparcelmgr.cpp +++ b/linden/indra/newview/llviewerparcelmgr.cpp | |||
@@ -2577,8 +2577,21 @@ bool LLParcelSelection::hasOthersSelected() const | |||
2577 | return mSelectedOtherCount != 0; | 2577 | return mSelectedOtherCount != 0; |
2578 | } | 2578 | } |
2579 | 2579 | ||
2580 | static LLPointer<LLParcelSelection> sNullSelection; | ||
2581 | |||
2580 | LLParcelSelection* get_null_parcel_selection() | 2582 | LLParcelSelection* get_null_parcel_selection() |
2581 | { | 2583 | { |
2582 | static LLParcelSelection null_selection; | 2584 | if (sNullSelection.isNull()) |
2583 | return &null_selection; | 2585 | { |
2586 | sNullSelection = new LLParcelSelection; | ||
2587 | } | ||
2588 | |||
2589 | return sNullSelection; | ||
2590 | } | ||
2591 | |||
2592 | void LLViewerParcelMgr::cleanupGlobals() | ||
2593 | { | ||
2594 | delete gParcelMgr; | ||
2595 | gParcelMgr = NULL; | ||
2596 | sNullSelection = NULL; | ||
2584 | } | 2597 | } |
diff --git a/linden/indra/newview/llviewerparcelmgr.h b/linden/indra/newview/llviewerparcelmgr.h index bade8ef..a10163a 100644 --- a/linden/indra/newview/llviewerparcelmgr.h +++ b/linden/indra/newview/llviewerparcelmgr.h | |||
@@ -73,12 +73,13 @@ class LLParcelSelection : public LLRefCount | |||
73 | { | 73 | { |
74 | friend class LLViewerParcelMgr; | 74 | friend class LLViewerParcelMgr; |
75 | 75 | ||
76 | protected: | ||
77 | ~LLParcelSelection(); | ||
78 | |||
76 | public: | 79 | public: |
77 | LLParcelSelection(LLParcel* parcel); | 80 | LLParcelSelection(LLParcel* parcel); |
78 | LLParcelSelection(); | 81 | LLParcelSelection(); |
79 | 82 | ||
80 | ~LLParcelSelection(); | ||
81 | |||
82 | // this can return NULL at any time, as parcel selection | 83 | // this can return NULL at any time, as parcel selection |
83 | // might have been invalidated. | 84 | // might have been invalidated. |
84 | LLParcel* getParcel() { return mParcel; } | 85 | LLParcel* getParcel() { return mParcel; } |
@@ -119,6 +120,8 @@ public: | |||
119 | LLViewerParcelMgr(); | 120 | LLViewerParcelMgr(); |
120 | ~LLViewerParcelMgr(); | 121 | ~LLViewerParcelMgr(); |
121 | 122 | ||
123 | static void cleanupGlobals(); | ||
124 | |||
122 | BOOL selectionEmpty() const; | 125 | BOOL selectionEmpty() const; |
123 | F32 getSelectionWidth() const { return F32(mEastNorth.mdV[VX] - mWestSouth.mdV[VX]); } | 126 | F32 getSelectionWidth() const { return F32(mEastNorth.mdV[VX] - mWestSouth.mdV[VX]); } |
124 | F32 getSelectionHeight() const { return F32(mEastNorth.mdV[VY] - mWestSouth.mdV[VY]); } | 127 | F32 getSelectionHeight() const { return F32(mEastNorth.mdV[VY] - mWestSouth.mdV[VY]); } |
diff --git a/linden/indra/newview/llviewerpartsim.cpp b/linden/indra/newview/llviewerpartsim.cpp index 8c06381..914eb2d 100644 --- a/linden/indra/newview/llviewerpartsim.cpp +++ b/linden/indra/newview/llviewerpartsim.cpp | |||
@@ -103,7 +103,7 @@ LLViewerPart &LLViewerPart::operator=(const LLViewerPart &part) | |||
103 | return *this; | 103 | return *this; |
104 | } | 104 | } |
105 | 105 | ||
106 | void LLViewerPart::init(LLViewerPartSource *sourcep, LLViewerImage *imagep, LLVPCallback cb) | 106 | void LLViewerPart::init(LLPointer<LLViewerPartSource> sourcep, LLViewerImage *imagep, LLVPCallback cb) |
107 | { | 107 | { |
108 | LLMemType mt(LLMemType::MTYPE_PARTICLES); | 108 | LLMemType mt(LLMemType::MTYPE_PARTICLES); |
109 | mPartID = LLViewerPart::sNextPartID; | 109 | mPartID = LLViewerPart::sNextPartID; |
@@ -521,6 +521,7 @@ LLViewerPartGroup *LLViewerPartSim::put(LLViewerPart* part) | |||
521 | llwarns << "LLViewerPartSim::put - Particle didn't go into its box!" << llendl; | 521 | llwarns << "LLViewerPartSim::put - Particle didn't go into its box!" << llendl; |
522 | llinfos << groupp->getCenterAgent() << llendl; | 522 | llinfos << groupp->getCenterAgent() << llendl; |
523 | llinfos << part->mPosAgent << llendl; | 523 | llinfos << part->mPosAgent << llendl; |
524 | delete groupp; | ||
524 | return NULL; | 525 | return NULL; |
525 | } | 526 | } |
526 | return groupp; | 527 | return groupp; |
@@ -672,7 +673,7 @@ void LLViewerPartSim::updateSimulation() | |||
672 | } | 673 | } |
673 | 674 | ||
674 | 675 | ||
675 | void LLViewerPartSim::addPartSource(LLViewerPartSource *sourcep) | 676 | void LLViewerPartSim::addPartSource(LLPointer<LLViewerPartSource> sourcep) |
676 | { | 677 | { |
677 | LLMemType mt(LLMemType::MTYPE_PARTICLES); | 678 | LLMemType mt(LLMemType::MTYPE_PARTICLES); |
678 | if (!sourcep) | 679 | if (!sourcep) |
@@ -693,6 +694,7 @@ void LLViewerPartSim::cleanupRegion(LLViewerRegion *regionp) | |||
693 | 694 | ||
694 | if ((*iter)->getRegion() == regionp) | 695 | if ((*iter)->getRegion() == regionp) |
695 | { | 696 | { |
697 | delete *iter; | ||
696 | i = mViewerPartGroups.erase(iter); | 698 | i = mViewerPartGroups.erase(iter); |
697 | } | 699 | } |
698 | } | 700 | } |
diff --git a/linden/indra/newview/llviewerpartsim.h b/linden/indra/newview/llviewerpartsim.h index 88eb065..0dc4324 100644 --- a/linden/indra/newview/llviewerpartsim.h +++ b/linden/indra/newview/llviewerpartsim.h | |||
@@ -53,12 +53,13 @@ typedef void (*LLVPCallback)(LLViewerPart &part, const F32 dt); | |||
53 | 53 | ||
54 | class LLViewerPart : public LLPartData, public LLRefCount | 54 | class LLViewerPart : public LLPartData, public LLRefCount |
55 | { | 55 | { |
56 | protected: | ||
57 | ~LLViewerPart(); | ||
56 | public: | 58 | public: |
57 | LLViewerPart(); | 59 | LLViewerPart(); |
58 | ~LLViewerPart(); | ||
59 | 60 | ||
60 | LLViewerPart &operator=(const LLViewerPart &part); | 61 | LLViewerPart &operator=(const LLViewerPart &part); |
61 | void init(LLViewerPartSource *sourcep, LLViewerImage *imagep, LLVPCallback cb); | 62 | void init(LLPointer<LLViewerPartSource> sourcep, LLViewerImage *imagep, LLVPCallback cb); |
62 | 63 | ||
63 | 64 | ||
64 | U32 mPartID; // Particle ID used primarily for moving between groups | 65 | U32 mPartID; // Particle ID used primarily for moving between groups |
@@ -133,7 +134,7 @@ public: | |||
133 | 134 | ||
134 | void updateSimulation(); | 135 | void updateSimulation(); |
135 | 136 | ||
136 | void addPartSource(LLViewerPartSource *sourcep); | 137 | void addPartSource(LLPointer<LLViewerPartSource> sourcep); |
137 | 138 | ||
138 | void cleanupRegion(LLViewerRegion *regionp); | 139 | void cleanupRegion(LLViewerRegion *regionp); |
139 | 140 | ||
diff --git a/linden/indra/newview/llviewerpartsource.cpp b/linden/indra/newview/llviewerpartsource.cpp index 333c0ac..e440eae 100644 --- a/linden/indra/newview/llviewerpartsource.cpp +++ b/linden/indra/newview/llviewerpartsource.cpp | |||
@@ -310,7 +310,7 @@ void LLViewerPartSourceScript::update(const F32 dt) | |||
310 | } | 310 | } |
311 | 311 | ||
312 | // static | 312 | // static |
313 | LLViewerPartSourceScript *LLViewerPartSourceScript::unpackPSS(LLViewerObject *source_objp, LLViewerPartSourceScript *pssp, const S32 block_num) | 313 | LLPointer<LLViewerPartSourceScript> LLViewerPartSourceScript::unpackPSS(LLViewerObject *source_objp, LLPointer<LLViewerPartSourceScript> pssp, const S32 block_num) |
314 | { | 314 | { |
315 | LLMemType mt(LLMemType::MTYPE_PARTICLES); | 315 | LLMemType mt(LLMemType::MTYPE_PARTICLES); |
316 | if (!pssp) | 316 | if (!pssp) |
@@ -319,7 +319,7 @@ LLViewerPartSourceScript *LLViewerPartSourceScript::unpackPSS(LLViewerObject *so | |||
319 | { | 319 | { |
320 | return NULL; | 320 | return NULL; |
321 | } | 321 | } |
322 | LLViewerPartSourceScript *new_pssp = new LLViewerPartSourceScript(source_objp); | 322 | LLPointer<LLViewerPartSourceScript> new_pssp = new LLViewerPartSourceScript(source_objp); |
323 | if (!new_pssp->mPartSysData.unpackBlock(block_num)) | 323 | if (!new_pssp->mPartSysData.unpackBlock(block_num)) |
324 | { | 324 | { |
325 | return NULL; | 325 | return NULL; |
@@ -352,12 +352,12 @@ LLViewerPartSourceScript *LLViewerPartSourceScript::unpackPSS(LLViewerObject *so | |||
352 | } | 352 | } |
353 | 353 | ||
354 | 354 | ||
355 | LLViewerPartSourceScript *LLViewerPartSourceScript::unpackPSS(LLViewerObject *source_objp, LLViewerPartSourceScript *pssp, LLDataPacker &dp) | 355 | LLPointer<LLViewerPartSourceScript> LLViewerPartSourceScript::unpackPSS(LLViewerObject *source_objp, LLPointer<LLViewerPartSourceScript> pssp, LLDataPacker &dp) |
356 | { | 356 | { |
357 | LLMemType mt(LLMemType::MTYPE_PARTICLES); | 357 | LLMemType mt(LLMemType::MTYPE_PARTICLES); |
358 | if (!pssp) | 358 | if (!pssp) |
359 | { | 359 | { |
360 | LLViewerPartSourceScript *new_pssp = new LLViewerPartSourceScript(source_objp); | 360 | LLPointer<LLViewerPartSourceScript> new_pssp = new LLViewerPartSourceScript(source_objp); |
361 | if (!new_pssp->mPartSysData.unpack(dp)) | 361 | if (!new_pssp->mPartSysData.unpack(dp)) |
362 | { | 362 | { |
363 | return NULL; | 363 | return NULL; |
@@ -420,8 +420,8 @@ void LLViewerPartSourceSpiral::updatePart(LLViewerPart &part, const F32 dt) | |||
420 | F32 frac = part.mLastUpdateTime/part.mMaxAge; | 420 | F32 frac = part.mLastUpdateTime/part.mMaxAge; |
421 | 421 | ||
422 | LLVector3 center_pos; | 422 | LLVector3 center_pos; |
423 | LLViewerPartSource *ps = (LLViewerPartSource*)part.mPartSourcep; | 423 | LLPointer<LLViewerPartSource>& ps = part.mPartSourcep; |
424 | LLViewerPartSourceSpiral *pss = (LLViewerPartSourceSpiral *)ps; | 424 | LLViewerPartSourceSpiral *pss = (LLViewerPartSourceSpiral *)ps.get(); |
425 | if (!pss->mSourceObjectp.isNull() && !pss->mSourceObjectp->mDrawable.isNull()) | 425 | if (!pss->mSourceObjectp.isNull() && !pss->mSourceObjectp->mDrawable.isNull()) |
426 | { | 426 | { |
427 | part.mPosAgent = pss->mSourceObjectp->getRenderPosition(); | 427 | part.mPosAgent = pss->mSourceObjectp->getRenderPosition(); |
@@ -767,3 +767,4 @@ void LLViewerPartSourceChat::setColor(const LLColor4 &color) | |||
767 | mColor = color; | 767 | mColor = color; |
768 | } | 768 | } |
769 | 769 | ||
770 | |||
diff --git a/linden/indra/newview/llviewerpartsource.h b/linden/indra/newview/llviewerpartsource.h index 3fd6b85..9d22e72 100644 --- a/linden/indra/newview/llviewerpartsource.h +++ b/linden/indra/newview/llviewerpartsource.h | |||
@@ -107,8 +107,8 @@ public: | |||
107 | BOOL updateFromMesg(); | 107 | BOOL updateFromMesg(); |
108 | 108 | ||
109 | // Returns a new particle source to attach to an object... | 109 | // Returns a new particle source to attach to an object... |
110 | static LLViewerPartSourceScript *unpackPSS(LLViewerObject *source_objp, LLViewerPartSourceScript *pssp, const S32 block_num); | 110 | static LLPointer<LLViewerPartSourceScript> unpackPSS(LLViewerObject *source_objp, LLPointer<LLViewerPartSourceScript> pssp, const S32 block_num); |
111 | static LLViewerPartSourceScript *unpackPSS(LLViewerObject *source_objp, LLViewerPartSourceScript *pssp, LLDataPacker &dp); | 111 | static LLPointer<LLViewerPartSourceScript> unpackPSS(LLViewerObject *source_objp, LLPointer<LLViewerPartSourceScript> pssp, LLDataPacker &dp); |
112 | 112 | ||
113 | LLViewerImage *getImage() const { return mImagep; } | 113 | LLViewerImage *getImage() const { return mImagep; } |
114 | void setImage(LLViewerImage *imagep); | 114 | void setImage(LLViewerImage *imagep); |
@@ -157,7 +157,6 @@ class LLViewerPartSourceBeam : public LLViewerPartSource | |||
157 | { | 157 | { |
158 | public: | 158 | public: |
159 | LLViewerPartSourceBeam(); | 159 | LLViewerPartSourceBeam(); |
160 | ~LLViewerPartSourceBeam(); | ||
161 | 160 | ||
162 | /*virtual*/ void setDead(); | 161 | /*virtual*/ void setDead(); |
163 | 162 | ||
@@ -175,6 +174,7 @@ public: | |||
175 | LLVector3d mLKGTargetPosGlobal; | 174 | LLVector3d mLKGTargetPosGlobal; |
176 | LLColor4 mColor; | 175 | LLColor4 mColor; |
177 | protected: | 176 | protected: |
177 | ~LLViewerPartSourceBeam(); | ||
178 | }; | 178 | }; |
179 | 179 | ||
180 | 180 | ||
diff --git a/linden/indra/newview/llviewerregion.cpp b/linden/indra/newview/llviewerregion.cpp index 4409f8b..9e05d4f 100644 --- a/linden/indra/newview/llviewerregion.cpp +++ b/linden/indra/newview/llviewerregion.cpp | |||
@@ -1303,7 +1303,9 @@ void LLViewerRegion::setSeedCapability(const std::string& url) | |||
1303 | capabilityNames.append("SendUserReportWithScreenshot"); | 1303 | capabilityNames.append("SendUserReportWithScreenshot"); |
1304 | capabilityNames.append("RequestTextureDownload"); | 1304 | capabilityNames.append("RequestTextureDownload"); |
1305 | capabilityNames.append("UntrustedSimulatorMessage"); | 1305 | capabilityNames.append("UntrustedSimulatorMessage"); |
1306 | 1306 | capabilityNames.append("ParcelVoiceInfoRequest"); | |
1307 | capabilityNames.append("ChatSessionRequest"); | ||
1308 | |||
1307 | LLHTTPClient::post(url, capabilityNames, BaseCapabilitiesComplete::build(this)); | 1309 | LLHTTPClient::post(url, capabilityNames, BaseCapabilitiesComplete::build(this)); |
1308 | } | 1310 | } |
1309 | 1311 | ||
diff --git a/linden/indra/newview/llviewertexteditor.cpp b/linden/indra/newview/llviewertexteditor.cpp index 826c411..6a8d53e 100644 --- a/linden/indra/newview/llviewertexteditor.cpp +++ b/linden/indra/newview/llviewertexteditor.cpp | |||
@@ -1219,7 +1219,7 @@ BOOL LLViewerTextEditor::openEmbeddedItem(LLInventoryItem* item, BOOL saved) | |||
1219 | return TRUE; | 1219 | return TRUE; |
1220 | 1220 | ||
1221 | case LLAssetType::AT_LANDMARK: | 1221 | case LLAssetType::AT_LANDMARK: |
1222 | showLandmarkDialog( item ); | 1222 | openEmbeddedLandmark( item ); |
1223 | return TRUE; | 1223 | return TRUE; |
1224 | 1224 | ||
1225 | case LLAssetType::AT_LSL_TEXT: | 1225 | case LLAssetType::AT_LSL_TEXT: |
@@ -1273,35 +1273,28 @@ void LLViewerTextEditor::openEmbeddedSound( LLInventoryItem* item ) | |||
1273 | showCopyToInvDialog( item ); | 1273 | showCopyToInvDialog( item ); |
1274 | } | 1274 | } |
1275 | 1275 | ||
1276 | /* | 1276 | |
1277 | void LLViewerTextEditor::openEmbeddedLandmark( LLInventoryItem* item ) | 1277 | void LLViewerTextEditor::openEmbeddedLandmark( LLInventoryItem* item ) |
1278 | { | 1278 | { |
1279 | // See if we can bring an existing preview to the front | 1279 | open_landmark((LLViewerInventoryItem*)item, " preview landmark", FALSE, item->getUUID(), TRUE); |
1280 | if( !LLPreview::show( item->getUUID() ) ) | 1280 | } |
1281 | { | 1281 | |
1282 | // There isn't one, so make a new preview | ||
1283 | S32 left, top; | ||
1284 | gFloaterView->getNewFloaterPosition(&left, &top); | ||
1285 | LLRect rect = gSavedSettings.getRect("PreviewLandmarkRect"); | ||
1286 | rect.translate( left - rect.mLeft, top - rect.mTop ); | ||
1287 | |||
1288 | LLPreviewLandmark* preview = new LLPreviewLandmark( | ||
1289 | "preview landmark", | ||
1290 | rect, | ||
1291 | item->getName(), | ||
1292 | item->getUUID()); | ||
1293 | preview->setAuxItem( item ); | ||
1294 | preview->addCopyToInvButton(); | ||
1295 | preview->open(); | ||
1296 | } | ||
1297 | }*/ | ||
1298 | 1282 | ||
1299 | void LLViewerTextEditor::openEmbeddedNotecard( LLInventoryItem* item, BOOL saved ) | 1283 | void LLViewerTextEditor::openEmbeddedNotecard( LLInventoryItem* item, BOOL saved ) |
1300 | { | 1284 | { |
1301 | if (saved) | 1285 | if (saved) |
1302 | { | 1286 | { |
1303 | // Copy to inventory | 1287 | // Pop-up the notecard floater. |
1304 | copyInventory(item); | 1288 | // Note: Previously would copy to inventory and rely on autodisplay to view. |
1289 | // Now that autodisplay can be turned off, we need to make this case display always. | ||
1290 | // besides, there's no point adding to inventory -MG | ||
1291 | open_notecard( | ||
1292 | (LLViewerInventoryItem*)item, | ||
1293 | LLString("Embedded Note: ") + item->getName(), // title | ||
1294 | mObjectID, | ||
1295 | FALSE, // show_keep_discard | ||
1296 | LLUUID::null, // source_id | ||
1297 | TRUE); // take_focus | ||
1305 | } | 1298 | } |
1306 | else | 1299 | else |
1307 | { | 1300 | { |
@@ -1324,59 +1317,6 @@ void LLViewerTextEditor::onNotecardDialog( S32 option, void* userdata ) | |||
1324 | } | 1317 | } |
1325 | 1318 | ||
1326 | 1319 | ||
1327 | void LLViewerTextEditor::showLandmarkDialog( LLInventoryItem* item ) | ||
1328 | { | ||
1329 | LLNotecardCopyInfo *info = new LLNotecardCopyInfo(this, item); | ||
1330 | gViewerWindow->alertXml("ConfirmLandmarkCopy", | ||
1331 | LLViewerTextEditor::onLandmarkDialog, (void*)info); | ||
1332 | } | ||
1333 | |||
1334 | // static | ||
1335 | void LLViewerTextEditor::onLandmarkDialog( S32 option, void* userdata ) | ||
1336 | { | ||
1337 | LLNotecardCopyInfo *info = (LLNotecardCopyInfo *)userdata; | ||
1338 | if( option == 0 ) | ||
1339 | { | ||
1340 | // Copy to inventory | ||
1341 | info->mTextEd->copyInventory(info->mItem); | ||
1342 | /* | ||
1343 | * XXXPAM | ||
1344 | * | ||
1345 | * Yes, this is broken. We don't show the map yet. | ||
1346 | * | ||
1347 | LLInventoryItem* orig_item = (LLInventoryItem*)userdata; | ||
1348 | |||
1349 | // Copy to inventory | ||
1350 | LLPointer<LLViewerInventoryItem> new_item = new LLViewerInventoryItem; | ||
1351 | cloneInventoryItemToViewer(orig_item, new_item); | ||
1352 | U32 flags = new_item->getFlags(); | ||
1353 | flags &= ~LLInventoryItem::II_FLAGS_LANDMARK_VISITED; | ||
1354 | new_item->setFlags(flags); | ||
1355 | new_item->updateServer(TRUE); | ||
1356 | gInventory.updateItem(new_item); | ||
1357 | gInventory.notifyObservers(); | ||
1358 | |||
1359 | LLInventoryView* view = LLInventoryView::getActiveInventory(); | ||
1360 | if(view) | ||
1361 | { | ||
1362 | view->getPanel()->setSelection(new_item->getUUID(), TAKE_FOCUS_NO); | ||
1363 | } | ||
1364 | |||
1365 | if( (0 == option) && gFloaterWorldMap ) | ||
1366 | { | ||
1367 | // Note: there's a minor race condition here. | ||
1368 | // If the user immediately tries to teleport to the landmark, the dataserver may | ||
1369 | // not yet know that the user has the landmark in his inventory and so may | ||
1370 | // disallow the teleport. However, the user will need to be pretty fast to make | ||
1371 | // this happen, and, if it does, they haven't lost anything. Once the dataserver | ||
1372 | // knows about the new item, the user will be able to teleport to it successfully. | ||
1373 | gFloaterWorldMap->trackLandmark(new_item->getUUID()); | ||
1374 | LLFloaterWorldMap::show(NULL, TRUE); | ||
1375 | }*/ | ||
1376 | } | ||
1377 | delete info; | ||
1378 | } | ||
1379 | |||
1380 | 1320 | ||
1381 | void LLViewerTextEditor::showCopyToInvDialog( LLInventoryItem* item ) | 1321 | void LLViewerTextEditor::showCopyToInvDialog( LLInventoryItem* item ) |
1382 | { | 1322 | { |
diff --git a/linden/indra/newview/llviewertexteditor.h b/linden/indra/newview/llviewertexteditor.h index 6665203..1dbc7b6 100644 --- a/linden/indra/newview/llviewertexteditor.h +++ b/linden/indra/newview/llviewertexteditor.h | |||
@@ -109,14 +109,12 @@ protected: | |||
109 | 109 | ||
110 | void openEmbeddedTexture( LLInventoryItem* item ); | 110 | void openEmbeddedTexture( LLInventoryItem* item ); |
111 | void openEmbeddedSound( LLInventoryItem* item ); | 111 | void openEmbeddedSound( LLInventoryItem* item ); |
112 | //void openEmbeddedLandmark( LLInventoryItem* item ); | 112 | void openEmbeddedLandmark( LLInventoryItem* item ); |
113 | void openEmbeddedNotecard( LLInventoryItem* item, BOOL saved ); | 113 | void openEmbeddedNotecard( LLInventoryItem* item, BOOL saved ); |
114 | void showCopyToInvDialog( LLInventoryItem* item ); | 114 | void showCopyToInvDialog( LLInventoryItem* item ); |
115 | void showLandmarkDialog( LLInventoryItem* item ); | ||
116 | 115 | ||
117 | static void onCopyToInvDialog( S32 option, void* userdata ); | 116 | static void onCopyToInvDialog( S32 option, void* userdata ); |
118 | static void onNotecardDialog( S32 option, void* userdata ); | 117 | static void onNotecardDialog( S32 option, void* userdata ); |
119 | static void onLandmarkDialog( S32 option, void* userdata ); | ||
120 | 118 | ||
121 | protected: | 119 | protected: |
122 | LLPointer<LLInventoryItem> mDragItem; | 120 | LLPointer<LLInventoryItem> mDragItem; |
diff --git a/linden/indra/newview/llviewerwindow.cpp b/linden/indra/newview/llviewerwindow.cpp index c57c84a..0f5bffd 100644 --- a/linden/indra/newview/llviewerwindow.cpp +++ b/linden/indra/newview/llviewerwindow.cpp | |||
@@ -1579,8 +1579,6 @@ LLViewerWindow::LLViewerWindow( | |||
1579 | // Can't have spaces in settings.ini strings, so use underscores instead and convert them. | 1579 | // Can't have spaces in settings.ini strings, so use underscores instead and convert them. |
1580 | LLString::replaceChar(mOverlayTitle, '_', ' '); | 1580 | LLString::replaceChar(mOverlayTitle, '_', ' '); |
1581 | 1581 | ||
1582 | gAwayTimer.stop(); | ||
1583 | |||
1584 | LLAlertDialog::setDisplayCallback(alertCallback); // call this before calling any modal dialogs | 1582 | LLAlertDialog::setDisplayCallback(alertCallback); // call this before calling any modal dialogs |
1585 | 1583 | ||
1586 | // sync the keyboard's setting with the saved setting | 1584 | // sync the keyboard's setting with the saved setting |
@@ -1877,6 +1875,7 @@ void LLViewerWindow::initWorldUI() | |||
1877 | 1875 | ||
1878 | gIMView = new LLIMView("gIMView", LLRect() ); | 1876 | gIMView = new LLIMView("gIMView", LLRect() ); |
1879 | gIMView->setFollowsAll(); | 1877 | gIMView->setFollowsAll(); |
1878 | mRootView->addChild(gIMView); | ||
1880 | 1879 | ||
1881 | LLRect morph_view_rect = full_window; | 1880 | LLRect morph_view_rect = full_window; |
1882 | morph_view_rect.stretch( -STATUS_BAR_HEIGHT ); | 1881 | morph_view_rect.stretch( -STATUS_BAR_HEIGHT ); |
@@ -2400,7 +2399,17 @@ BOOL LLViewerWindow::handleKey(KEY key, MASK mask) | |||
2400 | case KEY_LEFT: | 2399 | case KEY_LEFT: |
2401 | case KEY_RIGHT: | 2400 | case KEY_RIGHT: |
2402 | case KEY_UP: | 2401 | case KEY_UP: |
2402 | // let CTRL UP through for chat line history | ||
2403 | if( MASK_CONTROL & mask ) | ||
2404 | { | ||
2405 | break; | ||
2406 | } | ||
2403 | case KEY_DOWN: | 2407 | case KEY_DOWN: |
2408 | // let CTRL DOWN through for chat line history | ||
2409 | if( MASK_CONTROL & mask ) | ||
2410 | { | ||
2411 | break; | ||
2412 | } | ||
2404 | case KEY_PAGE_UP: | 2413 | case KEY_PAGE_UP: |
2405 | case KEY_PAGE_DOWN: | 2414 | case KEY_PAGE_DOWN: |
2406 | case KEY_HOME: | 2415 | case KEY_HOME: |
diff --git a/linden/indra/newview/llvoavatar.cpp b/linden/indra/newview/llvoavatar.cpp index 37380a4..4de4e36 100644 --- a/linden/indra/newview/llvoavatar.cpp +++ b/linden/indra/newview/llvoavatar.cpp | |||
@@ -8033,7 +8033,7 @@ void LLVOAvatar::processAvatarAppearance( LLMessageSystem* mesgsys ) | |||
8033 | } | 8033 | } |
8034 | else | 8034 | else |
8035 | { | 8035 | { |
8036 | llwarns << "AvatarAppearance msg received without any parameters" << llendl; | 8036 | llwarns << "AvatarAppearance msg received without any parameters, object: " << getID() << llendl; |
8037 | } | 8037 | } |
8038 | 8038 | ||
8039 | setCompositeUpdatesEnabled( TRUE ); | 8039 | setCompositeUpdatesEnabled( TRUE ); |
diff --git a/linden/indra/newview/llvoclouds.h b/linden/indra/newview/llvoclouds.h index 5d9fc72..172d622 100644 --- a/linden/indra/newview/llvoclouds.h +++ b/linden/indra/newview/llvoclouds.h | |||
@@ -43,7 +43,6 @@ class LLVOClouds : public LLAlphaObject | |||
43 | { | 43 | { |
44 | public: | 44 | public: |
45 | LLVOClouds(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp ); | 45 | LLVOClouds(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp ); |
46 | virtual ~LLVOClouds(); | ||
47 | 46 | ||
48 | // Initialize data that's only inited once per class. | 47 | // Initialize data that's only inited once per class. |
49 | static void initClass(); | 48 | static void initClass(); |
@@ -73,6 +72,8 @@ public: | |||
73 | 72 | ||
74 | void setCloudGroup(LLCloudGroup *cgp) { mCloudGroupp = cgp; } | 73 | void setCloudGroup(LLCloudGroup *cgp) { mCloudGroupp = cgp; } |
75 | protected: | 74 | protected: |
75 | virtual ~LLVOClouds(); | ||
76 | |||
76 | LLCloudGroup *mCloudGroupp; | 77 | LLCloudGroup *mCloudGroupp; |
77 | }; | 78 | }; |
78 | 79 | ||
diff --git a/linden/indra/newview/llvograss.h b/linden/indra/newview/llvograss.h index 54f9cce..2349864 100644 --- a/linden/indra/newview/llvograss.h +++ b/linden/indra/newview/llvograss.h | |||
@@ -41,7 +41,6 @@ class LLVOGrass : public LLAlphaObject | |||
41 | { | 41 | { |
42 | public: | 42 | public: |
43 | LLVOGrass(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); | 43 | LLVOGrass(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); |
44 | virtual ~LLVOGrass(); | ||
45 | 44 | ||
46 | // Initialize data that's only inited once per class. | 45 | // Initialize data that's only inited once per class. |
47 | static void initClass(); | 46 | static void initClass(); |
@@ -104,6 +103,9 @@ public: | |||
104 | F32 mBladeWindAngle; | 103 | F32 mBladeWindAngle; |
105 | F32 mBWAOverlap; | 104 | F32 mBWAOverlap; |
106 | 105 | ||
106 | protected: | ||
107 | ~LLVOGrass(); | ||
108 | |||
107 | private: | 109 | private: |
108 | void updateSpecies(); | 110 | void updateSpecies(); |
109 | F32 mLastHeight; // For cheap update hack | 111 | F32 mLastHeight; // For cheap update hack |
diff --git a/linden/indra/newview/llvoground.h b/linden/indra/newview/llvoground.h index 2d73440..48212e5 100644 --- a/linden/indra/newview/llvoground.h +++ b/linden/indra/newview/llvoground.h | |||
@@ -38,9 +38,10 @@ | |||
38 | class LLVOGround : public LLStaticViewerObject | 38 | class LLVOGround : public LLStaticViewerObject |
39 | { | 39 | { |
40 | protected: | 40 | protected: |
41 | ~LLVOGround(); | ||
42 | |||
41 | public: | 43 | public: |
42 | LLVOGround(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); | 44 | LLVOGround(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); |
43 | virtual ~LLVOGround(); | ||
44 | 45 | ||
45 | /*virtual*/ BOOL idleUpdate(LLAgent &agent, LLWorld &world, const F64 &time); | 46 | /*virtual*/ BOOL idleUpdate(LLAgent &agent, LLWorld &world, const F64 &time); |
46 | 47 | ||
diff --git a/linden/indra/newview/llvopartgroup.h b/linden/indra/newview/llvopartgroup.h index ede249d..f3e10c5 100644 --- a/linden/indra/newview/llvopartgroup.h +++ b/linden/indra/newview/llvopartgroup.h | |||
@@ -50,8 +50,6 @@ public: | |||
50 | 50 | ||
51 | LLVOPartGroup(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); | 51 | LLVOPartGroup(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); |
52 | 52 | ||
53 | ~LLVOPartGroup(); | ||
54 | |||
55 | /*virtual*/ BOOL isActive() const; // Whether this object needs to do an idleUpdate. | 53 | /*virtual*/ BOOL isActive() const; // Whether this object needs to do an idleUpdate. |
56 | BOOL idleUpdate(LLAgent &agent, LLWorld &world, const F64 &time); | 54 | BOOL idleUpdate(LLAgent &agent, LLWorld &world, const F64 &time); |
57 | BOOL isParticle(); | 55 | BOOL isParticle(); |
@@ -78,6 +76,8 @@ public: | |||
78 | LLViewerPartGroup* getViewerPartGroup() { return mViewerPartGroupp; } | 76 | LLViewerPartGroup* getViewerPartGroup() { return mViewerPartGroupp; } |
79 | 77 | ||
80 | protected: | 78 | protected: |
79 | ~LLVOPartGroup(); | ||
80 | |||
81 | LLViewerPartGroup *mViewerPartGroupp; | 81 | LLViewerPartGroup *mViewerPartGroupp; |
82 | LLVector3 mExtents[2]; | 82 | LLVector3 mExtents[2]; |
83 | LLColor4 mDebugColor; | 83 | LLColor4 mDebugColor; |
diff --git a/linden/indra/newview/llvosky.cpp b/linden/indra/newview/llvosky.cpp index 68fee1a..2d31bf4 100644 --- a/linden/indra/newview/llvosky.cpp +++ b/linden/indra/newview/llvosky.cpp | |||
@@ -538,8 +538,6 @@ LLVOSky::LLVOSky(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp) | |||
538 | mSun.setIntensity(SUN_INTENSITY); | 538 | mSun.setIntensity(SUN_INTENSITY); |
539 | mMoon.setIntensity(0.1f * SUN_INTENSITY); | 539 | mMoon.setIntensity(0.1f * SUN_INTENSITY); |
540 | 540 | ||
541 | mCubeMap = NULL; | ||
542 | |||
543 | mSunTexturep = gImageList.getImage(gSunTextureID, TRUE, TRUE); | 541 | mSunTexturep = gImageList.getImage(gSunTextureID, TRUE, TRUE); |
544 | mSunTexturep->setClamp(TRUE, TRUE); | 542 | mSunTexturep->setClamp(TRUE, TRUE); |
545 | mMoonTexturep = gImageList.getImage(gMoonTextureID, TRUE, TRUE); | 543 | mMoonTexturep = gImageList.getImage(gMoonTextureID, TRUE, TRUE); |
@@ -554,7 +552,6 @@ LLVOSky::~LLVOSky() | |||
554 | // Don't delete images - it'll get deleted by gImageList on shutdown | 552 | // Don't delete images - it'll get deleted by gImageList on shutdown |
555 | // This needs to be done for each texture | 553 | // This needs to be done for each texture |
556 | 554 | ||
557 | delete mCubeMap; | ||
558 | mCubeMap = NULL; | 555 | mCubeMap = NULL; |
559 | } | 556 | } |
560 | 557 | ||
@@ -596,7 +593,7 @@ void LLVOSky::initCubeMap() | |||
596 | { | 593 | { |
597 | images.push_back(mSkyTex[side].getImageRaw()); | 594 | images.push_back(mSkyTex[side].getImageRaw()); |
598 | } | 595 | } |
599 | if (mCubeMap != NULL) | 596 | if (mCubeMap) |
600 | { | 597 | { |
601 | mCubeMap->init(images); | 598 | mCubeMap->init(images); |
602 | } | 599 | } |
diff --git a/linden/indra/newview/llvosky.h b/linden/indra/newview/llvosky.h index 568e924..81c9bf5 100644 --- a/linden/indra/newview/llvosky.h +++ b/linden/indra/newview/llvosky.h | |||
@@ -524,7 +524,6 @@ public: | |||
524 | }; | 524 | }; |
525 | 525 | ||
526 | LLVOSky(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); | 526 | LLVOSky(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); |
527 | virtual ~LLVOSky(); | ||
528 | 527 | ||
529 | // Initialize/delete data that's only inited once per class. | 528 | // Initialize/delete data that's only inited once per class. |
530 | static void initClass(); | 529 | static void initClass(); |
@@ -687,6 +686,8 @@ public: | |||
687 | LLFace *mFace[FACE_COUNT]; | 686 | LLFace *mFace[FACE_COUNT]; |
688 | 687 | ||
689 | protected: | 688 | protected: |
689 | ~LLVOSky(); | ||
690 | |||
690 | LLPointer<LLViewerImage> mSunTexturep; | 691 | LLPointer<LLViewerImage> mSunTexturep; |
691 | LLPointer<LLViewerImage> mMoonTexturep; | 692 | LLPointer<LLViewerImage> mMoonTexturep; |
692 | LLPointer<LLViewerImage> mBloomTexturep; | 693 | LLPointer<LLViewerImage> mBloomTexturep; |
@@ -736,7 +737,7 @@ protected: | |||
736 | LLColor3 mMoonDiffuse; | 737 | LLColor3 mMoonDiffuse; |
737 | LLColor4U mFadeColor; // Color to fade in from | 738 | LLColor4U mFadeColor; // Color to fade in from |
738 | 739 | ||
739 | LLCubeMap *mCubeMap; // Cube map for the environment | 740 | LLPointer<LLCubeMap> mCubeMap; // Cube map for the environment |
740 | S32 mDrawRefl; | 741 | S32 mDrawRefl; |
741 | 742 | ||
742 | LLFrameTimer mUpdateTimer; | 743 | LLFrameTimer mUpdateTimer; |
diff --git a/linden/indra/newview/llvostars.h b/linden/indra/newview/llvostars.h index cb71f5b..e2619ce 100644 --- a/linden/indra/newview/llvostars.h +++ b/linden/indra/newview/llvostars.h | |||
@@ -40,7 +40,6 @@ class LLVOStars : public LLStaticViewerObject | |||
40 | { | 40 | { |
41 | public: | 41 | public: |
42 | LLVOStars(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); | 42 | LLVOStars(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); |
43 | virtual ~LLVOStars(); | ||
44 | 43 | ||
45 | /*virtual*/ BOOL idleUpdate(LLAgent &agent, LLWorld &world, const F64 &time); | 44 | /*virtual*/ BOOL idleUpdate(LLAgent &agent, LLWorld &world, const F64 &time); |
46 | /*virtual*/ LLDrawable* createDrawable(LLPipeline *pipeline); | 45 | /*virtual*/ LLDrawable* createDrawable(LLPipeline *pipeline); |
@@ -49,6 +48,8 @@ public: | |||
49 | LLColor4* getStarColors() { return mStarColors; } | 48 | LLColor4* getStarColors() { return mStarColors; } |
50 | 49 | ||
51 | protected: | 50 | protected: |
51 | ~LLVOStars(); | ||
52 | |||
52 | void initStars(); | 53 | void initStars(); |
53 | void updateStarColors(); | 54 | void updateStarColors(); |
54 | BOOL updateStarGeometry(LLDrawable *drawable); | 55 | BOOL updateStarGeometry(LLDrawable *drawable); |
diff --git a/linden/indra/newview/llvosurfacepatch.h b/linden/indra/newview/llvosurfacepatch.h index ec26065..a21763d 100644 --- a/linden/indra/newview/llvosurfacepatch.h +++ b/linden/indra/newview/llvosurfacepatch.h | |||
@@ -50,7 +50,6 @@ public: | |||
50 | eVertexDataMask; | 50 | eVertexDataMask; |
51 | 51 | ||
52 | LLVOSurfacePatch(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); | 52 | LLVOSurfacePatch(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); |
53 | virtual ~LLVOSurfacePatch(); | ||
54 | 53 | ||
55 | /*virtual*/ void markDead(); | 54 | /*virtual*/ void markDead(); |
56 | 55 | ||
@@ -84,6 +83,8 @@ public: | |||
84 | 83 | ||
85 | BOOL mDirtiedPatch; | 84 | BOOL mDirtiedPatch; |
86 | protected: | 85 | protected: |
86 | ~LLVOSurfacePatch(); | ||
87 | |||
87 | LLFacePool *mPool; | 88 | LLFacePool *mPool; |
88 | LLFacePool *getPool(); | 89 | LLFacePool *getPool(); |
89 | S32 mBaseComp; | 90 | S32 mBaseComp; |
diff --git a/linden/indra/newview/llvotextbubble.h b/linden/indra/newview/llvotextbubble.h index 2a2fa43..a05b6bc 100644 --- a/linden/indra/newview/llvotextbubble.h +++ b/linden/indra/newview/llvotextbubble.h | |||
@@ -36,7 +36,6 @@ class LLVOTextBubble : public LLAlphaObject | |||
36 | { | 36 | { |
37 | public: | 37 | public: |
38 | LLVOTextBubble(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); | 38 | LLVOTextBubble(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); |
39 | virtual ~LLVOTextBubble(); | ||
40 | 39 | ||
41 | /*virtual*/ BOOL isActive() const; // Whether this object needs to do an idleUpdate. | 40 | /*virtual*/ BOOL isActive() const; // Whether this object needs to do an idleUpdate. |
42 | /*virtual*/ BOOL idleUpdate(LLAgent &agent, LLWorld &world, const F64 &time); | 41 | /*virtual*/ BOOL idleUpdate(LLAgent &agent, LLWorld &world, const F64 &time); |
@@ -59,7 +58,9 @@ public: | |||
59 | LLColor4 mColor; | 58 | LLColor4 mColor; |
60 | S32 mLOD; | 59 | S32 mLOD; |
61 | BOOL mVolumeChanged; | 60 | BOOL mVolumeChanged; |
61 | |||
62 | protected: | 62 | protected: |
63 | ~LLVOTextBubble(); | ||
63 | BOOL setVolume(const LLVolumeParams &volume_params); | 64 | BOOL setVolume(const LLVolumeParams &volume_params); |
64 | LLFrameTimer mUpdateTimer; | 65 | LLFrameTimer mUpdateTimer; |
65 | }; | 66 | }; |
diff --git a/linden/indra/newview/llvotree.h b/linden/indra/newview/llvotree.h index 65a0797..4ec148d 100644 --- a/linden/indra/newview/llvotree.h +++ b/linden/indra/newview/llvotree.h | |||
@@ -39,6 +39,9 @@ class LLDrawPool; | |||
39 | 39 | ||
40 | class LLVOTree : public LLViewerObject | 40 | class LLVOTree : public LLViewerObject |
41 | { | 41 | { |
42 | protected: | ||
43 | ~LLVOTree(); | ||
44 | |||
42 | public: | 45 | public: |
43 | enum | 46 | enum |
44 | { | 47 | { |
@@ -49,7 +52,6 @@ public: | |||
49 | eVertexDataMask; | 52 | eVertexDataMask; |
50 | 53 | ||
51 | LLVOTree(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); | 54 | LLVOTree(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); |
52 | virtual ~LLVOTree(); | ||
53 | 55 | ||
54 | // Initialize data that's only inited once per class. | 56 | // Initialize data that's only inited once per class. |
55 | static void initClass(); | 57 | static void initClass(); |
diff --git a/linden/indra/newview/llvovolume.h b/linden/indra/newview/llvovolume.h index 14c640f..f5dfeb0 100644 --- a/linden/indra/newview/llvovolume.h +++ b/linden/indra/newview/llvovolume.h | |||
@@ -69,6 +69,9 @@ public: | |||
69 | // Class which embodies all Volume objects (with pcode LL_PCODE_VOLUME) | 69 | // Class which embodies all Volume objects (with pcode LL_PCODE_VOLUME) |
70 | class LLVOVolume : public LLViewerObject | 70 | class LLVOVolume : public LLViewerObject |
71 | { | 71 | { |
72 | protected: | ||
73 | virtual ~LLVOVolume(); | ||
74 | |||
72 | public: | 75 | public: |
73 | static void initClass(); | 76 | static void initClass(); |
74 | static void preUpdateGeom(); | 77 | static void preUpdateGeom(); |
@@ -85,7 +88,6 @@ public: | |||
85 | 88 | ||
86 | public: | 89 | public: |
87 | LLVOVolume(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); | 90 | LLVOVolume(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); |
88 | virtual ~LLVOVolume(); | ||
89 | 91 | ||
90 | /*virtual*/ LLDrawable* createDrawable(LLPipeline *pipeline); | 92 | /*virtual*/ LLDrawable* createDrawable(LLPipeline *pipeline); |
91 | 93 | ||
diff --git a/linden/indra/newview/llvowater.h b/linden/indra/newview/llvowater.h index a0c85c0..8ed795c 100644 --- a/linden/indra/newview/llvowater.h +++ b/linden/indra/newview/llvowater.h | |||
@@ -56,7 +56,6 @@ public: | |||
56 | eVertexDataMask; | 56 | eVertexDataMask; |
57 | 57 | ||
58 | LLVOWater(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); | 58 | LLVOWater(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); |
59 | virtual ~LLVOWater() {} | ||
60 | 59 | ||
61 | /*virtual*/ void markDead(); | 60 | /*virtual*/ void markDead(); |
62 | 61 | ||
diff --git a/linden/indra/newview/pipeline.cpp b/linden/indra/newview/pipeline.cpp index d030ac2..408be2e 100644 --- a/linden/indra/newview/pipeline.cpp +++ b/linden/indra/newview/pipeline.cpp | |||
@@ -174,7 +174,6 @@ BOOL LLPipeline::sRenderGlow = FALSE; | |||
174 | 174 | ||
175 | LLPipeline::LLPipeline() : | 175 | LLPipeline::LLPipeline() : |
176 | mScreenTex(0), | 176 | mScreenTex(0), |
177 | mCubeBuffer(NULL), | ||
178 | mGlowMap(0), | 177 | mGlowMap(0), |
179 | mGlowBuffer(0), | 178 | mGlowBuffer(0), |
180 | mVertexShadersEnabled(FALSE), | 179 | mVertexShadersEnabled(FALSE), |
@@ -372,7 +371,6 @@ void LLPipeline::releaseGLBuffers() | |||
372 | 371 | ||
373 | if (mCubeBuffer) | 372 | if (mCubeBuffer) |
374 | { | 373 | { |
375 | delete mCubeBuffer; | ||
376 | mCubeBuffer = NULL; | 374 | mCubeBuffer = NULL; |
377 | } | 375 | } |
378 | 376 | ||
diff --git a/linden/indra/newview/pipeline.h b/linden/indra/newview/pipeline.h index a8c92cc..a687e12 100644 --- a/linden/indra/newview/pipeline.h +++ b/linden/indra/newview/pipeline.h | |||
@@ -363,7 +363,7 @@ public: | |||
363 | GLuint mFramebuffer[2]; | 363 | GLuint mFramebuffer[2]; |
364 | 364 | ||
365 | //dynamic cube map scratch space | 365 | //dynamic cube map scratch space |
366 | LLCubeMap* mCubeBuffer; | 366 | LLPointer<LLCubeMap> mCubeBuffer; |
367 | 367 | ||
368 | //frambuffer object for rendering dynamic cube maps | 368 | //frambuffer object for rendering dynamic cube maps |
369 | GLuint mCubeFrameBuffer; | 369 | GLuint mCubeFrameBuffer; |
diff --git a/linden/indra/newview/postbuild.bat b/linden/indra/newview/postbuild.bat index f2fc069..f0d4a2d 100644 --- a/linden/indra/newview/postbuild.bat +++ b/linden/indra/newview/postbuild.bat | |||
@@ -11,20 +11,21 @@ goto end | |||
11 | :debug | 11 | :debug |
12 | echo copying debug files | 12 | echo copying debug files |
13 | if exist .\debug\freebl3.dll goto end | 13 | if exist .\debug\freebl3.dll goto end |
14 | copy ..\..\libraries\i686-win32\lib_debug\gksvggdiplus.dll .\debug\ /y | 14 | copy ..\..\libraries\i686-win32\lib_debug\freebl3.dll .\debug\ /y |
15 | copy ..\..\libraries\i686-win32\lib_debug\js3250.dll .\debug\ /y | 15 | copy ..\..\libraries\i686-win32\lib_debug\gksvggdiplus.dll .\debug\ /y |
16 | copy ..\..\libraries\i686-win32\lib_debug\js3250.dll .\debug\ /y | ||
16 | copy ..\..\libraries\i686-win32\lib_debug\nspr4.dll .\debug\ /y | 17 | copy ..\..\libraries\i686-win32\lib_debug\nspr4.dll .\debug\ /y |
17 | copy ..\..\libraries\i686-win32\lib_debug\nss3.dll .\debug\ /y | 18 | copy ..\..\libraries\i686-win32\lib_debug\nss3.dll .\debug\ /y |
18 | copy ..\..\libraries\i686-win32\lib_debug\nssckbi.dll .\debug\ /y | 19 | copy ..\..\libraries\i686-win32\lib_debug\nssckbi.dll .\debug\ /y |
19 | copy ..\..\libraries\i686-win32\lib_debug\plc4.dll .\debug\ /y | 20 | copy ..\..\libraries\i686-win32\lib_debug\plc4.dll .\debug\ /y |
20 | copy ..\..\libraries\i686-win32\lib_debug\plds4.dll .\debug\ /y | 21 | copy ..\..\libraries\i686-win32\lib_debug\plds4.dll .\debug\ /y |
21 | copy ..\..\libraries\i686-win32\lib_debug\smime3.dll .\debug\ /y | 22 | copy ..\..\libraries\i686-win32\lib_debug\smime3.dll .\debug\ /y |
22 | copy ..\..\libraries\i686-win32\lib_debug\softokn3.dll .\debug\ /y | 23 | copy ..\..\libraries\i686-win32\lib_debug\softokn3.dll .\debug\ /y |
23 | copy ..\..\libraries\i686-win32\lib_debug\ssl3.dll .\debug\ /y | 24 | copy ..\..\libraries\i686-win32\lib_debug\ssl3.dll .\debug\ /y |
24 | copy ..\..\libraries\i686-win32\lib_debug\xpcom.dll .\debug\ /y | 25 | copy ..\..\libraries\i686-win32\lib_debug\xpcom.dll .\debug\ /y |
25 | copy ..\..\libraries\i686-win32\lib_debug\xul.dll .\debug\ /y | 26 | copy ..\..\libraries\i686-win32\lib_debug\xul.dll .\debug\ /y |
26 | rem --- this is required for mozilla debug builds and displays the aborty/retry/ignore dialog on an assert - crashes without it --- | 27 | rem --- this is required for mozilla debug builds and displays the aborty/retry/ignore dialog on an assert - crashes without it --- |
27 | copy ..\..\libraries\i686-win32\lib_debug\windbgdlg.exe .\debug\ /y | 28 | copy ..\..\libraries\i686-win32\lib_debug\windbgdlg.exe .\debug\ /y |
28 | 29 | ||
29 | @IF NOT EXIST ..\llkdu\Debug\llkdu.dll ( | 30 | @IF NOT EXIST ..\llkdu\Debug\llkdu.dll ( |
30 | @IF EXIST ..\..\libraries\i686-win32\lib_debug\llkdu.dll ( | 31 | @IF EXIST ..\..\libraries\i686-win32\lib_debug\llkdu.dll ( |
@@ -41,20 +42,22 @@ goto end | |||
41 | :release | 42 | :release |
42 | echo copying release files | 43 | echo copying release files |
43 | if exist .\Release\freebl3.dll goto end | 44 | if exist .\Release\freebl3.dll goto end |
44 | copy ..\..\libraries\i686-win32\lib_release\gksvggdiplus.dll .\Release\ /y | 45 | copy ..\..\libraries\i686-win32\lib_release\freebl3.dll .\Release\ /y |
45 | copy ..\..\libraries\i686-win32\lib_release\js3250.dll .\Release\ /y | 46 | copy ..\..\libraries\i686-win32\lib_release\gksvggdiplus.dll .\Release\ /y |
46 | copy ..\..\libraries\i686-win32\lib_release\nspr4.dll .\Release\ /y | 47 | copy ..\..\libraries\i686-win32\lib_release\js3250.dll .\Release\ /y |
47 | copy ..\..\libraries\i686-win32\lib_release\nss3.dll .\Release\ /y | 48 | copy ..\..\libraries\i686-win32\lib_release\nspr4.dll .\Release\ /y |
48 | copy ..\..\libraries\i686-win32\lib_release\nssckbi.dll .\Release\ /y | 49 | copy ..\..\libraries\i686-win32\lib_release\nss3.dll .\Release\ /y |
49 | copy ..\..\libraries\i686-win32\lib_release\plc4.dll .\Release\ /y | 50 | copy ..\..\libraries\i686-win32\lib_release\nssckbi.dll .\Release\ /y |
50 | copy ..\..\libraries\i686-win32\lib_release\plds4.dll .\Release\ /y | 51 | copy ..\..\libraries\i686-win32\lib_release\plc4.dll .\Release\ /y |
51 | copy ..\..\libraries\i686-win32\lib_release\smime3.dll .\Release\ /y | 52 | copy ..\..\libraries\i686-win32\lib_release\plds4.dll .\Release\ /y |
52 | copy ..\..\libraries\i686-win32\lib_release\softokn3.dll .\Release\ /y | 53 | copy ..\..\libraries\i686-win32\lib_release\smime3.dll .\Release\ /y |
53 | copy ..\..\libraries\i686-win32\lib_release\ssl3.dll .\Release\ /y | 54 | copy ..\..\libraries\i686-win32\lib_release\softokn3.dll .\Release\ /y |
54 | copy ..\..\libraries\i686-win32\lib_release\xpcom.dll .\Release\ /y | 55 | copy ..\..\libraries\i686-win32\lib_release\ssl3.dll .\Release\ /y |
56 | copy ..\..\libraries\i686-win32\lib_release\xpcom.dll .\Release\ /y | ||
55 | copy ..\..\libraries\i686-win32\lib_release\xul.dll .\Release\ /y | 57 | copy ..\..\libraries\i686-win32\lib_release\xul.dll .\Release\ /y |
58 | |||
56 | @IF NOT EXIST ..\llkdu\Release\llkdu.dll ( | 59 | @IF NOT EXIST ..\llkdu\Release\llkdu.dll ( |
57 | copy ..\..\libraries\i686-win32\lib_release\llkdu.dll .\Release\ /y | 60 | copy ..\..\libraries\i686-win32\lib_release\llkdu.dll .\Release\ /y |
58 | ) ELSE ( | 61 | ) ELSE ( |
59 | copy ..\llkdu\Release\llkdu.dll .\Release\ /y | 62 | copy ..\llkdu\Release\llkdu.dll .\Release\ /y |
60 | ) | 63 | ) |
@@ -63,20 +66,22 @@ goto end | |||
63 | :releasenoopt | 66 | :releasenoopt |
64 | echo copying releasenoopt files | 67 | echo copying releasenoopt files |
65 | if exist .\ReleaseNoOpt\freebl3.dll goto end | 68 | if exist .\ReleaseNoOpt\freebl3.dll goto end |
66 | copy ..\..\libraries\i686-win32\lib_release\gksvggdiplus.dll .\ReleaseNoOpt\ /y | 69 | copy ..\..\libraries\i686-win32\lib_release\freebl3.dll .\ReleaseNoOpt\ /y |
67 | copy ..\..\libraries\i686-win32\lib_release\js3250.dll .\ReleaseNoOpt\ /y | 70 | copy ..\..\libraries\i686-win32\lib_release\gksvggdiplus.dll .\ReleaseNoOpt\ /y |
68 | copy ..\..\libraries\i686-win32\lib_release\nspr4.dll .\ReleaseNoOpt\ /y | 71 | copy ..\..\libraries\i686-win32\lib_release\js3250.dll .\ReleaseNoOpt\ /y |
69 | copy ..\..\libraries\i686-win32\lib_release\nss3.dll .\ReleaseNoOpt\ /y | 72 | copy ..\..\libraries\i686-win32\lib_release\nspr4.dll .\ReleaseNoOpt\ /y |
70 | copy ..\..\libraries\i686-win32\lib_release\nssckbi.dll .\ReleaseNoOpt\ /y | 73 | copy ..\..\libraries\i686-win32\lib_release\nss3.dll .\ReleaseNoOpt\ /y |
71 | copy ..\..\libraries\i686-win32\lib_release\plc4.dll .\ReleaseNoOpt\ /y | 74 | copy ..\..\libraries\i686-win32\lib_release\nssckbi.dll .\ReleaseNoOpt\ /y |
72 | copy ..\..\libraries\i686-win32\lib_release\plds4.dll .\ReleaseNoOpt\ /y | 75 | copy ..\..\libraries\i686-win32\lib_release\plc4.dll .\ReleaseNoOpt\ /y |
73 | copy ..\..\libraries\i686-win32\lib_release\smime3.dll .\ReleaseNoOpt\ /y | 76 | copy ..\..\libraries\i686-win32\lib_release\plds4.dll .\ReleaseNoOpt\ /y |
74 | copy ..\..\libraries\i686-win32\lib_release\softokn3.dll .\ReleaseNoOpt\ /y | 77 | copy ..\..\libraries\i686-win32\lib_release\smime3.dll .\ReleaseNoOpt\ /y |
75 | copy ..\..\libraries\i686-win32\lib_release\ssl3.dll .\ReleaseNoOpt\ /y | 78 | copy ..\..\libraries\i686-win32\lib_release\softokn3.dll .\ReleaseNoOpt\ /y |
76 | copy ..\..\libraries\i686-win32\lib_release\xpcom.dll .\ReleaseNoOpt\ /y | 79 | copy ..\..\libraries\i686-win32\lib_release\ssl3.dll .\ReleaseNoOpt\ /y |
80 | copy ..\..\libraries\i686-win32\lib_release\xpcom.dll .\ReleaseNoOpt\ /y | ||
77 | copy ..\..\libraries\i686-win32\lib_release\xul.dll .\ReleaseNoOpt\ /y | 81 | copy ..\..\libraries\i686-win32\lib_release\xul.dll .\ReleaseNoOpt\ /y |
82 | |||
78 | @IF NOT EXIST ..\llkdu\ReleaseNoOpt\llkdu.dll ( | 83 | @IF NOT EXIST ..\llkdu\ReleaseNoOpt\llkdu.dll ( |
79 | copy ..\..\libraries\i686-win32\lib_release\llkdu.dll .\ReleaseNoOpt\ /y | 84 | copy ..\..\libraries\i686-win32\lib_release\llkdu.dll .\ReleaseNoOpt\ /y |
80 | ) ELSE ( | 85 | ) ELSE ( |
81 | copy ..\llkdu\ReleaseNoOpt\llkdu.dll .\ReleaseNoOpt\ /y | 86 | copy ..\llkdu\ReleaseNoOpt\llkdu.dll .\ReleaseNoOpt\ /y |
82 | ) | 87 | ) |
@@ -85,21 +90,21 @@ goto end | |||
85 | :releasefordownload | 90 | :releasefordownload |
86 | echo copying releasefordownload files | 91 | echo copying releasefordownload files |
87 | if exist .\ReleaseForDownload\freebl3.dll goto end | 92 | if exist .\ReleaseForDownload\freebl3.dll goto end |
88 | copy ..\..\libraries\i686-win32\lib_release\gksvggdiplus.dll .\ReleaseForDownload\ /y | 93 | copy ..\..\libraries\i686-win32\lib_release\freebl3.dll .\ReleaseForDownload\ /y |
89 | copy ..\..\libraries\i686-win32\lib_release\js3250.dll .\ReleaseForDownload\ /y | 94 | copy ..\..\libraries\i686-win32\lib_release\gksvggdiplus.dll .\ReleaseForDownload\ /y |
90 | copy ..\..\libraries\i686-win32\lib_release\nspr4.dll .\ReleaseForDownload\ /y | 95 | copy ..\..\libraries\i686-win32\lib_release\js3250.dll .\ReleaseForDownload\ /y |
91 | copy ..\..\libraries\i686-win32\lib_release\nss3.dll .\ReleaseForDownload\ /y | 96 | copy ..\..\libraries\i686-win32\lib_release\nspr4.dll .\ReleaseForDownload\ /y |
92 | copy ..\..\libraries\i686-win32\lib_release\nssckbi.dll .\ReleaseForDownload\ /y | 97 | copy ..\..\libraries\i686-win32\lib_release\nss3.dll .\ReleaseForDownload\ /y |
93 | copy ..\..\libraries\i686-win32\lib_release\plc4.dll .\ReleaseForDownload\ /y | 98 | copy ..\..\libraries\i686-win32\lib_release\nssckbi.dll .\ReleaseForDownload\ /y |
94 | copy ..\..\libraries\i686-win32\lib_release\plds4.dll .\ReleaseForDownload\ /y | 99 | copy ..\..\libraries\i686-win32\lib_release\plc4.dll .\ReleaseForDownload\ /y |
95 | copy ..\..\libraries\i686-win32\lib_release\smime3.dll .\ReleaseForDownload\ /y | 100 | copy ..\..\libraries\i686-win32\lib_release\plds4.dll .\ReleaseForDownload\ /y |
96 | copy ..\..\libraries\i686-win32\lib_release\softokn3.dll .\ReleaseForDownload\ /y | 101 | copy ..\..\libraries\i686-win32\lib_release\smime3.dll .\ReleaseForDownload\ /y |
97 | copy ..\..\libraries\i686-win32\lib_release\ssl3.dll .\ReleaseForDownload\ /y | 102 | copy ..\..\libraries\i686-win32\lib_release\softokn3.dll .\ReleaseForDownload\ /y |
98 | copy ..\..\libraries\i686-win32\lib_release\xpcom.dll .\ReleaseForDownload\ /y | 103 | copy ..\..\libraries\i686-win32\lib_release\ssl3.dll .\ReleaseForDownload\ /y |
104 | copy ..\..\libraries\i686-win32\lib_release\xpcom.dll .\ReleaseForDownload\ /y | ||
99 | copy ..\..\libraries\i686-win32\lib_release\xul.dll .\ReleaseForDownload\ /y | 105 | copy ..\..\libraries\i686-win32\lib_release\xul.dll .\ReleaseForDownload\ /y |
100 | |||
101 | @IF NOT EXIST ..\llkdu\Release\llkdu.dll ( | 106 | @IF NOT EXIST ..\llkdu\Release\llkdu.dll ( |
102 | copy ..\..\libraries\i686-win32\lib_release\llkdu.dll .\ReleaseForDownload\ /y | 107 | copy ..\..\libraries\i686-win32\lib_release\llkdu.dll .\ReleaseForDownload\ /y |
103 | ) ELSE ( | 108 | ) ELSE ( |
104 | copy ..\llkdu\Release\llkdu.dll .\ReleaseForDownload\ /y | 109 | copy ..\llkdu\Release\llkdu.dll .\ReleaseForDownload\ /y |
105 | ) | 110 | ) |
diff --git a/linden/indra/newview/releasenotes.txt b/linden/indra/newview/releasenotes.txt index a223e08..2f7971c 100644 --- a/linden/indra/newview/releasenotes.txt +++ b/linden/indra/newview/releasenotes.txt | |||
@@ -1,3 +1,54 @@ | |||
1 | Release Notes for Second Life 1.17.0(12) June 13, 2007 | ||
2 | ===================================== | ||
3 | Changes: | ||
4 | * Inventory transfers | ||
5 | ** Auto-accept inventory and auto-preview texture/notecard/landmark are now separate preferences. | ||
6 | ** Viewing an embedded notecard or landmark no longer adds it to your inventory. | ||
7 | ** Muting the sender of notecards, inventory, textures, etc., now removes all blue pop-ups in the upper right corner from that sender. | ||
8 | ** Offline inventory transfers and group invites now include the name of the item or group, along with group role, in the email. | ||
9 | * Added "Clear Browser Cache" button to web prefs. | ||
10 | ** This only affects the embedded browser, not any other browsers installed on your system | ||
11 | * Embedded Mozilla browser now supports cookies. | ||
12 | * Preliminary support added to the Windows installer for selecting a language (English, Korean) | ||
13 | * Closing a changed Classified now confirms changes | ||
14 | |||
15 | Bug fixes: | ||
16 | * Fixed a client crash while in startup | ||
17 | * Fixed group chat reopening with one message and an error after closing group chat | ||
18 | * Fixed "Stop All Animations" when stuck in an animation after teleporting | ||
19 | * Fixed group messages to allow the use of UTF8 characters | ||
20 | * Fixed "Show Owners" from automatically turning on again | ||
21 | * Fixed an issue with "Release Controls" when an object is taken and rerezed. | ||
22 | * Fixed an issue with texture picker not displaying any results unless inventory had been shown | ||
23 | * Fixed chat history to not show muted resident chat | ||
24 | * Fixed "Mute Resident" button, now opens the user picker | ||
25 | * Fixed group ability settings for group owners in German language viewer | ||
26 | * Fixed embedded Mozilla browser to work with HTTPS sites (affected Windows only) | ||
27 | * Notecards no longer display the "Keep" and "Discard" buttons when opened from inventory | ||
28 | * Acquired date is now set for items dragged from the contents of a container prim | ||
29 | * VWR-1040: crash when opening several gestures quickly | ||
30 | * VWR-966: Minor memory leak in llfloaterpreferences.cpp and a tiny leak in llstatup.cpp | ||
31 | * VWR-908: Various memory leaks in the group dialog | ||
32 | * VWR-871: More bad f00d: Two minor (or inconsequential) misses of initializing object members | ||
33 | * VWR-870: Memory violation through uninitialized variable (invisible or unrendered flexis) | ||
34 | * VWR-869: Possible hard-loop (endless, viewer-hang) in script editor | ||
35 | * VWR-827: Toruses are borked after making/editing sculpted prims | ||
36 | * VWR-823: Two unintialized variables in lltexturefetch.cpp | ||
37 | * VWR-822: "Create new..." clothing buttons don't auto-wear items | ||
38 | * VWR-810: Destructor forgets to delete mFloaterContros member in llui/llview.cpp | ||
39 | * VWR-809: Destructor fails to clean up global menus in llviewermenu.cpp | ||
40 | * VWR-808: Incorrect cleanup in message.cpp | ||
41 | * VWR-807: Forgets to delete gToolInspect in lltoolmgr.cpp | ||
42 | * VWR-804: Quirk in llviewerwindow.cpp | ||
43 | * VWR-805: LLCurl not properly cleaned up | ||
44 | * VWR-765: Cannot open embedded notecards in other notecards when Automatic preview of new notecards/textures/landmarks is off | ||
45 | * VWR-409: New Feature -> UI -> Dialog -> Buy Copy/Contents -> Default Action -> Cancel | ||
46 | * VWR-682: Text Editors should try to preserve X cursor position | ||
47 | * VWR-671: Line editor history for recalling previously typed lines | ||
48 | * VWR-648: Texture picker should highlight the texture in the swatch | ||
49 | * VWR-412: Object editing arrows hidden but clickable on objects you can't edit. | ||
50 | * VWR-364: Viewer memory leak | ||
51 | |||
1 | Release Notes for Second Life 1.16.0(5) May 23, 2007 | 52 | Release Notes for Second Life 1.16.0(5) May 23, 2007 |
2 | ===================================== | 53 | ===================================== |
3 | New Features: | 54 | New Features: |
@@ -43,7 +94,7 @@ Bug fixes: | |||
43 | * SVC-138: Land sales search sorting doesn't work | 94 | * SVC-138: Land sales search sorting doesn't work |
44 | * MISC-37: Continued breakdowns in group notice popup functionality | 95 | * MISC-37: Continued breakdowns in group notice popup functionality |
45 | * Teleporting to Help Island no longer allows you to teleport back to Orientation Island | 96 | * Teleporting to Help Island no longer allows you to teleport back to Orientation Island |
46 | * No-copy objects that fail to rez now reappear in inventory (may take up to one minute) | 97 | * No-copy objects that fail to rez now reappear in inventory (may require a relog) |
47 | * Scripted attachments work again correctly on group land | 98 | * Scripted attachments work again correctly on group land |
48 | * Fixed a bug where email sent by script with an empty subject would fail (valid per RFC2822) | 99 | * Fixed a bug where email sent by script with an empty subject would fail (valid per RFC2822) |
49 | * Fixed several server-side memory leaks, and changed to new memory allocation library | 100 | * Fixed several server-side memory leaks, and changed to new memory allocation library |
diff --git a/linden/indra/newview/res/newViewRes.rc b/linden/indra/newview/res/newViewRes.rc index 482f14e..0b4a5ba 100644 --- a/linden/indra/newview/res/newViewRes.rc +++ b/linden/indra/newview/res/newViewRes.rc | |||
@@ -227,8 +227,8 @@ TOOLPIPETTE CURSOR "toolpipette.cur" | |||
227 | // | 227 | // |
228 | 228 | ||
229 | VS_VERSION_INFO VERSIONINFO | 229 | VS_VERSION_INFO VERSIONINFO |
230 | FILEVERSION 1,16,0,5 | 230 | FILEVERSION 1,17,0,12 |
231 | PRODUCTVERSION 1,16,0,5 | 231 | PRODUCTVERSION 1,17,0,12 |
232 | FILEFLAGSMASK 0x3fL | 232 | FILEFLAGSMASK 0x3fL |
233 | #ifdef _DEBUG | 233 | #ifdef _DEBUG |
234 | FILEFLAGS 0x1L | 234 | FILEFLAGS 0x1L |
@@ -245,12 +245,12 @@ BEGIN | |||
245 | BEGIN | 245 | BEGIN |
246 | VALUE "CompanyName", "Linden Lab" | 246 | VALUE "CompanyName", "Linden Lab" |
247 | VALUE "FileDescription", "Second Life" | 247 | VALUE "FileDescription", "Second Life" |
248 | VALUE "FileVersion", "1.16.0.5" | 248 | VALUE "FileVersion", "1.17.0.12" |
249 | VALUE "InternalName", "Second Life" | 249 | VALUE "InternalName", "Second Life" |
250 | VALUE "LegalCopyright", "Copyright © 2001-2007, Linden Research, Inc." | 250 | VALUE "LegalCopyright", "Copyright © 2001-2007, Linden Research, Inc." |
251 | VALUE "OriginalFilename", "SecondLife.exe" | 251 | VALUE "OriginalFilename", "SecondLife.exe" |
252 | VALUE "ProductName", "Second Life" | 252 | VALUE "ProductName", "Second Life" |
253 | VALUE "ProductVersion", "1.16.0.5" | 253 | VALUE "ProductVersion", "1.17.0.12" |
254 | END | 254 | END |
255 | END | 255 | END |
256 | BLOCK "VarFileInfo" | 256 | BLOCK "VarFileInfo" |
diff --git a/linden/indra/newview/secondlife-i686.supp b/linden/indra/newview/secondlife-i686.supp new file mode 100644 index 0000000..b1b30a4 --- /dev/null +++ b/linden/indra/newview/secondlife-i686.supp | |||
@@ -0,0 +1,175 @@ | |||
1 | # @file secondlife-i686.supp | ||
2 | # @brief Valgrind suppressions for Linux i686 viewer. | ||
3 | # | ||
4 | # Copyright (c) 2000-$CurrentYear$, Linden Research, Inc. | ||
5 | # $License$ | ||
6 | # | ||
7 | # This is a Valgrind suppression file for use on the viewer. | ||
8 | # | ||
9 | # Hints for most successful use of valgrind: | ||
10 | # | ||
11 | # - If your distro comes with library packages that contain debug info | ||
12 | # (Fedora calls these debuginfo packages), install them. | ||
13 | # - Inside the SConstruct script, disable linking against tcmalloc. | ||
14 | # Valgrind and tcmalloc don't get along. | ||
15 | # - Delete the copy of libstdc++.so.6 that is bundled with the viewer | ||
16 | # (if you have one), so that the viewer will use the system's | ||
17 | # libstdc++. | ||
18 | # - After you build the viewer, replace the stripped | ||
19 | # do-not-directly-run-secondlife-bin binary with an unstripped copy. | ||
20 | |||
21 | # Mozilla noise. | ||
22 | |||
23 | { | ||
24 | Cond:mozilla-runtime/*.so | ||
25 | Memcheck:Cond | ||
26 | obj:*/mozilla-runtime-*/*.so | ||
27 | } | ||
28 | |||
29 | { | ||
30 | Value4:mozilla-runtime/*.so | ||
31 | Memcheck:Value4 | ||
32 | obj:*/mozilla-runtime-*/*.so | ||
33 | } | ||
34 | |||
35 | { | ||
36 | Cond:mozilla-runtime/*/*.so | ||
37 | Memcheck:Cond | ||
38 | obj:*/mozilla-runtime-*/*/*.so | ||
39 | } | ||
40 | |||
41 | { | ||
42 | Value4:mozilla-runtime/*/*.so | ||
43 | Memcheck:Value4 | ||
44 | obj:*/mozilla-runtime-*/*/*.so | ||
45 | } | ||
46 | |||
47 | { | ||
48 | Cond:mozilla-runtime/libmozjs.so | ||
49 | Memcheck:Cond | ||
50 | obj:*/libmozjs.so | ||
51 | } | ||
52 | |||
53 | { | ||
54 | Cond:mozilla-runtime/libxul | ||
55 | Memcheck:Cond | ||
56 | obj:*/libxul.so | ||
57 | } | ||
58 | |||
59 | { | ||
60 | Value4:mozilla-runtime/libxul | ||
61 | Memcheck:Value4 | ||
62 | obj:*/libxul.so | ||
63 | } | ||
64 | |||
65 | # libcurl badness. | ||
66 | |||
67 | { | ||
68 | Cond:libcurl/inflate/Curl_unencode_gzip_write | ||
69 | Memcheck:Cond | ||
70 | fun:inflate | ||
71 | fun:inflate_stream | ||
72 | fun:Curl_unencode_gzip_write | ||
73 | } | ||
74 | { | ||
75 | Cond:libcurl/ares_mkquery/Curl_getaddrinfo | ||
76 | Memcheck:Cond | ||
77 | fun:ares_mkquery | ||
78 | fun:ares_query | ||
79 | fun:ares_search | ||
80 | fun:next_lookup | ||
81 | fun:Curl_getaddrinfo | ||
82 | } | ||
83 | |||
84 | # libdl business. | ||
85 | |||
86 | { | ||
87 | Cond:libdl/_dl_relocate_object | ||
88 | Memcheck:Cond | ||
89 | fun:_dl_relocate_object | ||
90 | } | ||
91 | |||
92 | # X11 fun. | ||
93 | |||
94 | { | ||
95 | Param:X11/_X11TransSocketWritev/writev/vector | ||
96 | Memcheck:Param | ||
97 | writev(vector[...]) | ||
98 | fun:writev | ||
99 | fun:_X11TransSocketWritev | ||
100 | } | ||
101 | |||
102 | { | ||
103 | Param:X11/_X11TransWrite/write/buf | ||
104 | Memcheck:Param | ||
105 | write(buf) | ||
106 | obj:/lib/libc-2.6.so | ||
107 | fun:_X11TransWrite | ||
108 | } | ||
109 | |||
110 | # OpenSSL stuff. | ||
111 | |||
112 | { | ||
113 | Value4:libcrypto | ||
114 | Memcheck:Value4 | ||
115 | obj:*/libcrypto.so.0.9* | ||
116 | } | ||
117 | |||
118 | { | ||
119 | Cond:libcrypto | ||
120 | Memcheck:Cond | ||
121 | obj:*/libcrypto.so.0.9* | ||
122 | } | ||
123 | |||
124 | { | ||
125 | Value4:libssl | ||
126 | Memcheck:Value4 | ||
127 | obj:*/libssl.so.0.9* | ||
128 | } | ||
129 | |||
130 | { | ||
131 | Cond:libcrypto | ||
132 | Memcheck:Cond | ||
133 | obj:*/libssl.so.0.9* | ||
134 | } | ||
135 | |||
136 | # NVIDIA driver brokenness. | ||
137 | |||
138 | { | ||
139 | Addr4:NVIDIA/libGL | ||
140 | Memcheck:Addr4 | ||
141 | obj:/usr/lib/libGL.so.1.0.* | ||
142 | } | ||
143 | |||
144 | { | ||
145 | Value4:NVIDIA/libGL | ||
146 | Memcheck:Value4 | ||
147 | obj:/usr/lib/libGL.so.1.0.* | ||
148 | } | ||
149 | |||
150 | { | ||
151 | Cond:NVIDIA/libGL | ||
152 | Memcheck:Cond | ||
153 | obj:/usr/lib/libGL.so.1.0.* | ||
154 | } | ||
155 | |||
156 | { | ||
157 | Value4:NVIDIA/libGLcore | ||
158 | Memcheck:Value4 | ||
159 | obj:/usr/lib/libGLcore.so.1.0.* | ||
160 | } | ||
161 | |||
162 | { | ||
163 | Cond:NVIDIA/libGLcore | ||
164 | Memcheck:Cond | ||
165 | obj:/usr/lib/libGLcore.so.1.0.* | ||
166 | } | ||
167 | |||
168 | { | ||
169 | Param:NVIDIA/ioctl | ||
170 | Memcheck:Param | ||
171 | ioctl(generic) | ||
172 | fun:ioctl | ||
173 | fun:_nv000130gl | ||
174 | } | ||
175 | |||
diff --git a/linden/indra/newview/skins/xui/en-us/alerts.xml b/linden/indra/newview/skins/xui/en-us/alerts.xml index cac8dc4..d32b46a 100644 --- a/linden/indra/newview/skins/xui/en-us/alerts.xml +++ b/linden/indra/newview/skins/xui/en-us/alerts.xml | |||
@@ -249,7 +249,7 @@ Members cannot be removed from that role. | |||
249 | The members must resign from the role themselves. | 249 | The members must resign from the role themselves. |
250 | Are you sure you want to continue? | 250 | Are you sure you want to continue? |
251 | </message> | 251 | </message> |
252 | <ignore> | 252 | <ignore name="ignore"> |
253 | When adding group members to the owner role | 253 | When adding group members to the owner role |
254 | </ignore> | 254 | </ignore> |
255 | <option name="Yes"> | 255 | <option name="Yes"> |
@@ -700,7 +700,7 @@ also appear higher when people search for keywords. | |||
700 | <option name="Cancel"> | 700 | <option name="Cancel"> |
701 | Cancel | 701 | Cancel |
702 | </option> | 702 | </option> |
703 | <ignore> | 703 | <ignore name="ignore"> |
704 | When adding a new Classified | 704 | When adding a new Classified |
705 | </ignore> | 705 | </ignore> |
706 | </alert> | 706 | </alert> |
@@ -716,6 +716,20 @@ There is no reimbursement for fees paid. | |||
716 | Cancel | 716 | Cancel |
717 | </option> | 717 | </option> |
718 | </alert> | 718 | </alert> |
719 | <alert modal="true" name="ClassifiedSave"> | ||
720 | <message name="message"> | ||
721 | Save changes to classified [NAME]? | ||
722 | </message> | ||
723 | <option name="Save"> | ||
724 | Save | ||
725 | </option> | ||
726 | <option name="Don'tSave"> | ||
727 | Don't Save | ||
728 | </option> | ||
729 | <option name="Cancel"> | ||
730 | Cancel | ||
731 | </option> | ||
732 | </alert> | ||
719 | <alert modal="true" name="DeleteAvatarPick"> | 733 | <alert modal="true" name="DeleteAvatarPick"> |
720 | <message name="message"> | 734 | <message name="message"> |
721 | Delete pick [PICK]? | 735 | Delete pick [PICK]? |
@@ -2696,7 +2710,7 @@ Download to your Applications folder? | |||
2696 | Deeding this object will cause the group to: | 2710 | Deeding this object will cause the group to: |
2697 | * Receive L$ paid into the object | 2711 | * Receive L$ paid into the object |
2698 | </message> | 2712 | </message> |
2699 | <ignore> | 2713 | <ignore name="ignore"> |
2700 | When deeding objects to groups | 2714 | When deeding objects to groups |
2701 | </ignore> | 2715 | </ignore> |
2702 | <option name="Deed"> | 2716 | <option name="Deed"> |
@@ -2718,7 +2732,7 @@ You'll be asked for a price to pay when clicking Publish. | |||
2718 | Paying more makes your ad appear higher in the list, and | 2732 | Paying more makes your ad appear higher in the list, and |
2719 | also appear higher when people search for keywords. | 2733 | also appear higher when people search for keywords. |
2720 | </message> | 2734 | </message> |
2721 | <ignore> | 2735 | <ignore name="ignore"> |
2722 | When adding a new Classified | 2736 | When adding a new Classified |
2723 | </ignore> | 2737 | </ignore> |
2724 | <option name="OK"> | 2738 | <option name="OK"> |
@@ -2732,7 +2746,7 @@ also appear higher when people search for keywords. | |||
2732 | <message name="message"> | 2746 | <message name="message"> |
2733 | Go to www.secondlife.com to manage your account? | 2747 | Go to www.secondlife.com to manage your account? |
2734 | </message> | 2748 | </message> |
2735 | <ignore> | 2749 | <ignore name="ignore"> |
2736 | When launching web browser to manage your account | 2750 | When launching web browser to manage your account |
2737 | </ignore> | 2751 | </ignore> |
2738 | <option name="OK"> | 2752 | <option name="OK"> |
@@ -2746,7 +2760,7 @@ also appear higher when people search for keywords. | |||
2746 | <message name="message"> | 2760 | <message name="message"> |
2747 | Visit the [SECOND_LIFE] Wiki and Learn how to Report Bugs Correctly. | 2761 | Visit the [SECOND_LIFE] Wiki and Learn how to Report Bugs Correctly. |
2748 | </message> | 2762 | </message> |
2749 | <ignore> | 2763 | <ignore name="ignore"> |
2750 | When launching web browser to view the Bug Reporting 101 Wiki | 2764 | When launching web browser to view the Bug Reporting 101 Wiki |
2751 | </ignore> | 2765 | </ignore> |
2752 | <option name="Gotopage"> | 2766 | <option name="Gotopage"> |
@@ -2760,7 +2774,7 @@ also appear higher when people search for keywords. | |||
2760 | <message name="message"> | 2774 | <message name="message"> |
2761 | Visit the [SECOND_LIFE] Wiki for Details of How to Report a Security Issue. | 2775 | Visit the [SECOND_LIFE] Wiki for Details of How to Report a Security Issue. |
2762 | </message> | 2776 | </message> |
2763 | <ignore> | 2777 | <ignore name="ignore"> |
2764 | When launching web browser to view Security Issues Wiki | 2778 | When launching web browser to view Security Issues Wiki |
2765 | </ignore> | 2779 | </ignore> |
2766 | <option name="Gotopage"> | 2780 | <option name="Gotopage"> |
@@ -2774,7 +2788,7 @@ also appear higher when people search for keywords. | |||
2774 | <message name="message"> | 2788 | <message name="message"> |
2775 | Visit the [SECOND_LIFE] Public Issue Tracker, Where you can Report Bugs and other Issues. | 2789 | Visit the [SECOND_LIFE] Public Issue Tracker, Where you can Report Bugs and other Issues. |
2776 | </message> | 2790 | </message> |
2777 | <ignore> | 2791 | <ignore name="ignore"> |
2778 | When launching web browser to view the Public Issue Tracker | 2792 | When launching web browser to view the Public Issue Tracker |
2779 | </ignore> | 2793 | </ignore> |
2780 | <option name="Gotopage"> | 2794 | <option name="Gotopage"> |
@@ -2788,7 +2802,7 @@ also appear higher when people search for keywords. | |||
2788 | <message name="message"> | 2802 | <message name="message"> |
2789 | Visit the [SECOND_LIFE] Wiki for info on how to use the Public Issue Tracker. | 2803 | Visit the [SECOND_LIFE] Wiki for info on how to use the Public Issue Tracker. |
2790 | </message> | 2804 | </message> |
2791 | <ignore> | 2805 | <ignore name="ignore"> |
2792 | When launching web browser to view Public Issue Tracker Wiki | 2806 | When launching web browser to view Public Issue Tracker Wiki |
2793 | </ignore> | 2807 | </ignore> |
2794 | <option name="Gotopage"> | 2808 | <option name="Gotopage"> |
@@ -2802,7 +2816,7 @@ also appear higher when people search for keywords. | |||
2802 | <message name="message"> | 2816 | <message name="message"> |
2803 | Search the [SECOND_LIFE] Knowledge Base for the latest tips and tricks. | 2817 | Search the [SECOND_LIFE] Knowledge Base for the latest tips and tricks. |
2804 | </message> | 2818 | </message> |
2805 | <ignore> | 2819 | <ignore name="ignore"> |
2806 | When launching web browser to view the knowledge base | 2820 | When launching web browser to view the knowledge base |
2807 | </ignore> | 2821 | </ignore> |
2808 | <option name="Gotopage"> | 2822 | <option name="Gotopage"> |
@@ -2816,7 +2830,7 @@ also appear higher when people search for keywords. | |||
2816 | <message name="message"> | 2830 | <message name="message"> |
2817 | Contact [SECOND_LIFE] Support. | 2831 | Contact [SECOND_LIFE] Support. |
2818 | </message> | 2832 | </message> |
2819 | <ignore> | 2833 | <ignore name="ignore"> |
2820 | When launching web browser to contact support | 2834 | When launching web browser to contact support |
2821 | </ignore> | 2835 | </ignore> |
2822 | <option name="Gotopage"> | 2836 | <option name="Gotopage"> |
@@ -2830,7 +2844,7 @@ also appear higher when people search for keywords. | |||
2830 | <message name="message"> | 2844 | <message name="message"> |
2831 | Go to the Official Linden Blog, for the Latest News and Information. | 2845 | Go to the Official Linden Blog, for the Latest News and Information. |
2832 | </message> | 2846 | </message> |
2833 | <ignore> | 2847 | <ignore name="ignore"> |
2834 | When launching web browser to view the blog | 2848 | When launching web browser to view the blog |
2835 | </ignore> | 2849 | </ignore> |
2836 | <option name="Gotopage"> | 2850 | <option name="Gotopage"> |
@@ -2844,7 +2858,7 @@ also appear higher when people search for keywords. | |||
2844 | <message name="message"> | 2858 | <message name="message"> |
2845 | Go to the Scripting Guide for scripting help? | 2859 | Go to the Scripting Guide for scripting help? |
2846 | </message> | 2860 | </message> |
2847 | <ignore> | 2861 | <ignore name="ignore"> |
2848 | When launching web browser to view the Scripting Guide | 2862 | When launching web browser to view the Scripting Guide |
2849 | </ignore> | 2863 | </ignore> |
2850 | <option name="Gotopage"> | 2864 | <option name="Gotopage"> |
@@ -2858,7 +2872,7 @@ also appear higher when people search for keywords. | |||
2858 | <message name="message"> | 2872 | <message name="message"> |
2859 | Go to the LSL Portal for scripting help? | 2873 | Go to the LSL Portal for scripting help? |
2860 | </message> | 2874 | </message> |
2861 | <ignore> | 2875 | <ignore name="ignore"> |
2862 | When launching web browser to view the LSL Portal | 2876 | When launching web browser to view the LSL Portal |
2863 | </ignore> | 2877 | </ignore> |
2864 | <option name="Gotopage"> | 2878 | <option name="Gotopage"> |
@@ -2872,7 +2886,7 @@ also appear higher when people search for keywords. | |||
2872 | <message name="message"> | 2886 | <message name="message"> |
2873 | View the [SECOND_LIFE] Release Notes?. | 2887 | View the [SECOND_LIFE] Release Notes?. |
2874 | </message> | 2888 | </message> |
2875 | <ignore> | 2889 | <ignore name="ignore"> |
2876 | When launching web browser to view the Release Notes | 2890 | When launching web browser to view the Release Notes |
2877 | </ignore> | 2891 | </ignore> |
2878 | <option name="Gotopage"> | 2892 | <option name="Gotopage"> |
@@ -2890,7 +2904,7 @@ objects will be returned to their previous owners. | |||
2890 | 2904 | ||
2891 | *WARNING* No-transfer deeded objects will be deleted! | 2905 | *WARNING* No-transfer deeded objects will be deleted! |
2892 | </message> | 2906 | </message> |
2893 | <ignore> | 2907 | <ignore name="ignore"> |
2894 | When returning objects to their owners | 2908 | When returning objects to their owners |
2895 | </ignore> | 2909 | </ignore> |
2896 | <option name="Return"> | 2910 | <option name="Return"> |
@@ -2904,7 +2918,7 @@ objects will be returned to their previous owners. | |||
2904 | <message name="message"> | 2918 | <message name="message"> |
2905 | View the Second Life release notes? | 2919 | View the Second Life release notes? |
2906 | </message> | 2920 | </message> |
2907 | <ignore> | 2921 | <ignore name="ignore"> |
2908 | When viewing the release notes | 2922 | When viewing the release notes |
2909 | </ignore> | 2923 | </ignore> |
2910 | <option name="Gotopage"> | 2924 | <option name="Gotopage"> |
@@ -2942,6 +2956,12 @@ Leave Group? | |||
2942 | <message name="message"> | 2956 | <message name="message"> |
2943 | Do you REALLY want to kick all users off the grid? | 2957 | Do you REALLY want to kick all users off the grid? |
2944 | </message> | 2958 | </message> |
2959 | <option name="Kick"> | ||
2960 | Kick All Users | ||
2961 | </option> | ||
2962 | <option name="Cancel"> | ||
2963 | Cancel | ||
2964 | </option> | ||
2945 | </alert> | 2965 | </alert> |
2946 | <alert modal="true" name="MuteLinden"> | 2966 | <alert modal="true" name="MuteLinden"> |
2947 | <message name="message"> | 2967 | <message name="message"> |
@@ -3025,7 +3045,7 @@ Chat and instant messages will be hidden. Instant | |||
3025 | messages will get your Busy mode response. All teleportation | 3045 | messages will get your Busy mode response. All teleportation |
3026 | and inventory offers will be declined. | 3046 | and inventory offers will be declined. |
3027 | </message> | 3047 | </message> |
3028 | <ignore> | 3048 | <ignore name="ignore"> |
3029 | When setting busy mode | 3049 | When setting busy mode |
3030 | </ignore> | 3050 | </ignore> |
3031 | <option name="OK"> | 3051 | <option name="OK"> |
@@ -3989,7 +4009,7 @@ These items will be moved to your inventory, not copied. | |||
3989 | 4009 | ||
3990 | Move the inventory item(s)? | 4010 | Move the inventory item(s)? |
3991 | </message> | 4011 | </message> |
3992 | <ignore> | 4012 | <ignore name="ignore"> |
3993 | When moving no-copy inventory from objects | 4013 | When moving no-copy inventory from objects |
3994 | </ignore> | 4014 | </ignore> |
3995 | <option name="Move"> | 4015 | <option name="Move"> |
@@ -4009,7 +4029,7 @@ to your inventory may cause the script to malfunction. | |||
4009 | 4029 | ||
4010 | Move the inventory item(s)? | 4030 | Move the inventory item(s)? |
4011 | </message> | 4031 | </message> |
4012 | <ignore> | 4032 | <ignore name="ignore"> |
4013 | When moving no-copy inventory from scripted objects | 4033 | When moving no-copy inventory from scripted objects |
4014 | </ignore> | 4034 | </ignore> |
4015 | <option name="Move"> | 4035 | <option name="Move"> |
@@ -4024,7 +4044,7 @@ Move the inventory item(s)? | |||
4024 | Warning: The Pay Object click action has been set, but it | 4044 | Warning: The Pay Object click action has been set, but it |
4025 | will only work if a script is added with a money() event. | 4045 | will only work if a script is added with a money() event. |
4026 | </message> | 4046 | </message> |
4027 | <ignore> | 4047 | <ignore name="ignore"> |
4028 | When Setting 'Pay' on objects without money() events | 4048 | When Setting 'Pay' on objects without money() events |
4029 | </ignore> | 4049 | </ignore> |
4030 | </alert> | 4050 | </alert> |
@@ -4037,7 +4057,7 @@ will only work if a script is added with a money() event. | |||
4037 | <message name="message"> | 4057 | <message name="message"> |
4038 | Go to the Second Life web site to see your account history? | 4058 | Go to the Second Life web site to see your account history? |
4039 | </message> | 4059 | </message> |
4040 | <ignore> | 4060 | <ignore name="ignore"> |
4041 | When loading account history web page | 4061 | When loading account history web page |
4042 | </ignore> | 4062 | </ignore> |
4043 | <option name="Gotopage"> | 4063 | <option name="Gotopage"> |
@@ -4218,7 +4238,7 @@ completing this transaction? | |||
4218 | Are you sure you want to permanently remove | 4238 | Are you sure you want to permanently remove |
4219 | the contents of your Trash folder? | 4239 | the contents of your Trash folder? |
4220 | </message> | 4240 | </message> |
4221 | <ignore> | 4241 | <ignore name="ignore"> |
4222 | When emptying your inventory trash folder | 4242 | When emptying your inventory trash folder |
4223 | </ignore> | 4243 | </ignore> |
4224 | <option default="true" name="Yes"> | 4244 | <option default="true" name="Yes"> |
@@ -4228,12 +4248,36 @@ the contents of your Trash folder? | |||
4228 | Cancel | 4248 | Cancel |
4229 | </option> | 4249 | </option> |
4230 | </alert> | 4250 | </alert> |
4251 | <alert modal="true" name="ConfirmClearBrowserCache"> | ||
4252 | <message name="message"> | ||
4253 | Are you sure you want to clear your | ||
4254 | browser cache? | ||
4255 | </message> | ||
4256 | <option default="true" name="Yes"> | ||
4257 | Yes | ||
4258 | </option> | ||
4259 | <option name="No"> | ||
4260 | Cancel | ||
4261 | </option> | ||
4262 | </alert> | ||
4263 | <alert modal="true" name="ConfirmClearCookies"> | ||
4264 | <message name="message"> | ||
4265 | Are you sure you want to clear | ||
4266 | your cookies? | ||
4267 | </message> | ||
4268 | <option default="true" name="Yes"> | ||
4269 | Yes | ||
4270 | </option> | ||
4271 | <option name="No"> | ||
4272 | Cancel | ||
4273 | </option> | ||
4274 | </alert> | ||
4231 | <alert modal="true" name="ConfirmEmptyLostAndFound"> | 4275 | <alert modal="true" name="ConfirmEmptyLostAndFound"> |
4232 | <message name="message"> | 4276 | <message name="message"> |
4233 | Are you sure you want to permanently remove | 4277 | Are you sure you want to permanently remove |
4234 | the contents of your Lost And Found folder? | 4278 | the contents of your Lost And Found folder? |
4235 | </message> | 4279 | </message> |
4236 | <ignore> | 4280 | <ignore name="ignore"> |
4237 | When emptying your inventory Lost And Found folder | 4281 | When emptying your inventory Lost And Found folder |
4238 | </ignore> | 4282 | </ignore> |
4239 | <option default="true" name="Yes"> | 4283 | <option default="true" name="Yes"> |
@@ -4252,7 +4296,7 @@ the contents of your Lost And Found folder? | |||
4252 | Put it in a web page to give others easy access to this location or | 4296 | Put it in a web page to give others easy access to this location or |
4253 | try it out yourself by pasting it into the address bar of your web browser. | 4297 | try it out yourself by pasting it into the address bar of your web browser. |
4254 | </message> | 4298 | </message> |
4255 | <ignore> | 4299 | <ignore name="ignore"> |
4256 | When copying a SLURL to your clipboard | 4300 | When copying a SLURL to your clipboard |
4257 | </ignore> | 4301 | </ignore> |
4258 | </alert> | 4302 | </alert> |
diff --git a/linden/indra/newview/skins/xui/en-us/floater_about.xml b/linden/indra/newview/skins/xui/en-us/floater_about.xml index ea855d9..fbfebf0 100644 --- a/linden/indra/newview/skins/xui/en-us/floater_about.xml +++ b/linden/indra/newview/skins/xui/en-us/floater_about.xml | |||
@@ -7,9 +7,9 @@ | |||
7 | follows="left|top|right|bottom" font="SansSerifSmall" height="168" left="6" | 7 | follows="left|top|right|bottom" font="SansSerifSmall" height="168" left="6" |
8 | max_length="65536" mouse_opaque="true" name="credits_editor" | 8 | max_length="65536" mouse_opaque="true" name="credits_editor" |
9 | text_color="1, 1, 1, 1" text_readonly_color="1, 1, 1, 1" width="458" | 9 | text_color="1, 1, 1, 1" text_readonly_color="1, 1, 1, 1" width="458" |
10 | word_wrap="true">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, 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 and many others. | 10 | word_wrap="true">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, 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 and many others. |
11 | 11 | ||
12 | Thank you to the following residents for helping to ensure that this is the best version yet: shinmai Akebono, Evangeline Arcadia, Nargus Asturias, FireFox Bancroft, Verbuda Barragar, Logan Bauer, Freya Becquerel, phoenix Behemoth, Druida Biedermann, Bibi Book, Barney Boomslang, mckinnes1 Boyd, Ice Brodie, Darling Brody, seaone Bunyip, Hypatia Callisto, Upo Choche, Bell Clellon, pizzaguy Clutterbuck, Victor Cole, Patrice Cournoyer, Sherona DeGroot, Mecha Dinosaur, Shack Dougall, Drew Dwi, Bazzerbill Eccleston, Rosa Edelman, Gotobug Fairymeadow, Gianetti Ferlinghetti, Ante Flan, Mario Fonzarelli, Raudf Fox, Lor Gynoid, Moses Gyoza, Corax Homewood, Pietor Huygens, LampLighter Jacobus, Major Johnson, Itoku Kamachi, DaQbet Kish, Max Kleiber, Laurent Laborde, Lightfoot Lindman, Deira Llanfair, Domino Marama, Aminom Marvin, Liberty Mill, Walker Moore, Yumi Murakami, Usagi Musashi, Luciftias Neurocam, Destiny Niles, Alexandra Nino, Kinzo Nurmi, OmniCron Overlord, Julianna Pennyfeather, Coyote Pixie, Maya Remblai, Arenae Rosewood, Grey Ryder, Norm Schack, Funk Schnook, Singular Seoul, tickledgirl Shemesh, Rhyph Somme, Oz Spade, Argent Stonecutter, Eristic Strangelove, Samm Submariner, Seifert Surface, Dirk Talamasca, Ilyara Tardis, Mac Teazle, Winter Ventura, Amaranth Voss, Geri Watson, Will Webb, Patchouli Woollahra, TonyH Wrangler, malee Zhaoying. | 12 | Thank you to the following residents for helping to ensure that this is the best version yet: Hypatia Callisto, Inigo Chamerberlin, Matti Deigan, Jasper Dogpatch, Able Forder, Evy Gardenvale, Bosco Gray, Torben Jensen, Claire Kanno, bebop Kohime, Michael Kyuzo, Sian Lumley, Chase McClure, Lisa McConnell, Alice Obscure, Stumbelina Ophelia, Arenae Rosewood, Joseph Rustamova, Norm Schack, Funk Schnook, Teleio Seferis, Ninnie Stradling, Darzus Strutt, Glory Takashi, Omei Turnbull, Craig Weiland, Johan Yugen, xsdenied Zucker. |
13 | 13 | ||
14 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 14 | APR Copyright (C) 2000-2004 The Apache Software Foundation |
15 | Cg Copyright (C) 2002, NVIDIA Corporationa. | 15 | Cg Copyright (C) 2002, NVIDIA Corporationa. |
@@ -30,7 +30,7 @@ zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | |||
30 | All rights reserved. See licenses.txt for details. | 30 | All rights reserved. See licenses.txt for details. |
31 | 31 | ||
32 | 32 | ||
33 | Kilroy 2.0 is here. Kilroy 2.0 is everywhere.</text_editor> | 33 | Bananas are the new plywood cubes.</text_editor> |
34 | <text_editor bg_readonly_color="0, 0, 0, 0" bottom_delta="174" embedded_items="false" | 34 | <text_editor bg_readonly_color="0, 0, 0, 0" bottom_delta="174" embedded_items="false" |
35 | follows="left|top|right|bottom" font="SansSerif" height="238" left="6" | 35 | follows="left|top|right|bottom" font="SansSerif" height="238" left="6" |
36 | max_length="65536" mouse_opaque="true" name="support_editor" | 36 | max_length="65536" mouse_opaque="true" name="support_editor" |
diff --git a/linden/indra/newview/skins/xui/en-us/floater_instant_message.xml b/linden/indra/newview/skins/xui/en-us/floater_instant_message.xml index d64452f..f5b11d6 100644 --- a/linden/indra/newview/skins/xui/en-us/floater_instant_message.xml +++ b/linden/indra/newview/skins/xui/en-us/floater_instant_message.xml | |||
@@ -32,10 +32,6 @@ | |||
32 | max_length="1022" mouse_opaque="true" name="chat_editor" | 32 | max_length="1022" mouse_opaque="true" name="chat_editor" |
33 | select_all_on_focus_received="false" select_on_focus="false" tab_group="1" | 33 | select_all_on_focus_received="false" select_on_focus="false" tab_group="1" |
34 | width="345" label="Click here to instant message" /> | 34 | width="345" label="Click here to instant message" /> |
35 | <button bottom="-295" enabled="false" follows="right|bottom" font="SansSerif" | ||
36 | halign="center" height="20" hidden="false" label="Teleport" | ||
37 | label_selected="Teleport" left="275" mouse_opaque="true" | ||
38 | name="teleport_btn" scale_image="true" width="75" /> | ||
39 | <button bottom="-295" enabled="true" follows="right|bottom" font="SansSerif" | 35 | <button bottom="-295" enabled="true" follows="right|bottom" font="SansSerif" |
40 | halign="center" height="20" hidden="false" label="Profile..." | 36 | halign="center" height="20" hidden="false" label="Profile..." |
41 | label_selected="Profile..." left="355" mouse_opaque="true" | 37 | label_selected="Profile..." left="355" mouse_opaque="true" |
diff --git a/linden/indra/newview/skins/xui/en-us/panel_preferences_general.xml b/linden/indra/newview/skins/xui/en-us/panel_preferences_general.xml index 8297887..6792202 100644 --- a/linden/indra/newview/skins/xui/en-us/panel_preferences_general.xml +++ b/linden/indra/newview/skins/xui/en-us/panel_preferences_general.xml | |||
@@ -69,13 +69,7 @@ | |||
69 | label="Notify when Linden dollars (L$) spent or received" left="148" | 69 | label="Notify when Linden dollars (L$) spent or received" left="148" |
70 | mouse_opaque="true" name="notify_money_change_checkbox" radio_style="false" | 70 | mouse_opaque="true" name="notify_money_change_checkbox" radio_style="false" |
71 | width="256" /> | 71 | width="256" /> |
72 | <check_box bottom="-326" control_name="ShowNewInventory" enabled="true" | 72 | <check_box bottom="-326" control_name="UseDefaultColorPicker" enabled="true" |
73 | follows="left|top" font="SansSerifSmall" height="16" hidden="false" | ||
74 | initial_value="false" label="Automatic previews of new notecards/textures/landmarks" | ||
75 | left="148" mouse_opaque="true" name="show_new_inventory" | ||
76 | radio_style="false" | ||
77 | width="270" /> | ||
78 | <check_box bottom="-344" control_name="UseDefaultColorPicker" enabled="true" | ||
79 | follows="left|top" font="SansSerifSmall" height="16" hidden="false" | 73 | follows="left|top" font="SansSerifSmall" height="16" hidden="false" |
80 | initial_value="false" label="Use default system color picker" left="148" | 74 | initial_value="false" label="Use default system color picker" left="148" |
81 | mouse_opaque="true" name="use_system_color_picker_checkbox" | 75 | mouse_opaque="true" name="use_system_color_picker_checkbox" |
diff --git a/linden/indra/newview/skins/xui/en-us/panel_preferences_popups.xml b/linden/indra/newview/skins/xui/en-us/panel_preferences_popups.xml index 1b9acc6..24c3b19 100644 --- a/linden/indra/newview/skins/xui/en-us/panel_preferences_popups.xml +++ b/linden/indra/newview/skins/xui/en-us/panel_preferences_popups.xml | |||
@@ -1,34 +1,37 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel border="true" bottom="-409" enabled="true" follows="left|top|right|bottom" | 2 | <panel border="true" bottom="0" height="500" label="Popups" left="0" name="popups" |
3 | height="408" hidden="false" label="Popups" left="102" mouse_opaque="true" | 3 | title="Popups" width="400"> |
4 | name="popups" width="517"> | 4 | <text bottom="-20" follows="top|left" left="15" width="300"> |
5 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | ||
6 | bottom="-20" drop_shadow_visible="true" enabled="true" follows="left|top" | ||
7 | font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" | ||
8 | left="12" mouse_opaque="false" name="text_box" v_pad="0" width="300"> | ||
9 | Do not show popups: | 5 | Do not show popups: |
10 | </text> | 6 | </text> |
11 | <scroll_list background_visible="true" bottom="-124" column_padding="5" draw_border="true" | 7 | <scroll_list follows="top|left" height="100" left="15" name="disabled_popups" width="480" /> |
12 | draw_heading="false" draw_stripes="true" enabled="true" follows="left|top" | 8 | <button follows="top|left" height="20" label="Enable this popup" left="15" |
13 | height="100" hidden="false" left="12" mouse_opaque="true" | 9 | name="enable_popup" width="150" /> |
14 | multi_select="false" name="disabled_popups" width="480" /> | 10 | <text follows="top|left" left="15" width="128"> |
15 | <button bottom="-148" enabled="false" follows="left|top" font="SansSerif" | 11 | Show popups: |
16 | halign="center" height="20" hidden="false" label="Enable this popup" | 12 | </text> |
17 | label_selected="Enable this popup" left="12" mouse_opaque="true" | 13 | <scroll_list follows="top|left" height="100" left="15" name="enabled_popups" width="480" /> |
18 | name="enable_popup" scale_image="true" width="150" /> | 14 | |
19 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 15 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
20 | bottom="-162" drop_shadow_visible="true" enabled="true" follows="left|top" | 16 | bottom_delta="-30" drop_shadow_visible="true" enabled="true" follows="left|top" |
21 | font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" | 17 | font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" |
22 | left="12" mouse_opaque="false" name="text_box2" v_pad="0" width="128"> | 18 | left="15" mouse_opaque="false" name="text_box2" v_pad="0" width="270"> |
23 | Show popups: | 19 | Offers of notecards, textures and landmarks: |
24 | </text> | 20 | </text> |
25 | <scroll_list background_visible="true" bottom="-266" column_padding="5" draw_border="true" | 21 | <check_box bottom_delta="-25" control_name="AutoAcceptNewInventory" enabled="true" |
26 | draw_heading="false" draw_stripes="true" enabled="true" follows="left|top" | 22 | follows="left|top" font="SansSerifSmall" height="16" hidden="false" |
27 | height="100" hidden="false" left="12" mouse_opaque="true" | 23 | initial_value="false" label="Automatically accept" |
28 | multi_select="false" name="enabled_popups" width="480" /> | 24 | left="40" mouse_opaque="true" name="accept_new_inventory" |
29 | <button bottom="-311" enabled="true" follows="left|top" font="SansSerif" | 25 | radio_style="false" |
30 | halign="center" height="20" hidden="false" | 26 | width="270" /> |
31 | label="Reset 'Show next time' Dialogs..." | 27 | <check_box bottom_delta="-20" control_name="ShowNewInventory" enabled="true" |
32 | label_selected="Reset 'Show next time' Dialogs..." left="12" | 28 | follows="left|top" font="SansSerifSmall" height="16" hidden="false" |
33 | mouse_opaque="true" name="reset_dialogs_btn" scale_image="true" width="210" /> | 29 | initial_value="true" label="Automatically view after accepting" |
30 | left="40" mouse_opaque="true" name="show_new_inventory" | ||
31 | radio_style="false" | ||
32 | width="270" /> | ||
33 | |||
34 | <button bottom_delta="-35" follows="top|left" height="20" | ||
35 | label="Reset 'Show next time' Dialogs..." left="15" | ||
36 | name="reset_dialogs_btn" width="210" /> | ||
34 | </panel> | 37 | </panel> |
diff --git a/linden/indra/newview/skins/xui/en-us/panel_preferences_web.xml b/linden/indra/newview/skins/xui/en-us/panel_preferences_web.xml new file mode 100644 index 0000000..fa1fffd --- /dev/null +++ b/linden/indra/newview/skins/xui/en-us/panel_preferences_web.xml | |||
@@ -0,0 +1,34 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <panel border="true" bottom="-409" enabled="true" follows="left|top|right|bottom" | ||
3 | height="408" hidden="false" label="Web" left="102" mouse_opaque="true" | ||
4 | name="web" width="517"> | ||
5 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | ||
6 | bottom="-20" drop_shadow_visible="true" enabled="true" follows="left|top" | ||
7 | font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" | ||
8 | left="12" mouse_opaque="false" name="cache_size_label_l" v_pad="0" width="128"> | ||
9 | Browser cache: | ||
10 | </text> | ||
11 | <button bottom="-30" enabled="true" follows="left|bottom" font="SansSerif" | ||
12 | halign="center" height="22" hidden="false" | ||
13 | label="Clear Now" left="140" mouse_opaque="true" | ||
14 | name="clear_cache" scale_image="true" width="85" /> | ||
15 | |||
16 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | ||
17 | bottom="-60" drop_shadow_visible="true" enabled="true" follows="left|top" | ||
18 | font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" | ||
19 | left="12" mouse_opaque="false" name="cookie_label" v_pad="0" width="128"> | ||
20 | Cookies: | ||
21 | </text> | ||
22 | |||
23 | <check_box bottom="-65" control_name="CookiesEnabled" enabled="true" follows="left|top" font="SansSerifSmall" | ||
24 | height="16" hidden="false" initial_value="false" label="Accept cookies from sites" | ||
25 | left="140" mouse_opaque="true" name="cookies_enabled" radio_style="false" | ||
26 | width="256" /> | ||
27 | |||
28 | <button bottom="-95" enabled="true" follows="left|bottom" font="SansSerif" | ||
29 | halign="center" height="22" hidden="false" | ||
30 | label="Clear Now" left="140" mouse_opaque="true" | ||
31 | name="clear_cookies" scale_image="true" width="85" /> | ||
32 | |||
33 | |||
34 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/en-us/panel_settings_msgbox.xml b/linden/indra/newview/skins/xui/en-us/panel_settings_msgbox.xml deleted file mode 100644 index d6f3967..0000000 --- a/linden/indra/newview/skins/xui/en-us/panel_settings_msgbox.xml +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <panel border="true" bottom="0" height="500" label="Popups" left="0" name="popups" | ||
3 | title="Popups" width="400"> | ||
4 | <text bottom="-20" follows="top|left" left="12" width="300"> | ||
5 | Do not show popups: | ||
6 | </text> | ||
7 | <scroll_list follows="top|left" height="100" left="12" name="disabled_popups" width="480" /> | ||
8 | <button follows="top|left" height="20" label="Enable this popup" left="12" | ||
9 | name="enable_popup" width="150" /> | ||
10 | <text follows="top|left" left="12" width="128"> | ||
11 | Show popups: | ||
12 | </text> | ||
13 | <scroll_list follows="top|left" height="100" left="12" name="enabled_popups" width="480" /> | ||
14 | <button bottom_delta="-45" follows="top|left" height="20" | ||
15 | label="Reset 'Show next time' Dialogs..." left="12" | ||
16 | name="reset_dialogs_btn" width="210" /> | ||
17 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/ko/alerts.xml b/linden/indra/newview/skins/xui/ko/alerts.xml index 8c2d1c2..88df4f3 100644 --- a/linden/indra/newview/skins/xui/ko/alerts.xml +++ b/linden/indra/newview/skins/xui/ko/alerts.xml | |||
@@ -2,7 +2,7 @@ | |||
2 | <alerts> | 2 | <alerts> |
3 | <alert name="MissingAlert"> | 3 | <alert name="MissingAlert"> |
4 | <message name="message"> | 4 | <message name="message"> |
5 | [ALERT_NAME](μ)λ₯Ό alerts.xmlμμ μ°Ύμ μ μμ΅λλ€! | 5 | alerts.xmlμ [ALERT_NAME]μ΄(κ°) μμ΅λλ€. |
6 | </message> | 6 | </message> |
7 | <option name="OK"> | 7 | <option name="OK"> |
8 | νμΈ | 8 | νμΈ |
@@ -10,7 +10,7 @@ | |||
10 | </alert> | 10 | </alert> |
11 | <alert name="FloaterNotFound"> | 11 | <alert name="FloaterNotFound"> |
12 | <message name="message"> | 12 | <message name="message"> |
13 | νλ₯μ μ€λ₯: λ€μ μ μ΄λ₯Ό μ°Ύμ μ μμ΅λλ€: | 13 | νλ¬ν° μ€λ₯: λ€μ μ μ΄λ₯Ό μ°Ύμ μ μμ΅λλ€: |
14 | 14 | ||
15 | [CONTROLS] | 15 | [CONTROLS] |
16 | </message> | 16 | </message> |
@@ -25,12 +25,12 @@ | |||
25 | </alert> | 25 | </alert> |
26 | <alert name="GenericAlert"> | 26 | <alert name="GenericAlert"> |
27 | <message name="message"> | 27 | <message name="message"> |
28 | [λ©μμ§] | 28 | [MESSAGE] |
29 | </message> | 29 | </message> |
30 | </alert> | 30 | </alert> |
31 | <alert name="GenericAlertYesCancel"> | 31 | <alert name="GenericAlertYesCancel"> |
32 | <message name="message"> | 32 | <message name="message"> |
33 | [λ©μμ§] | 33 | [MESSAGE] |
34 | </message> | 34 | </message> |
35 | <option name="Yes"> | 35 | <option name="Yes"> |
36 | μ | 36 | μ |
@@ -41,15 +41,15 @@ | |||
41 | </alert> | 41 | </alert> |
42 | <alert name="GenericServerAlert"> | 42 | <alert name="GenericServerAlert"> |
43 | <message name="message"> | 43 | <message name="message"> |
44 | [λ©μμ§] | 44 | [MESSAGE] |
45 | </message> | 45 | </message> |
46 | </alert> | 46 | </alert> |
47 | <alert name="ConnectTimeout"> | 47 | <alert name="ConnectTimeout"> |
48 | <message name="message"> | 48 | <message name="message"> |
49 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | 49 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. |
50 | μμ€ν μ΄ λ€μ΄μνμΌ μ μμ΅λλ€. | 50 | μμ€ν μ΄ λ€μ΄λ μ μμ΅λλ€. |
51 | μ μ ν λ€μ μλνμκ±°λ, λμλ§μ ν΄λ¦νμλ©΄ | 51 | λͺ μ΄ νμ λ€μ μλνκ±°λ λμλ§μ ν΄λ¦νμ¬ |
52 | μλ΄ λ° μμ€ν μν μΉνμ΄μ§λ‘ κ°λ λ§ν¬κ° λμ΅λλ€. | 52 | μμ€ν μν μΉ νμ΄μ§μ λν μ§μ μ 보 λ° λ§ν¬λ₯Ό νμΈνμμμ€. |
53 | </message> | 53 | </message> |
54 | <option name="OK"> | 54 | <option name="OK"> |
55 | νμΈ | 55 | νμΈ |
@@ -60,13 +60,13 @@ | |||
60 | </alert> | 60 | </alert> |
61 | <alert name="RemoveWearableSave"> | 61 | <alert name="RemoveWearableSave"> |
62 | <message name="message"> | 62 | <message name="message"> |
63 | νμ¬ μλ₯/μ 체 λΆλΆμ λν λ³κ²½ λ΄μ©μ μ μ₯νμκ² μ΅λκΉ? | 63 | λ³κ²½ μ¬νμ μ볡/μ 체 λΆμλ‘ μ μ₯ν©λκΉ? |
64 | </message> | 64 | </message> |
65 | <option name="Save"> | 65 | <option name="Save"> |
66 | μ μ₯ | 66 | μ μ₯ |
67 | </option> | 67 | </option> |
68 | <option name="Don'tSave"> | 68 | <option name="Don'tSave"> |
69 | μ μ₯ κΈμ§ | 69 | μ μ₯ μ ν¨ |
70 | </option> | 70 | </option> |
71 | <option name="Cancel"> | 71 | <option name="Cancel"> |
72 | μ·¨μ | 72 | μ·¨μ |
@@ -74,13 +74,27 @@ | |||
74 | </alert> | 74 | </alert> |
75 | <alert name="SetWearableSave"> | 75 | <alert name="SetWearableSave"> |
76 | <message name="message"> | 76 | <message name="message"> |
77 | νμ¬ μλ₯/μ 체 λΆλΆμ λν λ³κ²½ λ΄μ©μ μ μ₯νμκ² μ΅λκΉ? | 77 | λ³κ²½ μ¬νμ μ볡/μ 체 λΆμλ‘ μ μ₯ν©λκΉ? |
78 | </message> | 78 | </message> |
79 | <option name="Save"> | 79 | <option name="Save"> |
80 | μ μ₯ | 80 | μ μ₯ |
81 | </option> | 81 | </option> |
82 | <option name="Don'tSave"> | 82 | <option name="Don'tSave"> |
83 | μ μ₯ κΈμ§ | 83 | μ μ₯ μ ν¨ |
84 | </option> | ||
85 | <option name="Cancel"> | ||
86 | μ·¨μ | ||
87 | </option> | ||
88 | </alert> | ||
89 | <alert name="WearableSave"> | ||
90 | <message name="message"> | ||
91 | νμ¬ λ΄ λͺ¨μ΅μ μ μ₯ νμκ² μ΅λκΉ? | ||
92 | </message> | ||
93 | <option name="Save"> | ||
94 | μ μ₯ | ||
95 | </option> | ||
96 | <option name="Don'tSave"> | ||
97 | μ μ₯νμ§ μμ | ||
84 | </option> | 98 | </option> |
85 | <option name="Cancel"> | 99 | <option name="Cancel"> |
86 | μ·¨μ | 100 | μ·¨μ |
@@ -88,65 +102,79 @@ | |||
88 | </alert> | 102 | </alert> |
89 | <alert name="CompileQueueSaveText"> | 103 | <alert name="CompileQueueSaveText"> |
90 | <message name="message"> | 104 | <message name="message"> |
91 | λ€μμ μ΄μ λ‘ μΈν΄ μ€ν¬λ¦½νΈ ν μ€νΈ μ λ‘λμ λ¬Έμ κ° λ°μνμ΅λλ€: [μ΄μ ]. μ μ ν λ€μ μλν΄ μ£Όμμμ€. | 105 | λ€μμ μ΄μ λ‘ μΈν΄ μ€ν¬λ¦½νΈμ© ν μ€νΈλ₯Ό μ λ‘λνλ λ° λ¬Έμ κ° λ°μνμ΅λλ€: [REASON]. λ€μ μλν΄ μ£Όμμμ€. |
92 | </message> | 106 | </message> |
93 | </alert> | 107 | </alert> |
94 | <alert name="CompileQueueSaveBytecode"> | 108 | <alert name="CompileQueueSaveBytecode"> |
95 | <message name="message"> | 109 | <message name="message"> |
96 | λ€μμ μ΄μ λ‘ μΈν΄ μ»΄νμΌλ μ€ν¬λ¦½νΈ μ λ‘λμ λ¬Έμ κ° λ°μνμ΅λλ€: [μ΄μ ]. μ μ ν λ€μ μλν΄ μ£Όμμμ€. | 110 | λ€μμ μ΄μ λ‘ μΈν΄ μ»΄νμΌλ μ€ν¬λ¦½νΈλ₯Ό μ λ‘λνλ λ° λ¬Έμ κ° λ°μνμ΅λλ€: [REASON]. λ€μ μλν΄ μ£Όμμμ€. |
97 | </message> | 111 | </message> |
98 | </alert> | 112 | </alert> |
99 | <alert name="WriteAnimationFail"> | 113 | <alert name="WriteAnimationFail"> |
100 | <message name="message"> | 114 | <message name="message"> |
101 | μ λλ©μ΄μ λ°μ΄ν° μ°κΈ°μ μ€ν¨νμ΅λλ€. | 115 | μ λλ©μ΄μ λ°μ΄ν°λ₯Ό μ μ©νμ§ λͺ»νμ΅λλ€. |
102 | </message> | 116 | </message> |
103 | </alert> | 117 | </alert> |
104 | <alert name="UploadAuctionSnapshotFail"> | 118 | <alert name="UploadAuctionSnapshotFail"> |
105 | <message name="message"> | 119 | <message name="message"> |
106 | λ€μμ μ΄μ λ‘ μΈν΄ 경맀 μ€λ μ· μ λ‘λμ λ¬Έμ κ° λ°μνμ΅λλ€: [μ΄μ ] | 120 | λ€μμ μ΄μ λ‘ μΈν΄ 경맀 μ€λ μ·μ μ λ‘λνλ λ° λ¬Έμ κ° λ°μνμ΅λλ€: [REASON] |
107 | </message> | 121 | </message> |
108 | </alert> | 122 | </alert> |
109 | <alert name="UnableToViewContentsMoreThanOne"> | 123 | <alert name="UnableToViewContentsMoreThanOne"> |
110 | <message name="message"> | 124 | <message name="message"> |
111 | νλ²μ 2κ° μ΄μ νλͺ©μ 컨ν μΈ λ₯Ό 보λλ° μ€ν¨νμ΅λλ€. | 125 | νλ²μ 2κ° μ΄μ νλͺ©μ 컨ν μΈ λ₯Ό νμν μ μμ΅λλ€. |
112 | 1κ°μ μ¬λ¬Όλ§ μ νν ν λ€μ μλν΄ μ£Όμμμ€. | 126 | 1κ°μ μ€λΈμ νΈλ§ μ νν ν λ€μ μλν΄ μ£Όμμμ€. |
113 | </message> | 127 | </message> |
114 | </alert> | 128 | </alert> |
115 | <alert name="MustSupplyVoteProposal"> | 129 | <alert name="MustSupplyVoteProposal"> |
116 | <message name="message"> | 130 | <message name="message"> |
117 | ν¬νλ₯Ό μν μ μμλ₯Ό μ 곡νμ μΌ ν©λλ€. | 131 | ν¬νν μ μμ μ§μ ν΄μΌ ν©λλ€. |
118 | κ·Έλ£Ήμ λͺ©νλ₯Ό κ°λ΅νκ² μ λ ₯νμμμ€. | 132 | κ·Έλ£Ή μ©λμ λν κ°λ΅ν μ€λͺ μ μ λ ₯νμμμ€. |
119 | </message> | 133 | </message> |
120 | </alert> | 134 | </alert> |
121 | <alert name="InsufficientFunds"> | 135 | <alert name="InsufficientFunds"> |
122 | <message name="message"> | 136 | <message name="message"> |
123 | μκΈμ΄ λΆμ‘±ν©λλ€. | 137 | λ¦°λ λ¬λ¬ λΆμ‘±. |
124 | </message> | 138 | </message> |
125 | </alert> | 139 | </alert> |
126 | <alert name="CharacterSnapshotSaved"> | 140 | <alert name="CharacterSnapshotSaved"> |
127 | <message name="message"> | 141 | <message name="message"> |
128 | μΊλ¦ν°μ μ€λ μ·μ΄ μ μ₯λμμ΅λλ€. | 142 | κ·νμ μλ°νμ λν μ€λ μ·μ΄ μ μ₯λμμ΅λλ€. |
129 | 143 | ||
130 | μΉνμ΄μ§ μ€νλμ€ μ μκ΄μΌλ‘ κ°μλ©΄ νμΈνμ€ μ μμ΅λλ€. | 144 | μ€λ μ·μ λ³΄λ €λ©΄ Webpage Studioλ₯Ό λ°©λ¬Ένμμμ€. |
131 | </message> | 145 | </message> |
132 | </alert> | 146 | </alert> |
133 | <alert name="SaveClothingBodyChanges"> | 147 | <alert name="SaveClothingBodyChanges"> |
134 | <message name="message"> | 148 | <message name="message"> |
135 | μλ₯/μ 체 λΆλΆμ λ³κ²½ λ΄μ©μ λͺ¨λ μ μ₯νμκ² μ΅λκΉ? | 149 | λͺ¨λ λ³κ²½ μ¬νμ μ볡/μ 체 λΆμλ‘ μ μ₯ν©λκΉ? |
136 | </message> | 150 | </message> |
137 | <option name="SaveAll"> | 151 | <option name="SaveAll"> |
138 | μ 체 μ μ₯ | 152 | λͺ¨λ μ μ₯ |
139 | </option> | 153 | </option> |
140 | <option name="Don'tSave"> | 154 | <option name="Don'tSave"> |
141 | μ μ₯ κΈμ§ | 155 | μ μ₯ μ ν¨ |
142 | </option> | 156 | </option> |
143 | <option name="Cancel"> | 157 | <option name="Cancel"> |
144 | μ·¨μ | 158 | μ·¨μ |
145 | </option> | 159 | </option> |
146 | </alert> | 160 | </alert> |
147 | <alert name="AlterModifyRights"> | 161 | <alert name="GrantModifyRights"> |
162 | <message name="message"> | ||
163 | μ 3μ μ£Όλ―Όμκ² μμ κΆνμ λΆμ¬ν¨μΌλ‘μ¨, μ 3μ μ£Όλ―Όμ λ³ΈμΈμ΄ κ°μ§κ³ μλ μ€λΈμ νΈ λͺ¨λλ₯Ό | ||
164 | λ³κ²½ν μ μμ΅λλ€. λ³Έ νκ°κΆμ μ·¨κΈ μ μ£Όμ | ||
165 | νμμμ€. | ||
166 | [FIRST_NAME] [LAST_NAME]λμκ² μμ κΆνμ λΆμ¬ νμκ² μ΅λκΉ? | ||
167 | </message> | ||
168 | <option name="Yes"> | ||
169 | μ | ||
170 | </option> | ||
171 | <option name="No"> | ||
172 | μλμ€ | ||
173 | </option> | ||
174 | </alert> | ||
175 | <alert name="RevokeModifyRights"> | ||
148 | <message name="message"> | 176 | <message name="message"> |
149 | [μ΄λ¦] [μ±] [λ°©ν₯] μμ κΆλ¦¬λ₯Ό [λμ]νμκ² μ΅λκΉ ? | 177 | [FIRST_NAME] [LAST_NAME]λμ μμ κΆνμ μ·¨μνμκ² μ΅λκΉ? |
150 | </message> | 178 | </message> |
151 | <option name="Yes"> | 179 | <option name="Yes"> |
152 | μ | 180 | μ |
@@ -157,7 +185,7 @@ | |||
157 | </alert> | 185 | </alert> |
158 | <alert name="RemoveFriend"> | 186 | <alert name="RemoveFriend"> |
159 | <message name="message"> | 187 | <message name="message"> |
160 | [μ΄λ¦] [μ±](μ)λ₯Ό μΉκ΅¬ λͺ©λ‘μμ μμ νμκ² μ΅λκΉ? | 188 | [FIRST] [LAST]λμ μΉκ΅¬μμ μ κ±°νμκ² μ΅λκΉ? |
161 | </message> | 189 | </message> |
162 | <option name="Remove"> | 190 | <option name="Remove"> |
163 | μ κ±° | 191 | μ κ±° |
@@ -168,13 +196,13 @@ | |||
168 | </alert> | 196 | </alert> |
169 | <alert name="GroupCreateSuccess"> | 197 | <alert name="GroupCreateSuccess"> |
170 | <message name="message"> | 198 | <message name="message"> |
171 | κ·Έλ£Ήμ΄ μ±κ³΅μ μΌλ‘ μμ±λμμ΅λλ€. | 199 | κ·Έλ£Ήμ΄ μ±κ³΅μ μΌλ‘ λ§λ€μ΄ μ‘μ΅λλ€. |
172 | </message> | 200 | </message> |
173 | </alert> | 201 | </alert> |
174 | <alert name="UnableToCreateGroup"> | 202 | <alert name="UnableToCreateGroup"> |
175 | <message name="message"> | 203 | <message name="message"> |
176 | κ·Έλ£Ή μμ±μ μ€ν¨νμ΅λλ€. | 204 | κ·Έλ£Ήμ λ§λ€ μ μμ΅λλ€. |
177 | [λ©μμ§] | 205 | [MESSAGE] |
178 | </message> | 206 | </message> |
179 | <option name="OK"> | 207 | <option name="OK"> |
180 | νμΈ | 208 | νμΈ |
@@ -197,12 +225,12 @@ | |||
197 | </alert> | 225 | </alert> |
198 | <alert name="CreateGroupCanAfford"> | 226 | <alert name="CreateGroupCanAfford"> |
199 | <message name="message"> | 227 | <message name="message"> |
200 | κ·Έλ£Ή μμ± λΉμ©μ L$[COST]μ λλ€. | 228 | κ·Έλ£Ήμ μμ±νλ €λ©΄ L$[COST]κ° λλλ€. |
201 | 229 | ||
202 | κ·Έλ£Ήμ 3μΌ μ΄μ μ μ§νλ €λ©΄, | 230 | κ·Έλ£Ήμ 3μΌ μ΄μ μ μ§νλ €λ©΄ |
203 | λ©€λ² μκ° μ΄ 3μΈ μ΄μμ΄μ΄μΌ ν©λλ€. | 231 | νμ μκ° μ΄ 3μΈ μ΄μμ΄ λμ΄μΌ ν©λλ€. |
204 | 232 | ||
205 | κ·Έλ£Ήμ μμ±νμκ² μ΅λκΉ? | 233 | κ·Έλ£Ήμ μμ± νμκ² μ΅λκΉ? |
206 | </message> | 234 | </message> |
207 | <option name="Create"> | 235 | <option name="Create"> |
208 | λ§λ€κΈ° | 236 | λ§λ€κΈ° |
@@ -213,24 +241,24 @@ | |||
213 | </alert> | 241 | </alert> |
214 | <alert name="CreateGroupCannotAfford"> | 242 | <alert name="CreateGroupCannotAfford"> |
215 | <message name="message"> | 243 | <message name="message"> |
216 | κ·Έλ£Ή μμ± λΉμ©μ L$[λΉμ©]μ λλ€. | 244 | κ·Έλ£Ήμ μμ±νλ €λ©΄ L$[COST]κ° λλλ€. |
217 | μ΄ κ·Έλ£Ήμ μμ±νκΈ°μλ 보μ νκ³ κ³μ λμ΄ μΆ©λΆμΉ μμ΅λλ€. | 245 | μκΈμ΄ λΆμ‘±νμ¬ μ΄ κ·Έλ£Ήμ μμ±ν μ μμ΅λλ€. |
218 | </message> | 246 | </message> |
219 | </alert> | 247 | </alert> |
220 | <alert name="GroupNameTooShort"> | 248 | <alert name="GroupNameTooShort"> |
221 | <message name="message"> | 249 | <message name="message"> |
222 | κ·Έλ£Ήλͺ μ μ΅μ 4κΈμλ‘ μ΄λ£¨μ΄μ ΈμΌ ν©λλ€. | 250 | κ·Έλ£Ή μ΄λ¦μ μ΅μ 4 κΈμ μ΄μμ λλ€. |
223 | </message> | 251 | </message> |
224 | </alert> | 252 | </alert> |
225 | <alert name="GroupNameUsesReservedWord"> | 253 | <alert name="GroupNameUsesReservedWord"> |
226 | <message name="message"> | 254 | <message name="message"> |
227 | κ·Έλ£Ήλͺ μ μμ½λ λ¨μ΄κ° μ¬μ©λμμ΅λλ€. λ€λ₯Έ | 255 | κ·Έλ£Ή μ΄λ¦μ μμ½λ λ¨μ΄κ° μ¬μ©λκ³ μμ΅λλ€. λ€λ₯Έ |
228 | μ΄λ¦μ μ νν΄ μ£Όμμμ€. | 256 | μ΄λ¦μ μ ννμμμ€. |
229 | </message> | 257 | </message> |
230 | </alert> | 258 | </alert> |
231 | <alert name="MustSpecifyGroupNoticeSubject"> | 259 | <alert name="MustSpecifyGroupNoticeSubject"> |
232 | <message name="message"> | 260 | <message name="message"> |
233 | κ·Έλ£Ή 곡μ§λ₯Ό μ μ‘νλ €λ©΄ μ λͺ©μ μ§μ ν΄μΌ ν©λλ€. | 261 | κ·Έλ£Ή 곡μ§λ₯Ό μ μ‘νλ €λ©΄ μ λͺ©μ μ λ ₯ν΄μΌ ν©λλ€. |
234 | </message> | 262 | </message> |
235 | <option name="OK"> | 263 | <option name="OK"> |
236 | νμΈ | 264 | νμΈ |
@@ -238,17 +266,20 @@ | |||
238 | </alert> | 266 | </alert> |
239 | <alert name="MustSupplyGroupCharter"> | 267 | <alert name="MustSupplyGroupCharter"> |
240 | <message name="message"> | 268 | <message name="message"> |
241 | κ·Έλ£Ήμ μ€λ¦½ μ‘°νλ₯Ό μ 곡νμ μΌ ν©λλ€. | 269 | κ·Έλ£Ήμ λν μ€λ¦½ μ‘°νμ μ§μ ν΄μΌ ν©λλ€. |
242 | κ·Έλ£Ήμ λͺ©νλ₯Ό κ°λ΅νκ² μ λ ₯νμμμ€. | 270 | κ·Έλ£Ή μ©λμ λν κ°λ΅ν μ€λͺ μ μ λ ₯νμμμ€. |
243 | </message> | 271 | </message> |
244 | </alert> | 272 | </alert> |
245 | <alert name="AddGroupOwnerWarning"> | 273 | <alert name="AddGroupOwnerWarning"> |
246 | <message name="message"> | 274 | <message name="message"> |
247 | κ·Έλ£Ή λ©€λ²κ° [ROLE_NAME] μν μ μΆκ°λ©λλ€. | 275 | κ·Έλ£Ή νμμ΄ [ROLE_NAME] μν μ μΆκ°λ©λλ€. |
248 | λ©€λ²λ₯Ό ν΄λΉ μν μμ μμ ν μ μμ΅λλ€. | 276 | νμμ ν΄λΉ μν μμ μμ ν μ μμ΅λλ€. |
249 | λ©€λ²λ μν μ체λ₯Ό κ·Έλ§ λμ΄μΌ ν©λλ€. | 277 | νμμ μν μ체λ₯Ό κ·Έλ§ λμ΄μΌ ν©λλ€. |
250 | μ λ§ κ³μνμκ² μ΅λκΉ? | 278 | μ λ§ κ³μνμκ² μ΅λκΉ? |
251 | </message> | 279 | </message> |
280 | <ignore name="ignore"> | ||
281 | κ·Έλ£Ή νμμ μμ μ£Ό μν μ μΆκ°ν λ | ||
282 | </ignore> | ||
252 | <option name="Yes"> | 283 | <option name="Yes"> |
253 | μ | 284 | μ |
254 | </option> | 285 | </option> |
@@ -258,16 +289,17 @@ | |||
258 | </alert> | 289 | </alert> |
259 | <alert name="AssignDangerousActionWarning"> | 290 | <alert name="AssignDangerousActionWarning"> |
260 | <message name="message"> | 291 | <message name="message"> |
261 | λ₯λ ₯ '[ACTION_NAME]'μ΄(κ°) | 292 | κΆν '[ACTION_NAME]'μ(λ₯Ό) μν '[ROLE_NAME]'μ |
262 | μν '[ROLE_NAME]'μ μΆκ°λ©λλ€. | 293 | μΆκ°νλ €κ³ ν©λλ€. |
263 | 294 | ||
264 | *κ²½κ³ * | 295 | *κ²½κ³ * |
265 | μν μ μ΄ λ₯λ ₯μ΄ μλ λ©€λ²λ μ€μ€λ‘ κ·Έλ§λ μ μμΌλ©°-- | 296 | μν μ λ³Έ κΆνμ΄ μλ νμμ μ€μ€λ‘λ₯Ό λΉλ‘―νμ¬ λ€λ₯Έ νμμ |
266 | νμ¬ λ₯λ ₯λ³΄λ€ λ λ§μ λ₯λ ₯μ κ°μ§ λ€λ₯Έ λ©€λ²μ μν μ | 297 | νμ¬ κΆνλ³΄λ€ λ λ§μ κΆνμ κ°μ§ μν μ ν λΉν μ μμΌλ©° |
267 | μμ μ£Όμ κ°κΉμ΄ λ₯λ ₯μ ν₯μμν¬ μ μμ΅λλ€. μ΄ λ₯λ ₯μ ν λΉνκΈ° μ μ νμ¬ | 298 | μμ μ£Όμ κ°κΉμ΄ κΆνμΌλ‘ λ±κΈμ |
268 | μνμ λν΄ μ΄ν΄ν΄μΌ ν©λλ€. | 299 | λμΌ μ μμ΅λλ€. μ΄ κΆνμ ν λΉνκΈ° μ μ νμ¬ μνμ λν΄ |
300 | μ΄ν΄ν΄μΌ ν©λλ€. | ||
269 | 301 | ||
270 | μ΄ λ₯λ ₯μ '[ROLE_NAME]'μ μΆκ° νμκ² μ΅λκΉ? | 302 | μ΄ κΆνμ '[ROLE_NAME]'μ μΆκ°νμκ² μ΅λκΉ? |
271 | </message> | 303 | </message> |
272 | <option name="Yes"> | 304 | <option name="Yes"> |
273 | μ | 305 | μ |
@@ -278,15 +310,15 @@ | |||
278 | </alert> | 310 | </alert> |
279 | <alert name="AssignDangerousAbilityWarning"> | 311 | <alert name="AssignDangerousAbilityWarning"> |
280 | <message name="message"> | 312 | <message name="message"> |
281 | λ₯λ ₯ '[ACTION_NAME]'μ΄(κ°) | 313 | κΆν '[ACTION_NAME]'μ(λ₯Ό) μν '[ROLE_NAME]'μ |
282 | μν '[ROLE_NAME]'μ μΆκ°λ©λλ€. | 314 | μΆκ°νλ €κ³ ν©λλ€. |
283 | 315 | ||
284 | *κ²½κ³ * | 316 | *κ²½κ³ * |
285 | μν μ λ³Έ λ₯λ ₯μ΄ μλ λ©€λ²λ μ€μ€λ‘ κ·Έλ§λ μ μμΌλ©°-- | 317 | μν μ λ³Έ κΆνμ΄ μλ νμμ μ€μ€λ‘λ₯Ό λΉλ‘―νμ¬ λ€λ₯Έ νμμκ² |
286 | λͺ¨λ λ₯λ ₯μ κ°μΆ λ€λ₯Έ λ©€λ²λ μμ μ£Όμ κ°κΉμ΄ | 318 | λͺ¨λ κΆνμ ν λΉν μ μμΌλ©° μμ μ£Όμ κ°κΉμ΄ κΆνμ κ°μ§ μ μλλ‘ |
287 | λ₯λ ₯μ ν₯μμν¬ μ μμ΅λλ€. | 319 | λ±κΈμ λμΌ μ μμ΅λλ€. |
288 | 320 | ||
289 | λ³Έ λ₯λ ₯μ '[ROLE_NAME]'μ μΆκ°νμκ² μ΅λκΉ? | 321 | μ΄ κΆνμ '[ROLE_NAME]'μ μΆκ°νμκ² μ΅λκΉ? |
290 | </message> | 322 | </message> |
291 | <option name="Yes"> | 323 | <option name="Yes"> |
292 | μ | 324 | μ |
@@ -297,74 +329,92 @@ | |||
297 | </alert> | 329 | </alert> |
298 | <alert name="ClickPublishHelpGroup"> | 330 | <alert name="ClickPublishHelpGroup"> |
299 | <message name="message"> | 331 | <message name="message"> |
300 | βμΉμ κ²μβ μ΅μ μ μ ννλ©΄ [SECOND_LIFE] μΉμ¬μ΄νΈμ | 332 | μΉμ κ²μ μ΅μ μ μ ννλ©΄ |
301 | κ·Έλ£Ήλͺ , νμ₯, μ€λ¦½ μ‘°ν, νμ΄ν, μ€λ¦½μ μ΄λ¦μ | 333 | [SECOND_LIFE] |
302 | κ²μν μ μμ΅λλ€. μκΈ° λ΄μ© μ€ μ§μ μ¬ν κΈ°μ€μΌλ‘ λ³Ό λ | 334 | μΉ μ¬μ΄νΈμ κ·Έλ£Ή μ΄λ¦, λ‘κ³ , μ€λ¦½ μ‘°ν, νμ΄ν λ° μ€λ¦½μ μ΄λ¦μ κ²μν μ μμ΅λλ€.μκΈ° λ΄μ© μ€ μ§μ μ¬ν κΈ°μ€μΌλ‘ λ³Ό λ |
303 | μ±μΈμ©μΌλ‘ κ°μ£Όλ μ μλ λ΄μ©μ΄ μμ κ²½μ° κ·Έ μ¬μ€μ | 335 | μ±μΈ μ μ©μΌλ‘ κ°μ£Όλ μ μλ λ΄μ©μ΄ μμ κ²½μ° κ·Έ μ¬μ€μ |
304 | νμν μλ¬΄κ° μμ΅λλ€. | 336 | νμν μλ¬΄κ° μμ΅λλ€. |
305 | </message> | 337 | </message> |
306 | </alert> | 338 | </alert> |
307 | <alert name="ClickPublishHelpLand"> | 339 | <alert name="ClickPublishHelpLand"> |
308 | <message name="message"> | 340 | <message name="message"> |
309 | βμΉμ κ²μβ μ΅μ μ μ ννλ©΄ [SECOND_LIFE] μΉμ¬μ΄νΈμ | 341 | μΉμ κ²μ μ΅μ μ μ ννλ©΄ |
310 | μ΄λ¦, μ€λͺ , μ€λ μ·, ꡬνμ μμΉλ₯Ό | 342 | [SECOND_LIFE] |
311 | κ²μν μ μμ΅λλ€. μκΈ° λ΄μ© μ€ μ§μ μ¬ν κΈ°μ€μΌλ‘ λ³Ό λ | 343 | μΉ μ¬μ΄νΈμ μ΄ κ΅¬νμ μ΄λ¦, μ€λͺ , μ€λ μ· λ° μμΉλ₯Ό κ²μν μ μμ΅λλ€.μκΈ° λ΄μ© μ€ μ§μ μ¬ν κΈ°μ€μΌλ‘ λ³Ό λ |
312 | μ±μΈμ©μΌλ‘ κ°μ£Όλ μ μλ λ΄μ©μ΄ μμ κ²½μ° κ·Έ μ¬μ€μ | 344 | μ±μΈ μ μ©μΌλ‘ κ°μ£Όλ μ μλ λ΄μ©μ΄ μμ κ²½μ° κ·Έ μ¬μ€μ |
313 | νμν μλ¬΄κ° μμ΅λλ€. | 345 | νμν μλ¬΄κ° μμ΅λλ€. |
314 | </message> | 346 | </message> |
315 | </alert> | 347 | </alert> |
316 | <alert name="ClickPublishHelpPostcard"> | 348 | <alert name="ClickPublishHelpPostcard"> |
317 | <message name="message"> | 349 | <message name="message"> |
318 | μΉμ κ²μ | 350 | μΉμ κ²μ μ΅μ μ μ ννλ©΄ |
351 | [SECOND_LIFE] | ||
352 | μΉ μ¬μ΄νΈμ 촬μμμ [SECOND_LIFE] μ΄λ¦, μ λͺ©, μμΉ, λ©μμ§ λ° μ€λ μ·μ κ²μν μ μμ΅λλ€.μκΈ° λ΄μ© μ€ μ§μ μ¬ν κΈ°μ€μΌλ‘ λ³Ό λ | ||
353 | μ±μΈ μ μ©μΌλ‘ κ°μ£Όλ μ μλ μ€λ μ· λ΄μ©μ΄ μμ κ²½μ° κ·Έ μ¬μ€μ | ||
354 | νμν μλ¬΄κ° μμ΅λλ€. | ||
319 | </message> | 355 | </message> |
320 | </alert> | 356 | </alert> |
321 | <alert name="ClickPublishHelpAvatar"> | 357 | <alert name="ClickPublishHelpAvatar"> |
322 | <message name="message"> | 358 | <message name="message"> |
323 | βμΉμ κ²μβ μ΅μ μ μ ννλ©΄ [SECOND_LIFE] μΉμ¬μ΄νΈμ | 359 | μΉμ κ²μ μ΅μ μ μ ννλ©΄ |
324 | μ΄λ¦, μ΄λ―Έμ§, βμκ°β κΈμ κ²μν μ μμ΅λλ€. | 360 | [SECOND_LIFE] |
361 | μΉ μ¬μ΄νΈμ λ΄ μ΄λ¦, μ΄λ―Έμ§ λ° βμκΈ° μκ°β ν μ€νΈλ₯Ό κ²μν μ μμ΅λλ€. | ||
325 | </message> | 362 | </message> |
326 | </alert> | 363 | </alert> |
364 | <alert name="ClickPartnerHelpAvatar"> | ||
365 | <message name="message"> | ||
366 | [SECOND_LIFE] μΉμ¬μ΄νΈλ₯Ό ν΅ν΄ λ€λ₯Έ μ£Όλ―Όκ³Όμ ννΈλ κ΄κ³μ μ μνκ±°λ κΈ°μ‘΄ ννΈλ κ΄κ³μ ν΄μ ν μ μμ΅λλ€. | ||
367 | |||
368 | ννΈλ κ΄κ³μ λν μΆκ° μ 보λ₯Ό λ³΄λ €λ©΄ μΈμ»¨λλΌμ΄ν μΉμ¬μ΄νΈλ‘ μ΄λνμμμ€. | ||
369 | </message> | ||
370 | <option name="GotoPage"> | ||
371 | νμ΄μ§λ‘ μ΄λ | ||
372 | </option> | ||
373 | <option name="Cancel"> | ||
374 | μ·¨μ | ||
375 | </option> | ||
376 | </alert> | ||
327 | <alert name="ClickWebProfileHelpAvatar"> | 377 | <alert name="ClickWebProfileHelpAvatar"> |
328 | <message name="message"> | 378 | <message name="message"> |
329 | If this resident has a web profile URL set then you can: | 379 | μΉ νλ‘ν URLμ΄ μμΌλ©΄ λ€μμ ν μ μμ: |
330 | * Click Load to load the page with the embedded web browser. | 380 | * λΆλ¬μ€κΈ°λ₯Ό ν΄λ¦νμ¬ μΈμ»¨λλΌμ΄ν μμ μΉ λΈλΌμ°μ μμ μΉνλ‘νμ λΆλ¬μ΅λλ€. |
331 | * Click Open to view externally in your default web browser. | 381 | *μ΄κΈ°λ₯Ό ν΄λ¦νμ¬ μΈλΆ μΉ λΈλΌμ°μ μμ μΉ νλ‘νμ λ³Ό μ μμ΅λλ€. |
332 | 382 | ||
333 | When viewing your profile you can enter any URL as your Web Profile. | 383 | λ΄ νλ‘νμ λ³Ό λλ μΉ νλ‘νκ³Ό κ°μ΄ URLμ μ λ ₯ν μ μμ΅λλ€. |
334 | Residents can visit the URL you specify when they view your profile. | 384 | μ£Όλ―Όλ€μ΄ λ΄ νλ‘νμ λ³Ό κ²½μ°λ΄κ° μ§μ ν URLμ μΉ νλ‘νμ λ³Ό μ μμ΅λλ€. |
335 | </message> | 385 | </message> |
336 | </alert> | 386 | </alert> |
337 | <alert name="ClickWebProfileNoWebHelpAvatar"> | 387 | <alert name="ClickWebProfileNoWebHelpAvatar"> |
338 | <message name="message"> | 388 | <message name="message"> |
339 | If this resident has a web profile URL set then you can: | 389 | μΉ νλ‘ν URLμ΄ μμΌλ©΄ λ€μμ ν μ μμ: |
340 | * Click Open to view externally in your default web browser. | 390 | *μ΄κΈ°λ₯Ό ν΄λ¦νμ¬ μΈλΆ μΉ λΈλΌμ°μ μμ μΉ νλ‘νμ λ³Ό μ μμ΅λλ€. |
341 | 391 | ||
342 | When viewing your profile you can enter any URL as your Web Profile. | 392 | λ΄ νλ‘νμ λ³Ό λλ μΉ νλ‘νκ³Ό κ°μ΄ URLμ μ λ ₯ν μ μμ΅λλ€. |
343 | Residents can visit the URL you specify when they view your profile. | 393 | μ£Όλ―Όλ€μ΄ λ΄ νλ‘νμ λ³Ό κ²½μ°λ΄κ° μ§μ ν URLμ μΉ νλ‘νμ λ³Ό μ μμ΅λλ€. |
344 | </message> | 394 | </message> |
345 | </alert> | 395 | </alert> |
346 | <alert name="ReputationMinGreaterThanMax"> | 396 | <alert name="ReputationMinGreaterThanMax"> |
347 | <message name="message"> | 397 | <message name="message"> |
348 | λͺ μ± μ΅μ νλκ° μ΅κ³ νλλ³΄λ€ ν½λλ€. | 398 | μ΅μ ννμ΄ μ΅λ ννλ³΄λ€ ν½λλ€. |
349 | μ΅μ νλλ₯Ό λμΆκ±°λ μ΅κ³ νλλ₯Ό μ¬λ €μ£Όμμμ€. | 399 | μ΅μλ₯Ό λμΆκ±°λ μ΅λλ₯Ό μ¬λ¦½λλ€. |
350 | </message> | 400 | </message> |
351 | </alert> | 401 | </alert> |
352 | <alert name="MoneyMinGreaterThanMax"> | 402 | <alert name="MoneyMinGreaterThanMax"> |
353 | <message name="message"> | 403 | <message name="message"> |
354 | μκΈ μ΅μ νλκ° μ΅λ νλλ³΄λ€ ν½λλ€. | 404 | μ΅μ κΈμ‘μ΄ μ΅λ κΈμ‘λ³΄λ€ ν½λλ€. |
355 | μ΅μ νλλ₯Ό λμΆκ±°λ μ΅λ νλλ₯Ό μ¬λ €μ£Όμμμ€. | 405 | μ΅μλ₯Ό λμΆκ±°λ μ΅λλ₯Ό μ¬λ¦½λλ€. |
356 | </message> | 406 | </message> |
357 | </alert> | 407 | </alert> |
358 | <alert name="OfficerTitleTooLong"> | 408 | <alert name="OfficerTitleTooLong"> |
359 | <message name="message"> | 409 | <message name="message"> |
360 | κ°λΆ μ§μλ μ΅λ 20κΈμκΉμ§ νμ©λ©λλ€. | 410 | μ΄μμ§ νμ΄νμ μ΅λ 20 κΈμμμ λλ€. |
361 | λ 짧μ μ§μλ₯Ό μ νν΄ μ£Όμμμ€. | 411 | λ 짧μ νμ΄νμ μ νμΈμ. |
362 | </message> | 412 | </message> |
363 | </alert> | 413 | </alert> |
364 | <alert name="MemberTitleTooLong"> | 414 | <alert name="MemberTitleTooLong"> |
365 | <message name="message"> | 415 | <message name="message"> |
366 | λ©€λ² μ§μλ μ΅λ 20κΈμκΉμ§ νμ©λ©λλ€. | 416 | νμ νμ΄νμ μ΅λ 20 κΈμμμ λλ€. |
367 | λ 짧μ μ§μλ₯Ό μ νν΄ μ£Όμμμ€. | 417 | λ 짧μ νμ΄νμ μ νμμμ€. |
368 | </message> | 418 | </message> |
369 | </alert> | 419 | </alert> |
370 | <alert name="RunningLocally"> | 420 | <alert name="RunningLocally"> |
@@ -378,7 +428,7 @@ Residents can visit the URL you specify when they view your profile. | |||
378 | </alert> | 428 | </alert> |
379 | <alert name="EjectNoMemberSelected"> | 429 | <alert name="EjectNoMemberSelected"> |
380 | <message name="message"> | 430 | <message name="message"> |
381 | μΆμΆν λ©€λ²κ° μ νλμ§ μμμ΅λλ€. | 431 | μΆλ°©ν μ ν νμ μμ. |
382 | </message> | 432 | </message> |
383 | <option name="OK"> | 433 | <option name="OK"> |
384 | νμΈ | 434 | νμΈ |
@@ -386,8 +436,8 @@ Residents can visit the URL you specify when they view your profile. | |||
386 | </alert> | 436 | </alert> |
387 | <alert name="ConfirmEject"> | 437 | <alert name="ConfirmEject"> |
388 | <message name="message"> | 438 | <message name="message"> |
389 | μ΄λλ‘ μ€ννμλ©΄ κ·Έλ£Ήμμ [λ©€λ²λͺ ](μ΄)κ° μΆμΆλ©λλ€. | 439 | κ·Έλ£Ήμμ [MEMBER]μ΄(κ°) μΆμΆ λ©λλ€. |
390 | κ·Έλλ‘ μ€ννμκ² μ΅λκΉ? | 440 | κ³μ νμκ² μ΅λκΉ? |
391 | </message> | 441 | </message> |
392 | <option name="Eject"> | 442 | <option name="Eject"> |
393 | μΆμΆ | 443 | μΆμΆ |
@@ -398,11 +448,11 @@ Residents can visit the URL you specify when they view your profile. | |||
398 | </alert> | 448 | </alert> |
399 | <alert name="JoinGroupCanAfford"> | 449 | <alert name="JoinGroupCanAfford"> |
400 | <message name="message"> | 450 | <message name="message"> |
401 | μ΄ κ·Έλ£Ή κ°μ λΉμ©μ L$[λΉμ©]μ λλ€. | 451 | μ΄ κ·Έλ£Ή κ°μ λΉμ©μ L$[COST]μ λλ€. |
402 | κ°μ νμκ² μ΅λκΉ? | 452 | κ³μνκ² μ΅λκΉ? |
403 | </message> | 453 | </message> |
404 | <option name="Join"> | 454 | <option name="Join"> |
405 | μ°Έμ¬ | 455 | κ°μ |
406 | </option> | 456 | </option> |
407 | <option name="Cancel"> | 457 | <option name="Cancel"> |
408 | μ·¨μ | 458 | μ·¨μ |
@@ -410,14 +460,14 @@ Residents can visit the URL you specify when they view your profile. | |||
410 | </alert> | 460 | </alert> |
411 | <alert name="JoinGroupCannotAfford"> | 461 | <alert name="JoinGroupCannotAfford"> |
412 | <message name="message"> | 462 | <message name="message"> |
413 | μ΄ κ·Έλ£Ή κ°μ λΉμ©μ L$[λΉμ©]μ λλ€. | 463 | μ΄ κ·Έλ£Ή κ°μ λΉμ©μ L$[COST]μ λλ€. |
414 | μ΄ κ·Έλ£Ήμ κ°μ νκΈ°μλ 보μ νκ³ κ³μ λμ΄ μΆ©λΆμΉ μμ΅λλ€. | 464 | μ΄ κ·Έλ£Ήμ κ°μ νκΈ° μν μμ‘μ΄ λΆμ‘±ν©λλ€. |
415 | </message> | 465 | </message> |
416 | </alert> | 466 | </alert> |
417 | <alert name="LandBuyPass"> | 467 | <alert name="LandBuyPass"> |
418 | <message name="message"> | 468 | <message name="message"> |
419 | L$[λΉμ©](μ)λ₯Ό λ΄μλ©΄ μ΄ ν μ§('[PARCEL_NAME]')μ | 469 | L$[COST]λ‘ μ΄ ν μ§('[PARCEL_NAME]')μ [TIME]μκ°λμ 머무λ₯Ό μ μμ΅λλ€. |
420 | [μκ°] μκ° λμ λ€μ΄κ°μ€ μ μμ΅λλ€. ν¨μ€λ₯Ό ꡬμ νμκ² μ΅λκΉ? | 470 | ν¨μ€λ₯Ό ꡬ맀ν©λκΉ? |
421 | </message> | 471 | </message> |
422 | <option name="OK"> | 472 | <option name="OK"> |
423 | νμΈ | 473 | νμΈ |
@@ -428,23 +478,23 @@ Residents can visit the URL you specify when they view your profile. | |||
428 | </alert> | 478 | </alert> |
429 | <alert name="CannotStartAuctionAlreadyForSale"> | 479 | <alert name="CannotStartAuctionAlreadyForSale"> |
430 | <message name="message"> | 480 | <message name="message"> |
431 | μ΄λ―Έ λ§€λ¬Όλ‘ μ€μ λ ꡬνμμμλ 경맀λ₯Ό | 481 | μ΄λ―Έ 맀맀μ©μΌλ‘ μ€μ λ ꡬνμ λν΄ κ²½λ§€λ₯Ό |
432 | μμνμ€ μ μμ΅λλ€. μ λ§ κ²½λ§€ μμμ μνμλ κ²½μ°, | 482 | μμν μ μμ΅λλ€. 경맀λ₯Ό μμνλ €λ©΄ ν μ§ ν맀λ₯Ό |
433 | λ¨Όμ ν μ§ λ§€λ¬Ό μ€μ μ μ·¨μνμμμ€. | 483 | λΉνμ±ννμμμ€. |
434 | </message> | 484 | </message> |
435 | </alert> | 485 | </alert> |
436 | <alert name="SalePriceRestriction"> | 486 | <alert name="SalePriceRestriction"> |
437 | <message name="message"> | 487 | <message name="message"> |
438 | λκ΅°κ°μκ² ν맀νλ κ²½μ° ν맀κ°λ > L$0μΌλ‘ μ€μ λμ΄μΌ ν©λλ€. | 488 | ν맀νλ κ²½μ°, ν맀 κ°κ²©μ > L$0(μΌ)λ‘ μ€μ λμ΄μΌ ν¨. |
439 | L$0μ ν맀ν κ²½μ° ν맀 λμ κ°μΈμ μ ννμμμ€. | 489 | L$0λ‘ ν맀νλ κ²½μ°, ν μ¬λμ μ ννμμμ€. |
440 | </message> | 490 | </message> |
441 | </alert> | 491 | </alert> |
442 | <alert name="ConfirmLandSaleChange"> | 492 | <alert name="ConfirmLandSaleChange"> |
443 | <message name="message"> | 493 | <message name="message"> |
444 | μ ννμ [LAND_SIZE] νλ°© λ―Έν°μ ν μ§λ λ§€λ¬Όλ‘ μ€μ λ©λλ€. | 494 | μ νλ [LAND_SIZE] νλ°© λ―Έν°μ ν μ§κ° ν맀μ©μΌλ‘ μ€μ λμμ΅λλ€. |
445 | κ·νμ ν맀κ°λ L$[SALE_PRICE]κ° λ κ²μ΄λ©°, [μ΄λ¦](μ΄)κ° ν맀λ₯Ό λννκ² λ©λλ€. | 495 | ν맀 κ°κ²©μ L$[SALE_PRICE]μ΄κ³ [NAME]μκ² νλ§€κ° μΉμΈλ©λλ€. |
446 | 496 | ||
447 | μ΄ λ³κ²½ λ΄μ©μ κ·Έλλ‘ μ€ννμκ² μ΅λκΉ? | 497 | μ΄ λ³κ²½ μ¬νμ κ³μ μ μ©νμκ² μ΅λκΉ? |
448 | </message> | 498 | </message> |
449 | <option name="Continue"> | 499 | <option name="Continue"> |
450 | κ³μ | 500 | κ³μ |
@@ -455,14 +505,14 @@ L$0μ ν맀ν κ²½μ° ν맀 λμ κ°μΈμ μ ννμμμ€. | |||
455 | </alert> | 505 | </alert> |
456 | <alert name="ReturnObjectsDeededToGroup"> | 506 | <alert name="ReturnObjectsDeededToGroup"> |
457 | <message name="message"> | 507 | <message name="message"> |
458 | μ΄ ν μ§ κ΅¬μ λ΄μμ κ·Έλ£Ή '[NAME]'μ΄(κ°) 곡μ νλ | 508 | μ΄ ν μ§ κ΅¬ν λ΄μμ κ·Έλ£Ή '[NAME]'κ³Ό(μ) 곡μ νλ |
459 | λͺ¨λ μμ΄ν μ μ΄μ μμ μ£Όμ μμ ν¨μ λ€μ | 509 | λͺ¨λ μ€λΈμ νΈλ₯Ό μ΄μ μμ μ£Όμ |
460 | λ°ννμκ² μ΅λκΉ? | 510 | μΈλ²€ν 리μ λ°ν νμκ² μ΅λκΉ? |
461 | 511 | ||
462 | *κ²½κ³ * μ΄λ‘ μΈν΄ κ·Έλ£Ήμ μλλ μλκ° λΆκ°λ₯ν μμ΄ν μ΄ | 512 | *κ²½κ³ * μ΄λ‘ μΈν΄ κ·Έλ£Ήμ μλλ μλ λΆκ°λ₯ μ€λΈμ νΈλ |
463 | μμ λ©λλ€ | 513 | μμ λ©λλ€. |
464 | 514 | ||
465 | μ¬λ¬Ό: [N] | 515 | μ€λΈμ νΈ: [N] |
466 | </message> | 516 | </message> |
467 | <option name="Return"> | 517 | <option name="Return"> |
468 | λ°ν | 518 | λ°ν |
@@ -473,11 +523,11 @@ L$0μ ν맀ν κ²½μ° ν맀 λμ κ°μΈμ μ ννμμμ€. | |||
473 | </alert> | 523 | </alert> |
474 | <alert name="ReturnObjectsOwnedByUser"> | 524 | <alert name="ReturnObjectsOwnedByUser"> |
475 | <message name="message"> | 525 | <message name="message"> |
476 | μ΄ ν μ§ κ΅¬μ λ΄μμ μ£Όλ―Ό '[NAME]'μ΄(κ°) μμ ν | 526 | μ΄ ν μ§ κ΅¬νμ μλ μ£Όλ―Ό '[NAME]' μμ μ μ€λΈμ νΈλ₯Ό |
477 | λͺ¨λ μμ΄ν μ μ£Όλ―Όμ 보κ΄ν¨μ λ€μ | 527 | λͺ¨λ μ€λΈμ νΈ μΈλ²€ν 리μ |
478 | λ°ννμκ² μ΅λκΉ? | 528 | λ°ν νμκ² μ΅λκΉ? |
479 | 529 | ||
480 | μ¬λ¬Ό: [N] | 530 | μ€λΈμ νΈ: [N] |
481 | </message> | 531 | </message> |
482 | <option name="Return"> | 532 | <option name="Return"> |
483 | λ°ν | 533 | λ°ν |
@@ -488,11 +538,11 @@ L$0μ ν맀ν κ²½μ° ν맀 λμ κ°μΈμ μ ννμμμ€. | |||
488 | </alert> | 538 | </alert> |
489 | <alert name="ReturnObjectsOwnedBySelf"> | 539 | <alert name="ReturnObjectsOwnedBySelf"> |
490 | <message name="message"> | 540 | <message name="message"> |
491 | μ΄ ν μ§ κ΅¬μ λ΄μμ κ·νκ° μμ ν | 541 | μ΄ ν μ§ κ΅¬νμ μλ κ·ν μμ μ λͺ¨λ |
492 | λͺ¨λ μμ΄ν μ μμ μ 보κ΄ν¨μ λ€μ | 542 | μ€λΈμ νΈλ₯Ό κ·νμ μΈλ²€ν 리μ |
493 | λ°ννμκ² μ΅λκΉ? | 543 | λ°ν νμκ² μ΅λκΉ? |
494 | 544 | ||
495 | μ¬λ¬Ό: [N] | 545 | μ€λΈμ νΈ: [N] |
496 | </message> | 546 | </message> |
497 | <option name="Return"> | 547 | <option name="Return"> |
498 | λ°ν | 548 | λ°ν |
@@ -503,14 +553,15 @@ L$0μ ν맀ν κ²½μ° ν맀 λμ κ°μΈμ μ ννμμμ€. | |||
503 | </alert> | 553 | </alert> |
504 | <alert name="ReturnObjectsNotOwnedBySelf"> | 554 | <alert name="ReturnObjectsNotOwnedBySelf"> |
505 | <message name="message"> | 555 | <message name="message"> |
506 | μ΄ ν μ§ κ΅¬μ λ΄μμ κ·νκ° μμ νμ§ μλ λͺ¨λ μμ΄ν μ | 556 | μ΄ ν μ§ κ΅¬νμ μλ κ·νμ μμ κ° μλ μ€λΈμ νΈλ₯Ό |
507 | μμ μ£Όμ 보κ΄ν¨μ λ€μ λ°ννμκ² μ΅λκΉ? | 557 | λͺ¨λ μ€λΈμ νΈ μμ μμ μΈλ²€ν 리μ λ°ν νμκ² μ΅λκΉ? |
508 | κ·Έλ£Ήμ μλλ μλ κ°λ₯ μμ΄ν μ | 558 | κ·Έλ£Ήμ μλλ μλ κ°λ₯ μ€λΈμ νΈλ |
509 | μ΄μ μμ μ£Όμκ² λ°νλ κ²μ λλ€. | 559 | μ΄μ μμ μ£Όμκ² λ°ν λ©λλ€. |
510 | 560 | ||
511 | *κ²½κ³ * μ΄λ‘ μΈν΄ κ·Έλ£Ήμ μλλ μλκ° λΆκ°λ₯ν μμ΄ν μ΄ μμ λ©λλ€ | 561 | *κ²½κ³ * μ΄λ‘ μΈν΄ κ·Έλ£Ήμ μλλ μλ λΆκ°λ₯ μ€λΈμ νΈκ° |
562 | μμ λ©λλ€. | ||
512 | 563 | ||
513 | μ¬λ¬Ό: [N] | 564 | μ€λΈμ νΈ: [N] |
514 | </message> | 565 | </message> |
515 | <option name="Return"> | 566 | <option name="Return"> |
516 | λ°ν | 567 | λ°ν |
@@ -521,15 +572,15 @@ L$0μ ν맀ν κ²½μ° ν맀 λμ κ°μΈμ μ ννμμμ€. | |||
521 | </alert> | 572 | </alert> |
522 | <alert name="ReturnObjectsNotOwnedByUser"> | 573 | <alert name="ReturnObjectsNotOwnedByUser"> |
523 | <message name="message"> | 574 | <message name="message"> |
524 | μ λ§ μ΄ ν μ§ κ΅¬νλ΄μ μλ [μ΄λ¦](μ΄)κ° μμ μκ° μλ | 575 | μ΄ ν μ§ κ΅¬νμ μλ [NAME]μ μμ κ° μλ μ€λΈμ νΈλ₯Ό |
525 | λͺ¨λ μ¬λ¬Όμ ν΄λΉ μμ μ μ μ₯κ³ λ‘ λ°ννμκ² μ΅λκΉ? | 576 | λͺ¨λ μ€λΈμ νΈ μμ μμ μΈλ²€ν 리μ λ°ν νμκ² μ΅λκΉ? |
526 | κ·Έλ£Ήμ μλλ μλ κ°λ₯ν μ¬λ¬Όμ | 577 | κ·Έλ£Ήμκ² μλλ μλ κ°λ₯ μ€λΈμ νΈλ |
527 | μ΄μ μμ μμκ² λ°νλ©λλ€. | 578 | μ΄μ μμ μ£Όμκ² λ°ν λ©λλ€. |
528 | 579 | ||
529 | *κ²½κ³ * μ΄ κ²½μ° κ·Έλ£Ήμ μλλ λΉμλμ± μ¬λ¬Όμ | 580 | *κ²½κ³ * μ΄λ‘ μΈν΄ κ·Έλ£Ήμ μλλ μλ λΆκ°λ₯ μ€λΈμ νΈλ |
530 | λͺ¨λ μμ λ©λλ€! | 581 | μμ λ©λλ€. |
531 | 582 | ||
532 | μ¬λ¬Ό: [κ°μ] | 583 | μ€λΈμ νΈ: [N] |
533 | </message> | 584 | </message> |
534 | <option name="Return"> | 585 | <option name="Return"> |
535 | λ°ν | 586 | λ°ν |
@@ -540,8 +591,8 @@ L$0μ ν맀ν κ²½μ° ν맀 λμ κ°μΈμ μ ννμμμ€. | |||
540 | </alert> | 591 | </alert> |
541 | <alert name="ReturnAllTopObjects"> | 592 | <alert name="ReturnAllTopObjects"> |
542 | <message name="message"> | 593 | <message name="message"> |
543 | Are you sure you want to return all objects | 594 | μ΄ μ§μ λ΄μ λͺ¨λ μ€λΈμ νΈλ₯Ό μ΄μ |
544 | in this region back to their owner's inventory? | 595 | μμ μ£Όμ μΈλ²€ν 리μ λ°ν νμκ² μ΅λκΉ? |
545 | </message> | 596 | </message> |
546 | <option name="Return"> | 597 | <option name="Return"> |
547 | λ°ν | 598 | λ°ν |
@@ -552,10 +603,10 @@ in this region back to their owner's inventory? | |||
552 | </alert> | 603 | </alert> |
553 | <alert name="DisableAllTopObjects"> | 604 | <alert name="DisableAllTopObjects"> |
554 | <message name="message"> | 605 | <message name="message"> |
555 | Are you sure you want to disable all objects in this region? | 606 | μ΄ μ§μμ μ€λΈμ νΈλ₯Ό λͺ¨λ λΉνμ±ν νμκ² μ΅λκΉ? |
556 | </message> | 607 | </message> |
557 | <option name="Disable"> | 608 | <option name="Disable"> |
558 | λκΈ° | 609 | λΉνμ± |
559 | </option> | 610 | </option> |
560 | <option name="Cancel"> | 611 | <option name="Cancel"> |
561 | μ·¨μ | 612 | μ·¨μ |
@@ -563,11 +614,10 @@ in this region back to their owner's inventory? | |||
563 | </alert> | 614 | </alert> |
564 | <alert name="ReturnObjectsNotOwnedByGroup"> | 615 | <alert name="ReturnObjectsNotOwnedByGroup"> |
565 | <message name="message"> | 616 | <message name="message"> |
566 | κ·Έλ£Ή [NAME]μ(κ³Ό) 곡μ νμ§ μλ | 617 | κ·Έλ£Ή[NAME](μ)κ³Ό 곡μ νμ§ μλ |
567 | μ΄ κ΅¬νλ΄ μμ΄ν μ ν΄λΉ μμ μ£Όμκ² | 618 | ν μ§ κ΅¬νμ μ€λΈμ νΈλ₯Ό κ·Έ μμ μλ€μκ² λ°νν©λκΉ? |
568 | λ°ννμκ² μ΅λκΉ? | ||
569 | 619 | ||
570 | μ¬λ¬Ό: [N] | 620 | μ€λΈμ νΈ: [N] |
571 | </message> | 621 | </message> |
572 | <option name="Return"> | 622 | <option name="Return"> |
573 | λ°ν | 623 | λ°ν |
@@ -578,71 +628,90 @@ in this region back to their owner's inventory? | |||
578 | </alert> | 628 | </alert> |
579 | <alert name="UnableToDisableOutsideScripts"> | 629 | <alert name="UnableToDisableOutsideScripts"> |
580 | <message name="message"> | 630 | <message name="message"> |
581 | μΈλΆ μ€ν¬λ¦½νΈ λκΈ°μ μ€ν¨νμ΅λλ€. | 631 | μΈλΆ μ€ν¬λ¦½νΈλ₯Ό λΉνμ±νν μ μμ΅λλ€. |
582 | μ΄ μ§μ μ 체μ λν΄ μμ μ΄ μΌμ Έμμ΅λλ€(μμ νμ§ μμ΅λλ€). | 632 | μ΄ μ 체 μ§μμ νμ± μνμ λλ€(μμ νμ§ μμ). |
583 | μ€ν¬λ¦½νΈλ μλ μ μ μ΄κΈ° μ¬μ©μ νκ°ν΄μΌ ν©λλ€. | 633 | μ€ν¬λ¦½νΈλ μ΄μ΄ μλν μ μλλ‘ μ€νλμ΄μΌ ν©λλ€. |
584 | </message> | 634 | </message> |
585 | </alert> | 635 | </alert> |
586 | <alert name="MustBeInParcel"> | 636 | <alert name="MustBeInParcel"> |
587 | <message name="message"> | 637 | <message name="message"> |
588 | ν μ§ κ΅¬νμ μ°©λ₯ μ§μ μ μ€μ νλ €λ©΄ | 638 | ν λ ν¬νΈ λμ°©μ§λ₯Ό μ€μ νλ €λ©΄ ν μ§ κ΅¬ν λ΄μ |
589 | ν΄λΉ ꡬν λ΄λΆμ μμμ΄μΌ ν©λλ€. | 639 | μμ΄μΌ ν©λλ€. |
590 | </message> | 640 | </message> |
591 | </alert> | 641 | </alert> |
592 | <alert name="PromptRecipientEmail"> | 642 | <alert name="PromptRecipientEmail"> |
593 | <message name="message"> | 643 | <message name="message"> |
594 | μμ μμ μ΄λ©μΌ μ£Όμλ₯Ό μ λ ₯ν΄ μ£Όμμμ€. | 644 | μμ μΈμ μ΄λ©μΌ μ£Όμλ₯Ό μ λ ₯νμΈμ. |
595 | </message> | 645 | </message> |
596 | </alert> | 646 | </alert> |
597 | <alert name="PromptSelfEmail"> | 647 | <alert name="PromptSelfEmail"> |
598 | <message name="message"> | 648 | <message name="message"> |
599 | λ³ΈμΈμ μ΄λ©μΌ μ£Όμλ₯Ό μ λ ₯ν΄ μ£Όμμμ€. | 649 | λ΄ μ΄λ©μΌ μ£Όμλ₯Ό μ λ ₯ν©λλ€. |
600 | </message> | 650 | </message> |
601 | </alert> | 651 | </alert> |
602 | <alert name="ErrorProcessingSnapshot"> | 652 | <alert name="ErrorProcessingSnapshot"> |
603 | <message name="message"> | 653 | <message name="message"> |
604 | μ€λ μ· λ°μ΄ν° μ²λ¦¬ μ€λ₯! | 654 | μ€λ μ· λ°μ΄ν° μ²λ¦¬ μ€ μ€λ₯κ° λ°μνμ΅λλ€. |
655 | </message> | ||
656 | </alert> | ||
657 | <alert name="ClassifiedSave"> | ||
658 | <message name="message"> | ||
659 | [NAME]κ΄κ³ μ μ μ₯ νμκ² μ΅λκΉ? | ||
660 | </message> | ||
661 | <option name="Save"> | ||
662 | μ μ₯ | ||
663 | </option> | ||
664 | <option name="Don'tSave"> | ||
665 | μ μ₯νμ§ μμ | ||
666 | </option> | ||
667 | <option name="Cancel"> | ||
668 | μ·¨μ | ||
669 | </option> | ||
670 | </alert> | ||
671 | <alert name="DisplaySettingsNoShaders"> | ||
672 | <message name="message"> | ||
673 | κ·Έλν½ λλΌμ΄λ² μΈμμ€ μ€λ₯κ° λ°μνμ΅λλ€. μΌλ°μ μΈ λλΌμ΄λ² μ€λ₯λ₯Ό νΌνκΈ° μν΄ μμ΄λλ μλμΌλ‘ λΉνμ± λ κ² μ λλ€. μ΄κ²μ μΌλΆ κ·Έλν½ κ΄λ ¨ ν¨κ³Όλ₯Ό λΉνμ± μν¬ κ² μ λλ€.κ·Έλν½ μΉ΄λλ λλΌμλ²μ μ λ°μ΄νΈλ₯Ό κΆμ ν©λλ€. μμ΄λλ νκ²½μ€μ >κ·Έλν½ λν μΌ μμ λ€μ νμ±ν μν¬ μ μμ΅λλ€. | ||
605 | </message> | 674 | </message> |
606 | </alert> | 675 | </alert> |
607 | <alert name="ErrorEncodingSnapshot"> | 676 | <alert name="ErrorEncodingSnapshot"> |
608 | <message name="message"> | 677 | <message name="message"> |
609 | μ€λ μ· μνΈν μ€λ₯! | 678 | μ€λ μ· μΈμ½λ© μ€ μ€λ₯κ° λ°μνμ΅λλ€. |
610 | </message> | 679 | </message> |
611 | </alert> | 680 | </alert> |
612 | <alert name="ErrorUploadingPostcard"> | 681 | <alert name="ErrorUploadingPostcard"> |
613 | <message name="message"> | 682 | <message name="message"> |
614 | λ€μμ μ΄μ λ‘ μΈν΄ μ½μ μ λ‘λμ λ¬Έμ κ° λ°μνμ΅λλ€: [μ΄μ ] | 683 | λ€μμ μ΄μ λ‘ μΈν΄ ν¬μ€νΈμΉ΄λλ₯Ό μ λ‘λνλ λ° λ¬Έμ κ° λ°μνμ΅λλ€: [REASON] |
615 | </message> | 684 | </message> |
616 | </alert> | 685 | </alert> |
617 | <alert name="ErrorUploadingReportScreenshot"> | 686 | <alert name="ErrorUploadingReportScreenshot"> |
618 | <message name="message"> | 687 | <message name="message"> |
619 | λ€μμ μ΄μ λ‘ μΈν΄ λ³΄κ³ μ μ λ‘λμ λ¬Έμ κ° λ°μνμ΅λλ€: [μ΄μ ] | 688 | λ€μμ μ΄μ λ‘ μΈν΄ λ³΄κ³ μλ₯Ό μ λ‘λνλ λ° λ¬Έμ κ° λ°μνμ΅λλ€: [REASON] |
620 | </message> | 689 | </message> |
621 | </alert> | 690 | </alert> |
622 | <alert name="MustAgreeToLogIn"> | 691 | <alert name="MustAgreeToLogIn"> |
623 | <message name="message"> | 692 | <message name="message"> |
624 | [SECOND_LIFE]μ κ³μ λ‘κ·ΈμΈνμλ €λ©΄ μλΉμ€ κ³μ½μ λμνμ μΌ ν©λλ€. | 693 | [SECOND_LIFE]μ λ‘κ·ΈμΈνλ €λ©΄ μ΄μ© μ½κ΄μ λμν΄μΌ ν©λλ€. |
625 | </message> | 694 | </message> |
626 | </alert> | 695 | </alert> |
627 | <alert name="CouldNotPutOnOutfit"> | 696 | <alert name="CouldNotPutOnOutfit"> |
628 | <message name="message"> | 697 | <message name="message"> |
629 | 볡μ₯μ μ°©μ©νμ§ λͺ»νμ΅λλ€. | 698 | 볡μ₯μ μ°©μ©ν μ μμ΅λλ€. |
630 | 볡μ₯ ν΄λ μμ μλ₯, μ 체 λΆλΆ λλ λΆμ°©λ¬Όμ΄ μμ΅λλ€. | 699 | 볡μ₯ ν΄λμ μ·, μ 체 λΆμ λλ λΆμ°©λ¬Όμ΄ μμ΅λλ€. |
631 | </message> | 700 | </message> |
632 | </alert> | 701 | </alert> |
633 | <alert name="CannotWearTrash"> | 702 | <alert name="CannotWearTrash"> |
634 | <message name="message"> | 703 | <message name="message"> |
635 | ν΄μ§ν΅μ λ€μ΄ μλ μλ₯ λλ μ 체 λΆλΆμ μ°©μ©ν μ μμ΅λλ€ | 704 | μ·μ μ°©μ©ν μ μκ±°λ μ 체λΆμκ° ν΄μ§ν΅μ μμ΅λλ€. |
636 | </message> | 705 | </message> |
637 | </alert> | 706 | </alert> |
638 | <alert name="CannotWearInfoNotComplete"> | 707 | <alert name="CannotWearInfoNotComplete"> |
639 | <message name="message"> | 708 | <message name="message"> |
640 | μμ§ μμ ν μ λ³΄κ° κ°μΆμ΄μ§μ§ μμκΈ° λλ¬Έμ ν΄λΉ μμ΄ν μ μ°©μ©ν μ μμ΅λλ€. μ μ ν λ€μ μλν΄ μ£Όμμμ€. | 709 | μ 체 μ λ³΄κ° μ€μ λμ§ μμ μ΄ μμ΄ν μ μ°©μ©ν μ μμ΅λλ€. μ μ νμ λ€μ μλν΄ μ£Όμμμ€. |
641 | </message> | 710 | </message> |
642 | </alert> | 711 | </alert> |
643 | <alert name="MustHaveAccountToLogInNoLinks"> | 712 | <alert name="MustHaveAccountToLogInNoLinks"> |
644 | <message name="message"> | 713 | <message name="message"> |
645 | [SECOND_LIFE]μ μ°κ²°νλ €λ©΄ κ³μ μ 보μ νκ³ μμ΄μΌ ν©λλ€. | 714 | [SECOND_LIFE]μ μ°κ²°νλ €λ©΄ κ³μ μ κ°κ³ μμ΄μΌ ν©λλ€. |
646 | </message> | 715 | </message> |
647 | <option name="OK"> | 716 | <option name="OK"> |
648 | νμΈ | 717 | νμΈ |
@@ -653,9 +722,9 @@ in this region back to their owner's inventory? | |||
653 | </alert> | 722 | </alert> |
654 | <alert name="MustHaveAccountToLogIn"> | 723 | <alert name="MustHaveAccountToLogIn"> |
655 | <message name="message"> | 724 | <message name="message"> |
656 | [SECOND_LIFE]μ μ°κ²°νλ €λ©΄ κ³μ μ 보μ νκ³ μμ΄μΌ ν©λλ€. | 725 | [SECOND_LIFE]μ μ°κ²°νλ €λ©΄ κ³μ μ κ°κ³ μμ΄μΌ ν©λλ€. |
657 | 726 | ||
658 | www.secondlife.comμΌλ‘ μ΄λν΄ μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | 727 | www.secondlife.comμΌλ‘ μ΄λνμ¬ μλ‘μ΄ κ³μ μ λ§λμκ² μ΅λκΉ? |
659 | </message> | 728 | </message> |
660 | <option name="OK"> | 729 | <option name="OK"> |
661 | νμΈ | 730 | νμΈ |
@@ -666,15 +735,15 @@ www.secondlife.comμΌλ‘ μ΄λν΄ μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
666 | </alert> | 735 | </alert> |
667 | <alert name="AddClassified"> | 736 | <alert name="AddClassified"> |
668 | <message name="message"> | 737 | <message name="message"> |
669 | λΆλ₯λ κ΄κ³ κ° 1μ£ΌμΌ λμμ κ²μ λλ ν 리μ | 738 | κ΄κ³ κ° 1μ£ΌμΌ λμ κ²μ λλ ν 리μ 'κ΄κ³ ' μΉμ μ |
670 | βλΆλ₯β μΉμ μ λνλ©λλ€. | 739 | λνλ©λλ€. |
671 | 740 | ||
672 | κ΄κ³ λ₯Ό μμ±ν ν 'κ²μ...'λ₯Ό ν΄λ¦νμ¬ | 741 | κ΄κ³ λ₯Ό μμ±ν ν 'κ²μνκΈ°...'λ₯Ό ν΄λ¦νμ¬ λλ ν 리μ |
673 | λλ ν 리μ μΆκ°ν©λλ€. | 742 | μΆκ°ν©λλ€. |
674 | 743 | ||
675 | λ°νμ ν΄λ¦νλ©΄ κ°μ μ§λΆν κ²μΈμ§ λ¬Όμ΄λ΄ λλ€. | 744 | κ²μνκΈ°λ₯Ό ν΄λ¦νλ©΄ μ§λΆν κ°κ²©μ 묻λ λ©μμ§κ° λνλ©λλ€. |
676 | λ λμ κ°κ²©μ μ§λΆν μλ‘ λ λμ μμΉμ κ²μ¬λκ³ | 745 | λμ κ°κ²©μ μ§λΆν μλ‘ κ΄κ³ κ° λͺ©λ‘μμ λ λμ μμΉμ κ²μ¬λκ³ |
677 | ν€μλ κ²μμ κ²°κ³Όμ λ μ°μ μ μΌλ‘ νμλ©λλ€. | 746 | ν€μλ κ²μ κ²°κ³Όμμ λ μ°μ μ μΌλ‘ νμλ©λλ€. |
678 | </message> | 747 | </message> |
679 | <option name="OK"> | 748 | <option name="OK"> |
680 | νμΈ | 749 | νμΈ |
@@ -682,11 +751,14 @@ www.secondlife.comμΌλ‘ μ΄λν΄ μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
682 | <option name="Cancel"> | 751 | <option name="Cancel"> |
683 | μ·¨μ | 752 | μ·¨μ |
684 | </option> | 753 | </option> |
754 | <ignore name="ignore"> | ||
755 | μ κ΄κ³ λ₯Ό μΆκ°ν λ | ||
756 | </ignore> | ||
685 | </alert> | 757 | </alert> |
686 | <alert name="DeleteClassified"> | 758 | <alert name="DeleteClassified"> |
687 | <message name="message"> | 759 | <message name="message"> |
688 | κ΄κ³ '[μ΄λ¦]'(μ)λ₯Ό μμ νμκ² μ΅λκΉ? | 760 | κ΄κ³ '[NAME]'μ(λ₯Ό) μμ νμκ² μ΅λκΉ? |
689 | μ§λΆνμ μμλ£λ νλΆλμ§ μμ΅λλ€. | 761 | μ§λΆν μμλ£λ νλΆνμ§ μμ΅λλ€. |
690 | </message> | 762 | </message> |
691 | <option name="Delete"> | 763 | <option name="Delete"> |
692 | μμ | 764 | μμ |
@@ -697,7 +769,7 @@ www.secondlife.comμΌλ‘ μ΄λν΄ μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
697 | </alert> | 769 | </alert> |
698 | <alert name="DeleteAvatarPick"> | 770 | <alert name="DeleteAvatarPick"> |
699 | <message name="message"> | 771 | <message name="message"> |
700 | [μ ν] μ νμ μμ νμκ² μ΅λκΉ? | 772 | κ΄μ¬μ₯μ [PICK]μ(λ₯Ό) μμ νμκ² μ΅λκΉ? |
701 | </message> | 773 | </message> |
702 | <option name="Delete"> | 774 | <option name="Delete"> |
703 | μμ | 775 | μμ |
@@ -708,14 +780,14 @@ www.secondlife.comμΌλ‘ μ΄λν΄ μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
708 | </alert> | 780 | </alert> |
709 | <alert name="DisplayChangeRestart"> | 781 | <alert name="DisplayChangeRestart"> |
710 | <message name="message"> | 782 | <message name="message"> |
711 | μ ννμ νλ©΄ νμ λ³κ²½ λ΄μ©μ€ μΌλΆλ₯Ό μν΄μλ | 783 | μΌλΆ λμ€νλ μ΄ λ³κ²½ μ¬νμ μ μ©νλ €λ©΄ |
712 | [SECOND_LIFE]μ(λ₯Ό) μ¦μ μ’ λ£ν΄μΌ νλ©°, μ΄ κ²½μ° | 784 | [SECOND_LIFE]λ₯Ό μ¦μ μ’ λ£ν΄μΌ ν©λλ€. |
713 | νμ¬ μ§νμ€μΈ μΌμ²΄μ μμ μ μμ€λ©λλ€. | 785 | κ·Έλ μ§ μμΌλ©΄ μ§ν μ€μΈ λͺ¨λ μμ μ΄ μμ€λ©λλ€. |
714 | 786 | ||
715 | λ³κ²½ μ¬νμ μ μ©νκ³ μ’ λ£ν©λλ€ | 787 | ν΄λΉ λ³κ²½ μ¬νμ μ μ©ν ν μ’ λ£νμμμ€. |
716 | </message> | 788 | </message> |
717 | <option name="ApplyandQuit"> | 789 | <option name="ApplyandQuit"> |
718 | μ μ© ν μ’ λ£ | 790 | μ μ© λ° μ’ λ£ |
719 | </option> | 791 | </option> |
720 | <option name="Cancel"> | 792 | <option name="Cancel"> |
721 | μ·¨μ | 793 | μ·¨μ |
@@ -723,7 +795,7 @@ www.secondlife.comμΌλ‘ μ΄λν΄ μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
723 | </alert> | 795 | </alert> |
724 | <alert name="PromptGoToEventsPage"> | 796 | <alert name="PromptGoToEventsPage"> |
725 | <message name="message"> | 797 | <message name="message"> |
726 | [SECOND_LIFE] μ΄λ²€νΈ μΉνμ΄μ§λ‘ μ΄λνμκ² μ΅λκΉ? | 798 | [SECOND_LIFE]μ΄λ²€νΈ μΉ μ¬μ΄νΈλ‘ κ°λκΉ? |
727 | </message> | 799 | </message> |
728 | <option name="GotoPage"> | 800 | <option name="GotoPage"> |
729 | νμ΄μ§λ‘ μ΄λ | 801 | νμ΄μ§λ‘ μ΄λ |
@@ -734,27 +806,27 @@ www.secondlife.comμΌλ‘ μ΄λν΄ μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
734 | </alert> | 806 | </alert> |
735 | <alert name="MustSelectCandidate"> | 807 | <alert name="MustSelectCandidate"> |
736 | <message name="message"> | 808 | <message name="message"> |
737 | ν¬ννμλ €λ©΄ ν보μλ₯Ό μ νν΄μΌ ν©λλ€. | 809 | ν¬νν ν보λ₯Ό μ νν΄μΌ ν©λλ€. |
738 | </message> | 810 | </message> |
739 | </alert> | 811 | </alert> |
740 | <alert name="SelectItemToView"> | 812 | <alert name="SelectItemToView"> |
741 | <message name="message"> | 813 | <message name="message"> |
742 | 보기ν νλͺ©μ μ νν΄ μ£Όμμμ€. | 814 | λ³΄λ €λ νλͺ©μ μ ννμμμ€. |
743 | </message> | 815 | </message> |
744 | </alert> | 816 | </alert> |
745 | <alert name="SelectProposalToView"> | 817 | <alert name="SelectProposalToView"> |
746 | <message name="message"> | 818 | <message name="message"> |
747 | μ΄λνλ €λ μ μμ μ νν΄ μ£Όμμμ€. | 819 | λ³΄λ €λ μ μμ μ ννμμμ€. |
748 | </message> | 820 | </message> |
749 | </alert> | 821 | </alert> |
750 | <alert name="SelectHistoryItemToView"> | 822 | <alert name="SelectHistoryItemToView"> |
751 | <message name="message"> | 823 | <message name="message"> |
752 | 보기ν κΈ°λ‘ νλͺ©μ μ νν΄ μ£Όμμμ€. | 824 | λ³΄λ €λ κΈ°λ‘μ μ ννμμμ€. |
753 | </message> | 825 | </message> |
754 | </alert> | 826 | </alert> |
755 | <alert name="ResetShowNextTimeDialogs"> | 827 | <alert name="ResetShowNextTimeDialogs"> |
756 | <message name="message"> | 828 | <message name="message"> |
757 | 'λ€μμ νμ' λνλ₯Ό λͺ¨λ μ¬μ€μ νμκ² μ΅λκΉ? | 829 | λμ€μ μλ¦Ό' μ΄κΈ°ν |
758 | </message> | 830 | </message> |
759 | <option name="OK"> | 831 | <option name="OK"> |
760 | νμΈ | 832 | νμΈ |
@@ -765,13 +837,23 @@ www.secondlife.comμΌλ‘ μ΄λν΄ μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
765 | </alert> | 837 | </alert> |
766 | <alert name="CacheWillClear"> | 838 | <alert name="CacheWillClear"> |
767 | <message name="message"> | 839 | <message name="message"> |
768 | μΊμλ [SECOND_LIFE]μ(λ₯Ό) μ¬μμν νμ λΉμμ§λλ€. | 840 | [SECOND_LIFE]λ₯Ό λ€μ μμνλ©΄ μΊμκ° λΉμ μ§λλ€. |
841 | </message> | ||
842 | </alert> | ||
843 | <alert name="CacheWillBeMoved"> | ||
844 | <message name="message"> | ||
845 | [SECOND_LIFE]λ₯Ό λ€μ μμνλ©΄ μΊμκ° μ΄λν©λλ€. | ||
846 | μ°Έκ³ : μ΄ μμ μ μΊμλ₯Ό λΉμλλ€. | ||
847 | </message> | ||
848 | </alert> | ||
849 | <alert name="ChangeConnectionPort"> | ||
850 | <message name="message"> | ||
851 | ν¬νΈ μ€μ μ [SECOND_LIFE]λ₯Ό λ€μ μμν ν μ ν¨ν©λλ€. | ||
769 | </message> | 852 | </message> |
770 | </alert> | 853 | </alert> |
771 | <alert name="GoToAuctionPage"> | 854 | <alert name="GoToAuctionPage"> |
772 | <message name="message"> | 855 | <message name="message"> |
773 | [SECOND_LIFE] μΉνμ΄μ§λ‘ μ΄λν΄ κ²½λ§€ μΈλΆ μ¬νμ 보거λ | 856 | 경맀 μΈλΆμ¬νμ 보거λ, 경맀λ₯Ό νλ €λ©΄[SECOND_LIFE]μΉ νμ΄μ§λ‘ κ°λλ€. |
774 | μ μ°°μ μ°Έμ¬νμκ² μ΅λκΉ? | ||
775 | </message> | 857 | </message> |
776 | <option name="GotoPage"> | 858 | <option name="GotoPage"> |
777 | νμ΄μ§λ‘ μ΄λ | 859 | νμ΄μ§λ‘ μ΄λ |
@@ -782,13 +864,13 @@ www.secondlife.comμΌλ‘ μ΄λν΄ μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
782 | </alert> | 864 | </alert> |
783 | <alert name="SaveChanges"> | 865 | <alert name="SaveChanges"> |
784 | <message name="message"> | 866 | <message name="message"> |
785 | λ³κ²½ λ΄μ©μ μ μ₯νμκ² μ΅λκΉ? | 867 | λ³κ²½ μ¬νμ μ μ₯ν©λκΉ? |
786 | </message> | 868 | </message> |
787 | <option name="Save"> | 869 | <option name="Save"> |
788 | μ μ₯ | 870 | μ μ₯ |
789 | </option> | 871 | </option> |
790 | <option name="Don'tSave"> | 872 | <option name="Don'tSave"> |
791 | μ μ₯ κΈμ§ | 873 | μ μ₯ μ ν¨ |
792 | </option> | 874 | </option> |
793 | <option name="Cancel"> | 875 | <option name="Cancel"> |
794 | μ·¨μ | 876 | μ·¨μ |
@@ -797,42 +879,42 @@ www.secondlife.comμΌλ‘ μ΄λν΄ μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
797 | <alert name="GestureSaveFailedTooManySteps"> | 879 | <alert name="GestureSaveFailedTooManySteps"> |
798 | <message name="message"> | 880 | <message name="message"> |
799 | μ μ€μ² μ μ₯μ μ€ν¨νμ΅λλ€. | 881 | μ μ€μ² μ μ₯μ μ€ν¨νμ΅λλ€. |
800 | μ΄ μ μ€μ²μλ λ¨κ³κ° λ무 λ§μ΅λλ€. | 882 | μ΄ μ μ€μ²λ λ¨κ³κ° λ무 λ§μ΅λλ€. |
801 | μΌλΆ λ¨κ³λ₯Ό μ κ±°νμ ν λ€μ μ μ₯ν΄ μ£Όμμμ€. | 883 | λΆνμν λ¨κ³λ₯Ό μ κ±°ν λ€μ μ μ₯ νμμ΄μ€. |
802 | </message> | 884 | </message> |
803 | </alert> | 885 | </alert> |
804 | <alert name="GestureSaveFailedTryAgain"> | 886 | <alert name="GestureSaveFailedTryAgain"> |
805 | <message name="message"> | 887 | <message name="message"> |
806 | μ μ€μ² μ μ₯μ μ€ν¨νμ΅λλ€. μ μ ν λ€μ μλν΄ μ£Όμμμ€. | 888 | μ μ€μ² μ μ₯μ μ€ν¨νμ΅λλ€. μ μ ν λ€μ μλνμμμ€ |
807 | </message> | 889 | </message> |
808 | </alert> | 890 | </alert> |
809 | <alert name="GestureSaveFailedObjectNotFound"> | 891 | <alert name="GestureSaveFailedObjectNotFound"> |
810 | <message name="message"> | 892 | <message name="message"> |
811 | ν΄λΉ μ¬λ¬Ό λλ μ°κ΄λ μ¬λ¬Ό μ μ₯κ³ λ₯Ό μ°Ύμ μ μμ΄ μ μ€μ²λ₯Ό μ μ₯νμ§ λͺ»νμ΅λλ€. | 893 | μ€λΈμ νΈ λλ κ΄λ ¨ μ€λΈμ νΈ μΈλ²€ν 리λ₯Ό μ°Ύμ μ μμ΄ μ μ€μ²λ₯Ό μ μ₯ν μ μμ΅λλ€. |
812 | ν΄λΉ μ¬λ¬Όμ λ²μ λ°μ μκ±°λ μμ λμμ μ μμ΅λλ€. | 894 | μ€λΈμ νΈκ° ν΄λΉ λ²μ λ°μ μκ±°λ μμ λμμ μ μμ΅λλ€. |
813 | </message> | 895 | </message> |
814 | </alert> | 896 | </alert> |
815 | <alert name="GestureSaveFailedReason"> | 897 | <alert name="GestureSaveFailedReason"> |
816 | <message name="message"> | 898 | <message name="message"> |
817 | λ€μμ μ΄μ λ‘ μΈν΄ μ μ€μ² μ μ₯μ λ¬Έμ κ° λ°μνμ΅λλ€: [μ΄μ ]. μ μ ν μ μ€μ² μ μ₯μ λ€μ μλν΄ μ£Όμμμ€. | 899 | λ€μμ μ΄μ λ‘ μΈν΄ μ μ€μ²λ₯Ό μ μ₯νλ λ° λ¬Έμ κ° λ°μνμ΅λλ€: [REASON]. μ μ€μ²λ₯Ό λμ€μ λ€μ μ μ₯ν΄λ³΄μμμ€. |
818 | </message> | 900 | </message> |
819 | </alert> | 901 | </alert> |
820 | <alert name="SaveNotecardFailObjectNotFound"> | 902 | <alert name="SaveNotecardFailObjectNotFound"> |
821 | <message name="message"> | 903 | <message name="message"> |
822 | ν΄λΉ μ¬λ¬Ό λλ μ°κ΄λ μ¬λ¬Ό μ μ₯κ³ λ₯Ό μ°Ύμ μ μμ΄ λ ΈνΈμΉ΄λλ₯Ό μ μ₯νμ§ λͺ»νμ΅λλ€. | 904 | μ€λΈμ νΈ λλ κ΄λ ¨ μ€λΈμ νΈ μΈλ²€ν 리λ₯Ό μ°Ύμ μ μμ΄ λ ΈνΈμΉ΄λλ₯Ό μ μ₯ν μ μμ΅λλ€. |
823 | ν΄λΉ μ¬λ¬Όμ λ²μ λ°μ μκ±°λ μμ λμμ μ μμ΅λλ€. | 905 | μ€λΈμ νΈκ° ν΄λΉ λ²μ λ°μ μκ±°λ μμ λμμ μ μμ΅λλ€. |
824 | </message> | 906 | </message> |
825 | </alert> | 907 | </alert> |
826 | <alert name="SaveNotecardFailReason"> | 908 | <alert name="SaveNotecardFailReason"> |
827 | <message name="message"> | 909 | <message name="message"> |
828 | λ€μμ μ΄μ λ‘ μΈν΄ λ ΈνΈμΉ΄λ μ μ₯μ λ¬Έμ κ° λ°μνμ΅λλ€: [μ΄μ ]. μ μ ν λ ΈνΈμΉ΄λ μ μ₯μ λ€μ μλν΄ μ£Όμμμ€. | 910 | λ€μμ μ΄μ λ‘ μΈν΄ μ°Έκ³ μΉ΄λλ₯Ό μ μ₯νλ λ° λ¬Έμ κ° λ°μνμ΅λλ€: [REASON]. μ°Έκ³ μΉ΄λλ₯Ό λμ€μ λ€μ μ μ₯ν΄λ³΄μμμ€. |
829 | </message> | 911 | </message> |
830 | </alert> | 912 | </alert> |
831 | <alert name="ScriptCannotUndo"> | 913 | <alert name="ScriptCannotUndo"> |
832 | <message name="message"> | 914 | <message name="message"> |
833 | κ·νμ μ€ν¬λ¦½νΈ λ²μ μ λν λ³κ²½ μ¬νμ λͺ¨λ μ·¨μνμ§ λͺ»νμ΅λλ€. | 915 | μ€ν¬λ¦½νΈ λ²μ μ λν λͺ¨λ λ³κ²½ μ¬νμ μ·¨μν μ μμ΅λλ€. |
834 | μλ²μ μ μ₯λ μ΅μ λ²μ μ λ‘λ©νμκ² μ΅λκΉ? | 916 | μλ²μ μ μ₯λ μ΅μ λ²μ μ λ‘λ νμκ² μ΅λκΉ? |
835 | (μ°Έκ³ : μ΄ λ‘λ©μ μ·¨μν μ μμ΅λλ€.) | 917 | (μ°Έκ³ : μ΄ μμ μ μ·¨μν μ μμ΅λλ€.) |
836 | </message> | 918 | </message> |
837 | <option name="Yes"> | 919 | <option name="Yes"> |
838 | μ | 920 | μ |
@@ -843,50 +925,50 @@ www.secondlife.comμΌλ‘ μ΄λν΄ μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
843 | </alert> | 925 | </alert> |
844 | <alert name="SaveScriptFailReason"> | 926 | <alert name="SaveScriptFailReason"> |
845 | <message name="message"> | 927 | <message name="message"> |
846 | λ€μμ μ΄μ λ‘ μΈν΄ μ€ν¬λ¦½νΈ μ μ₯μ λ¬Έμ κ° λ°μνμ΅λλ€: [μ΄μ ]. μ μ ν μ€ν¬λ¦½νΈ μ μ₯μ λ€μ μλν΄ μ£Όμμμ€. | 928 | λ€μμ μ΄μ λ‘ μΈν΄ μ€ν¬λ¦½νΈλ₯Ό μ μ₯νλ λ° λ¬Έμ κ° λ°μνμ΅λλ€: [REASON]. μ€ν¬λ¦½νΈλ₯Ό λμ€μ λ€μ μ μ₯ν΄λ³΄μμμ€. |
847 | </message> | 929 | </message> |
848 | </alert> | 930 | </alert> |
849 | <alert name="SaveScriptFailObjectNotFound"> | 931 | <alert name="SaveScriptFailObjectNotFound"> |
850 | <message name="message"> | 932 | <message name="message"> |
851 | ν΄λΉ μ¬λ¬Όμ μ°Ύμ μ μμ΄ μ€ν¬λ¦½νΈλ₯Ό μ μ₯νμ§ λͺ»νμ΅λλ€. | 933 | μ€ν¬λ¦½νΈκ° μμΉν μ€λΈμ νΈλ₯Ό μ°Ύμ μ μμ΄ μ€ν¬λ¦½νΈλ₯Ό μ μ₯ν μ μμ΅λλ€. |
852 | ν΄λΉ μ¬λ¬Όμ λ²μ λ°μ μκ±°λ μμ λμμ μ μμ΅λλ€. | 934 | μ€λΈμ νΈκ° ν΄λΉ λ²μ λ°μ μκ±°λ μμ λμμ μ μμ΅λλ€. |
853 | </message> | 935 | </message> |
854 | </alert> | 936 | </alert> |
855 | <alert name="SaveBytecodeFailReason"> | 937 | <alert name="SaveBytecodeFailReason"> |
856 | <message name="message"> | 938 | <message name="message"> |
857 | λ€μμ μ΄μ λ‘ μΈν΄ μ»΄νμΌλ μ€ν¬λ¦½νΈ μ μ₯μ λ¬Έμ κ° λ°μνμ΅λλ€: [μ΄μ ]. μ μ ν μ€ν¬λ¦½νΈ μ μ₯μ λ€μ μλν΄ μ£Όμμμ€. | 939 | λ€μμ μ΄μ λ‘ μΈν΄ μ»΄νμΌλ μ€ν¬λ¦½νΈλ₯Ό μ μ₯νλ λ° λ¬Έμ κ° λ°μνμ΅λλ€: [REASON]. μ€ν¬λ¦½νΈλ₯Ό λμ€μ λ€μ μ μ₯ν΄λ³΄μμμ€. |
858 | </message> | 940 | </message> |
859 | </alert> | 941 | </alert> |
860 | <alert name="CouldNotStartStopScript"> | 942 | <alert name="CouldNotStartStopScript"> |
861 | <message name="message"> | 943 | <message name="message"> |
862 | ν΄λΉ μ¬λ¬Όμ μ°Ύμ μ μμ΄ μ€ν¬λ¦½νΈλ₯Ό μμ λλ μ μ§μν€μ§ λͺ»νμ΅λλ€. | 944 | μ€ν¬λ¦½νΈκ° μμΉν μ€λΈμ νΈλ₯Ό μ°Ύμ μ μμ΄ μ€ν¬λ¦½νΈλ₯Ό μμ λλ μ€μ§ν μ μμ΅λλ€. |
863 | ν΄λΉ μ¬λ¬Όμ λ²μ λ°μ μκ±°λ μμ λμμ μ μμ΅λλ€. | 945 | μ€λΈμ νΈκ° ν΄λΉ λ²μ λ°μ μκ±°λ μμ λμμ μ μμ΅λλ€. |
864 | </message> | 946 | </message> |
865 | </alert> | 947 | </alert> |
866 | <alert name="CannotDownloadFile"> | 948 | <alert name="CannotDownloadFile"> |
867 | <message name="message"> | 949 | <message name="message"> |
868 | νμΌ λ€μ΄λ‘λ μ€ν¨ | 950 | νμΌμ λ€μ΄λ‘λν μ μμ΅λλ€. |
869 | </message> | 951 | </message> |
870 | </alert> | 952 | </alert> |
871 | <alert name="CannotWriteEncode"> | 953 | <alert name="CannotWriteEncode"> |
872 | <message name="message"> | 954 | <message name="message"> |
873 | νμΌ [[νμΌλͺ ]] μνΈν μ€ν¨ | 955 | νμΌ [[FILE]]μ(λ₯Ό) μΈμ½λ©ν μ μμ΅λλ€. |
874 | </message> | 956 | </message> |
875 | </alert> | 957 | </alert> |
876 | <alert name="CannotWriteFile"> | 958 | <alert name="CannotWriteFile"> |
877 | <message name="message"> | 959 | <message name="message"> |
878 | νμΌ [[νμΌλͺ ]] μ°κΈ°μ μ€ν¨νμ΅λλ€. | 960 | νμΌ [[FILE]]μ(λ₯Ό) μΈ μ μμ΅λλ€. |
879 | </message> | 961 | </message> |
880 | </alert> | 962 | </alert> |
881 | <alert name="CannotLoadWearable"> | 963 | <alert name="CannotLoadWearable"> |
882 | <message name="message"> | 964 | <message name="message"> |
883 | μ£μ‘ν©λλ€. μ°©μ©νμ λ‘λ©νμ§ λͺ»νμ΅λλ€. | 965 | μ£μ‘ν©λλ€. μ°©μ©λ¬Όμ λ‘λν μ μμ΅λλ€. |
884 | </message> | 966 | </message> |
885 | </alert> | 967 | </alert> |
886 | <alert name="ConfirmDeleteComplicated"> | 968 | <alert name="ConfirmDeleteComplicated"> |
887 | <message name="message"> | 969 | <message name="message"> |
888 | μ΅μ 1κ° μ¬λ¬Όμ΄ μ κΈ΄ μνκ±°λ, 볡μ¬κ° λΆκ°λ₯νκ±°λ, λ€λ₯Έ μ¬λμ΄ μμ μ£Όμ λλ€. | 970 | 1κ° μ΄μμ μ ν μ€λΈμ νΈκ° μ 겨 μκ±°λ, 볡μ¬ν μ μκ±°λ, λ€λ₯Έ μ¬μ©μκ° μμ νκ³ μμ΅λλ€. |
889 | μ λ§ μ΄ μ¬λ¬Όλ€μ μμ νμκ² μ΅λκΉ? | 971 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? |
890 | </message> | 972 | </message> |
891 | <option name="Yes"> | 973 | <option name="Yes"> |
892 | μ | 974 | μ |
@@ -897,14 +979,14 @@ www.secondlife.comμΌλ‘ μ΄λν΄ μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
897 | </alert> | 979 | </alert> |
898 | <alert name="DisplaySettingsSafe"> | 980 | <alert name="DisplaySettingsSafe"> |
899 | <message name="message"> | 981 | <message name="message"> |
900 | μμ μ΅μ μ μ ννμ ¨κΈ° λλ¬Έμ | 982 | κ·νκ° μ§μ ν μμ μ΅μ μ λ°λΌ λμ€νλ μ΄ μ€μ μ΄ |
901 | νλ©΄ μ€μ μ΄ μμ λ λ²¨λ‘ μ€μ λμμ΅λλ€. | 983 | μμ μμ€μΌλ‘ μ€μ λμμ΅λλ€. |
902 | </message> | 984 | </message> |
903 | </alert> | 985 | </alert> |
904 | <alert name="DisplaySettingsRecommended"> | 986 | <alert name="DisplaySettingsRecommended"> |
905 | <message name="message"> | 987 | <message name="message"> |
906 | λΉμ μ μμ€ν ꡬμ±μ λ°νμΌλ‘ λμ€νλ μ΄ μ€μ μ | 988 | κ·νμ μμ€ν ꡬμ±μ λ°νμΌλ‘ λμ€νλ μ΄ μ€μ μ΄ |
907 | κΆμ₯ μμ€μΌλ‘ μ€μ νμμ΅λλ€. | 989 | κΆμ₯ μμ€μΌλ‘ μ€μ λμμ΅λλ€. |
908 | </message> | 990 | </message> |
909 | <option name="OK"> | 991 | <option name="OK"> |
910 | νμΈ | 992 | νμΈ |
@@ -913,17 +995,17 @@ www.secondlife.comμΌλ‘ μ΄λν΄ μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
913 | <alert name="CannotRequestDomain"> | 995 | <alert name="CannotRequestDomain"> |
914 | <message name="message"> | 996 | <message name="message"> |
915 | μλ²μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | 997 | μλ²μ μ°κ²°νμ§ λͺ»νμ΅λλ€. |
916 | λ€μ λλ©μΈλͺ μ μμ²ν μ μμ΅λλ€: [νΈμ€νΈλͺ ] | 998 | λ€μ λλ©μΈ μ΄λ¦μ μμ²ν μ μμ΅λλ€: [HOST] |
917 | </message> | 999 | </message> |
918 | </alert> | 1000 | </alert> |
919 | <alert name="CannotFindDomain"> | 1001 | <alert name="CannotFindDomain"> |
920 | <message name="message"> | 1002 | <message name="message"> |
921 | μλ² λλ©μΈ μ΄λ¦μ μ°Ύμ§ λͺ»νμ΅λλ€. | 1003 | μλ² λλ©μΈ μ΄λ¦μ μ°Ύμ μ μμ΅λλ€. |
922 | λ€νΈμν¬ μ°κ²°μ΄ ν΄μ λμκ±°λ μλ² λ¬Έμ κ° | 1004 | μ΄λ‘ μΈν΄ λ€νΈμν¬ μ°κ²°μ΄ μμ€λκ±°λ μλ² λ¬Έμ κ° |
923 | μμΈμΌ μ μμ΅λλ€. | 1005 | λ°μν μ μμ΅λλ€. |
924 | 1006 | ||
925 | μ μ ν λ€μ μλνμκ±°λ, λμλ§μ ν΄λ¦νμλ©΄ | 1007 | λͺ μ΄ νμ λ€μ μλνκ±°λ λμλ§μ ν΄λ¦νμ¬ |
926 | μλ΄ λ° μμ€ν μν μΉνμ΄μ§λ‘ κ°λ λ§ν¬κ° λμ΅λλ€. | 1008 | μμ€ν μν μΉ νμ΄μ§μ λν μ§μ μ 보 λ° λ§ν¬λ₯Ό νμΈνμμμ€. |
927 | </message> | 1009 | </message> |
928 | <option name="OK"> | 1010 | <option name="OK"> |
929 | νμΈ | 1011 | νμΈ |
@@ -934,37 +1016,37 @@ www.secondlife.comμΌλ‘ μ΄λν΄ μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
934 | </alert> | 1016 | </alert> |
935 | <alert name="PromptSelectServer"> | 1017 | <alert name="PromptSelectServer"> |
936 | <message name="message"> | 1018 | <message name="message"> |
937 | μλ²λ₯Ό μ νν΄ μ£Όμμμ€. | 1019 | μλ²λ₯Ό μ ννμμμ€. |
938 | [SERVER]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | 1020 | [SERVER](μΌ)λ‘ μ°κ²°ν μ μμ |
939 | </message> | 1021 | </message> |
940 | </alert> | 1022 | </alert> |
941 | <alert name="CannotConnectDNSError"> | 1023 | <alert name="CannotConnectDNSError"> |
942 | <message name="message"> | 1024 | <message name="message"> |
943 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | 1025 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. |
944 | DNSκ° νΈμ€νΈλͺ μ ν΄μνλλ° μ€ν¨νμ΅λλ€. | 1026 | DNSκ° νΈμ€νΈ μ΄λ¦μ νμΈν μ μμ΅λλ€. |
945 | www.secondlife.com μΉμ¬μ΄νΈμ μ°κ²°μ΄ κ°λ₯νμ§ νμΈν΄ | 1027 | www.secondlife.com μΉμ¬μ΄νΈμ μ°κ²°ν μ μλμ§ μ¬λΆλ₯Ό |
946 | 보μμμ€. μ°κ²°μ λμ§λ§ κ°μ μ€λ₯κ° λ°λ³΅λ κ²½μ° | 1028 | νμΈνμμμ€. μ°κ²°μ΄ λμμ§λ§ μ΄ μ€λ₯κ° κ³μ λ°μνλ κ²½μ° |
947 | Support μΉμ μ μ΄ λ¬Έμ λ₯Ό μ κ³ νμμμ€. | 1029 | μ§μ μΉμ μΌλ‘ μ΄λνμ¬ μ΄ λ¬Έμ λ₯Ό μ κ³ ν΄ μ£Όμμμ€. |
948 | </message> | 1030 | </message> |
949 | </alert> | 1031 | </alert> |
950 | <alert name="CannotConnectSecurityError"> | 1032 | <alert name="CannotConnectSecurityError"> |
951 | <message name="message"> | 1033 | <message name="message"> |
952 | λ‘κ·ΈμΈ μλ²μ μμ νκ² μ°κ²°νλλ° μ€ν¨νμ΅λλ€. | 1034 | λ‘κ·ΈμΈ μλ²μ λν 보μ μ°κ²°μ μ€μ ν μ μμ΅λλ€. |
953 | μ΄λ μ»΄ν¨ν°μ μκ³κ° μ ννκ² λ§μΆ°μ Έ μμ§ μμ κ²½μ° λ°μνλ λ¬Έμ μ λλ€. | 1035 | μ’ μ’ μ΄ λ¬Έμ λ μ»΄ν¨ν° μκ³κ° μλͺ» μ€μ λ κ²μ μλ―Έν©λλ€. |
954 | μ μ΄νμΌλ‘ κ°μ μκ°κ³Ό λ μ§κ° μ νν μ€μ λμ΄ μλμ§ | 1036 | μ μ΄νμΌλ‘ μ΄λνμ¬ μκ°κ³Ό λ μ§κ° μ¬λ°λ₯΄κ² μ€μ λμλμ§ |
955 | νμΈνμμμ€. | 1037 | νμΈνμμμ€. |
956 | 1038 | ||
957 | κ°μ μ€λ₯κ° λ°λ³΅λ κ²½μ°, | 1039 | μ΄ μ€λ₯κ° κ³μν΄μ λ°μνλ κ²½μ°μλ |
958 | SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μμ | 1040 | SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μΌλ‘ μ΄λν ν |
959 | λ¬Έμ λ₯Ό μ κ³ ν΄ μ£Όμμμ€. | 1041 | λ¬Έμ λ₯Ό μ κ³ ν΄ μ£Όμμμ€. |
960 | </message> | 1042 | </message> |
961 | </alert> | 1043 | </alert> |
962 | <alert name="CannotConnectVerificationError"> | 1044 | <alert name="CannotConnectVerificationError"> |
963 | <message name="message"> | 1045 | <message name="message"> |
964 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | 1046 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. |
965 | λ‘κ·ΈμΈ μλ²κ° SSLμ ν΅ν΄μ μΈμ¦μ λ°μ§ λͺ»νμ΅λλ€. | 1047 | SSLμ ν΅ν΄ λ‘κ·ΈμΈ μλ²κ° νμΈλμ§ μμ΅λλ€. |
966 | κ°μ μ€λ₯κ° λ°λ³΅λ κ²½μ°, | 1048 | μ΄ μ€λ₯κ° κ³μν΄μ λ°μνλ κ²½μ°μλ |
967 | SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μμ | 1049 | SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μΌλ‘ μ΄λν λ€μ |
968 | λ¬Έμ λ₯Ό μ κ³ ν΄ μ£Όμμμ€. | 1050 | λ¬Έμ λ₯Ό μ κ³ ν΄ μ£Όμμμ€. |
969 | </message> | 1051 | </message> |
970 | </alert> | 1052 | </alert> |
@@ -973,8 +1055,9 @@ SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μμ | |||
973 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | 1055 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. |
974 | μ΅μ μ λ Έλ ₯μλ λΆκ΅¬νκ³ μμμΉ λͺ»ν λ¬Έμ κ° λ°μνμ΅λλ€. | 1056 | μ΅μ μ λ Έλ ₯μλ λΆκ΅¬νκ³ μμμΉ λͺ»ν λ¬Έμ κ° λ°μνμ΅λλ€. |
975 | SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μμ | 1057 | SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μμ |
976 | λ¬Έμ λ₯Ό μ κ³ ν΄ μ£Όμμμ€. κ°λ₯νλ©΄ C:\Documents and Settings\(name)\Application Data\SecondLife\logs | 1058 | λ¬Έμ λ₯Ό μ κ³ ν΄ μ£Όμμμ€. κ°λ₯νλ©΄ C:\Documents and Settings\(name)\Application Data\SecondLife\logsμ |
977 | μ μλ κ·νμ SecondLife.log νμΌμ ν¨κ» 보λ΄μ£Όμμμ€. | 1059 | μλ κ·νμ SecondLife.log νμΌμ ν¨κ» 보λ΄μ£Όμμμ€. |
1060 | κ°μ¬ν©λλ€. | ||
978 | </message> | 1061 | </message> |
979 | </alert> | 1062 | </alert> |
980 | <alert name="CannotConnectUnknownErrorDarwin"> | 1063 | <alert name="CannotConnectUnknownErrorDarwin"> |
@@ -982,27 +1065,26 @@ SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μμ | |||
982 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | 1065 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. |
983 | μ΅μ μ λ Έλ ₯μλ λΆκ΅¬νκ³ μμμΉ λͺ»ν λ¬Έμ κ° λ°μνμ΅λλ€. | 1066 | μ΅μ μ λ Έλ ₯μλ λΆκ΅¬νκ³ μμμΉ λͺ»ν λ¬Έμ κ° λ°μνμ΅λλ€. |
984 | SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μμ | 1067 | SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μμ |
985 | λ¬Έμ λ₯Ό μ κ³ ν΄ μ£Όμμμ€. κ°λ₯νλ©΄ | 1068 | λ¬Έμ λ₯Ό μ κ³ ν΄ μ£Όμμμ€. κ°λ₯νλ©΄ ~/Library/Application Support/SecondLife/logsμ |
986 | ~/Library/Application Support/SecondLife/logsμ μλ κ·νμ SecondLife.log νμΌμ ν¨κ» 보λ΄μ£Όμμμ€. | 1069 | μλ κ·νμ SecondLife.log νμΌμ ν¨κ» 보λ΄μ£Όμμμ€. |
987 | κ°μ¬ν©λλ€. | 1070 | κ°μ¬ν©λλ€. |
988 | </message> | 1071 | </message> |
989 | </alert> | 1072 | </alert> |
990 | <alert name="CannotResolveLoginToken"> | 1073 | <alert name="CannotResolveLoginToken"> |
991 | <message name="message"> | 1074 | <message name="message"> |
992 | λ‘κ·ΈμΈ μΈμ¦ ν ν° ν΄μμ λ¬Έμ κ° | 1075 | λ‘κ·ΈμΈ μΈμ¦μ νμΈνλ μ€ λ¬Έμ κ° |
993 | λ°μνμ΅λλ€. λ€μ λ‘κ·ΈμΈν΄ | 1076 | λ°μνμ΅λλ€. λ‘κ·ΈμΈμ λ€μ μλν΄ |
994 | μ£Όμμμ€. κ°μ μ€λ₯κ° λ°λ³΅λ κ²½μ° | 1077 | 보μλ μ€λ₯κ° κ³μν΄μ λ°μνλ κ²½μ°μλ |
995 | SecondLife.com μΉμ¬μ΄νΈμ | 1078 | SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μμ κ΄λ ¨μ 보λ₯Ό μ°Έκ³ νμμμ€. |
996 | Support μΉμ μ μ°Έκ³ νμμμ€. | ||
997 | </message> | 1079 | </message> |
998 | </alert> | 1080 | </alert> |
999 | <alert name="CannotConnectNoMessage"> | 1081 | <alert name="CannotConnectNoMessage"> |
1000 | <message name="message"> | 1082 | <message name="message"> |
1001 | μ°κ²° μλμ€μ μ μ μλ λ¬Έμ κ° λ°μνμ΅λλ€. | 1083 | μ°κ²°μ μλνλ μ€ μ μ μλ λ¬Έμ κ° λ°μνμ΅λλ€. |
1002 | (μλ²λ‘λΆν° λΉ μ€λ₯ λ©μμ§λ₯Ό λ°μμ΅λλ€.) | 1084 | (μλ²μ 곡백 μ€λ₯ λ©μμ§) |
1003 | 1085 | ||
1004 | μ μ ν λ€μ μλνμκ±°λ, λμλ§μ ν΄λ¦νμλ©΄ | 1086 | λͺ μ΄ νμ λ€μ μλνκ±°λ λμλ§μ ν΄λ¦νμ¬ |
1005 | μλ΄ λ° μμ€ν μν μΉνμ΄μ§λ‘ κ°λ λ§ν¬κ° λμ΅λλ€. | 1087 | μμ€ν μν μΉ νμ΄μ§μ λν μ§μ μ 보 λ° λ§ν¬λ₯Ό νμΈνμμμ€. |
1006 | </message> | 1088 | </message> |
1007 | <option name="OK"> | 1089 | <option name="OK"> |
1008 | νμΈ | 1090 | νμΈ |
@@ -1013,10 +1095,10 @@ Support μΉμ μ μ°Έκ³ νμμμ€. | |||
1013 | </alert> | 1095 | </alert> |
1014 | <alert name="CannotConnectNoReplyFromLogin"> | 1096 | <alert name="CannotConnectNoReplyFromLogin"> |
1015 | <message name="message"> | 1097 | <message name="message"> |
1016 | μ°κ²°μ μ€ν¨νμ΅λλ€. λ‘κ·ΈμΈ λ°μ΄ν°λ² μ΄μ€μμ μλ΅μ λ°μ§ λͺ»νμ΅λλ€. | 1098 | μ°κ²°ν μ μμ΅λλ€. λ‘κ·ΈμΈ λ°μ΄ν°λ² μ΄μ€μμ μλ΅μ΄ μμ΅λλ€. |
1017 | 1099 | ||
1018 | μ μ ν λ€μ μλνμκ±°λ, λμλ§μ ν΄λ¦νμλ©΄ | 1100 | λͺ μ΄ νμ λ€μ μλνκ±°λ λμλ§μ ν΄λ¦νμ¬ |
1019 | μλ΄ λ° μμ€ν μν μΉνμ΄μ§λ‘ κ°λ λ§ν¬κ° λμ΅λλ€. | 1101 | μμ€ν μν μΉ νμ΄μ§μ λν μ§μ μ 보 λ° λ§ν¬λ₯Ό νμΈνμμμ€. |
1020 | </message> | 1102 | </message> |
1021 | <option name="OK"> | 1103 | <option name="OK"> |
1022 | νμΈ | 1104 | νμΈ |
@@ -1027,20 +1109,20 @@ Support μΉμ μ μ°Έκ³ νμμμ€. | |||
1027 | </alert> | 1109 | </alert> |
1028 | <alert name="CannotConnectLoginTimeout"> | 1110 | <alert name="CannotConnectLoginTimeout"> |
1029 | <message name="message"> | 1111 | <message name="message"> |
1030 | μΈκ³λ΄ κ·νμ μμΉλ₯Ό κΈ°λ€λ¦¬λ μ€μ λ‘κ·ΈμΈ νμμμμ΄ λ°μνμ΅λλ€. λ€μ μλν΄ μ£Όμμμ€. | 1112 | λ³ΈμΈ μμΉλ‘ λ‘κ·ΈμΈ μκ° μ΄κ³Ό. λ€μ μλν΄ μ£Όμμμ€. |
1031 | </message> | 1113 | </message> |
1032 | </alert> | 1114 | </alert> |
1033 | <alert name="FirstRunDialog"> | 1115 | <alert name="FirstRunDialog"> |
1034 | <message name="message"> | 1116 | <message name="message"> |
1035 | [SECOND_LIFE] μ€μΉκ° μλ£λμμ΅λλ€. | 1117 | [SECOND_LIFE] μ€μΉκ° μλ£λμμ΅λλ€. |
1036 | 1118 | ||
1037 | [SECOND_LIFE]μ(λ₯Ό) μ²μ μ¬μ©νμλ κ²½μ°, λ‘κ·ΈμΈνμκΈ° μ μ | 1119 | [SECOND_LIFE]λ₯Ό μ²μ μ¬μ©νμλ κ²½μ° λ¨Όμ κ³μ μ λ§λ€μ΄μΌ |
1038 | μλ‘ κ³μ μ λ§λμ μΌ ν©λλ€. | 1120 | λ‘κ·ΈμΈν μ μμ΅λλ€. |
1039 | 1121 | ||
1040 | www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | 1122 | www.secondlife.comμΌλ‘ λμκ° μ κ· κ³μ μ λ§λμκ² μ΅λκΉ? |
1041 | </message> | 1123 | </message> |
1042 | <option name="NewAccount..."> | 1124 | <option name="NewAccount..."> |
1043 | μ κ· κ³μ ... | 1125 | μ κ· κ³μ β¦ |
1044 | </option> | 1126 | </option> |
1045 | <option name="Continue"> | 1127 | <option name="Continue"> |
1046 | κ³μ | 1128 | κ³μ |
@@ -1048,25 +1130,25 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1048 | </alert> | 1130 | </alert> |
1049 | <alert name="ClothingStillDownloading"> | 1131 | <alert name="ClothingStillDownloading"> |
1050 | <message name="message"> | 1132 | <message name="message"> |
1051 | κ·νμ μλ³΅μ΄ μμ§ λ€μ΄λ‘λ μ€μ λλ€. | 1133 | μμμ λ€μ΄λ‘λνλ μ€μ λλ€. |
1052 | μΈκ³λ₯Ό μ μμ μΌλ‘ μ¬μ©ν μ μμΌλ©°, λ€λ₯Έ μ¬μ©μλ€μ΄ | 1134 | μΌλ°μ μΌλ‘ μΈμ»¨λλΌμ΄νλ₯Ό μ¬μ©ν μ μμΌλ©° λ€λ₯Έ μ¬μ©μμκ² |
1053 | κ·νλ₯Ό μ¬λ°λ‘ λ³΄κ² λ©λλ€. | 1135 | κ·νμ λͺ¨μ΅μ΄ μ λλ‘ νμλ κ²μ λλ€. |
1054 | </message> | 1136 | </message> |
1055 | </alert> | 1137 | </alert> |
1056 | <alert name="CannotResolveDomain"> | 1138 | <alert name="CannotResolveDomain"> |
1057 | <message name="message"> | 1139 | <message name="message"> |
1058 | μλ²μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | 1140 | μλ²μ μ°κ²°νμ§ λͺ»νμ΅λλ€. |
1059 | λ€μ λλ©μΈλͺ μ ν΄μν μ μμ΅λλ€: [λλ©μΈλͺ ] | 1141 | λ€μ λλ©μΈ μ΄λ¦μ νμΈν μ μμ΅λλ€: [DOMAIN] |
1060 | λ€νΈμν¬ μ°κ²°μ νμΈν΄ μ£Όμμμ€. | 1142 | λ€νΈμν¬ μ°κ²°μ νμΈνμμμ€. |
1061 | </message> | 1143 | </message> |
1062 | </alert> | 1144 | </alert> |
1063 | <alert name="CannotConnectLoginPacket"> | 1145 | <alert name="CannotConnectLoginPacket"> |
1064 | <message name="message"> | 1146 | <message name="message"> |
1065 | μ°κ²°μ μ€ν¨νμ΅λλ€. λ‘κ·ΈμΈ μλ²κ° λ‘κ·ΈμΈ ν¨ν·μ | 1147 | μ°κ²°ν μ μμ΅λλ€. λ‘κ·ΈμΈ μλ²μμ λ‘κ·ΈμΈ ν¨ν·μ΄ |
1066 | λ°μ§ λͺ»νμ΅λλ€. | 1148 | μμ λμ§ μμμ΅λλ€. |
1067 | 1149 | ||
1068 | μ μ ν λ€μ μλνμκ±°λ, λμλ§μ ν΄λ¦νμλ©΄ | 1150 | λͺ μ΄ νμ λ€μ μλνκ±°λ λμλ§μ ν΄λ¦νμ¬ |
1069 | μλ΄ λ° μμ€ν μν μΉνμ΄μ§λ‘ κ°λ λ§ν¬κ° λμ΅λλ€. | 1151 | μμ€ν μν μΉ νμ΄μ§μ λν μ§μ μ 보 λ° λ§ν¬λ₯Ό νμΈνμμμ€. |
1070 | </message> | 1152 | </message> |
1071 | <option name="OK"> | 1153 | <option name="OK"> |
1072 | νμΈ | 1154 | νμΈ |
@@ -1079,10 +1161,10 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1079 | <message name="message"> | 1161 | <message name="message"> |
1080 | [SECOND_LIFE]μ μ€μ κ²μ νμν©λλ€! | 1162 | [SECOND_LIFE]μ μ€μ κ²μ νμν©λλ€! |
1081 | 1163 | ||
1082 | νμ΄ν ν€λ₯Ό μ΄μ©νλ©΄ κ±Έμ μ μμ΅λλ€. | 1164 | νμ΄ν ν€λ₯Ό μ΄μ©νμ¬ κ±Έμ μ μμ΅λλ€. |
1083 | 1165 | ||
1084 | λ¨μ± λλ μ¬μ± μΊλ¦ν°λ₯Ό μ νν΄ μ£Όμμμ€. | 1166 | λ¨μ± λλ μ¬μ± μΊλ¦ν°λ₯Ό μ νν΄ μ£Όμμμ€. |
1085 | λμ€μ λ³κ²½μ΄ κ°λ₯ν©λλ€. | 1167 | μ°¨νμ λ³κ²½μ΄ κ°λ₯ν©λλ€. |
1086 | </message> | 1168 | </message> |
1087 | <option name="Male"> | 1169 | <option name="Male"> |
1088 | λ¨μ± | 1170 | λ¨μ± |
@@ -1095,7 +1177,7 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1095 | <message name="message"> | 1177 | <message name="message"> |
1096 | [SECOND_LIFE]μ μ€μ κ²μ νμν©λλ€! | 1178 | [SECOND_LIFE]μ μ€μ κ²μ νμν©λλ€! |
1097 | 1179 | ||
1098 | νμ΄ν ν€λ₯Ό μ΄μ©νλ©΄ κ±Έμ μ μμ΅λλ€. | 1180 | νμ΄ν ν€λ₯Ό μ΄μ©νμ¬ κ±Έμ μ μμ΅λλ€. |
1099 | 1181 | ||
1100 | λ¨μ± λλ μ¬μ± μΊλ¦ν°λ₯Ό μ νν΄ μ£Όμμμ€. | 1182 | λ¨μ± λλ μ¬μ± μΊλ¦ν°λ₯Ό μ νν΄ μ£Όμμμ€. |
1101 | </message> | 1183 | </message> |
@@ -1108,7 +1190,7 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1108 | </alert> | 1190 | </alert> |
1109 | <alert name="ConfirmQuit"> | 1191 | <alert name="ConfirmQuit"> |
1110 | <message name="message"> | 1192 | <message name="message"> |
1111 | μ λ§ μ’ λ£νμκ² μ΅λκΉ? | 1193 | μ’ λ£ νμκ² μ΅λκΉ? |
1112 | </message> | 1194 | </message> |
1113 | <option name="Yes"> | 1195 | <option name="Yes"> |
1114 | μ | 1196 | μ |
@@ -1119,17 +1201,17 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1119 | </alert> | 1201 | </alert> |
1120 | <alert name="RegionNoTerraforming"> | 1202 | <alert name="RegionNoTerraforming"> |
1121 | <message name="message"> | 1203 | <message name="message"> |
1122 | μ§μ [μ§μλͺ ]μμλ ν λΌνΌμ΄ νμ©λμ§ μμ΅λλ€. | 1204 | μ§μ [REGION]μ(λ) μ§ν λ³κ²½μ΄ νμ©λμ§ μμ΅λλ€. |
1123 | ν λΌνΌ νμλ €λ©΄ μΈκ³μ λ€λ₯Έ λΆλΆμμ ν μ§λ₯Ό | 1205 | μ΄ μ§μμ μ§νμ λ³κ²½νλ €λ©΄ λ€λ₯Έ ν μ§λ₯Ό |
1124 | 맀μ νμ μΌ ν©λλ€. | 1206 | 맀μ ν΄μΌ ν©λλ€. |
1125 | </message> | 1207 | </message> |
1126 | </alert> | 1208 | </alert> |
1127 | <alert name="CannotCopyWarning"> | 1209 | <alert name="CannotCopyWarning"> |
1128 | <message name="message"> | 1210 | <message name="message"> |
1129 | κ·νλ μ΄ μμ΄ν μ 볡μ¬ν κΆνμ΄ μμΌλ©° | 1211 | μ΄ μμ΄ν μ 볡μ¬ν μ μλ κΆνμ΄ |
1130 | μ΄ μμ΄ν μ μ£Όμ΄λ²λ¦¬λ©΄ ν΄λΉ μμ΄ν μ | 1212 | μμΌλ©° 무λ£λ‘ λ°°ν¬ν κ²½μ° μΈλ²€ν 리μμ |
1131 | κ·νμ μ μ₯μμμ μ¬λΌμ§κ² λ©λλ€. μ λ§ | 1213 | μμ΄ν μ μκ² λ©λλ€. μ΄ μμ΄ν μ |
1132 | μ΄ μμ΄ν μ μ 곡νμκ² μ΅λκΉ? | 1214 | λ°°ν¬νμκ² μ΅λκΉ? |
1133 | </message> | 1215 | </message> |
1134 | <option name="Yes"> | 1216 | <option name="Yes"> |
1135 | μ | 1217 | μ |
@@ -1140,7 +1222,7 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1140 | </alert> | 1222 | </alert> |
1141 | <alert name="CannotGiveItem"> | 1223 | <alert name="CannotGiveItem"> |
1142 | <message name="message"> | 1224 | <message name="message"> |
1143 | μ μ₯μ μμ΄ν λΆμ¬μ μ€ν¨νμ΅λλ€. | 1225 | μμ΄ν μ μ 곡ν μ μμ΅λλ€. |
1144 | </message> | 1226 | </message> |
1145 | </alert> | 1227 | </alert> |
1146 | <alert name="TransactionCancelled"> | 1228 | <alert name="TransactionCancelled"> |
@@ -1150,20 +1232,20 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1150 | </alert> | 1232 | </alert> |
1151 | <alert name="TooManyItems"> | 1233 | <alert name="TooManyItems"> |
1152 | <message name="message"> | 1234 | <message name="message"> |
1153 | 1μ°¨λ‘μ μ μ₯κ³ μ΄μ μμ κ·Έλ κ² λ§μ μμ΄ν μ μ λ¬ν μ μμ΅λλ€. | 1235 | μ΄λ§νΌ λ§μ μμ΄ν μ νλ²μ μΈλ²€ν 리 μ μ‘μΌλ‘ λ³΄λΌ μ μμ΅λλ€. |
1154 | </message> | 1236 | </message> |
1155 | </alert> | 1237 | </alert> |
1156 | <alert name="NoItems"> | 1238 | <alert name="NoItems"> |
1157 | <message name="message"> | 1239 | <message name="message"> |
1158 | μ€ μ μλ μμ΄ν μ΄ μμ΅λλ€. | 1240 | μ 곡ν μμ΄ν μμ. |
1159 | </message> | 1241 | </message> |
1160 | </alert> | 1242 | </alert> |
1161 | <alert name="CannotCopyCountItems"> | 1243 | <alert name="CannotCopyCountItems"> |
1162 | <message name="message"> | 1244 | <message name="message"> |
1163 | κ·νλ μ ννμ μμ΄ν [κ°μ]κ°λ₯Ό 볡μ¬ν | 1245 | μ νν μμ΄ν μ λν΄ [COUNT]κ°μ μ¬λ³Έμ λ§λ€ μ μλ |
1164 | κΆνμ΄ μμ΅λλ€. ν΄λΉ μμ΄ν λ€μ κ·νμ | 1246 | κΆνμ΄ μμ΅λλ€. μΈλ²€ν 리μμ μ΄λ¬ν μμ΄ν μ |
1165 | μ μ₯μμμ μ¬λΌμ§κ² λ©λλ€. | 1247 | μκ² λ©λλ€. |
1166 | μ λ§ μ΄ μμ΄ν λ€μ μ 곡νμκ² μ΅λκΉ? | 1248 | μ΄λ¬ν μμ΄ν μ λ°°ν¬νμκ² μ΅λκΉ? |
1167 | </message> | 1249 | </message> |
1168 | <option name="Yes"> | 1250 | <option name="Yes"> |
1169 | μ | 1251 | μ |
@@ -1174,20 +1256,20 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1174 | </alert> | 1256 | </alert> |
1175 | <alert name="CannotGiveCategory"> | 1257 | <alert name="CannotGiveCategory"> |
1176 | <message name="message"> | 1258 | <message name="message"> |
1177 | μ μ₯μ μΉ΄ν κ³ λ¦¬ λΆμ¬μ μ€ν¨νμ΅λλ€. | 1259 | μμ΄ν μΉ΄ν κ³ λ¦¬λ₯Ό μ 곡ν μ μμ΅λλ€. |
1178 | </message> | 1260 | </message> |
1179 | </alert> | 1261 | </alert> |
1180 | <alert name="FreezeAvatar"> | 1262 | <alert name="FreezeAvatar"> |
1181 | <message name="message"> | 1263 | <message name="message"> |
1182 | μ΄ μλ°νλ₯Ό λκ²°νμκ² μ΅λκΉ? | 1264 | μ΄ μλ°νλ₯Ό λκ²° μν΅λκΉ? |
1183 | ν΄λΉ μλ°νλ μΌμμ μΌλ‘ μμ§μ΄κ±°λ, μ±ν λλ | 1265 | μΌμμ μΌλ‘ μμ§μ΄μ§ λͺ»νκ³ , |
1184 | μΈκ³μ μλ‘ μμ©νμ§ λͺ»νκ² λ©λλ€. | 1266 | μ±ν μ΄λ μνΈμμ©μ ν μ μμ΅λλ€. |
1185 | </message> | 1267 | </message> |
1186 | <option name="Freeze"> | 1268 | <option name="Freeze"> |
1187 | λκ²° | 1269 | μ 체 |
1188 | </option> | 1270 | </option> |
1189 | <option name="Unfreeze"> | 1271 | <option name="Unfreeze"> |
1190 | λκ²° ν΄μ | 1272 | κ³ μ ν΄μ |
1191 | </option> | 1273 | </option> |
1192 | <option name="Cancel"> | 1274 | <option name="Cancel"> |
1193 | μ·¨μ | 1275 | μ·¨μ |
@@ -1195,13 +1277,13 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1195 | </alert> | 1277 | </alert> |
1196 | <alert name="EjectAvatar"> | 1278 | <alert name="EjectAvatar"> |
1197 | <message name="message"> | 1279 | <message name="message"> |
1198 | μ΄ μλ°νλ₯Ό κ·νμ ν μ§μμ μΆμΆνμκ² μ΅λκΉ? | 1280 | μ΄ μλ°νλ₯Ό κ·νμ ν μ§μμ κ°ν΄μν€μκ² μ΅λκΉ? |
1199 | </message> | 1281 | </message> |
1200 | <option name="Eject"> | 1282 | <option name="Eject"> |
1201 | μΆμΆ | 1283 | μΆμΆ |
1202 | </option> | 1284 | </option> |
1203 | <option name="EjectandBan"> | 1285 | <option name="EjectandBan"> |
1204 | μΆμΆ ν κΈμ§ | 1286 | μΆμΆ λ° μ°¨λ¨ |
1205 | </option> | 1287 | </option> |
1206 | <option name="Cancel"> | 1288 | <option name="Cancel"> |
1207 | μ·¨μ | 1289 | μ·¨μ |
@@ -1209,30 +1291,30 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1209 | </alert> | 1291 | </alert> |
1210 | <alert name="InvalidUUID"> | 1292 | <alert name="InvalidUUID"> |
1211 | <message name="message"> | 1293 | <message name="message"> |
1212 | μ ν¨ν uuidκ° μλλλ€ | 1294 | μ¬λ°λ₯Έuuidκ° μλ |
1213 | </message> | 1295 | </message> |
1214 | </alert> | 1296 | </alert> |
1215 | <alert name="AcquireErrorTooManyObjects"> | 1297 | <alert name="AcquireErrorTooManyObjects"> |
1216 | <message name="message"> | 1298 | <message name="message"> |
1217 | νλ μ€λ₯: μ νλ μ¬λ¬Όμ΄ λ무 λ§μ΅λλ€. | 1299 | κ°μ Έμ€κΈ° μ€λ₯: μ νν μ€λΈμ νΈκ° λ무 λ§μ΅λλ€. |
1218 | </message> | 1300 | </message> |
1219 | </alert> | 1301 | </alert> |
1220 | <alert name="AcquireErrorObjectSpan"> | 1302 | <alert name="AcquireErrorObjectSpan"> |
1221 | <message name="message"> | 1303 | <message name="message"> |
1222 | νλ μ€λ₯: μ¬λ¬Όμ λ²μκ° 1κ° μ§μμ λ²μ΄λ©λλ€. | 1304 | κ°μ Έμ€κΈ° μ€λ₯: μ€λΈμ νΈλ 1κ°μ μ§μ μ΄μμ κ±Έμ³ μ‘΄μ¬ν©λλ€. |
1223 | λμΌ μ§μμμ νλν μ μλλ‘ λͺ¨λ μ¬λ¬Όμ | 1305 | κ°μ Έμ€λ €λ λͺ¨λ μ€λΈμ νΈλ₯Ό λμΌ μ§μμΌλ‘ |
1224 | μ΄λνμμμ€. | 1306 | μ΄λνμμμ€. |
1225 | </message> | 1307 | </message> |
1226 | </alert> | 1308 | </alert> |
1227 | <alert name="TakeLockedOrNotOwnedBy"> | 1309 | <alert name="TakeLockedOrNotOwnedBy"> |
1228 | <message name="message"> | 1310 | <message name="message"> |
1229 | μ΅μ 1κ° μ¬λ¬Όμ΄ μ κΈ΄ μνκ±°λ κ·νκ° μμ μ£Όκ° μλλλ€. | 1311 | 1κ° μ΄μμ μ€λΈμ νΈκ° μ 겨 μκ±°λ κ·νμ μμ κ° μλλλ€. |
1230 | κ·νκ° μμ μκ° μλ μ¬λ¬Όμ μ°¨μ§ν κ²½μ°, | 1312 | κ·νμ μμ κ° μλ μ€λΈμ νΈλ₯Ό κ·νκ° κ°μ§λ©΄ |
1231 | ν΄λΉ μ¬λ¬Όμ λ€μ μμ μ κΆνμ΄ μ μ©λμ΄ | 1313 | μ΄ μ€λΈμ νΈμ λ€μ μμ μ κΆνμ΄ μ μ©λμ΄ |
1232 | κ·νκ° ν΄λΉ μ¬λ¬Όμ μμ λλ 볡μ¬νλλ° μ νμ | 1314 | μ΄νμ κ·νκ° μμ νκ±°λ 볡μ¬ν κΆνμ΄ μ νλ μ |
1233 | λ°μ μ μμ΅λλ€. | 1315 | μμ΅λλ€. |
1234 | κ·Έλ¬λ νμ¬ μ νν μ¬λ¬Όμ μ°¨μ§νλ κ²μ κ°λ₯ν©λλ€. | 1316 | νμ§λ§ νμ¬ μνλ μμ΄ν μ μ νν μ μμ΅λλ€. |
1235 | μ λ§ μ΄ μ¬λ¬Όλ€μ μ°¨μ§νμκ² μ΅λκΉ? | 1317 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? |
1236 | </message> | 1318 | </message> |
1237 | <option name="Yes"> | 1319 | <option name="Yes"> |
1238 | μ | 1320 | μ |
@@ -1243,10 +1325,10 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1243 | </alert> | 1325 | </alert> |
1244 | <alert name="PromptGoToCurrencyPage"> | 1326 | <alert name="PromptGoToCurrencyPage"> |
1245 | <message name="message"> | 1327 | <message name="message"> |
1246 | [κΈ°ν] | 1328 | [EXTRA] |
1247 | 1329 | ||
1248 | 1330 | ||
1249 | [URL](μΌ)λ‘ κ°μ ꡬ맀 ννμ λν μ 보λ₯Ό μ»μΌμκ² μ΅λκΉ? | 1331 | λ¦°λ λ¬λ¬(L$) ꡬ맀 μ 보λ₯Ό 보기 μν΄ [URL](μΌ)λ‘ μ΄λνμκ² μ΅λκΉ? |
1250 | </message> | 1332 | </message> |
1251 | <option name="GotoPage"> | 1333 | <option name="GotoPage"> |
1252 | νμ΄μ§λ‘ μ΄λ | 1334 | νμ΄μ§λ‘ μ΄λ |
@@ -1257,40 +1339,40 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1257 | </alert> | 1339 | </alert> |
1258 | <alert name="UnableToLinkObjects"> | 1340 | <alert name="UnableToLinkObjects"> |
1259 | <message name="message"> | 1341 | <message name="message"> |
1260 | μ΄ μμ΄ν [COUNT]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | 1342 | [COUNT]κ° μ€λΈμ νΈλ₯Ό μ°κ²°ν μ μμ΅λλ€. |
1261 | μ΅λ [MAX]κ°μ μ¬λ¬Όμ μ°κ²°ν μ μμ΅λλ€. | 1343 | μ΅λ [MAX]κ°μ μ€λΈμ νΈλ₯Ό μ°κ²°ν μ μμ΅λλ€. |
1262 | λ μ μ μμ μ¬λ¬Όμ μ νν΄ μ£Όμμμ€. | 1344 | λ μ μ μμ μ€λΈμ νΈλ₯Ό μ νν΄ μ£Όμμμ€. |
1263 | </message> | 1345 | </message> |
1264 | </alert> | 1346 | </alert> |
1265 | <alert name="CannotLinkIncompleteSet"> | 1347 | <alert name="CannotLinkIncompleteSet"> |
1266 | <message name="message"> | 1348 | <message name="message"> |
1267 | μ¬λ¬Όμ΄ μμ ν μΈνΈλ‘ κ°μΆ°μ§ κ²½μ°μλ§ μ°κ²°ν μ μμΌλ©° | 1349 | μμ ν μ€λΈμ νΈλ€λ§ μ°κ²°ν μ μμΌλ©° |
1268 | 2κ° μ΄μμ μ¬λ¬Όμ μ ννμ μΌ ν©λλ€. | 1350 | λ μ΄μμ μ€λΈμ νΈλ₯Ό μ νν΄μΌ ν©λλ€. |
1269 | </message> | 1351 | </message> |
1270 | </alert> | 1352 | </alert> |
1271 | <alert name="CannotLinkModify"> | 1353 | <alert name="CannotLinkModify"> |
1272 | <message name="message"> | 1354 | <message name="message"> |
1273 | λͺ¨λ μ¬λ¬Όμ λν μμ κΆνμ΄ μκΈ° λλ¬Έμ λ§ν¬μ μ°κ²°νμ§ | 1355 | λͺ¨λ μ€λΈμ νΈμ λν μμ κΆνμ΄ μμΌλ―λ‘ |
1274 | λͺ»νμ΅λλ€. μ κΈ΄ μνμ μ¬λ¬Όμ΄ μκ³ , λͺ¨λ μ¬λ¬Όμ λν μμ κΆμ | 1356 | μ°κ²°ν μ μμ΅λλ€. μ 겨 μλ μ€λΈμ νΈκ° μλμ§, λͺ¨λ μ€λΈμ νΈλ₯Ό μμ νκ³ μλμ§ |
1275 | κ°μ§κ³ μλμ§ νμΈνμμμ€. | 1357 | μ¬λΆλ₯Ό νμΈνμμμ€. |
1276 | </message> | 1358 | </message> |
1277 | </alert> | 1359 | </alert> |
1278 | <alert name="CannotLinkDifferentOwners"> | 1360 | <alert name="CannotLinkDifferentOwners"> |
1279 | <message name="message"> | 1361 | <message name="message"> |
1280 | μ¬λ¬Όμ μμ μ£Όκ° μ λΆ κ°μ§ μμ μ°κ²°μ | 1362 | λͺ¨λ μ€λΈμ νΈκ° λμΌν μμ μλ₯Ό κ°κ³ μμ§ |
1281 | μ€ν¨νμ΅λλ€. λ³ΈμΈμ΄ μμ ν μ¬λ¬Όλ§ μ νν΄ μ£Όμμμ€. | 1363 | μμΌλ―λ‘ μ°κ²°ν μ μμ΅λλ€. μ νν λͺ¨λ μ€λΈμ νΈλ₯Ό μμ νκ³ μλμ§ νμΈνμμμ€. |
1282 | </message> | 1364 | </message> |
1283 | </alert> | 1365 | </alert> |
1284 | <alert name="NoFileExtension"> | 1366 | <alert name="NoFileExtension"> |
1285 | <message name="message"> | 1367 | <message name="message"> |
1286 | νμΌμ ν΄λΉνλ νμ₯μκ° μμ΅λλ€: '[νμΌλͺ ]' | 1368 | νμΌ νμ₯μ μμ: '[FILE]' |
1287 | νμΌμ μ¬λ°λ₯Έ νμΌ νμ₯μλ₯Ό λΆμ¬ν΄ μ£Όμμμ€ | 1369 | νμΌ νμ₯μκ° μ¬λ°λ₯Έ μ§ νμΈνμΈμ. |
1288 | </message> | 1370 | </message> |
1289 | </alert> | 1371 | </alert> |
1290 | <alert name="InvalidFileExtension"> | 1372 | <alert name="InvalidFileExtension"> |
1291 | <message name="message"> | 1373 | <message name="message"> |
1292 | μ ν¨νμ§ μμ νμ₯μ[νμ₯μλͺ ]μ λλ€ | 1374 | μ ν¨νμ§ μμ νμΌ νμ₯μ[EXTENSION] |
1293 | μ¬λ°λ₯Έ μ΄λ¦μ [μ ν¨ν κ°]μ λλ€ | 1375 | μμ [VALIDS] |
1294 | </message> | 1376 | </message> |
1295 | <option name="OK"> | 1377 | <option name="OK"> |
1296 | νμΈ | 1378 | νμΈ |
@@ -1298,234 +1380,234 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1298 | </alert> | 1380 | </alert> |
1299 | <alert name="CannotUploadSoundFile"> | 1381 | <alert name="CannotUploadSoundFile"> |
1300 | <message name="message"> | 1382 | <message name="message"> |
1301 | μ½κΈ°λ₯Ό μν΄ μ λ‘λ μμΆ μ¬μ΄λ νμΌμ μ΄μ§ λͺ»νμ΅λλ€: | 1383 | μ½κΈ°λ₯Ό μνν μ λ‘λ μ¬μ΄λ νμΌμ μ΄ μ μμ΅λλ€: |
1302 | [νμΌλͺ ] | 1384 | [FILE] |
1303 | </message> | 1385 | </message> |
1304 | </alert> | 1386 | </alert> |
1305 | <alert name="SoundFileNotRIFF"> | 1387 | <alert name="SoundFileNotRIFF"> |
1306 | <message name="message"> | 1388 | <message name="message"> |
1307 | νμΌμ΄ RIFF WAVE μ€λμ€ νμΌμ΄ μλ κ²μΌλ‘ νλ¨λ©λλ€: | 1389 | νμΌμ΄ RIFF WAVE νμΌμ΄ μλ κ² κ°μ΅λλ€: |
1308 | [νμΌλͺ ] | 1390 | [FILE] |
1309 | </message> | 1391 | </message> |
1310 | </alert> | 1392 | </alert> |
1311 | <alert name="SoundFileNotPCM"> | 1393 | <alert name="SoundFileNotPCM"> |
1312 | <message name="message"> | 1394 | <message name="message"> |
1313 | νμΌμ΄ PCM WAVE μ€λμ€ νμΌμ΄ μλ κ²μΌλ‘ νλ¨λ©λλ€: | 1395 | νμΌμ΄ PCM WAVE μ€λμ€ νμΌμ΄ μλ κ² κ°μ΅λλ€: |
1314 | [νμΌλͺ ] | 1396 | [FILE] |
1315 | </message> | 1397 | </message> |
1316 | </alert> | 1398 | </alert> |
1317 | <alert name="SoundFileInvalidChannelCount"> | 1399 | <alert name="SoundFileInvalidChannelCount"> |
1318 | <message name="message"> | 1400 | <message name="message"> |
1319 | νμΌμ μ ν¨νμ§ μμ μμ μ±λμ΄ μμ΅λλ€(λͺ¨λ Έ λλ μ€ν λ μ€μ¬μΌ ν¨): | 1401 | νμΌμ μ±λ κ°μκ° μ ν¨νμ§ μμ΅λλ€(λͺ¨λ Έ λλ μ€ν λ μ€ μ ν¨): |
1320 | [νμΌλͺ ] | 1402 | [FILE] |
1321 | </message> | 1403 | </message> |
1322 | </alert> | 1404 | </alert> |
1323 | <alert name="SoundFileInvalidSampleRate"> | 1405 | <alert name="SoundFileInvalidSampleRate"> |
1324 | <message name="message"> | 1406 | <message name="message"> |
1325 | νμΌμ΄ μ§μλλ μνμ¨(44.1kμ¬μΌ ν¨)μ΄ μλ κ²μΌλ‘ νλ¨λ©λλ€: | 1407 | νμΌμ λΉνΈμ¨μ΄ μ§μλμ§ μλ κ² κ°μ΅λλ€(44.1kμ΄μ΄μΌ ν¨): |
1326 | [νμΌλͺ ] | 1408 | [FILE] |
1327 | </message> | 1409 | </message> |
1328 | </alert> | 1410 | </alert> |
1329 | <alert name="SoundFileInvalidWordSize"> | 1411 | <alert name="SoundFileInvalidWordSize"> |
1330 | <message name="message"> | 1412 | <message name="message"> |
1331 | νμΌμ΄ μ§μλλ λ¨μ΄ ν¬κΈ°(8 λλ 16λΉνΈμ¬μΌ ν¨)κ° μλ κ²μΌλ‘ νλ¨λ©λλ€: | 1413 | νμΌμ λ¨μ΄ ν¬κΈ°κ° μ§μλμ§ μλ κ² κ°μ΅λλ€(8λΉνΈλ 16λΉνΈμ¬μΌ ν¨): |
1332 | [νμΌλͺ ] | 1414 | [FILE] |
1333 | </message> | 1415 | </message> |
1334 | </alert> | 1416 | </alert> |
1335 | <alert name="SoundFileInvalidHeader"> | 1417 | <alert name="SoundFileInvalidHeader"> |
1336 | <message name="message"> | 1418 | <message name="message"> |
1337 | WAV ν€λμμ 'λ°μ΄ν°' λ¬Άμμ μ°Ύμ μ μμ΅λλ€: | 1419 | WAV ν€λμμ 'λ°μ΄ν°' λ₯Ό μ°Ύμ μ μμ΅λλ€: |
1338 | [νμΌλͺ ] | 1420 | [FILE] |
1339 | </message> | 1421 | </message> |
1340 | </alert> | 1422 | </alert> |
1341 | <alert name="SoundFileInvalidTooLong"> | 1423 | <alert name="SoundFileInvalidTooLong"> |
1342 | <message name="message"> | 1424 | <message name="message"> |
1343 | μ€λμ€ νμΌ κΈΈμ΄κ° λ무 κΉλλ€(μ΅λ 10μ΄): | 1425 | μ€λμ€ νμΌμ΄ λ무 κΉλλ€(μ΅λ 10μ΄): |
1344 | [νμΌλͺ ] | 1426 | [FILE] |
1345 | </message> | 1427 | </message> |
1346 | </alert> | 1428 | </alert> |
1347 | <alert name="ProblemWithFile"> | 1429 | <alert name="ProblemWithFile"> |
1348 | <message name="message"> | 1430 | <message name="message"> |
1349 | νμΌ [νμΌλͺ ]μ λ¬Έμ κ° μμ΅λλ€: | 1431 | [FILE]μ λ¬Έμ μ : |
1350 | 1432 | ||
1351 | [μ€λ₯] | 1433 | [ERROR] |
1352 | </message> | 1434 | </message> |
1353 | </alert> | 1435 | </alert> |
1354 | <alert name="CannotOpenTemporarySoundFile"> | 1436 | <alert name="CannotOpenTemporarySoundFile"> |
1355 | <message name="message"> | 1437 | <message name="message"> |
1356 | μ°κΈ°λ₯Ό μν΄ μμ μμΆ μ¬μ΄λ νμΌμ μ΄μ§ λͺ»νμ΅λλ€: [νμΌλͺ ] | 1438 | μ°κΈ°λ₯Ό μ€νν μμ μμΆ μ¬μ΄λ νμΌμ μ΄ μ μμ΅λλ€: [FILE] |
1357 | </message> | 1439 | </message> |
1358 | </alert> | 1440 | </alert> |
1359 | <alert name="UnknownVorbisEncodeFailure"> | 1441 | <alert name="UnknownVorbisEncodeFailure"> |
1360 | <message name="message"> | 1442 | <message name="message"> |
1361 | λ€μ νμΌμ μ μ μλ 보λΉμ€ μνΈν μ€λ₯κ° λ°μνμ΅λλ€: [νμΌλͺ ] | 1443 | μ μ μλ vorbis μΈμ½λ© μ€λ₯: [FILE] |
1362 | </message> | 1444 | </message> |
1363 | </alert> | 1445 | </alert> |
1364 | <alert name="CorruptResourceFile"> | 1446 | <alert name="CorruptResourceFile"> |
1365 | <message name="message"> | 1447 | <message name="message"> |
1366 | μμλ 리μμ€ νμΌμ λλ€: [νμΌλͺ ] | 1448 | μμλ 리μμ€ νμΌ: [FILE] |
1367 | </message> | 1449 | </message> |
1368 | </alert> | 1450 | </alert> |
1369 | <alert name="UnknownResourceFileVersion"> | 1451 | <alert name="UnknownResourceFileVersion"> |
1370 | <message name="message"> | 1452 | <message name="message"> |
1371 | νμΌ λ΄μ μλ €μ§μ§ μμ λ¦°λ νμΌ λ²μ μ΄ μμ΅λλ€: [νμΌλͺ ] | 1453 | νμΌμ μ μ μλ λ¦°λ 리μμ€ νμΌ λ²μ μ΄ μμ΅λλ€: [FILE] |
1372 | </message> | 1454 | </message> |
1373 | </alert> | 1455 | </alert> |
1374 | <alert name="UnableToCreateOutputFile"> | 1456 | <alert name="UnableToCreateOutputFile"> |
1375 | <message name="message"> | 1457 | <message name="message"> |
1376 | μΆλ ₯ νμΌ μμ± μ€ν¨: [νμΌλͺ ] | 1458 | μΆλ ₯ νμΌμ λ§λ€ μ μμ΅λλ€: [FILE] |
1377 | </message> | 1459 | </message> |
1378 | </alert> | 1460 | </alert> |
1379 | <alert name="DoNotSupportBulkAnimationUpload"> | 1461 | <alert name="DoNotSupportBulkAnimationUpload"> |
1380 | <message name="message"> | 1462 | <message name="message"> |
1381 | νμ¬ μ λλ©μ΄μ νμΌμ λ²ν¬ μ λ‘λλ μ§μνμ§ μμ΅λλ€ | 1463 | νμ¬ μ λλ©μ΄μ νμΌμ μΌκ΄ μ λ‘λλ μ§μλμ§ μμ΅λλ€. |
1382 | </message> | 1464 | </message> |
1383 | </alert> | 1465 | </alert> |
1384 | <alert name="CannotAccessOutputFile"> | 1466 | <alert name="CannotAccessOutputFile"> |
1385 | <message name="message"> | 1467 | <message name="message"> |
1386 | μΆλ ₯ νμΌμ μ‘μΈμ€νμ§ λͺ»νμ΅λλ€: [νμΌλͺ ] | 1468 | μΆλ ₯ νμΌμ μ κ·Όν μ μμ΅λλ€: [FILE] |
1387 | </message> | 1469 | </message> |
1388 | </alert> | 1470 | </alert> |
1389 | <alert name="InsufficientFundsToUploadFile"> | 1471 | <alert name="InsufficientFundsToUploadFile"> |
1390 | <message name="message"> | 1472 | <message name="message"> |
1391 | μκΈμ΄ λΆμ‘±ν΄ νμΌ μ λ‘λλ₯Ό μλ£ν μ μμ΅λλ€: λΉμ©μ L$[λΉμ©]μ΄λ©°, νμ¬ μμ‘μ L$[μμ‘]μ λλ€ | 1473 | νμΌμ μ λ‘λνλ λ° λ¦°λ λ¬λ¬κ° λΆμ‘±ν¨: λΉμ©μ L$[COST]μ΄κ³ , μμ‘μ L$[BALANCE]μ |
1392 | </message> | 1474 | </message> |
1393 | </alert> | 1475 | </alert> |
1394 | <alert name="InsufficientFundsToFinishUpload"> | 1476 | <alert name="InsufficientFundsToFinishUpload"> |
1395 | <message name="message"> | 1477 | <message name="message"> |
1396 | μκΈμ΄ λΆμ‘±ν΄ [νμΌλͺ ] μ λ‘λλ₯Ό μλ£ν μ μμ΅λλ€: λΉμ©μ L$[λΉμ©]μ΄λ©°, νμ¬ μμ‘μ L$[μμ‘]μ λλ€ | 1478 | [FILE] (μ)λ₯Ό μ λ‘λνλ λ° λ¦°λ λ¬λ¬κ° λΆμ‘±ν¨: λΉμ©μ L$[COST]μ΄κ³ , μμ‘μ L$[BALANCE]μ |
1397 | </message> | 1479 | </message> |
1398 | </alert> | 1480 | </alert> |
1399 | <alert name="CannotUploadReason"> | 1481 | <alert name="CannotUploadReason"> |
1400 | <message name="message"> | 1482 | <message name="message"> |
1401 | λ€μμ μ΄μ λ‘ μΈν΄ [νμΌλͺ ] μ λ‘λμ μ€ν¨νμ΅λλ€: [μ΄μ ] | 1483 | λ€μ μ΄μ λ‘ μΈν΄ [FILE]μ(λ₯Ό) μ λ‘λν μ μμ΅λλ€: [REASON] |
1402 | μ μ ν λ€μ μλν΄ μ£Όμμμ€. | 1484 | λ€μ μλν΄ μ£Όμμμ€. |
1403 | </message> | 1485 | </message> |
1404 | </alert> | 1486 | </alert> |
1405 | <alert name="CannotCreateLandmarkNotOwner"> | 1487 | <alert name="CannotCreateLandmarkNotOwner"> |
1406 | <message name="message"> | 1488 | <message name="message"> |
1407 | μ΄ ν μ§μ μμ μ£Όκ° νμ©νμ§ μκΈ° λλ¬Έμ μ¬κΈ°λ | 1489 | ν μ§μ μμ μ£Όκ° νμ©νμ§ μμΌλ―λ‘ μ¬κΈ°μ |
1408 | ν μ§ κ²½κ³λ₯Ό μμ±νμ€ μ μμ΅λλ€. | 1490 | λλλ§ν¬λ₯Ό μμ±ν μ μμ΅λλ€. |
1409 | μ°μ λͺ λ―Έν° μ΄λν΄λ³΄μμμ€. | 1491 | λ¨Όμ λͺ m λ μ΄λν΄ λ³΄μμμ€. |
1410 | </message> | 1492 | </message> |
1411 | </alert> | 1493 | </alert> |
1412 | <alert name="CannotRecompileSelectObjectsNoScripts"> | 1494 | <alert name="CannotRecompileSelectObjectsNoScripts"> |
1413 | <message name="message"> | 1495 | <message name="message"> |
1414 | μ¬μ»΄νμΌμ μνν μ μμ΅λλ€. | 1496 | 리컴νμΌλ§μ μνν μ μμ. |
1415 | μ ν¨ν μ€ν¬λ¦½νΈ μ¬λ¬Όμ | 1497 | μ¬λ°λ₯Έ |
1416 | μ νν΄ μ£Όμμμ€. | 1498 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€. |
1417 | </message> | 1499 | </message> |
1418 | </alert> | 1500 | </alert> |
1419 | <alert name="CannotRecompileSelectObjectsNoPermission"> | 1501 | <alert name="CannotRecompileSelectObjectsNoPermission"> |
1420 | <message name="message"> | 1502 | <message name="message"> |
1421 | μ¬μ»΄νμΌμ μνν μ μμ΅λλ€. | 1503 | 리컴νμΌλ§μ μνν μ μμ. |
1422 | λ³ΈμΈμκ² μμ ν κΆνμ΄ μλ μ€ν¬λ¦½νΈ | 1504 | λ΄κ° μμ ν κΆνμ΄ μλ |
1423 | μ¬λ¬Όμ μ νν΄ μ£Όμμμ€. | 1505 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€. |
1424 | </message> | 1506 | </message> |
1425 | </alert> | 1507 | </alert> |
1426 | <alert name="CannotResetSelectObjectsNoScripts"> | 1508 | <alert name="CannotResetSelectObjectsNoScripts"> |
1427 | <message name="message"> | 1509 | <message name="message"> |
1428 | μ¬μ€μ μ μνν μ μμ΅λλ€. | 1510 | μ΄κΈ°νλ₯Ό μνν μ μμ. |
1429 | λ³ΈμΈμκ² μμ ν κΆνμ΄ μλ μ€ν¬λ¦½νΈ | 1511 | μ¬λ°λ₯Έ |
1430 | μ¬λ¬Όμ μ νν΄ μ£Όμμμ€. | 1512 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€.. |
1431 | </message> | 1513 | </message> |
1432 | </alert> | 1514 | </alert> |
1433 | <alert name="CannotResetSelectObjectsNoPermission"> | 1515 | <alert name="CannotResetSelectObjectsNoPermission"> |
1434 | <message name="message"> | 1516 | <message name="message"> |
1435 | μ¬μ€μ μ μνν μ μμ΅λλ€. | 1517 | μ΄κΈ°νλ₯Ό μνν μ μμ. |
1436 | λ³ΈμΈμκ² μμ ν κΆνμ΄ μλ μ€ν¬λ¦½νΈ | 1518 | λ΄κ° μμ ν κΆνμ΄ μλ |
1437 | μ¬λ¬Όμ μ νν΄ μ£Όμμμ€. | 1519 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€. |
1438 | </message> | 1520 | </message> |
1439 | </alert> | 1521 | </alert> |
1440 | <alert name="CannotSetRunningSelectObjectsNoScripts"> | 1522 | <alert name="CannotSetRunningSelectObjectsNoScripts"> |
1441 | <message name="message"> | 1523 | <message name="message"> |
1442 | μ€ν¬λ¦½νΈλ₯Ό μΌμ²΄ μλν¨μΌλ‘ μ€μ ν μ μμ΅λλ€. | 1524 | μ€ν¬λ¦½νΈλ₯Ό μ€ν ν¨μΌλ‘ μ€μ ν μ μμ. |
1443 | μ ν¨ν μ€ν¬λ¦½νΈ μ¬λ¬Όμ | 1525 | μ¬λ°λ₯Έ |
1444 | μ νν΄ μ£Όμμμ€. | 1526 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€. |
1445 | </message> | 1527 | </message> |
1446 | </alert> | 1528 | </alert> |
1447 | <alert name="CannotSetRunningSelectObjectsNoPermission"> | 1529 | <alert name="CannotSetRunningSelectObjectsNoPermission"> |
1448 | <message name="message"> | 1530 | <message name="message"> |
1449 | μ€ν¬λ¦½νΈλ₯Ό μΌμ²΄ μλν¨μΌλ‘ μ€μ ν μ μμ΅λλ€. | 1531 | μ€ν¬λ¦½νΈλ₯Ό μ€ν ν¨μΌλ‘ μ€μ ν μ μμ. |
1450 | λ³ΈμΈμκ² μμ ν κΆνμ΄ μλ μ€ν¬λ¦½νΈ | 1532 | λ΄κ° μμ ν κΆνμ΄ μλ |
1451 | μ¬λ¬Όμ μ νν΄ μ£Όμμμ€. | 1533 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€. |
1452 | </message> | 1534 | </message> |
1453 | </alert> | 1535 | </alert> |
1454 | <alert name="CannotSetRunningNotSelectObjectsNoScripts"> | 1536 | <alert name="CannotSetRunningNotSelectObjectsNoScripts"> |
1455 | <message name="message"> | 1537 | <message name="message"> |
1456 | μ€ν¬λ¦½νΈλ₯Ό μΌμ²΄ μλ μν¨μΌλ‘ μ€μ ν μ μμ΅λλ€. | 1538 | μ€ν¬λ¦½νΈλ₯Ό μ€ν μ ν¨μΌλ‘ μ€μ ν μ μμ. |
1457 | μ ν¨ν μ€ν¬λ¦½νΈ | 1539 | μ¬λ°λ₯Έ |
1458 | μ¬λ¬Όμ μ νν΄ μ£Όμμμ€. | 1540 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€. |
1459 | </message> | 1541 | </message> |
1460 | </alert> | 1542 | </alert> |
1461 | <alert name="CannotSetRunningNotSelectObjectsNoPermission"> | 1543 | <alert name="CannotSetRunningNotSelectObjectsNoPermission"> |
1462 | <message name="message"> | 1544 | <message name="message"> |
1463 | μ€ν¬λ¦½νΈλ₯Ό μΌμ²΄ μλ μν¨μΌλ‘ μ€μ ν μ μμ΅λλ€. | 1545 | μ€ν¬λ¦½νΈλ₯Ό μ€ν μ ν¨μΌλ‘ μ€μ ν μ μμ. |
1464 | λ³ΈμΈμκ² μμ ν κΆνμ΄ μλ μ€ν¬λ¦½νΈ | 1546 | λ΄κ° μμ ν κΆνμ΄ μλ |
1465 | μ¬λ¬Όμ μ νν΄ μ£Όμμμ€. | 1547 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€. |
1466 | </message> | 1548 | </message> |
1467 | </alert> | 1549 | </alert> |
1468 | <alert name="NoFrontmostFloater"> | 1550 | <alert name="NoFrontmostFloater"> |
1469 | <message name="message"> | 1551 | <message name="message"> |
1470 | ꡬμΆν μ΅μ λ°© νλ₯μκ° μμ΅λλ€ | 1552 | 맨 μμ νλ¬ν° μ μ₯ μν¨ |
1471 | </message> | 1553 | </message> |
1472 | </alert> | 1554 | </alert> |
1473 | <alert name="ColladaExportFailedUnknownServerError"> | 1555 | <alert name="ColladaExportFailedUnknownServerError"> |
1474 | <message name="message"> | 1556 | <message name="message"> |
1475 | μ½λΌλ€ λ΄λ³΄λ΄κΈ° μ€ν¨: μλ €μ§μ§ μμ μλ² μ€λ₯μ λλ€. | 1557 | Collada λ΄λ³΄λ΄κΈ° μ€ν¨: μ μ μλ μλ² μ€λ₯μ λλ€. |
1476 | </message> | 1558 | </message> |
1477 | </alert> | 1559 | </alert> |
1478 | <alert name="ColladaExportFailedInvalidPermissions"> | 1560 | <alert name="ColladaExportFailedInvalidPermissions"> |
1479 | <message name="message"> | 1561 | <message name="message"> |
1480 | μ½λΌλ€ λ΄λ³΄λ΄κΈ° μ€ν¨: μ ν¨νμ§ μμ κΆνμ΄κ±°λ μ¬λ¬Όμ΄ μ κΈ΄ μνμ λλ€! | 1562 | Collada λ΄λ³΄λ΄κΈ° μ€ν¨: κΆνμ΄ μ ν¨νμ§ μκ±°λ μ€λΈμ νΈκ° μ 겨 μμ΅λλ€. |
1481 | </message> | 1563 | </message> |
1482 | </alert> | 1564 | </alert> |
1483 | <alert name="ColladaExportFailedUnknownError"> | 1565 | <alert name="ColladaExportFailedUnknownError"> |
1484 | <message name="message"> | 1566 | <message name="message"> |
1485 | μ½λΌλ€ λ΄λ³΄λ΄κΈ° μ€ν¨: μλ €μ§μ§ μμ μ€λ₯μ λλ€. | 1567 | Collada λ΄λ³΄λ΄κΈ° μ€ν¨: μ μ μλ μ€λ₯μ λλ€. |
1486 | </message> | 1568 | </message> |
1487 | </alert> | 1569 | </alert> |
1488 | <alert name="ObjectImportFailedTransfer"> | 1570 | <alert name="ObjectImportFailedTransfer"> |
1489 | <message name="message"> | 1571 | <message name="message"> |
1490 | μ¬λ¬Ό κ°μ Έμ€κΈ°μ μ€ν¨νμ΅λλ€. νμΌμ μ μ‘νμ§ λͺ»νμ΅λλ€. | 1572 | μ€λΈμ νΈ κ°μ Έμ€κΈ°μ μ€ν¨ν¨. νμΌμ μ μ‘ν μ μμ. |
1491 | </message> | 1573 | </message> |
1492 | </alert> | 1574 | </alert> |
1493 | <alert name="ObjectImportFailedBadFormat"> | 1575 | <alert name="ObjectImportFailedBadFormat"> |
1494 | <message name="message"> | 1576 | <message name="message"> |
1495 | μ¬λ¬Ό κ°μ Έμ€κΈ°μ μ€ν¨νμ΅λλ€. νμΌμ΄ μμ© κ°λ₯ν SLObject νμμ΄ μλλλ€. | 1577 | μ€λΈμ νΈ κ°μ Έμ€κΈ°μ μ€ν¨ν¨. νμΌμ΄ μ ν©νSLObject νμμ΄ μλ. |
1496 | </message> | 1578 | </message> |
1497 | </alert> | 1579 | </alert> |
1498 | <alert name="ObjectImportFailedUnknownError"> | 1580 | <alert name="ObjectImportFailedUnknownError"> |
1499 | <message name="message"> | 1581 | <message name="message"> |
1500 | μ¬λ¬Ό κ°μ Έμ€κΈ°μ μ€ν¨νμ΅λλ€. μλ €μ§μ§ μμ μ€λ₯μ λλ€. | 1582 | μ€λΈμ νΈ κ°μ Έμ€κΈ°μ μ€ν¨ν¨. μ μ μλ μ€λ₯. |
1501 | </message> | 1583 | </message> |
1502 | </alert> | 1584 | </alert> |
1503 | <alert name="CouldNotTeleportReason"> | 1585 | <alert name="CouldNotTeleportReason"> |
1504 | <message name="message"> | 1586 | <message name="message"> |
1505 | ν 리ν¬νΈνμ§ λͺ»νμ΅λλ€. | 1587 | ν λ ν¬νΈν μ μμ΅λλ€. |
1506 | [μ΄μ ] | 1588 | [REASON] |
1507 | </message> | 1589 | </message> |
1508 | </alert> | 1590 | </alert> |
1509 | <alert name="CannotSetLandOwnerNothingSelected"> | 1591 | <alert name="CannotSetLandOwnerNothingSelected"> |
1510 | <message name="message"> | 1592 | <message name="message"> |
1511 | ν μ§ μμ μ£Όλ₯Ό μ€μ νμ§ λͺ»νμ΅λλ€: | 1593 | ν μ§ μμ μ£Όλ₯Ό μ€μ ν μ μμ΅λλ€: |
1512 | μ무κ²λ μ νλμ§ μμμ΅λλ€. | 1594 | μ νν νλͺ©μ΄ μμ΅λλ€. |
1513 | </message> | 1595 | </message> |
1514 | </alert> | 1596 | </alert> |
1515 | <alert name="CannotSetLandOwnerMultipleRegions"> | 1597 | <alert name="CannotSetLandOwnerMultipleRegions"> |
1516 | <message name="message"> | 1598 | <message name="message"> |
1517 | μ νμ΄ μ¬λ¬κ°μ μ§μμ κ±Έμ³μμ΄ ν μ§ μμ κΆμ | 1599 | μ ν νλͺ©μ΄ μ¬λ¬ μ§μμ λΆμ°λμ΄ μκΈ° λλ¬Έμ ν μ§ μμ κΆμ κ°μ λ‘ |
1518 | κ°μ νμ§ λͺ»νμ΅λλ€. μμ λ©΄μ μ μ ννμ ν λ€μ μλν΄ μ£Όμμμ€. | 1600 | μ§μ ν μ μμ΅λλ€. λ μμ μμμ μ νν ν λ€μ μλν΄ μ£Όμμμ€. |
1519 | </message> | 1601 | </message> |
1520 | </alert> | 1602 | </alert> |
1521 | <alert name="ForceOwnerAuctionWarning"> | 1603 | <alert name="ForceOwnerAuctionWarning"> |
1522 | <message name="message"> | 1604 | <message name="message"> |
1523 | μ΄ κ΅¬νμ 경맀 맀물μ λλ€. μμ κΆμ κ°μ ν κ²½μ° | 1605 | μ΄ κ΅¬νμ 경맀 μνμ λλ€. μμ κΆμ κ°μ λ‘ μ§μ νλ©΄ |
1524 | κ²½λ§€κ° μ·¨μλκ³ , μΌλ¨ μ μ°°μ΄ μμλλ©΄ μΌλΆ μ£Όλ―Όλ€μ | 1606 | κ²½λ§€κ° μ·¨μλκ³ μ μ°°μ΄ μμλ κ²½μ° μ μ¬μ μΌλ‘ μΌλΆ μ£Όλ―Όμκ² |
1525 | λΆλ§μ μ΄ μ μμ΅λλ€. μμ κΆμ κ°μ νμκ² μ΅λκΉ? | 1607 | λΆμ΄μ΅μ΄ κ° μ μμ΅λλ€. μμ κΆμ κ°μ λ‘ μ§μ νμκ² μ΅λκΉ? |
1526 | </message> | 1608 | </message> |
1527 | <option name="Force"> | 1609 | <option name="Force"> |
1528 | κ°μ | 1610 | ν¬μ€ |
1529 | </option> | 1611 | </option> |
1530 | <option name="Cancel"> | 1612 | <option name="Cancel"> |
1531 | μ·¨μ | 1613 | μ·¨μ |
@@ -1533,20 +1615,20 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1533 | </alert> | 1615 | </alert> |
1534 | <alert name="CannotContentifyNothingSelected"> | 1616 | <alert name="CannotContentifyNothingSelected"> |
1535 | <message name="message"> | 1617 | <message name="message"> |
1536 | λ΄μ© νμμ μ€ν¨νμ΅λλ€. | 1618 | 컨ν μΈ λ₯Ό νμΈν μ μμ΅λλ€: |
1537 | μ무κ²λ μ νλμ§ μμμ΅λλ€. | 1619 | μ νν νλͺ©μ΄ μμ΅λλ€. |
1538 | </message> | 1620 | </message> |
1539 | </alert> | 1621 | </alert> |
1540 | <alert name="CannotContentifyNoRegion"> | 1622 | <alert name="CannotContentifyNoRegion"> |
1541 | <message name="message"> | 1623 | <message name="message"> |
1542 | λ΄μ© νμμ μ€ν¨νμ΅λλ€. | 1624 | 컨ν μΈ λ₯Ό νμΈν μ μμ΅λλ€: |
1543 | ν΄λΉ μ§μμ΄ μμ΅λλ€. | 1625 | μ§μμ΄ μμ΅λλ€. |
1544 | </message> | 1626 | </message> |
1545 | </alert> | 1627 | </alert> |
1546 | <alert name="CannotReleaseLandNothingSelected"> | 1628 | <alert name="CannotReleaseLandNothingSelected"> |
1547 | <message name="message"> | 1629 | <message name="message"> |
1548 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: | 1630 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: |
1549 | μ무κ²λ μ νλμ§ μμμ΅λλ€. | 1631 | μ νν νλͺ©μ΄ μμ΅λλ€. |
1550 | </message> | 1632 | </message> |
1551 | </alert> | 1633 | </alert> |
1552 | <alert name="CannotReleaseLandNoRegion"> | 1634 | <alert name="CannotReleaseLandNoRegion"> |
@@ -1557,178 +1639,178 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1557 | </alert> | 1639 | </alert> |
1558 | <alert name="CannotBuyLandNothingSelected"> | 1640 | <alert name="CannotBuyLandNothingSelected"> |
1559 | <message name="message"> | 1641 | <message name="message"> |
1560 | ν μ§λ₯Ό 맀μ νμ§ λͺ»νμ΅λλ€: | 1642 | ν μ§λ₯Ό ꡬ맀νμ§ λͺ»νμ΅λλ€: |
1561 | μ무κ²λ μ νλμ§ μμμ΅λλ€. | 1643 | μ νν νλͺ©μ΄ μμ΅λλ€. |
1562 | </message> | 1644 | </message> |
1563 | </alert> | 1645 | </alert> |
1564 | <alert name="CannotBuyLandNoRegion"> | 1646 | <alert name="CannotBuyLandNoRegion"> |
1565 | <message name="message"> | 1647 | <message name="message"> |
1566 | ν μ§λ₯Ό 맀μ νμ§ λͺ»νμ΅λλ€: | 1648 | ν μ§λ₯Ό ꡬ맀νμ§ λͺ»νμ΅λλ€: |
1567 | μ΄ ν μ§κ° μμλ μ§μμ μ°Ύμ μ μμ΅λλ€. | 1649 | μ΄ ν μ§κ° μμλ μ§μμ μ°Ύμ μ μμ΅λλ€. |
1568 | </message> | 1650 | </message> |
1569 | </alert> | 1651 | </alert> |
1570 | <alert name="CannotDeedLandNothingSelected"> | 1652 | <alert name="CannotDeedLandNothingSelected"> |
1571 | <message name="message"> | 1653 | <message name="message"> |
1572 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: | 1654 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: |
1573 | μ무κ²λ μ νλμ§ μμμ΅λλ€. | 1655 | μ νν νλͺ©μ΄ μμ΅λλ€. |
1574 | </message> | 1656 | </message> |
1575 | </alert> | 1657 | </alert> |
1576 | <alert name="CannotDeedLandNoGroup"> | 1658 | <alert name="CannotDeedLandNoGroup"> |
1577 | <message name="message"> | 1659 | <message name="message"> |
1578 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: | 1660 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: |
1579 | ν΄λΉ κ·Έλ£Ήμ΄ μμ΅λλ€. | 1661 | κ·Έλ£Ήμ΄ μμ΅λλ€. |
1580 | </message> | 1662 | </message> |
1581 | </alert> | 1663 | </alert> |
1582 | <alert name="CannotDeedLandNoRegion"> | 1664 | <alert name="CannotDeedLandNoRegion"> |
1583 | <message name="message"> | 1665 | <message name="message"> |
1584 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: | 1666 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: |
1585 | μ΄ ν μ§κ° μμλ μ§μμ μ°Ύμ μ μμ΅λλ€. | 1667 | μ΄ ν μ§κ° μμλ μ§μμ μ°Ύμ μ μμ΅λλ€. |
1586 | λμλ§-> λ²κ·Έ μ κ³ λ₯Ό μ¬μ©ν΄ μ κ³ νλλ‘ νμμμ€. | 1668 | λꡬ -> λ²κ·Έ μ κ³ μμ μ κ³ νμμμ€. |
1587 | </message> | 1669 | </message> |
1588 | </alert> | 1670 | </alert> |
1589 | <alert name="CannotSetLandOwnerNothingSelected"> | 1671 | <alert name="CannotSetLandOwnerNothingSelected"> |
1590 | <message name="message"> | 1672 | <message name="message"> |
1591 | ν μ§ μμ μ£Όλ₯Ό μ€μ νμ§ λͺ»νμ΅λλ€: | 1673 | ν μ§ μμ μ£Όλ₯Ό μ€μ ν μ μμ΅λλ€: |
1592 | μ무κ²λ μ νλμ§ μμμ΅λλ€. | 1674 | μ νν νλͺ©μ΄ μμ΅λλ€. |
1593 | </message> | 1675 | </message> |
1594 | </alert> | 1676 | </alert> |
1595 | <alert name="CannotBuyLandMultipleRegions"> | 1677 | <alert name="CannotBuyLandMultipleRegions"> |
1596 | <message name="message"> | 1678 | <message name="message"> |
1597 | μ νμ΄ μ¬λ¬κ°μ μ§μμ κ±Έμ³μμ΄ ν μ§λ₯Ό 맀μ νμ§ λͺ»νμ΅λλ€. | 1679 | μ ν νλͺ©μ΄ μ¬λ¬ μ§μμ λΆμ°λμ΄ μκΈ° λλ¬Έμ ν μ§λ₯Ό 맀μ ν μ μμ΅λλ€. |
1598 | μμ λ©΄μ μ μ ννμ ν λ€μ μλν΄ μ£Όμμμ€. | 1680 | λ μμ μμμ μ νν ν λ€μ μλν΄ μ£Όμμμ€. |
1599 | </message> | 1681 | </message> |
1600 | </alert> | 1682 | </alert> |
1601 | <alert name="CannotBuyLandMultipleSelected"> | 1683 | <alert name="CannotBuyLandMultipleSelected"> |
1602 | <message name="message"> | 1684 | <message name="message"> |
1603 | ν μ§λ₯Ό 맀μ νμ§ λͺ»νμ΅λλ€: | 1685 | ν μ§λ₯Ό ꡬ맀νμ§ λͺ»νμ΅λλ€: |
1604 | μ¬λ¬κ°μ κ°κΈ° λ€λ₯Έ ꡬνμ΄ μ νλμμ΅λλ€. | 1686 | μ¬λ¬ κ°μ κ°κΈ° λ€λ₯Έ ꡬνμ΄ μ νλμμ΅λλ€. |
1605 | λ μμ λ©΄μ μ μ νν΄ μ£Όμμμ€. | 1687 | λ μμ μμμ μ νν΄ μ£Όμμμ€. |
1606 | </message> | 1688 | </message> |
1607 | </alert> | 1689 | </alert> |
1608 | <alert name="CannotDeedLandMultipleSelected"> | 1690 | <alert name="CannotDeedLandMultipleSelected"> |
1609 | <message name="message"> | 1691 | <message name="message"> |
1610 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: | 1692 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: |
1611 | μ¬λ¬κ°μ κ°κΈ° λ€λ₯Έ ꡬνμ΄ μ νλμμ΅λλ€. | 1693 | μ¬λ¬ κ°μ κ°κΈ° λ€λ₯Έ ꡬνμ΄ μ νλμμ΅λλ€. |
1612 | λ μμ λ©΄μ μ μ νν΄ μ£Όμμμ€. | 1694 | λ μμ μμμ μ νν΄ μ£Όμμμ€. |
1613 | </message> | 1695 | </message> |
1614 | </alert> | 1696 | </alert> |
1615 | <alert name="RegionNotFound"> | 1697 | <alert name="RegionNotFound"> |
1616 | <message name="message"> | 1698 | <message name="message"> |
1617 | μ§μμ μ°Ύμ μ μμ΅λλ€. | 1699 | μ§μμ λ°κ²¬ν μ μμ |
1618 | </message> | 1700 | </message> |
1619 | </alert> | 1701 | </alert> |
1620 | <alert name="ParcelCanPlayMusic"> | 1702 | <alert name="ParcelCanPlayMusic"> |
1621 | <message name="message"> | 1703 | <message name="message"> |
1622 | μ΄ μ₯μμμλ μ€νΈλ¦¬λ° μμ μ¬μμ΄ κ°λ₯ν©λλ€. | 1704 | μ΄ μ§μμμλ μ€νΈλ¦¬λ° μμ μ μ¬μν μ μμ΅λλ€. |
1623 | 1705 | ||
1624 | μμ μ μΈν°λ· μ°κ²° μλκ° 768 kbps | 1706 | μμ μ μ¬μ νλ €λ©΄ 768 kbps μ΄μμ |
1625 | μ΄μμ΄μ΄μΌ κ°λ₯ν©λλ€. | 1707 | μΈν°λ· μ°κ²°μ΄ νμν©λλ€. |
1626 | 1708 | ||
1627 | κ°λ₯ν κ²½μ° μμ μ μ¬μνμκ² μ΅λκΉ? | 1709 | μμ μ ν¨μ μ¬μ νμκ² μ΅λκΉ? |
1628 | </message> | 1710 | </message> |
1629 | <option name="PlayMusic"> | 1711 | <option name="PlayMusic"> |
1630 | μμ μ¬μ | 1712 | μμ μ¬μ |
1631 | </option> | 1713 | </option> |
1632 | <option name="Disable"> | 1714 | <option name="Disable"> |
1633 | λκΈ° | 1715 | λΉνμ± |
1634 | </option> | 1716 | </option> |
1635 | </alert> | 1717 | </alert> |
1636 | <alert name="ParcelCanPlayMedia"> | 1718 | <alert name="ParcelCanPlayMedia"> |
1637 | <message name="message"> | 1719 | <message name="message"> |
1638 | μ΄ μ₯μμμλ μ€νΈλ¦¬λ° μμ μ¬μμ΄ κ°λ₯ν©λλ€. | 1720 | μ΄ μ§μμμλ μ€νΈλ¦¬λ° λΉλμ€λ₯Ό μ¬μν μ μμ΅λλ€. |
1639 | 1721 | ||
1640 | μμμ μΈν°λ· μ°κ²° μλκ° 768 kbps | 1722 | μ€νΈλ¦¬λ° λΉλμ€λ₯Ό μ¬μνλ €λ©΄ 768 kbps μ΄μμ |
1641 | μ΄μμ΄μ΄μΌ κ°λ₯ν©λλ€. | 1723 | μΈν°λ· μ°κ²°μ΄ νμν©λλ€. |
1642 | 1724 | ||
1643 | κ°λ₯ν κ²½μ° μμμ μ¬μνμκ² μ΅λκΉ? | 1725 | μ€νΈλ¦¬λ° λΉλμ€ μ ν¨μ μ¬μ νμκ² μ΅λκΉ? |
1644 | 1726 | ||
1645 | (νκ²½ μ€μ > μ€λμ€ & λΉλμ€λ‘ κ°μλ©΄ | 1727 | (νκ²½ μ€μ >μ¬μ΄λ/ λΉλμ€ μμ |
1646 | μ΅μ μ λ³κ²½νμ€ μ μμ΅λλ€.) | 1728 | μ΅μ μ λ³κ²½ν μ μμ΅λλ€.) |
1647 | </message> | 1729 | </message> |
1648 | <option name="PlayMedia"> | 1730 | <option name="PlayMedia"> |
1649 | λ―Έλμ΄ μ¬μ | 1731 | λ―Έλμ΄ μ¬μ |
1650 | </option> | 1732 | </option> |
1651 | <option name="Disable"> | 1733 | <option name="Disable"> |
1652 | λκΈ° | 1734 | λΉνμ± |
1653 | </option> | 1735 | </option> |
1654 | </alert> | 1736 | </alert> |
1655 | <alert name="CannotBuyLandWaitingForServer"> | 1737 | <alert name="CannotBuyLandWaitingForServer"> |
1656 | <message name="message"> | 1738 | <message name="message"> |
1657 | ν μ§λ₯Ό 맀μ νμ§ λͺ»νμ΅λλ€: | 1739 | ν μ§λ₯Ό ꡬ맀νμ§ λͺ»νμ΅λλ€: |
1658 | μλ²κ° λΉμ©μ λ³΄κ³ νκΈ°λ₯Ό κΈ°λ€λ¦¬κ³ μμ΅λλ€. | 1740 | μλ²κ° λΉμ©μ λ³΄κ³ ν λκΉμ§ κΈ°λ€λ¦¬λ μ€μ λλ€. |
1659 | μ μ ν λ€μ μλν΄ μ£Όμμμ€. | 1741 | λͺ μ΄ ν λ€μ μλν΄ μ£Όμμμ€. |
1660 | </message> | 1742 | </message> |
1661 | </alert> | 1743 | </alert> |
1662 | <alert name="CannotDeedLandWaitingForServer"> | 1744 | <alert name="CannotDeedLandWaitingForServer"> |
1663 | <message name="message"> | 1745 | <message name="message"> |
1664 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: | 1746 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: |
1665 | μλ²κ° μμ κΆμ λ³΄κ³ νκΈ°λ₯Ό κΈ°λ€λ¦¬κ³ μμ΅λλ€. | 1747 | μλ²κ° μμ κΆμ λ³΄κ³ ν λκΉμ§ κΈ°λ€λ¦¬λ μ€μ λλ€. |
1666 | μ μ ν λ€μ μλν΄ μ£Όμμμ€. | 1748 | λͺ μ΄ ν λ€μ μλν΄ μ£Όμμμ€. |
1667 | </message> | 1749 | </message> |
1668 | </alert> | 1750 | </alert> |
1669 | <alert name="CannotBuyLandNoPublic"> | 1751 | <alert name="CannotBuyLandNoPublic"> |
1670 | <message name="message"> | 1752 | <message name="message"> |
1671 | ν μ§λ₯Ό 맀μ νμ§ λͺ»νμ΅λλ€: | 1753 | ν μ§λ₯Ό ꡬ맀νμ§ λͺ»νμ΅λλ€: |
1672 | μ νν λ΄μ©μ 곡곡 ν μ§κ° μ ν ν¬ν¨λμ΄ μμ§ μμ΅λλ€. | 1754 | μ νν μμμλ 곡곡 ν μ§κ° μμ΅λλ€. |
1673 | </message> | 1755 | </message> |
1674 | </alert> | 1756 | </alert> |
1675 | <alert name="CannotBuyLandLandOwned"> | 1757 | <alert name="CannotBuyLandLandOwned"> |
1676 | <message name="message"> | 1758 | <message name="message"> |
1677 | ν μ§λ₯Ό 맀μ νμ§ λͺ»νμ΅λλ€: | 1759 | ν μ§λ₯Ό ꡬ맀νμ§ λͺ»νμ΅λλ€: |
1678 | λ€λ₯Έ μ¬μ©μκ° μμ ν ν μ§κ° μ νλμμ΅λλ€. | 1760 | λ€λ₯Έ μ¬μ©μ μμ μ ν μ§κ° μ νλμμ΅λλ€. |
1679 | λ μμ λ©΄μ μ μ νν΄ μ£Όμμμ€. | 1761 | λ μμ μμμ μ νν΄ μ£Όμμμ€. |
1680 | </message> | 1762 | </message> |
1681 | </alert> | 1763 | </alert> |
1682 | <alert name="CannotButLandRegionNotFound"> | 1764 | <alert name="CannotButLandRegionNotFound"> |
1683 | <message name="message"> | 1765 | <message name="message"> |
1684 | ν μ§λ₯Ό 맀μ νμ§ λͺ»νμ΅λλ€: | 1766 | ν μ§λ₯Ό ꡬ맀νμ§ λͺ»νμ΅λλ€: |
1685 | μ΄ ν μ§κ° μμλ μ§μμ μ°Ύμ μ μμ΅λλ€. | 1767 | μ΄ ν μ§κ° μμλ μ§μμ μ°Ύμ μ μμ΅λλ€. |
1686 | λμλ§-> λ²κ·Έ μ κ³ λ₯Ό μ¬μ©ν΄ μ κ³ ν΄ μ£Όμμμ€. | 1768 | λꡬ -> λ²κ·Έ μ κ³ μμ μ κ³ νμμμ€. |
1687 | </message> | 1769 | </message> |
1688 | </alert> | 1770 | </alert> |
1689 | <alert name="CannotBuyLandNoTransfer"> | 1771 | <alert name="CannotBuyLandNoTransfer"> |
1690 | <message name="message"> | 1772 | <message name="message"> |
1691 | ν μ§λ₯Ό 맀μ νμ§ λͺ»νμ΅λλ€: | 1773 | ν μ§λ₯Ό ꡬ맀νμ§ λͺ»νμ΅λλ€: |
1692 | μ§μ [μ§μλͺ ]μμλ ν μ§ μλκ° νμ©λμ§ μμ΅λλ€. | 1774 | μ§μ [REGION]μ(λ) ν μ§ μλκ° νμ©λμ§ μμ΅λλ€. |
1693 | </message> | 1775 | </message> |
1694 | </alert> | 1776 | </alert> |
1695 | <alert name="CannotDeedLandNoTransfer"> | 1777 | <alert name="CannotDeedLandNoTransfer"> |
1696 | <message name="message"> | 1778 | <message name="message"> |
1697 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: | 1779 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: |
1698 | μ§μ [μ§μλͺ ]μμλ ν μ§ μλκ° νμ©λμ§ μμ΅λλ€. | 1780 | μ§μ [REGION]μ(λ) ν μ§ μλκ° νμ©λμ§ μμ΅λλ€. |
1699 | </message> | 1781 | </message> |
1700 | </alert> | 1782 | </alert> |
1701 | <alert name="CannotBuyLandForGroupNotOfficer"> | 1783 | <alert name="CannotBuyLandForGroupNotOfficer"> |
1702 | <message name="message"> | 1784 | <message name="message"> |
1703 | κ·Έλ£Ήμ λμ ν΄ ν μ§λ₯Ό 맀μ νμ§ λͺ»νμ΅λλ€: | 1785 | κ·Έλ£Ήμ λμ ν΄ ν μ§λ₯Ό 맀μ νμ§ λͺ»νμ΅λλ€: |
1704 | κ·νλ νμ¬ μμ κ·Έλ£Ήμ κ°λΆκ° μλλλ€. | 1786 | κ·νλ νμ¬ κ·Έλ£Ήμμ κ°λΆκ° μλλλ€. |
1705 | νΈμ§ -> κ·Έλ£Ή...μ μ΄μ©νμ¬ λ€λ₯Έ κ·Έλ£Ήμ νμ±ννμμμ€. | 1787 | νΈμ§ -> κ·Έλ£Ή...μ μ΄μ©νμ¬ λ€λ₯Έ κ·Έλ£Ήμ νμ±ννμμμ€. |
1706 | </message> | 1788 | </message> |
1707 | </alert> | 1789 | </alert> |
1708 | <alert name="CannotBuyLandInsufficientFunds"> | 1790 | <alert name="CannotBuyLandInsufficientFunds"> |
1709 | <message name="message"> | 1791 | <message name="message"> |
1710 | μ΄ [λ©΄μ ] νλ°© λ―Έν°μ ν μ§λ₯Ό ꡬ맀νλ λΉμ©μ L$[κ°κ²©]μ λλ€. | 1792 | μ΄ ν μ§ [AREA]μ κ³±λ―Έν°λ₯Ό ꡬ맀 νλ €λ©΄ L$[PRICE]κ° λλλ€. |
1711 | κ·νμ μκ³ λ L$[μκ³ ]μ΄(κ°) μ λΆμ λλ€. | 1793 | κ·νμ μκ³ λ L$[BALANCE]λΏμ λλ€. |
1712 | </message> | 1794 | </message> |
1713 | </alert> | 1795 | </alert> |
1714 | <alert name="CannotReleaseLandNothingSelected"> | 1796 | <alert name="CannotReleaseLandNothingSelected"> |
1715 | <message name="message"> | 1797 | <message name="message"> |
1716 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: | 1798 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: |
1717 | μ무κ²λ μ νλμ§ μμμ΅λλ€. | 1799 | μ νν νλͺ©μ΄ μμ΅λλ€. |
1718 | </message> | 1800 | </message> |
1719 | </alert> | 1801 | </alert> |
1720 | <alert name="CannotReleaseLandWatingForServer"> | 1802 | <alert name="CannotReleaseLandWatingForServer"> |
1721 | <message name="message"> | 1803 | <message name="message"> |
1722 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: | 1804 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: |
1723 | μλ²κ° λΉμ©μ λ³΄κ³ νκΈ°λ₯Ό κΈ°λ€λ¦¬κ³ μμ΅λλ€. | 1805 | μλ²κ° λΉμ©μ λ³΄κ³ ν λκΉμ§ κΈ°λ€λ¦¬λ μ€μ λλ€. |
1724 | μ μ ν λ€μ μλν΄ μ£Όμμμ€. | 1806 | λͺ μ΄ ν λ€μ μλν΄ μ£Όμμμ€. |
1725 | </message> | 1807 | </message> |
1726 | </alert> | 1808 | </alert> |
1727 | <alert name="CannotReleaseLandSelected"> | 1809 | <alert name="CannotReleaseLandSelected"> |
1728 | <message name="message"> | 1810 | <message name="message"> |
1729 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: | 1811 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: |
1730 | μ¬λ¬κ°μ κ°κΈ° λ€λ₯Έ ꡬνμ΄ μ νλμμ΅λλ€. | 1812 | μ¬λ¬ κ°μ κ°κΈ° λ€λ₯Έ ꡬνμ΄ μ νλμμ΅λλ€. |
1731 | λ μμ λ©΄μ μ μ νν΄ μ£Όμμμ€. | 1813 | λ μμ μμμ μ νν΄ μ£Όμμμ€. |
1732 | </message> | 1814 | </message> |
1733 | </alert> | 1815 | </alert> |
1734 | <alert name="CannotReleaseLandDontOwn"> | 1816 | <alert name="CannotReleaseLandDontOwn"> |
@@ -1742,33 +1824,33 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1742 | <message name="message"> | 1824 | <message name="message"> |
1743 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: | 1825 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: |
1744 | μ΄ ν μ§κ° μμλ μ§μμ μ°Ύμ μ μμ΅λλ€. | 1826 | μ΄ ν μ§κ° μμλ μ§μμ μ°Ύμ μ μμ΅λλ€. |
1745 | λμλ§-> λ²κ·Έ μ κ³ λ₯Ό μ¬μ©ν΄ μ κ³ ν΄ μ£Όμμμ€. | 1827 | λꡬ -> λ²κ·Έ μ κ³ μμ μ κ³ νμμμ€. |
1746 | </message> | 1828 | </message> |
1747 | </alert> | 1829 | </alert> |
1748 | <alert name="CannotReleaseLandNoTransfer"> | 1830 | <alert name="CannotReleaseLandNoTransfer"> |
1749 | <message name="message"> | 1831 | <message name="message"> |
1750 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: | 1832 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: |
1751 | μ§μ [μ§μλͺ ]μμλ ν μ§ μλκ° νμ©λμ§ μμ΅λλ€. | 1833 | μ§μ [REGION]μ(λ) ν μ§ μλκ° νμ©λμ§ μμ΅λλ€. |
1752 | </message> | 1834 | </message> |
1753 | </alert> | 1835 | </alert> |
1754 | <alert name="CannotReleaseLandPartialSelection"> | 1836 | <alert name="CannotReleaseLandPartialSelection"> |
1755 | <message name="message"> | 1837 | <message name="message"> |
1756 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: | 1838 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: |
1757 | ν μ§λ₯Ό λ°©μΆνλ €λ©΄ μ 체 ꡬνμ μ νν΄μΌ ν©λλ€. | 1839 | ν μ§λ₯Ό λ°©μΆνλ €λ©΄ μ 체 ꡬνμ μ νν΄μΌ ν©λλ€. |
1758 | λλΈν΄λ¦ν΄ μ 체 ꡬνμ μ ννμκ±°λ | 1840 | μ 체 ꡬνμ μ ννλ €λ©΄ λλΈ ν΄λ¦νκ±°λ |
1759 | λ¨Όμ ν΄λΉ ꡬνμ λΆν νμμμ€. | 1841 | λ¨Όμ ꡬνμ λΆν ν΄ λ³΄μμμ€. |
1760 | </message> | 1842 | </message> |
1761 | </alert> | 1843 | </alert> |
1762 | <alert name="ReleaseLandWarning"> | 1844 | <alert name="ReleaseLandWarning"> |
1763 | <message name="message"> | 1845 | <message name="message"> |
1764 | κ·νλ μ§κΈ [λ©΄μ ] νλ°© λ―Έν°μ ν μ§λ₯Ό λ°©μΆνλ €κ³ ν©λλ€. | 1846 | κ·νκ»μλ ν μ§μ [AREA] νλ°© λ―Έν°λ₯Ό λ°©μΆνλ €κ³ ν©λλ€. |
1765 | μ΄ κ΅¬νμ λ°©μΆνλ©΄ κ·νμ μμ μ§μμ | 1847 | μ΄ κ΅¬νμ λ°©μΆνλ©΄ μμ ν ν μ§μμ μ κ±°λμ§λ§ |
1766 | μμ λμ§λ§ L$ λκ°λ μμ΅λλ€. | 1848 | ν μ§μ λν μ μ©(L$)μ΄ μ 립λμ§ μμ΅λλ€. |
1767 | 1849 | ||
1768 | μ΄ ν μ§λ₯Ό λ°©μΆνμκ² μ΅λκΉ? | 1850 | μ΄ ν μ§λ₯Ό λ°©μΆνμκ² μ΅λκΉ? |
1769 | </message> | 1851 | </message> |
1770 | <option name="Release"> | 1852 | <option name="Release"> |
1771 | λ°©μΆ | 1853 | ν΄μ |
1772 | </option> | 1854 | </option> |
1773 | <option name="Cancel"> | 1855 | <option name="Cancel"> |
1774 | μ·¨μ | 1856 | μ·¨μ |
@@ -1777,22 +1859,22 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1777 | <alert name="CannotDivideLandNothingSelected"> | 1859 | <alert name="CannotDivideLandNothingSelected"> |
1778 | <message name="message"> | 1860 | <message name="message"> |
1779 | ν μ§λ₯Ό λΆν νμ§ λͺ»νμ΅λλ€: | 1861 | ν μ§λ₯Ό λΆν νμ§ λͺ»νμ΅λλ€: |
1780 | μ무κ²λ μ νλμ§ μμμ΅λλ€. | 1862 | μ νν νλͺ©μ΄ μμ΅λλ€. |
1781 | </message> | 1863 | </message> |
1782 | </alert> | 1864 | </alert> |
1783 | <alert name="CannotDivideLandPartialSelection"> | 1865 | <alert name="CannotDivideLandPartialSelection"> |
1784 | <message name="message"> | 1866 | <message name="message"> |
1785 | ν μ§λ₯Ό λΆν νμ§ λͺ»νμ΅λλ€: | 1867 | ν μ§λ₯Ό λΆν νμ§ λͺ»νμ΅λλ€: |
1786 | μ 체 ꡬνμ΄ μ νλμμ΅λλ€. | 1868 | μ 체 ꡬνμ μ ννμ ¨μ΅λλ€. |
1787 | ν΄λ¦-μ€-λλκ·Έλ₯Ό μ¬μ©ν΄ λ μμ λ©΄μ μ | 1869 | μμμ ν΄λ¦νκ³ λλκ·Ένμ¬ λ μμ μμμ |
1788 | μ νν΄ μ£Όμμμ€. | 1870 | μ νν΄ μ£Όμμμ€. |
1789 | </message> | 1871 | </message> |
1790 | </alert> | 1872 | </alert> |
1791 | <alert name="LandDivideWarning"> | 1873 | <alert name="LandDivideWarning"> |
1792 | <message name="message"> | 1874 | <message name="message"> |
1793 | μ΄ ν μ§λ₯Ό λΆν ν κ²½μ° μ΄ κ΅¬νμ λλ‘ λλ μ§λ©° | 1875 | μ΄ ν μ§λ₯Ό λΆν νλ©΄ μ΄ κ΅¬νμ΄ λλ‘ λλμ΄ κ° |
1794 | κ°κ°μ ꡬνμ λ³λλ‘ μ€μ μ΄ κ°λ₯ν©λλ€. μΌλΆ μ€μ μ | 1876 | ꡬνμ΄ κ³ μ ν μ€μ μ κ°μ§ μ μμ΅λλ€. μ΄ μμ |
1795 | μ€ν ν κΈ°λ³Έ μ€μ κ°μΌλ‘ μ¬μ€μ λ©λλ€. | 1877 | νμλ μΌλΆ μ€μ μ΄ κΈ°λ³Έκ°μΌλ‘ μ΄κΈ°νλ©λλ€. |
1796 | 1878 | ||
1797 | ν μ§λ₯Ό λΆν νμκ² μ΅λκΉ? | 1879 | ν μ§λ₯Ό λΆν νμκ² μ΅λκΉ? |
1798 | </message> | 1880 | </message> |
@@ -1807,50 +1889,60 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1807 | <message name="message"> | 1889 | <message name="message"> |
1808 | ν μ§λ₯Ό λΆν νμ§ λͺ»νμ΅λλ€: | 1890 | ν μ§λ₯Ό λΆν νμ§ λͺ»νμ΅λλ€: |
1809 | μ΄ ν μ§κ° μμλ μ§μμ μ°Ύμ μ μμ΅λλ€. | 1891 | μ΄ ν μ§κ° μμλ μ§μμ μ°Ύμ μ μμ΅λλ€. |
1810 | λμλ§-> λ²κ·Έ μ κ³ λ₯Ό μ¬μ©ν΄ μ κ³ νλλ‘ νμμμ€. | 1892 | λꡬ -> λ²κ·Έ μ κ³ μμ μ κ³ νμμμ€. |
1811 | </message> | 1893 | </message> |
1812 | </alert> | 1894 | </alert> |
1813 | <alert name="CannotJoinLandNoRegion"> | 1895 | <alert name="CannotJoinLandNoRegion"> |
1814 | <message name="message"> | 1896 | <message name="message"> |
1815 | ν μ§λ₯Ό κ²°ν©νμ§ λͺ»νμ΅λλ€: | 1897 | ν μ§λ₯Ό κ²°ν©νμ§ λͺ»νμ΅λλ€: |
1816 | μ΄ ν μ§κ° μμλ μ§μμ μ°Ύμ μ μμ΅λλ€. | 1898 | μ΄ ν μ§κ° μμλ μ§μμ μ°Ύμ μ μμ΅λλ€. |
1817 | λμλ§ -> λ²κ·Έ μ κ³ μμ μ κ³ νμμμ€. | 1899 | 'λꡬ -> μ€λ₯λ³΄κ³ 'μμ μ κ³ νμμμ€. |
1818 | </message> | 1900 | </message> |
1819 | </alert> | 1901 | </alert> |
1820 | <alert name="CannotJoinLandNothingSelected"> | 1902 | <alert name="CannotJoinLandNothingSelected"> |
1821 | <message name="message"> | 1903 | <message name="message"> |
1822 | ν μ§λ₯Ό κ²°ν©νμ§ λͺ»νμ΅λλ€: | 1904 | ν μ§λ₯Ό κ²°ν©νμ§ λͺ»νμ΅λλ€: |
1823 | μ무κ²λ μ νλμ§ μμμ΅λλ€. | 1905 | μ νν νλͺ©μ΄ μμ΅λλ€. |
1824 | </message> | 1906 | </message> |
1825 | </alert> | 1907 | </alert> |
1826 | <alert name="CannotJoinLandEntireParcelSelected"> | 1908 | <alert name="CannotJoinLandEntireParcelSelected"> |
1827 | <message name="message"> | 1909 | <message name="message"> |
1828 | ν μ§λ₯Ό κ²°ν©νμ§ λͺ»νμ΅λλ€: | 1910 | ν μ§λ₯Ό κ²°ν©νμ§ λͺ»νμ΅λλ€: |
1829 | μ 체 ꡬνμ΄ μ νλμμ΅λλ€. | 1911 | μ 체 ꡬνμ μ ννμ ¨μ΅λλ€. |
1830 | ν΄λ¦-μ€-λλκ·Έλ₯Ό μ¬μ©ν΄ λ ν° λ©΄μ μ | 1912 | μμμ ν΄λ¦νκ³ λλκ·Ένμ¬ λ ν° μμμ |
1831 | μ νν΄ μ£Όμμμ€. | 1913 | μ νν΄ μ£Όμμμ€. |
1832 | </message> | 1914 | </message> |
1833 | </alert> | 1915 | </alert> |
1834 | <alert name="CannotJoinLandSelection"> | 1916 | <alert name="CannotJoinLandSelection"> |
1835 | <message name="message"> | 1917 | <message name="message"> |
1836 | ν μ§λ₯Ό κ²°ν©νμ§ λͺ»νμ΅λλ€: | 1918 | ν μ§λ₯Ό κ²°ν©νμ§ λͺ»νμ΅λλ€: |
1837 | 2κ° μ΄μμ ꡬνμ μ ννμ μΌ ν©λλ€. | 1919 | λ μ΄μμ ꡬνμ μ νν΄μΌ ν©λλ€. |
1838 | ν΄λ¦-μ€-λλκ·Έλ₯Ό μ¬μ©ν΄ λ ν° λ©΄μ μ | 1920 | μμμ ν΄λ¦νκ³ λλκ·Ένμ¬ λ ν° μμμ |
1839 | μ νν΄ μ£Όμμμ€. | 1921 | μ νν΄ μ£Όμμμ€. |
1840 | </message> | 1922 | </message> |
1841 | </alert> | 1923 | </alert> |
1842 | <alert name="JoinLandWarning"> | 1924 | <alert name="JoinLandWarning"> |
1843 | <message name="message"> | 1925 | <message name="message"> |
1844 | μ΄ ν μ§μ κ²°ν©μν€λ©΄ μ νλ μ¬κ°νμ κ°λ‘μ§λ₯΄λ | 1926 | μ΄ ν μ§μ κ²°ν©μ μ νν μ¬κ°νκ³Ό κ΅μ°¨νλ λͺ¨λ ꡬνλ€λ‘ νλμ ν° κ΅¬νμ λ§λλλ€. |
1845 | μΌμ²΄μ ꡬνμ μ΄μ©ν΄ νλμ ν° κ΅¬νμ΄ λ§λ€μ΄μ§λλ€. | ||
1846 | 1927 | ||
1847 | μ ꡬνμ μ΄λ¦ λ° μ΅μ μ μ¬μ€μ | 1928 | μλ‘μ΄ |
1848 | νμ μΌ ν©λλ€. | 1929 | ꡬνμ μ΄λ¦κ³Ό μ΅μ μ μ¬μ€μ ν΄μΌ ν©λλ€. |
1849 | 1930 | ||
1850 | ν μ§λ₯Ό κ²°ν©μν€μκ² μ΅λκΉ? | 1931 | ν μ§λ₯Ό κ²°ν© νμκ² μ΅λκΉ? |
1851 | </message> | 1932 | </message> |
1852 | <option name="Join"> | 1933 | <option name="Join"> |
1853 | μ°Έμ¬ | 1934 | κ°μ |
1935 | </option> | ||
1936 | <option name="Cancel"> | ||
1937 | μ·¨μ | ||
1938 | </option> | ||
1939 | </alert> | ||
1940 | <alert name="ConfirmNotecardSave"> | ||
1941 | <message name="message"> | ||
1942 | μ΄ λ ΈνΈ μΉ΄λλ₯Ό μ μ₯ν΄μΌ ν΄λΉ νλͺ©μ λ³΅μ¬ λλ μ΄λν μ μμ΅λλ€. λ ΈνΈ μΉ΄λλ₯Ό μ μ₯νμκ² μ΅λκΉ? | ||
1943 | </message> | ||
1944 | <option name="Save"> | ||
1945 | μ μ₯ | ||
1854 | </option> | 1946 | </option> |
1855 | <option name="Cancel"> | 1947 | <option name="Cancel"> |
1856 | μ·¨μ | 1948 | μ·¨μ |
@@ -1858,7 +1950,7 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1858 | </alert> | 1950 | </alert> |
1859 | <alert name="ConfirmLandmarkCopy"> | 1951 | <alert name="ConfirmLandmarkCopy"> |
1860 | <message name="message"> | 1952 | <message name="message"> |
1861 | μ΄ μμ΄ν μ μ μ₯κ³ μ 볡μ¬νμκ² μ΅λκΉ? | 1953 | μ΄ νλͺ©μ κ·νμ μΈλ²€ν λ¦¬λ‘ λ³΅μ¬ νμκ² μ΅λκΉ? |
1862 | </message> | 1954 | </message> |
1863 | <option name="Copy"> | 1955 | <option name="Copy"> |
1864 | λ³΅μ¬ | 1956 | λ³΅μ¬ |
@@ -1869,7 +1961,7 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1869 | </alert> | 1961 | </alert> |
1870 | <alert name="ConfirmItemCopy"> | 1962 | <alert name="ConfirmItemCopy"> |
1871 | <message name="message"> | 1963 | <message name="message"> |
1872 | μ΄ μμ΄ν μ μ μ₯κ³ μ 볡μ¬νμκ² μ΅λκΉ? | 1964 | μ΄ νλͺ©μ κ·νμ μΈλ²€ν λ¦¬λ‘ λ³΅μ¬ νμκ² μ΅λκΉ? |
1873 | </message> | 1965 | </message> |
1874 | <option name="Copy"> | 1966 | <option name="Copy"> |
1875 | λ³΅μ¬ | 1967 | λ³΅μ¬ |
@@ -1880,76 +1972,84 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
1880 | </alert> | 1972 | </alert> |
1881 | <alert name="ResolutionSwitchFail"> | 1973 | <alert name="ResolutionSwitchFail"> |
1882 | <message name="message"> | 1974 | <message name="message"> |
1883 | ν΄μλλ₯Ό [ν΄μλ X] x [ν΄μλ Y](μΌ)λ‘ λ³κ²½νλλ° μ€ν¨νμ΅λλ€. | 1975 | [RESX]x[RESY]μ ν΄μλλ‘ μ ννμ§ λͺ»νμ΅λλ€. |
1884 | </message> | 1976 | </message> |
1885 | </alert> | 1977 | </alert> |
1886 | <alert name="ErrorUndefinedGrasses"> | 1978 | <alert name="ErrorUndefinedGrasses"> |
1887 | <message name="message"> | 1979 | <message name="message"> |
1888 | μ€λ₯: μ μλμ§ μμ ν: [μ’ ] | 1980 | μ€λ₯: μ μλμ§ μμ μλ: [SPECIES] |
1889 | </message> | 1981 | </message> |
1890 | </alert> | 1982 | </alert> |
1891 | <alert name="ErrorUndefinedTrees"> | 1983 | <alert name="ErrorUndefinedTrees"> |
1892 | <message name="message"> | 1984 | <message name="message"> |
1893 | μ€λ₯: μ μλμ§ μμ λ무: [μ’ ] | 1985 | μ€λ₯: μ μλμ§ μμ λ무: [SPECIES] |
1894 | </message> | 1986 | </message> |
1895 | </alert> | 1987 | </alert> |
1896 | <alert name="CannotSaveWearableOutOfSpace"> | 1988 | <alert name="CannotSaveWearableOutOfSpace"> |
1897 | <message name="message"> | 1989 | <message name="message"> |
1898 | '[μ΄λ¦]'(μ)λ₯Ό μ°©μ©λ¬Ό νμΌμ μ μ₯νλλ° μ€ν¨νμ΅λλ€. μ»΄ν¨ν°μ 곡κ°μ | 1990 | '[NAME]'μ(λ₯Ό) μ°©μ©λ¬Ό νμΌμ μ μ₯ν μ μμ΅λλ€. μ»΄ν¨ν°μμ |
1899 | λ ν보νμ ν | 1991 | μΌλΆ 곡κ°μ ν보νκ³ μ°©μ©λ¬Όμ |
1900 | λ€μ μ°©μ©λ¬Όμ μ μ₯νμμμ€. | 1992 | λ€μ μ μ₯νμμμ€. |
1901 | </message> | 1993 | </message> |
1902 | </alert> | 1994 | </alert> |
1903 | <alert name="CannotSaveToAssetStore"> | 1995 | <alert name="CannotSaveToAssetStore"> |
1904 | <message name="message"> | 1996 | <message name="message"> |
1905 | [μ΄λ¦](μ)λ₯Ό μ€μ μμ° λ§€μ₯μ μ μ₯νλλ° μ€ν¨νμ΅λλ€. | 1997 | [NAME](μ)λ₯Ό μ€μ μμ° λ§€μ₯μ μ μ₯νλλ° μ€ν¨νμ΅λλ€. |
1906 | λ³΄ν΅ μΌμμ μΈ λ¬Έμ μ λλ€. λ§μΆ€νν ν | 1998 | λ³΄ν΅ μΌμμ μ₯μ μ λλ€. μ°©μ©λ¬Όμ |
1907 | μ μ ν μ°©μ©λ¬Όμ λ€μ. | 1999 | λ§μΆ€νν ν λ€μ μ μ₯ν΄λ³΄μμμ€. κ°μ λ¬Έμ κ° κ³μλ κ²½μ° |
1908 | μ μ₯νμμμ€. κ°μ λ¬Έμ κ° κ³μλ κ²½μ° | 2000 | λꡬ > μ€λ₯λ³΄κ³ νλ€μ΄ λ©λ΄λ₯Ό ν΄λ¦νκ³ |
1909 | 'λμλ§ | λ²κ·Έ μ κ³ ' νλ€μ΄ λ©λ΄λ₯Ό ν΄λ¦ν ν | 2001 | λ€νΈμν¬ μ€μ μ κ΄ν μΈλΆ μ¬νμ μ λ ₯νμμμ€. |
1910 | λ€νΈμν¬ μ€μ μ λν μμΈν λ΄μ©μ μ λ ₯νμμμ€. | ||
1911 | </message> | 2002 | </message> |
1912 | </alert> | 2003 | </alert> |
1913 | <alert name="AppEarlyExit"> | 2004 | <alert name="AppEarlyExit"> |
1914 | <message name="message"> | 2005 | <message name="message"> |
1915 | [λ©μμ§] | 2006 | [MESSAGE] |
1916 | 2007 | ||
1917 | μ΄ λ¬Έμ λ₯Ό ν볡νλλ° μ€ν¨νμ΅λλ€. λ€μ μλνκΈ° | 2008 | μ΄ λ¬Έμ λ₯Ό 볡ꡬν μ μμ΅λλ€. μ€μΉ |
1918 | μ μ νλ‘κ·Έλ¨μ μ κ±° ν λ€μ μ€μΉνμμμ€. κ°μ λ¬Έμ κ° | 2009 | μ κ±°ν λ€μ μ€μΉν λ€μ μλν΄ μ£ΌμκΈ° λ°λλλ€. λ¬Έμ κ° |
1919 | κ³μλλ©΄, λ€μ λ§ν¬μ κΈ°μ μ§μ FAQλ₯Ό μ°Έκ³ νμμμ€: | 2010 | κ³μλλ©΄ www.secondlife.com/supportμμ |
1920 | www.secondlife.com/support. | 2011 | κΈ°μ μ§μ FAQλ₯Ό μ°Έμ‘°νμμμ€. |
1921 | </message> | 2012 | </message> |
1922 | <option name="Quit"> | 2013 | <option name="Quit"> |
1923 | λλ΄κΈ° | 2014 | μ’ λ£ |
1924 | </option> | 2015 | </option> |
1925 | </alert> | 2016 | </alert> |
1926 | <alert name="YouHaveBeenLoggedOut"> | 2017 | <alert name="YouHaveBeenLoggedOut"> |
1927 | <message name="message"> | 2018 | <message name="message"> |
1928 | [SECOND_LIFE]μμ λ‘κ·Έμμ νμ ¨μ΅λλ€: | 2019 | [SECOND_LIFE]μμ λ‘κ·Έμμνμ ¨μ΅λλ€: |
1929 | 2020 | ||
1930 | [λ©μμ§] | 2021 | [MESSAGE] |
1931 | 2022 | ||
1932 | κ³μμ ν΄λ¦νμλ©΄ κΈ°μ‘΄ λ©μ μ λ° μ±ν μ λ³΄μ€ μ μμ΅λλ€. | 2023 | κΈ°μ‘΄μ λ©μ μ μ μ±ν μ λ³΄λ €λ©΄ 'κ³μ'μ ν΄λ¦νμμμ€. |
1933 | μΌμ²΄μ λ€λ₯Έ μμ μ μννμ€ μ μμ΅λλ€. | 2024 | λ€λ₯Έ μμ μ μνν μ μμ΅λλ€. |
1934 | [SECOND_LIFE]μ(λ₯Ό) λ°λ‘ μ’ λ£νμλ €λ©΄ λλ΄κΈ°λ₯Ό ν΄λ¦νμμμ€. | 2025 | [SECOND_LIFE]λ₯Ό μ¦μ λλ΄λ €λ©΄ 'μ’ λ£'λ₯Ό ν΄λ¦νμμμ€. |
1935 | </message> | 2026 | </message> |
1936 | <option name="Continue"> | 2027 | <option name="Continue"> |
1937 | κ³μ | 2028 | κ³μ |
1938 | </option> | 2029 | </option> |
1939 | <option name="Quit"> | 2030 | <option name="Quit"> |
1940 | λλ΄κΈ° | 2031 | μ’ λ£ |
2032 | </option> | ||
2033 | </alert> | ||
2034 | <alert name="SelectSingleRate"> | ||
2035 | <message name="message"> | ||
2036 | νκ°ν μ€λΈμ νΈ μ ν | ||
2037 | </message> | ||
2038 | <option name="OK"> | ||
2039 | νμΈ | ||
1941 | </option> | 2040 | </option> |
1942 | </alert> | 2041 | </alert> |
1943 | <alert name="OnlyOfficerCanBuyLand"> | 2042 | <alert name="OnlyOfficerCanBuyLand"> |
1944 | <message name="message"> | 2043 | <message name="message"> |
1945 | κ·Έλ£Ήμ λμ ν΄ ν μ§λ₯Ό 맀μ νμ§ λͺ»νμ΅λλ€: | 2044 | κ·Έλ£Ήμ λμ ν΄ ν μ§λ₯Ό 맀μ νμ§ λͺ»νμ΅λλ€: |
1946 | νλ μ€μΈ κ·Έλ£Ήμ μν΄ ν μ§λ₯Ό 맀μ ν κΆνμ΄ μμ΅λλ€. | 2045 | νλ μ€μΈ κ·Έλ£Ήμ μν΄ ν μ§λ₯Ό 맀μ ν κΆνμ΄ μμ΅λλ€. |
1947 | νΈμ§ -> κ·Έλ£Ή...μ μ΄μ©νμ¬ λ€λ₯Έ κ·Έλ£Ήμ νμ±ν νμμμ€. | 2046 | νΈμ§ -> κ·Έλ£Ή...μ μ΄μ©νμ¬ λ€λ₯Έ κ·Έλ£Ήμ νμ±ννμμμ€. |
1948 | </message> | 2047 | </message> |
1949 | </alert> | 2048 | </alert> |
1950 | <alert name="AddFriend" title="μΉκ΅¬ μΆκ°"> | 2049 | <alert name="AddFriend" title="μΉκ΅¬ μΆκ°"> |
1951 | <message name="message"> | 2050 | <message name="message"> |
1952 | μΉκ΅¬λ€μ μ§λμμ μλ‘ μΆμ ν μ μμΌλ©° | 2051 | μΉκ΅¬λ€μ |
2052 | μ§λμμ μλ‘ μΆμ ν μ μμΌλ©° | ||
1953 | μ¨λΌμΈ μν μ λ°μ΄νΈλ λ°μ μ μμ΅λλ€. | 2053 | μ¨λΌμΈ μν μ λ°μ΄νΈλ λ°μ μ μμ΅λλ€. |
1954 | 2054 | ||
1955 | [NAME]μκ² μ°μ μ μ 곡νκ² μ΅λκΉ? | 2055 | [NAME]μκ² μ°μ μ μ 곡νκ² μ΅λκΉ? |
@@ -1963,7 +2063,18 @@ www.secondlife.com/support. | |||
1963 | </alert> | 2063 | </alert> |
1964 | <alert name="RemoveFromFriends"> | 2064 | <alert name="RemoveFromFriends"> |
1965 | <message name="message"> | 2065 | <message name="message"> |
1966 | [FIRST_NAME] [LAST_NAME](μ)λ₯Ό μΉκ΅¬ λͺ©λ‘μμ μμ νμκ² μ΅λκΉ? | 2066 | [FIRST_NAME] [LAST_NAME]λμ μΉκ΅¬μμ μ κ±°νμκ² μ΅λκΉ? |
2067 | </message> | ||
2068 | <option name="Remove"> | ||
2069 | μ κ±° | ||
2070 | </option> | ||
2071 | <option name="Cancel"> | ||
2072 | μ·¨μ | ||
2073 | </option> | ||
2074 | </alert> | ||
2075 | <alert name="RemoveMultipleFromFriends"> | ||
2076 | <message name="message"> | ||
2077 | μΉκ΅¬ λͺ©λ‘μμ μ¬λ¬ λͺ μ μΉκ΅¬λ₯Ό μ κ±°νμκ² μ΅λκΉ? | ||
1967 | </message> | 2078 | </message> |
1968 | <option name="Remove"> | 2079 | <option name="Remove"> |
1969 | μ κ±° | 2080 | μ κ±° |
@@ -1974,12 +2085,11 @@ www.secondlife.com/support. | |||
1974 | </alert> | 2085 | </alert> |
1975 | <alert name="GodDeleteAllScriptedPublicObjectsByUser"> | 2086 | <alert name="GodDeleteAllScriptedPublicObjectsByUser"> |
1976 | <message name="message"> | 2087 | <message name="message"> |
1977 | μ΄ μλ¬λ μ΄ν°μ μλ λ€λ₯Έ λͺ¨λ ν μ§μμ | 2088 | μ΄ μλ¬λ μ΄μ λ΄ λͺ¨λ νμΈ ν μ§μμ μ€ν¬λ¦½νΈ μ€λΈμ νΈ(μμ μ: |
1978 | |||
1979 | 2089 | ||
1980 | ** [AVATAR_NAME] ** | 2090 | ** [AVATAR_NAME] ** |
1981 | 2091 | ||
1982 | μ΄(κ°) μμ νλ λͺ¨λ μ€ν¬λ¦½νΈ μμ΄ν μ μμ νμκ² μ΅λκΉ? | 2092 | )λ₯Ό λͺ¨λ μμ νμκ² μ΅λκΉ? |
1983 | </message> | 2093 | </message> |
1984 | <option name="DELETE!!"> | 2094 | <option name="DELETE!!"> |
1985 | μμ !! | 2095 | μμ !! |
@@ -1990,15 +2100,14 @@ www.secondlife.com/support. | |||
1990 | </alert> | 2100 | </alert> |
1991 | <alert name="GodDeleteAllScriptedObjectsByUser"> | 2101 | <alert name="GodDeleteAllScriptedObjectsByUser"> |
1992 | <message name="message"> | 2102 | <message name="message"> |
1993 | μ΄ μλ¬λ μ΄ν°μ μλ λͺ¨λ ν μ§μμ | 2103 | μ΄ μλ¬λ μ΄μ λ΄ λͺ¨λ ν μ§μ λͺ¨λ μ€ν¬λ¦½νΈ μ€λΈμ νΈ(μμ μ: |
1994 | |||
1995 | 2104 | ||
1996 | ** [AVATAR_NAME] ** | 2105 | ** [AVATAR_NAME] ** |
1997 | 2106 | ||
1998 | μ΄(κ°) μμ νλ λͺ¨λ μ€ν¬λ¦½νΈ μμ΄ν μ μμ νμκ² μ΅λκΉ? | 2107 | )λ₯Ό μμ νμκ² μ΅λκΉ? |
1999 | </message> | 2108 | </message> |
2000 | <option name="!!DELETEALL!!"> | 2109 | <option name="!!DELETEALL!!"> |
2001 | !!μ 체 μμ !! | 2110 | !!λͺ¨λ μμ !! |
2002 | </option> | 2111 | </option> |
2003 | <option name="Cancel"> | 2112 | <option name="Cancel"> |
2004 | μ·¨μ | 2113 | μ·¨μ |
@@ -2006,15 +2115,15 @@ www.secondlife.com/support. | |||
2006 | </alert> | 2115 | </alert> |
2007 | <alert name="GodDeleteAllObjectsByUser"> | 2116 | <alert name="GodDeleteAllObjectsByUser"> |
2008 | <message name="message"> | 2117 | <message name="message"> |
2009 | μ΄ μλ¬λ μ΄ν°μ μλ λͺ¨λ ν μ§μμ | 2118 | μ΄ μλ¬λ μ΄μ λ΄ λͺ¨λ ν μ§μ μ€λΈμ νΈλ₯Ό λͺ¨λ μμ νμκ² μ΅λκΉ? |
2010 | 2119 | μμ μ: | |
2011 | 2120 | ||
2012 | ** [AVATAR_NAME] ** | 2121 | ** [AVATAR_NAME] ** |
2013 | 2122 | ||
2014 | μ΄(κ°) μμ νλ λͺ¨λ μμ΄ν (μ€ν¬λ¦½νΈ μ¬λΆκ³Ό κ΄κ³ μμ΄)μ μμ νμκ² μ΅λκΉ? | 2123 | (μ€ν¬λ¦½νΈ μ€λΈμ νΈ μ¬λΆ 무κ΄) |
2015 | </message> | 2124 | </message> |
2016 | <option name="!!DELETEALL!!"> | 2125 | <option name="!!DELETEALL!!"> |
2017 | !!μ 체 μμ !! | 2126 | !!λͺ¨λ μμ !! |
2018 | </option> | 2127 | </option> |
2019 | <option name="Cancel"> | 2128 | <option name="Cancel"> |
2020 | μ·¨μ | 2129 | μ·¨μ |
@@ -2022,40 +2131,40 @@ www.secondlife.com/support. | |||
2022 | </alert> | 2131 | </alert> |
2023 | <alert name="PublishGroupInfoToWeb"> | 2132 | <alert name="PublishGroupInfoToWeb"> |
2024 | <message name="message"> | 2133 | <message name="message"> |
2025 | βμΉμ κ²μβ μ΅μ μ μ ννλ©΄ [SECOND_LIFE] μΉμ¬μ΄νΈμ | 2134 | μΉμ κ²μ μ΅μ μ μ ννλ©΄ |
2026 | κ·Έλ£Ήλͺ , νμ₯, μ€λ¦½ μ‘°ν, νμ΄ν, μ€λ¦½μ μ΄λ¦μ | 2135 | [SECOND_LIFE] |
2027 | κ²μν μ μμ΅λλ€. μκΈ° λ΄μ© μ€ μ§μ μ¬ν κΈ°μ€μΌλ‘ λ³Ό λ | 2136 | μΉ μ¬μ΄νΈμ κ·Έλ£Ή μ΄λ¦, λ‘κ³ , μ€λ¦½ μ‘°ν, νμ΄ν λ° μ€λ¦½μ μ΄λ¦μ κ²μν μ μμ΅λλ€.μκΈ° λ΄μ© μ€ μ§μ μ¬ν κΈ°μ€μΌλ‘ λ³Ό λ |
2028 | μ±μΈμ©μΌλ‘ κ°μ£Όλ μ μλ λ΄μ©μ΄ μμ κ²½μ° κ·Έ μ¬μ€μ | 2137 | μ±μΈ μ μ©μΌλ‘ κ°μ£Όλ μ μλ λ΄μ©μ΄ μμ κ²½μ° κ·Έ μ¬μ€μ |
2029 | νμν μλ¬΄κ° μμ΅λλ€. | 2138 | νμν μλ¬΄κ° μμ΅λλ€. |
2030 | </message> | 2139 | </message> |
2031 | </alert> | 2140 | </alert> |
2032 | <alert name="ErrorEncodingSnapshot"> | 2141 | <alert name="ErrorEncodingSnapshot"> |
2033 | <message name="message"> | 2142 | <message name="message"> |
2034 | μ€λ μ· μνΈν μ€λ₯! | 2143 | μ€λ μ· μΈμ½λ© μ€ μ€λ₯κ° λ°μνμ΅λλ€. |
2035 | </message> | 2144 | </message> |
2036 | </alert> | 2145 | </alert> |
2037 | <alert name="BlankClassifiedName"> | 2146 | <alert name="BlankClassifiedName"> |
2038 | <message name="message"> | 2147 | <message name="message"> |
2039 | κ΄κ³ λ₯Ό μν΄ λΉμΉΈμ΄ μλ μ΄λ¦μ μ λ ₯νμ μΌ ν©λλ€. | 2148 | κ΄κ³ μ λν΄ μ΄λ¦μ μ λ ₯ν΄μΌ ν©λλ€. |
2040 | </message> | 2149 | </message> |
2041 | </alert> | 2150 | </alert> |
2042 | <alert name="MinClassifiedPrice"> | 2151 | <alert name="MinClassifiedPrice"> |
2043 | <message name="message"> | 2152 | <message name="message"> |
2044 | κ²μ¬ λΉμ©μ μ΅μ L$[MIN_PRICE]μ΄μ΄μΌ ν©λλ€. | 2153 | κ²μ¬ λΉμ©μ μ΅μ L$ [MIN_PRICE]μ΄μ΄μΌ ν©λλ€. |
2045 | 2154 | ||
2046 | λ λμ μ‘μλ₯Ό μ λ ₯ν΄ μ£Όμμμ€. | 2155 | λ λμ μ‘μλ₯Ό μ λ ₯ν΄ μ£Όμμμ€. |
2047 | </message> | 2156 | </message> |
2048 | </alert> | 2157 | </alert> |
2049 | <alert name="CantLoadVertexShaders"> | 2158 | <alert name="CantLoadVertexShaders"> |
2050 | <message name="message"> | 2159 | <message name="message"> |
2051 | λ² λ₯΄ν μ€ μ °μ΄λ λ‘λ©μ μ€ν¨νμ΅λλ€. | 2160 | λ²ν μ€ μμ΄λ λ‘λμ μ€ν¨νμ΅λλ€. |
2052 | </message> | 2161 | </message> |
2053 | </alert> | 2162 | </alert> |
2054 | <alert name="ConfirmObjectDeleteLock"> | 2163 | <alert name="ConfirmObjectDeleteLock"> |
2055 | <message name="message"> | 2164 | <message name="message"> |
2056 | μ΅μ 1κ° μ¬λ¬Όμ΄ μ κΈ΄ μνμ λλ€. | 2165 | 1κ° μ΄μμ μ€λΈμ νΈκ° μ 겨 μμ΅λλ€. |
2057 | κ·Έλ¬λ νμ¬ μ νν μ¬λ¬Όμ μμ νλ κ²μ κ°λ₯ν©λλ€. | 2166 | νμ§λ§ νμ¬ μ ν μμ΄ν μ μμ ν μ μμ΅λλ€. |
2058 | μ λ§ μ΄ μ¬λ¬Όλ€μ μμ νμκ² μ΅λκΉ? | 2167 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? |
2059 | </message> | 2168 | </message> |
2060 | <option name="Yes"> | 2169 | <option name="Yes"> |
2061 | μ | 2170 | μ |
@@ -2066,9 +2175,9 @@ www.secondlife.com/support. | |||
2066 | </alert> | 2175 | </alert> |
2067 | <alert name="ConfirmObjectDeleteNoCopy"> | 2176 | <alert name="ConfirmObjectDeleteNoCopy"> |
2068 | <message name="message"> | 2177 | <message name="message"> |
2069 | μ΅μ 1κ° μ¬λ¬Όμ 볡μ¬κ° λΆκ°λ₯ν©λλ€. | 2178 | 1κ° μ΄μμ μ€λΈμ νΈλ₯Ό 볡μ¬ν μ μμ΅λλ€. |
2070 | κ·Έλ¬λ νμ¬ μ νν μ¬λ¬Όμ μμ νλ κ²μ κ°λ₯ν©λλ€. | 2179 | νμ§λ§ νμ¬ μ ν μμ΄ν μ μμ ν μ μμ΅λλ€. |
2071 | μ λ§ μ΄ μ¬λ¬Όλ€μ μμ νμκ² μ΅λκΉ? | 2180 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? |
2072 | </message> | 2181 | </message> |
2073 | <option name="Yes"> | 2182 | <option name="Yes"> |
2074 | μ | 2183 | μ |
@@ -2079,9 +2188,9 @@ www.secondlife.com/support. | |||
2079 | </alert> | 2188 | </alert> |
2080 | <alert name="ConfirmObjectDeleteNoOwn"> | 2189 | <alert name="ConfirmObjectDeleteNoOwn"> |
2081 | <message name="message"> | 2190 | <message name="message"> |
2082 | μ΅μ 1κ° μ¬λ¬Όμ΄ κ·ν μμ κ° μλλλ€. | 2191 | μ΅μ νλ μ΄μμ μ€λΈμ νΈλ₯Ό μμ νκ³ μμ§ μμ΅λλ€. |
2083 | κ·Έλ¬λ νμ¬ μ νν μ¬λ¬Όμ μμ νλ κ²μ κ°λ₯ν©λλ€. | 2192 | νμ§λ§ νμ¬ μ ν νλͺ©μ μμ ν μ μμ΅λλ€. |
2084 | μ λ§ μ΄ μ¬λ¬Όλ€μ μμ νμκ² μ΅λκΉ? | 2193 | μ΄λ¬ν μμ΄ν μ μμ νμκ² μ΅λκΉ? |
2085 | </message> | 2194 | </message> |
2086 | <option name="Yes"> | 2195 | <option name="Yes"> |
2087 | μ | 2196 | μ |
@@ -2092,10 +2201,10 @@ www.secondlife.com/support. | |||
2092 | </alert> | 2201 | </alert> |
2093 | <alert name="ConfirmObjectDeleteLockNoCopy"> | 2202 | <alert name="ConfirmObjectDeleteLockNoCopy"> |
2094 | <message name="message"> | 2203 | <message name="message"> |
2095 | μ΅μ 1κ° μ¬λ¬Όμ΄ μ κΈ΄ μνμ λλ€. | 2204 | 1κ° μ΄μμ μ€λΈμ νΈκ° μ 겨 μμ΅λλ€. |
2096 | μ΅μ 1κ° μ¬λ¬Όμ 볡μ¬κ° λΆκ°λ₯ν©λλ€. | 2205 | 1κ° μ΄μμ μ€λΈμ νΈλ₯Ό 볡μ¬ν μ μμ΅λλ€. |
2097 | κ·Έλ¬λ νμ¬ μ νν μ¬λ¬Όμ μμ νλ κ²μ κ°λ₯ν©λλ€. | 2206 | νμ§λ§ νμ¬ μ ν μμ΄ν μ μμ ν μ μμ΅λλ€. |
2098 | μ λ§ μ΄ μ¬λ¬Όλ€μ μμ νμκ² μ΅λκΉ? | 2207 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? |
2099 | </message> | 2208 | </message> |
2100 | <option name="Yes"> | 2209 | <option name="Yes"> |
2101 | μ | 2210 | μ |
@@ -2106,7 +2215,10 @@ www.secondlife.com/support. | |||
2106 | </alert> | 2215 | </alert> |
2107 | <alert name="ConfirmObjectDeleteLockNoOwn"> | 2216 | <alert name="ConfirmObjectDeleteLockNoOwn"> |
2108 | <message name="message"> | 2217 | <message name="message"> |
2109 | μ΅μ νλμ μμ΄ν μ΄ μ 겨 μμ΅λλ€. λΉμ μ μ΅μ νλμ μμ΄ν μ μμ νκ³ μμ§ μμ΅λλ€. κ·Έλ μ§λ§ μ§κΈ μ νμ μμ ν μ μμ΅λλ€. μμ΄ν λ€μ μμ νμκ² μ΅λκΉ? | 2218 | 1κ° μ΄μμ μ€λΈμ νΈκ° μ 겨 μμ΅λλ€. |
2219 | 1κ° μ΄μμ μ€λΈμ νΈκ° κ·νμ μμ κ° μλλλ€. | ||
2220 | νμ§λ§ νμ¬ μ ν μμ΄ν μ μμ ν μ μμ΅λλ€. | ||
2221 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? | ||
2110 | </message> | 2222 | </message> |
2111 | <option name="Yes"> | 2223 | <option name="Yes"> |
2112 | μ | 2224 | μ |
@@ -2117,10 +2229,10 @@ www.secondlife.com/support. | |||
2117 | </alert> | 2229 | </alert> |
2118 | <alert name="ConfirmObjectDeleteNoCopyNoOwn"> | 2230 | <alert name="ConfirmObjectDeleteNoCopyNoOwn"> |
2119 | <message name="message"> | 2231 | <message name="message"> |
2120 | μ΅μ 1κ° μ¬λ¬Όμ 볡μ¬κ° λΆκ°λ₯ν©λλ€. | 2232 | 1κ° μ΄μμ μ€λΈμ νΈλ₯Ό 볡μ¬ν μ μμ΅λλ€. |
2121 | μ΅μ 1κ° μ¬λ¬Όμ΄ κ·ν μμ κ° μλλλ€. | 2233 | 1κ° μ΄μμ μ€λΈμ νΈκ° κ·νμ μμ κ° μλλλ€. |
2122 | κ·Έλ¬λ νμ¬ μ νν μ¬λ¬Όμ μμ νλ κ²μ κ°λ₯ν©λλ€. | 2234 | νμ§λ§ νμ¬ μ ν μμ΄ν μ μμ ν μ μμ΅λλ€. |
2123 | μ λ§ μ΄ μ¬λ¬Όλ€μ μμ νμκ² μ΅λκΉ? | 2235 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? |
2124 | </message> | 2236 | </message> |
2125 | <option name="Yes"> | 2237 | <option name="Yes"> |
2126 | μ | 2238 | μ |
@@ -2131,11 +2243,11 @@ www.secondlife.com/support. | |||
2131 | </alert> | 2243 | </alert> |
2132 | <alert name="ConfirmObjectDeleteLockNoCopyNoOwn"> | 2244 | <alert name="ConfirmObjectDeleteLockNoCopyNoOwn"> |
2133 | <message name="message"> | 2245 | <message name="message"> |
2134 | μ΅μ 1κ° μ¬λ¬Όμ΄ μ κΈ΄ μνμ λλ€. | 2246 | 1κ° μ΄μμ μ€λΈμ νΈκ° μ 겨 μμ΅λλ€. |
2135 | μ΅μ 1κ° μ¬λ¬Όμ 볡μ¬κ° λΆκ°λ₯ν©λλ€. | 2247 | 1κ° μ΄μμ μ€λΈμ νΈλ₯Ό 볡μ¬ν μ μμ΅λλ€. |
2136 | μ΅μ 1κ° μ¬λ¬Όμ΄ κ·ν μμ κ° μλλλ€. | 2248 | 1κ° μ΄μμ μ€λΈμ νΈκ° κ·νμ μμ κ° μλλλ€. |
2137 | κ·Έλ¬λ νμ¬ μ νν μ¬λ¬Όμ μμ νλ κ²μ κ°λ₯ν©λλ€. | 2249 | νμ§λ§ νμ¬ μ ν μμ΄ν μ μμ ν μ μμ΅λλ€. |
2138 | μ λ§ μ΄ μ¬λ¬Όλ€μ μμ νμκ² μ΅λκΉ? | 2250 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? |
2139 | </message> | 2251 | </message> |
2140 | <option name="Yes"> | 2252 | <option name="Yes"> |
2141 | μ | 2253 | μ |
@@ -2146,9 +2258,9 @@ www.secondlife.com/support. | |||
2146 | </alert> | 2258 | </alert> |
2147 | <alert name="ConfirmObjectTakeLock"> | 2259 | <alert name="ConfirmObjectTakeLock"> |
2148 | <message name="message"> | 2260 | <message name="message"> |
2149 | μ΅μ 1κ° μ¬λ¬Όμ΄ μ κΈ΄ μνμ λλ€. | 2261 | 1κ° μ΄μμ μ€λΈμ νΈκ° μ 겨 μμ΅λλ€. |
2150 | κ·Έλ¬λ νμ¬ μ νν μ¬λ¬Όμ μ°¨μ§νλ κ²μ κ°λ₯ν©λλ€. | 2262 | νμ§λ§ νμ¬ μνλ μμ΄ν μ μ νν μ μμ΅λλ€. |
2151 | μ λ§ μ΄ μ¬λ¬Όλ€μ μ°¨μ§νμκ² μ΅λκΉ? | 2263 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? |
2152 | </message> | 2264 | </message> |
2153 | <option name="Yes"> | 2265 | <option name="Yes"> |
2154 | μ | 2266 | μ |
@@ -2159,12 +2271,12 @@ www.secondlife.com/support. | |||
2159 | </alert> | 2271 | </alert> |
2160 | <alert name="ConfirmObjectTakeNoOwn"> | 2272 | <alert name="ConfirmObjectTakeNoOwn"> |
2161 | <message name="message"> | 2273 | <message name="message"> |
2162 | μ°¨μ§νλ €λ μ¬λ¬Ό μ€ κ·ν μμ κ° μλ κ²μ΄ μμ΅λλ€. | 2274 | κ°μ Έμ€λ €λ λͺ¨λ μ€λΈμ νΈλ₯Ό μμ νκ³ μμ§ μμ΅λλ€. |
2163 | κ³μν κ²½μ°, λ€μ μμ μ κΆνμ΄ | 2275 | κ³μνλ©΄ μ΄ μ€λΈμ νΈμ λ€μ μμ μ£Ό κΆνμ΄ |
2164 | ν΄λΉ μ¬λ¬Όμ μ μ©λμ΄ ν΄λΉ μ¬λ¬Όμ λν κ·νμ | 2276 | μ μ©λκ³ λμ€μ μ€λΈμ νΈλ₯Ό μμ λλ 볡μ¬νλ λ° νμν |
2165 | μμ λλ 볡μ¬λ₯Ό μ νν μ μμ΅λλ€. | 2277 | κ·νμ κΆνμ΄ μ νλ μ μμ΅λλ€. |
2166 | κ·Έλ¬λ νμ¬ μ νν μ¬λ¬Όμ μ°¨μ§νλ κ²μ κ°λ₯ν©λλ€. | 2278 | νμ§λ§ νμ¬ μ νν νλͺ©μ κ°μ Έμ¬ μ μμ΅λλ€. |
2167 | μ λ§ μ΄ μ¬λ¬Όλ€μ μ°¨μ§νμκ² μ΅λκΉ? | 2279 | μ΄λ¬ν μμ΄ν μ κ°μ Έμ€μκ² μ΅λκΉ? |
2168 | </message> | 2280 | </message> |
2169 | <option name="Yes"> | 2281 | <option name="Yes"> |
2170 | μ | 2282 | μ |
@@ -2175,10 +2287,13 @@ www.secondlife.com/support. | |||
2175 | </alert> | 2287 | </alert> |
2176 | <alert name="ConfirmObjectTakeLockNoOwn"> | 2288 | <alert name="ConfirmObjectTakeLockNoOwn"> |
2177 | <message name="message"> | 2289 | <message name="message"> |
2178 | μ΅μ 1κ° μ¬λ¬Όμ΄ μ κΈ΄ μνμ λλ€. | 2290 | 1κ° μ΄μμ μ€λΈμ νΈκ° μ 겨 μμ΅λλ€. |
2179 | μ°¨μ§νλ €λ μ¬λ¬Όμ΄ λͺ¨λ κ·ν μμ λ μλλλ€. | 2291 | κ°μ§λ €λ μ€λΈμ νΈ μ€ μΌλΆκ° κ·νμ μμ κ° μλλλ€. |
2180 | κ³μν κ²½μ°, λ€μ μμ μ κΆνμ΄ | 2292 | κ³μνλ©΄ μ€λΈμ νΈμ λ€μ μμ μ κΆνμ΄ |
2181 | ν΄λΉ μ¬λ¬Όμ μ μ©λμ΄ ν΄λΉ μ¬λ¬Όμ λν κ·νμ | 2293 | μ μ©λμ΄ μ΄νμ κ·νκ° μμ νκ±°λ 볡μ¬ν |
2294 | κΆνμ΄ μ νλ μ μμ΅λλ€. | ||
2295 | νμ§λ§ νμ¬ μνλ μμ΄ν μ μ νν μ μμ΅λλ€. | ||
2296 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? | ||
2182 | </message> | 2297 | </message> |
2183 | <option name="Yes"> | 2298 | <option name="Yes"> |
2184 | μ | 2299 | μ |
@@ -2189,21 +2304,21 @@ www.secondlife.com/support. | |||
2189 | </alert> | 2304 | </alert> |
2190 | <alert name="CantBuyLandAcrossMultipleRegions"> | 2305 | <alert name="CantBuyLandAcrossMultipleRegions"> |
2191 | <message name="message"> | 2306 | <message name="message"> |
2192 | μ νμ΄ μ¬λ¬κ°μ μ§μμ κ±Έμ³μμ΄ ν μ§λ₯Ό 맀μ νμ§ λͺ»νμ΅λλ€. | 2307 | μ ν νλͺ©μ΄ μ¬λ¬ μ§μμ λΆμ°λμ΄ μκΈ° λλ¬Έμ ν μ§λ₯Ό 맀μ ν μ μμ΅λλ€. |
2193 | μμ λ©΄μ μ μ ννμ ν λ€μ μλν΄ μ£Όμμμ€. | 2308 | λ μμ μμμ μ νν ν λ€μ μλν΄ μ£Όμμμ€. |
2194 | </message> | 2309 | </message> |
2195 | </alert> | 2310 | </alert> |
2196 | <alert name="DeedLandToGroup"> | 2311 | <alert name="DeedLandToGroup"> |
2197 | <message name="message"> | 2312 | <message name="message"> |
2198 | μ΄ κ΅¬νμ μλν κ²½μ°, ν΄λΉ κ·Έλ£Ήμ μΆ©λΆν | 2313 | μ΄ κ΅¬νμ μλνλ λ° μμ΄μ μ΄ κ·Έλ£Ήμ ν μ§ μ¬μ©μ |
2199 | ν μ§ μ¬μ© μ μ©μ 보μ -μ μ§ν΄μΌ ν©λλ€. | 2314 | μν μΆ©λΆν μ μ©μ΄ μμ΄μΌ ν©λλ€. |
2200 | 2315 | ||
2201 | ν΄λΉ ν μ§μ ꡬ맀 λΉμ©μ μμ μμκ² νλΆλμ§. | 2316 | ν μ§ κ΅¬λ§€ κ°κ²©μ μμ μ£Όμκ² νλΆλμ§ |
2202 | μμ΅λλ€. μλ ꡬνμ΄ ν맀λ κ²½μ°, ν΄λΉ ν맀 μμ΅μ | 2317 | μμ΅λλ€. μλλ ꡬνμ΄ ν맀λλ κ²½μ° ν맀 |
2203 | κ·Έλ£Ή λ©€λ²λ€ μ¬μ΄μ λλ±νκ² λ°°λΆλ©λλ€. | 2318 | κ°κ²©μ κ·Έλ£Ή νμμκ² κ· λ±νκ² λΆλ°°λ©λλ€. |
2204 | 2319 | ||
2205 | μ΄ [λ©΄μ ] νλ°© λ―Έν°μ ν μ§λ₯Ό | 2320 | [AREA]μ κ³±λ―Έν°μ μ΄ ν μ§λ₯Ό λ€μ κ·Έλ£Ήμκ² μλ νμκ² μ΅λκΉ? |
2206 | '[GROUP_NAME]'μ μλνμκ² μ΅λκΉ? | 2321 | '[GROUP_NAME]' |
2207 | </message> | 2322 | </message> |
2208 | <option name="Deed"> | 2323 | <option name="Deed"> |
2209 | μλ | 2324 | μλ |
@@ -2214,18 +2329,18 @@ www.secondlife.com/support. | |||
2214 | </alert> | 2329 | </alert> |
2215 | <alert name="DeedLandToGroupWithContribution"> | 2330 | <alert name="DeedLandToGroupWithContribution"> |
2216 | <message name="message"> | 2331 | <message name="message"> |
2217 | μ΄ κ΅¬νμ μλν κ²½μ°, ν΄λΉ κ·Έλ£Ήμ μΆ©λΆν | 2332 | μ΄ κ΅¬νμ μλνλ λ° μμ΄μ μ΄ κ·Έλ£Ήμ ν μ§ μ¬μ©μ |
2218 | ν μ§ μ¬μ© μ μ©μ 보μ -μ μ§ν΄μΌ ν©λλ€. | 2333 | μν μΆ©λΆν μ μ©μ΄ μμ΄μΌ ν©λλ€. |
2219 | 2334 | ||
2220 | μλμλ '[FIRST_NAME] [LAST_NAME]'μ΄(κ°) ν΄λΉ κ·Έλ£Ήμ | 2335 | μλμλ '[FIRST_NAME] [LAST_NAME]'μ΄(κ°) |
2221 | μ λ¬ν λμ κΈ°λΆ ν μ§κ° ν¬ν¨λ©λλ€. | 2336 | κ·Έλ£Ήμκ² ννλ λμ ν μ§ κΈ°λΆ νμκ° ν¬ν¨λ©λλ€. |
2222 | 2337 | ||
2223 | ν΄λΉ ν μ§μ ꡬ맀 λΉμ©μ μμ μμκ² νλΆλμ§. | 2338 | ν μ§ κ΅¬λ§€ κ°κ²©μ μμ μ£Όμκ² νλΆλμ§ |
2224 | μμ΅λλ€. μλ ꡬνμ΄ ν맀λ κ²½μ°, ν΄λΉ ν맀 μμ΅μ | 2339 | μμ΅λλ€. μλλ ꡬνμ΄ ν맀λλ κ²½μ° ν맀 |
2225 | κ·Έλ£Ή λ©€λ²λ€ μ¬μ΄μ λλ±νκ² λ°°λΆλ©λλ€. | 2340 | κ°κ²©μ κ·Έλ£Ή νμμκ² κ· λ±νκ² λΆλ°°λ©λλ€. |
2226 | 2341 | ||
2227 | μ΄ [λ©΄μ ] νλ°© λ―Έν°μ ν μ§λ₯Ό | 2342 | [AREA]μ κ³±λ―Έν°μ μ΄ ν μ§λ₯Ό λ€μ κ·Έλ£Ήμκ² μλ νμκ² μ΅λκΉ? |
2228 | '[GROUP_NAME]'μ μλνμκ² μ΅λκΉ? | 2343 | '[GROUP_NAME]' |
2229 | </message> | 2344 | </message> |
2230 | <option name="Deed"> | 2345 | <option name="Deed"> |
2231 | μλ | 2346 | μλ |
@@ -2236,30 +2351,30 @@ www.secondlife.com/support. | |||
2236 | </alert> | 2351 | </alert> |
2237 | <alert name="DisplaySetToSafe"> | 2352 | <alert name="DisplaySetToSafe"> |
2238 | <message name="message"> | 2353 | <message name="message"> |
2239 | μμ μ΅μ μ μ ννμ ¨κΈ° λλ¬Έμ | 2354 | κ·νκ° μ§μ ν μμ μ΅μ μ λ°λΌ λμ€νλ μ΄ μ€μ μ΄ |
2240 | νλ©΄ μ€μ μ΄ μμ λ λ²¨λ‘ μ€μ λμμ΅λλ€. | 2355 | μμ μμ€μΌλ‘ μ€μ λμμ΅λλ€. |
2241 | </message> | 2356 | </message> |
2242 | </alert> | 2357 | </alert> |
2243 | <alert name="DisplaySetToRecommended"> | 2358 | <alert name="DisplaySetToRecommended"> |
2244 | <message name="message"> | 2359 | <message name="message"> |
2245 | λΉμ μ μμ€ν ꡬμ±μ λ°νμΌλ‘ λμ€νλ μ΄ μ€μ μ | 2360 | κ·νμ μμ€ν ꡬμ±μ λ°νμΌλ‘ λμ€νλ μ΄ μ€μ μ΄ |
2246 | κΆμ₯ μμ€μΌλ‘ μ€μ νμμ΅λλ€. | 2361 | κΆμ₯ μμ€μΌλ‘ μ€μ λμμ΅λλ€. |
2247 | </message> | 2362 | </message> |
2248 | </alert> | 2363 | </alert> |
2249 | <alert name="UnableToConnect"> | 2364 | <alert name="UnableToConnect"> |
2250 | <message name="message"> | 2365 | <message name="message"> |
2251 | μλ²μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | 2366 | μλ²μ μ°κ²°νμ§ λͺ»νμ΅λλ€. |
2252 | λ€μ λλ©μΈλͺ μ μμ²ν μ μμ΅λλ€: [HOST_NAME] | 2367 | λ€μ λλ©μΈ μ΄λ¦μ μμ²ν μ μμ΅λλ€: [HOST_NAME] |
2253 | </message> | 2368 | </message> |
2254 | </alert> | 2369 | </alert> |
2255 | <alert name="CanNotFindServer"> | 2370 | <alert name="CanNotFindServer"> |
2256 | <message name="message"> | 2371 | <message name="message"> |
2257 | μλ² λλ©μΈ μ΄λ¦μ μ°Ύμ§ λͺ»νμ΅λλ€. | 2372 | μλ² λλ©μΈ μ΄λ¦μ μ°Ύμ μ μμ΅λλ€. |
2258 | λ€νΈμν¬ μ°κ²°μ΄ ν΄μ λμκ±°λ μλ² λ¬Έμ κ° | 2373 | μ΄λ‘ μΈν΄ λ€νΈμν¬ μ°κ²°μ΄ μμ€λκ±°λ μλ² λ¬Έμ κ° |
2259 | μμΈμΌ μ μμ΅λλ€. | 2374 | λ°μν μ μμ΅λλ€. |
2260 | 2375 | ||
2261 | μ μ ν λ€μ μλνμκ±°λ, λμλ§μ ν΄λ¦νμλ©΄ | 2376 | λͺ μ΄ νμ λ€μ μλνκ±°λ λμλ§μ ν΄λ¦νμ¬ |
2262 | μλ΄ λ° μμ€ν μν μΉνμ΄μ§λ‘ κ°λ λ§ν¬κ° λμ΅λλ€. | 2377 | μμ€ν μν μΉ νμ΄μ§μ λν μ§μ μ 보 λ° λ§ν¬λ₯Ό νμΈνμμμ€. |
2263 | </message> | 2378 | </message> |
2264 | <option name="OK"> | 2379 | <option name="OK"> |
2265 | νμΈ | 2380 | νμΈ |
@@ -2270,16 +2385,16 @@ www.secondlife.com/support. | |||
2270 | </alert> | 2385 | </alert> |
2271 | <alert name="PleaseSelectServer"> | 2386 | <alert name="PleaseSelectServer"> |
2272 | <message name="message"> | 2387 | <message name="message"> |
2273 | μλ²λ₯Ό μ νν΄ μ£Όμμμ€. | 2388 | μλ²λ₯Ό μ ννμμμ€. |
2274 | [IP_ADDRESS]μ μ°κ²°νμ§ λͺ»νμ΅λλ€ | 2389 | [IP_ADDRESS](μΌ)λ‘ μ°κ²°ν μ μμ |
2275 | </message> | 2390 | </message> |
2276 | </alert> | 2391 | </alert> |
2277 | <alert name="SystemMayBeDown"> | 2392 | <alert name="SystemMayBeDown"> |
2278 | <message name="message"> | 2393 | <message name="message"> |
2279 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | 2394 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. |
2280 | μμ€ν μ΄ λ€μ΄μνμΌ μ μμ΅λλ€. | 2395 | μμ€ν μ΄ λ€μ΄λ μ μμ΅λλ€. |
2281 | μ μ ν λ€μ μλνμκ±°λ, λμλ§μ ν΄λ¦νμλ©΄ | 2396 | λͺ μ΄ νμ λ€μ μλνκ±°λ λμλ§μ ν΄λ¦νμ¬ |
2282 | μλ΄ λ° μμ€ν μν μΉνμ΄μ§λ‘ κ°λ λ§ν¬κ° λμ΅λλ€. | 2397 | μμ€ν μν μΉ νμ΄μ§μ λν μ§μ μ 보 λ° λ§ν¬λ₯Ό νμΈνμμμ€. |
2283 | </message> | 2398 | </message> |
2284 | <option name="OK"> | 2399 | <option name="OK"> |
2285 | νμΈ | 2400 | νμΈ |
@@ -2295,29 +2410,29 @@ www.secondlife.com/support. | |||
2295 | </alert> | 2410 | </alert> |
2296 | <alert name="AvatarMoved"> | 2411 | <alert name="AvatarMoved"> |
2297 | <message name="message"> | 2412 | <message name="message"> |
2298 | Your [TYPE] location is not currently available. | 2413 | νμ¬ [TYPE] μμΉλ₯Ό μ¬μ©ν μ μμ΅λλ€. |
2299 | [HELP] | 2414 | [HELP] |
2300 | You have been moved into a nearby region. | 2415 | κ·νλ μ£Όλ³μ μ§μμΌλ‘ μ겨μ‘μ΅λλ€. |
2301 | </message> | 2416 | </message> |
2302 | </alert> | 2417 | </alert> |
2303 | <alert name="ClothingLoading"> | 2418 | <alert name="ClothingLoading"> |
2304 | <message name="message"> | 2419 | <message name="message"> |
2305 | κ·νμ μλ³΅μ΄ μμ§ λ€μ΄λ‘λ μ€μ λλ€. | 2420 | μμμ λ€μ΄λ‘λνλ μ€μ λλ€. |
2306 | μΈκ³λ₯Ό μ μμ μΌλ‘ μ¬μ©ν μ μμΌλ©°, λ€λ₯Έ μ¬μ©μλ€μ΄ | 2421 | μΌλ°μ μΌλ‘ μΈμ»¨λλΌμ΄νλ₯Ό μ¬μ©ν μ μμΌλ©° λ€λ₯Έ μ¬μ©μμκ² |
2307 | κ·νλ₯Ό μ¬λ°λ‘ λ³΄κ² λ©λλ€. | 2422 | κ·νμ λͺ¨μ΅μ΄ μ λλ‘ νμλ κ²μ λλ€. |
2308 | </message> | 2423 | </message> |
2309 | </alert> | 2424 | </alert> |
2310 | <alert name="FirstRun"> | 2425 | <alert name="FirstRun"> |
2311 | <message name="message"> | 2426 | <message name="message"> |
2312 | [SECOND_LIFE] μ€μΉκ° μλ£λμμ΅λλ€. | 2427 | [SECOND_LIFE] μ€μΉκ° μλ£λμμ΅λλ€. |
2313 | 2428 | ||
2314 | [SECOND_LIFE]μ(λ₯Ό) μ²μ μ¬μ©νμλ κ²½μ°, λ‘κ·ΈμΈνμκΈ° μ μ | 2429 | [SECOND_LIFE]λ₯Ό μ²μ μ¬μ©νμλ κ²½μ° λ¨Όμ κ³μ μ λ§λ€μ΄μΌ |
2315 | μλ‘ κ³μ μ λ§λμ μΌ ν©λλ€. | 2430 | λ‘κ·ΈμΈν μ μμ΅λλ€. |
2316 | 2431 | ||
2317 | www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | 2432 | www.secondlife.comμΌλ‘ λμκ° μ κ· κ³μ μ λ§λμκ² μ΅λκΉ? |
2318 | </message> | 2433 | </message> |
2319 | <option name="NewAccount..."> | 2434 | <option name="NewAccount..."> |
2320 | μ κ· κ³μ ... | 2435 | μ κ· κ³μ β¦ |
2321 | </option> | 2436 | </option> |
2322 | <option name="Continue"> | 2437 | <option name="Continue"> |
2323 | κ³μ | 2438 | κ³μ |
@@ -2326,17 +2441,17 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2326 | <alert name="SetByHostFail"> | 2441 | <alert name="SetByHostFail"> |
2327 | <message name="message"> | 2442 | <message name="message"> |
2328 | μλ²μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | 2443 | μλ²μ μ°κ²°νμ§ λͺ»νμ΅λλ€. |
2329 | λ€μ λλ©μΈλͺ μ ν΄μν μ μμ΅λλ€: [HOST_NAME] | 2444 | λ€μ λλ©μΈ μ΄λ¦μ νμΈν μ μμ΅λλ€: [HOST_NAME] |
2330 | λ€νΈμν¬ μ°κ²°μ νμΈν΄ μ£Όμμμ€. | 2445 | λ€νΈμν¬ μ°κ²°μ νμΈνμμμ€. |
2331 | </message> | 2446 | </message> |
2332 | </alert> | 2447 | </alert> |
2333 | <alert name="LoginPacketNeverReceived"> | 2448 | <alert name="LoginPacketNeverReceived"> |
2334 | <message name="message"> | 2449 | <message name="message"> |
2335 | μ°κ²°μ μ€ν¨νμ΅λλ€. λ‘κ·ΈμΈ μλ²κ° λ‘κ·ΈμΈ ν¨ν·μ | 2450 | μ°κ²°ν μ μμ΅λλ€. λ‘κ·ΈμΈ μλ²μμ λ‘κ·ΈμΈ ν¨ν·μ΄ |
2336 | λ°μ§ λͺ»νμ΅λλ€. | 2451 | μμ λμ§ μμμ΅λλ€. |
2337 | 2452 | ||
2338 | μ μ ν λ€μ μλνμκ±°λ, λμλ§μ ν΄λ¦νμλ©΄ | 2453 | λͺ μ΄ νμ λ€μ μλνκ±°λ λμλ§μ ν΄λ¦νμ¬ |
2339 | μλ΄ λ° μμ€ν μν μΉνμ΄μ§λ‘ κ°λ λ§ν¬κ° λμ΅λλ€. | 2454 | μμ€ν μν μΉ νμ΄μ§μ λν μ§μ μ 보 λ° λ§ν¬λ₯Ό νμΈνμμμ€. |
2340 | </message> | 2455 | </message> |
2341 | <option name="OK"> | 2456 | <option name="OK"> |
2342 | νμΈ | 2457 | νμΈ |
@@ -2351,8 +2466,8 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2351 | 2466 | ||
2352 | νμ΄ν ν€λ₯Ό μ΄μ©νμ¬ κ±Έμ μ μμ΅λλ€. | 2467 | νμ΄ν ν€λ₯Ό μ΄μ©νμ¬ κ±Έμ μ μμ΅λλ€. |
2353 | 2468 | ||
2354 | λμλ§μ΄ νμνμκ±°λ [SECOND-LIFE]μ | 2469 | F1 ν€λ₯Ό λλ¬ λμλ§μ 보거λ |
2355 | λν λ μμΈν λ΄μ©μ΄ νμνμλ©΄ F1 ν€λ₯Ό λλ₯΄μμμ€. | 2470 | [SECOND_LIFE]λ₯Ό μμΈν λ°°μΈ μ μμ΅λλ€. |
2356 | </message> | 2471 | </message> |
2357 | </alert> | 2472 | </alert> |
2358 | <alert name="WelcomeChooseSex"> | 2473 | <alert name="WelcomeChooseSex"> |
@@ -2361,8 +2476,8 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2361 | 2476 | ||
2362 | νμ΄ν ν€λ₯Ό μ΄μ©νμ¬ κ±Έμ μ μμ΅λλ€. | 2477 | νμ΄ν ν€λ₯Ό μ΄μ©νμ¬ κ±Έμ μ μμ΅λλ€. |
2363 | 2478 | ||
2364 | λμλ§μ΄ νμνμκ±°λ [SECOND-LIFE]μ | 2479 | F1 ν€λ₯Ό λλ¬ λμλ§μ 보거λ |
2365 | λν λ μμΈν λ΄μ©μ΄ νμνμλ©΄ F1 ν€λ₯Ό λλ₯΄μμμ€. | 2480 | [SECOND_LIFE]λ₯Ό μμΈν λ°°μΈ μ μμ΅λλ€. |
2366 | 2481 | ||
2367 | λ¨μ± λλ μ¬μ± μΊλ¦ν°λ₯Ό μ νν΄ μ£Όμμμ€. | 2482 | λ¨μ± λλ μ¬μ± μΊλ¦ν°λ₯Ό μ νν΄ μ£Όμμμ€. |
2368 | μ°¨νμ λ³κ²½μ΄ κ°λ₯ν©λλ€. | 2483 | μ°¨νμ λ³κ²½μ΄ κ°λ₯ν©λλ€. |
@@ -2376,34 +2491,22 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2376 | </alert> | 2491 | </alert> |
2377 | <alert name="NotEnoughCurrency"> | 2492 | <alert name="NotEnoughCurrency"> |
2378 | <message name="message"> | 2493 | <message name="message"> |
2379 | [μ΄λ¦] L$ [κ°κ²©] κ°μ§κ³ κ³μ λμ΄ μΆ©λΆμΉ μμ΅λλ€. | 2494 | [NAME]λ L$ [PRICE] 보μ . λ¦°λ λ¬λ¬(L$)κ° λΆμ‘±νμ¬ μ΄λ₯Ό μνν μ μμ΅λλ€. |
2380 | </message> | 2495 | </message> |
2381 | </alert> | 2496 | </alert> |
2382 | <alert name="GrantModRights"> | 2497 | <alert name="GrantedModifyRights"> |
2383 | <message name="message"> | 2498 | <message name="message"> |
2384 | [FIRST_NAME] [LAST_NAME]μ μμ κΆλ¦¬λ₯Ό λΆμ¬νμκ² μ΅λκΉ ? | 2499 | [FIRST_NAME] [LAST_NAME]μ μ€λΈμ νΈ μμ κΆνμ λΆμ¬λ°μμ΅λλ€. |
2385 | </message> | 2500 | </message> |
2386 | <option name="Yes"> | ||
2387 | μ | ||
2388 | </option> | ||
2389 | <option name="No"> | ||
2390 | μλμ€ | ||
2391 | </option> | ||
2392 | </alert> | 2501 | </alert> |
2393 | <alert name="RevokeModRights"> | 2502 | <alert name="RevokedModifyRights"> |
2394 | <message name="message"> | 2503 | <message name="message"> |
2395 | [FIRST_NAME] [LAST_NAME](μΌ)λ‘λΆν° μμ κΆλ¦¬λ₯Ό μ² ννμκ² μ΅λκΉ ? | 2504 | [LAST_NAME][FIRST_NAME]μ μ€λΈμ νΈ μμ κΆνμ΄ μ·¨μλμμ΅λλ€. |
2396 | </message> | 2505 | </message> |
2397 | <option name="Yes"> | ||
2398 | μ | ||
2399 | </option> | ||
2400 | <option name="No"> | ||
2401 | μλμ€ | ||
2402 | </option> | ||
2403 | </alert> | 2506 | </alert> |
2404 | <alert name="FlushMapVisibilityCaches"> | 2507 | <alert name="FlushMapVisibilityCaches"> |
2405 | <message name="message"> | 2508 | <message name="message"> |
2406 | μ€ννμ€ κ²½μ° μ΄ μ§μμ μ§λ μΊμκ° μμ λ©λλ€. | 2509 | μ΄ μ§μμ μ§λ μΊμκ° μμ λ©λλ€. |
2407 | 2510 | ||
2408 | μ΄ μμ μ λ²κ·Έ μ κ±°μλ§ μ¬μ©λ©λλ€. | 2511 | μ΄ μμ μ λ²κ·Έ μ κ±°μλ§ μ¬μ©λ©λλ€. |
2409 | 2512 | ||
@@ -2420,12 +2523,18 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2420 | <alert name="OnlyCopyContentsOfSingleItem"> | 2523 | <alert name="OnlyCopyContentsOfSingleItem"> |
2421 | <message name="message"> | 2524 | <message name="message"> |
2422 | νλ²μ 2κ° μ΄μ νλͺ©μ 컨ν μΈ λ₯Ό 볡μ¬νμ§ λͺ»νμ΅λλ€. | 2525 | νλ²μ 2κ° μ΄μ νλͺ©μ 컨ν μΈ λ₯Ό 볡μ¬νμ§ λͺ»νμ΅λλ€. |
2423 | 1κ°μ μμ΄ν λ§ μ νν ν λ€μ μλν΄ μ£Όμμμ€. | 2526 | 1κ°μ μ€λΈμ νΈλ§ μ νν ν λ€μ μλν΄ μ£Όμμμ€. |
2424 | </message> | 2527 | </message> |
2528 | <option name="OK"> | ||
2529 | νμΈ | ||
2530 | </option> | ||
2531 | <option name="Cancel"> | ||
2532 | μ·¨μ | ||
2533 | </option> | ||
2425 | </alert> | 2534 | </alert> |
2426 | <alert name="KickUsersFromRegion"> | 2535 | <alert name="KickUsersFromRegion"> |
2427 | <message name="message"> | 2536 | <message name="message"> |
2428 | μ΄ μ§μλ΄ λͺ¨λ μ¬μ©μλ€μ μ§μΌλ‘ ν 리ν¬νΈνμκ² μ΅λκΉ? | 2537 | μ΄ μ§μ λ΄ λͺ¨λ μ¬μ©μλ₯Ό νμΌλ‘ ν 리ν¬νΈ νμκ² μ΅λκΉ? |
2429 | </message> | 2538 | </message> |
2430 | <option name="OK"> | 2539 | <option name="OK"> |
2431 | νμΈ | 2540 | νμΈ |
@@ -2438,7 +2547,7 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2438 | <message name="message"> | 2547 | <message name="message"> |
2439 | μ¬μ©μμ ν μ§λ₯Ό μ μΈν λͺ¨λ ν μ§μμ | 2548 | μ¬μ©μμ ν μ§λ₯Ό μ μΈν λͺ¨λ ν μ§μμ |
2440 | ** [USER_NAME] ** | 2549 | ** [USER_NAME] ** |
2441 | μ΄(κ°) μμ νλ λͺ¨λ μ€ν¬λ¦½νΈ μμ΄ν μ λ°ννμκ² μ΅λκΉ? | 2550 | μμ μ λͺ¨λ μ€ν¬λ¦½νΈ μ€λΈμ νΈλ₯Ό λ°ν νμκ² μ΅λκΉ? |
2442 | </message> | 2551 | </message> |
2443 | <option name="Return"> | 2552 | <option name="Return"> |
2444 | λ°ν | 2553 | λ°ν |
@@ -2449,9 +2558,9 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2449 | </alert> | 2558 | </alert> |
2450 | <alert name="ReturnScriptedOnAllLand"> | 2559 | <alert name="ReturnScriptedOnAllLand"> |
2451 | <message name="message"> | 2560 | <message name="message"> |
2452 | μ΄ μ§μμ μλ λͺ¨λ ν μ§μμ | 2561 | μ΄ μ§μ λ΄ λͺ¨λ ν μ§μμ |
2453 | ** [USER_NAME] ** | 2562 | ** [USER_NAME] ** |
2454 | μ΄(κ°) μμ νλ λͺ¨λ μ€ν¬λ¦½νΈ μμ΄ν μ λ°ννμκ² μ΅λκΉ? | 2563 | μμ μ λͺ¨λ μ€ν¬λ¦½νΈ μ€λΈμ νΈλ₯Ό λ°ννμκ² μ΅λκΉ? |
2455 | </message> | 2564 | </message> |
2456 | <option name="Return"> | 2565 | <option name="Return"> |
2457 | λ°ν | 2566 | λ°ν |
@@ -2460,67 +2569,37 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2460 | μ·¨μ | 2569 | μ·¨μ |
2461 | </option> | 2570 | </option> |
2462 | </alert> | 2571 | </alert> |
2463 | <alert name="InvalidTerrainBitDepthSmall"> | 2572 | <alert name="InvalidTerrainBitDepth"> |
2464 | <message name="message"> | 2573 | <message name="message"> |
2465 | μ§μ ν μ€μ² μ€μ μ μ€ν¨νμ΅λλ€: | 2574 | μ§μ ν μ€μ²λ₯Ό μ€μ ν μ μμ΅λλ€: |
2466 | 2575 | ||
2467 | κΈ°λ³Έ ν μ€μ²[TEXTURE_NUM]μ λΉνΈ κΉμ΄κ° [TEXTURE_BIT_DEPTH](μΌ)λ‘ μ ν¨νμ§ μμ΅λλ€. | 2576 | μ§ν ν μ€μ² [TEXTURE_NUM]μ λΉνΈ μμ€ [TEXTURE_BIT_DEPTH]μ΄(κ°) μ ν¨νμ§ μμ΅λλ€. |
2468 | 2577 | ||
2469 | κΈ°λ³Έ ν μ€μ² [TEXTURE_NUM](μ)λ₯Ό 128x128 24 λΉνΈ μ΄λ―Έμ§λ‘ κ΅μ²΄ν ν, | 2578 | ν μ€μ² [TEXTURE_NUM]μ(λ₯Ό) 24λΉνΈμ 512x512(λλ λ μμ) μ΄λ―Έμ§λ‘ κ΅μ²΄νκ³ |
2470 | "μ€μ "μ λ€μ ν΄λ¦ν©λλ€. | 2579 | "μ€μ "μ λ€μ ν΄λ¦νμμμ€. |
2471 | </message> | 2580 | </message> |
2472 | </alert> | 2581 | </alert> |
2473 | <alert name="InvalidTerrainSizeSmall"> | 2582 | <alert name="InvalidTerrainSize"> |
2474 | <message name="message"> | 2583 | <message name="message"> |
2475 | μ§μ ν μ€μ² μ€μ μ μ€ν¨νμ΅λλ€: | 2584 | μ§μ ν μ€μ²λ₯Ό μ€μ ν μ μμ΅λλ€: |
2476 | 2585 | ||
2477 | κΈ°λ³Έ ν μ€μ² [TEXTURE_NUM]μ ν¬κΈ°κ° [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y](μΌ)λ‘ μ ν¨νμ§ μμ΅λλ€. | 2586 | μ§ν ν μ€μ² [TEXTURE_NUM]μ΄(κ°) λ무 ν½λλ€([TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]). |
2478 | 2587 | ||
2479 | κΈ°λ³Έ ν μ€μ² [TEXTURE_NUM](μ)λ₯Ό 128x128 24λΉνΈ μ΄λ―Έμ§λ‘ κ΅μ²΄ν ν, | 2588 | ν μ€μ² [TEXTURE_NUM]μ(λ₯Ό) 24λΉνΈμ 512x512(λλ λ μμ) μ΄λ―Έμ§λ‘ κ΅μ²΄νκ³ |
2480 | "μ€μ "μ λ€μ ν΄λ¦ν©λλ€. | 2589 | "μ€μ "μ λ€μ ν΄λ¦νμμμ€. |
2481 | </message> | ||
2482 | </alert> | ||
2483 | <alert name="InvalidTerrainBitDepthLarge"> | ||
2484 | <message name="message"> | ||
2485 | μ§μ ν μ€μ² μ€μ μ μ€ν¨νμ΅λλ€: | ||
2486 | |||
2487 | κΈ°λ³Έ ν μ€μ²[TEXTURE_NUM]μ λΉνΈ κΉμ΄κ° [TEXTURE_BIT_DEPTH](μΌ)λ‘ μ ν¨νμ§ μμ΅λλ€. | ||
2488 | |||
2489 | κΈ°λ³Έ ν μ€μ² [TEXTURE_NUM](μ)λ₯Ό 512x512λ³΄λ€ μμ 24λΉνΈ μ΄λ―Έμ§λ‘ κ΅μ²΄ν ν, | ||
2490 | "μ€μ "μ λ€μ ν΄λ¦ν©λλ€. | ||
2491 | </message> | ||
2492 | </alert> | ||
2493 | <alert name="InvalidTerrainWidthLarge"> | ||
2494 | <message name="message"> | ||
2495 | μ§μ ν μ€μ² μ€μ μ μ€ν¨νμ΅λλ€: | ||
2496 | |||
2497 | κΈ°λ³Έ ν μ€μ²[TEXTURE_NUM]μ ν¬κΈ°κ° [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]λ‘ λμ΅λλ€. | ||
2498 | |||
2499 | κΈ°λ³Έ ν μ€μ² [TEXTURE_NUM](μ)λ₯Ό 512x512λ³΄λ€ μμ 24λΉνΈ μ΄λ―Έμ§λ‘ κ΅μ²΄ν ν, | ||
2500 | "μ€μ "μ λ€μ ν΄λ¦ν©λλ€. | ||
2501 | </message> | ||
2502 | </alert> | ||
2503 | <alert name="InvalidTerrainHeightLarge"> | ||
2504 | <message name="message"> | ||
2505 | μ§μ ν μ€μ² μ€μ μ μ€ν¨νμ΅λλ€: | ||
2506 | |||
2507 | κΈ°λ³Έ ν μ€μ²[TEXTURE_NUM]μ ν¬κΈ°κ° [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y](μΌ)λ‘ λ무 λμ΅λλ€. | ||
2508 | |||
2509 | κΈ°λ³Έ ν μ€μ² [TEXTURE_NUM](μ)λ₯Ό 512x512λ³΄λ€ μμ 24λΉνΈ μ΄λ―Έμ§λ‘ κ΅μ²΄ν ν, | ||
2510 | "μ€μ "μ λ€μ ν΄λ¦ν©λλ€. | ||
2511 | </message> | 2590 | </message> |
2512 | </alert> | 2591 | </alert> |
2513 | <alert name="RawUploadStarted"> | 2592 | <alert name="RawUploadStarted"> |
2514 | <message name="message"> | 2593 | <message name="message"> |
2515 | μ λ‘λκ° μμλμμ΅λλ€. μ°κ²° μλμ λ°λΌ μ΅λ, | 2594 | μ λ‘λκ° μμλμμ΅λλ€. μ°κ²° μλμ λ°λΌ μ΅λ |
2516 | 2λΆκΉμ§ μμλ μ μμ΅λλ€. | 2595 | 2λΆκΉμ§ μμλ μ μμ΅λλ€. |
2517 | </message> | 2596 | </message> |
2518 | </alert> | 2597 | </alert> |
2519 | <alert name="ConfirmBakeTerrain"> | 2598 | <alert name="ConfirmBakeTerrain"> |
2520 | <message name="message"> | 2599 | <message name="message"> |
2521 | νμ¬ μ§νμ μ μ₯ν΄, | 2600 | νμ¬ μ§νμ μ μ₯νμ¬ μ§ν λμ΄/κΉμ΄ μ νμ |
2522 | μ§ν μ¬λ¦¬κΈ°/λμΆκΈ° νκ³μ μ€μ¬μ μΌλ‘ μ νκ³ | 2601 | μ€μ¬μ μΌλ‘ μ νκ³ 'μ·¨μ' λꡬμ |
2523 | 'λλ리기' λꡬμ κΈ°λ³Έμ€μ μΌλ‘ νμκ² μ΅λκΉ? | 2602 | κΈ°λ³Έ μ€μ μΌλ‘ νμκ² μ΅λκΉ? |
2524 | </message> | 2603 | </message> |
2525 | <option name="Bake"> | 2604 | <option name="Bake"> |
2526 | μ μ₯ | 2605 | μ μ₯ |
@@ -2531,13 +2610,19 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2531 | </alert> | 2610 | </alert> |
2532 | <alert name="MaxAllowedAgentOnRegion"> | 2611 | <alert name="MaxAllowedAgentOnRegion"> |
2533 | <message name="message"> | 2612 | <message name="message"> |
2534 | κ·νμ μ΅λ νμ© μ£Όλ―Ό μλ [MAX_AGENTS]μ λλ€. | 2613 | κ·νμκ² νμ©λλ μ΅λ μ£Όλ―Ό μλ [MAX_AGENTS]μ λλ€. |
2535 | </message> | 2614 | </message> |
2536 | </alert> | 2615 | </alert> |
2537 | <alert name="MaxAllowedGroupsOnRegion"> | 2616 | <alert name="MaxAllowedGroupsOnRegion"> |
2538 | <message name="message"> | 2617 | <message name="message"> |
2539 | κ·νμ μ΅λ νμ© κ·Έλ£Ή μλ [MAX_GROUPS]μ λλ€. | 2618 | κ·νμκ² νμ©λλ μ΅λ κ·Έλ£Ή μλ [MAX_GROUPS]μ λλ€. |
2540 | </message> | 2619 | </message> |
2620 | <option name="Bake"> | ||
2621 | μ μ₯ | ||
2622 | </option> | ||
2623 | <option name="Cancel"> | ||
2624 | μ·¨μ | ||
2625 | </option> | ||
2541 | </alert> | 2626 | </alert> |
2542 | <alert name="MaxBannedAgentsOnRegion"> | 2627 | <alert name="MaxBannedAgentsOnRegion"> |
2543 | <message name="message"> | 2628 | <message name="message"> |
@@ -2551,12 +2636,12 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2551 | </alert> | 2636 | </alert> |
2552 | <alert name="OwnerCanNotBeDenied"> | 2637 | <alert name="OwnerCanNotBeDenied"> |
2553 | <message name="message"> | 2638 | <message name="message"> |
2554 | μμ μ§μ μμ μ£Όλ μμ μ§μ μ‘μΈμ€ κ±°λΆ λͺ©λ‘μ μΆκ°ν μ μμ΅λλ€. | 2639 | μ¬μ μ§ μμ μλ μ¬μ μ§μ 'μΆμ κ±°λΆ' λͺ©λ‘μ μΆκ°λ μ μμ΅λλ€. |
2555 | </message> | 2640 | </message> |
2556 | </alert> | 2641 | </alert> |
2557 | <alert name="CanNotChangeAppearanceUntilLoaded"> | 2642 | <alert name="CanNotChangeAppearanceUntilLoaded"> |
2558 | <message name="message"> | 2643 | <message name="message"> |
2559 | μ볡 λ° νμμ λ‘λ©μ΄ μλ£λ λκΉμ§λ μΈμμ λ°κΏ μ μμ΅λλ€. | 2644 | μ·κ³Ό μΈνμ λ‘λ©μ΄ μλ£λ λκΉμ§λ λ΄ λͺ¨μ΅μ λ°κΏ μ μμ΅λλ€. |
2560 | </message> | 2645 | </message> |
2561 | </alert> | 2646 | </alert> |
2562 | <alert name="ClassifiedMustBeAlphanumeric"> | 2647 | <alert name="ClassifiedMustBeAlphanumeric"> |
@@ -2567,8 +2652,8 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2567 | </alert> | 2652 | </alert> |
2568 | <alert name="CantSetBuyObject"> | 2653 | <alert name="CantSetBuyObject"> |
2569 | <message name="message"> | 2654 | <message name="message"> |
2570 | ν΄λΉ μμ΄ν μ΄ λ§€λ¬Όμ΄ μλκΈ° λλ¬Έμ μμ΄ν ꡬ맀λ₯Ό μ€μ ν μ μμ΅λλ€. | 2655 | μ€λΈμ νΈκ° λ§€λ¬Όμ΄ μλλ―λ‘ μ€λΈμ νΈ κ΅¬λ§€λ₯Ό μ€μ ν μ μμ΅λλ€. |
2571 | ν΄λΉ μμ΄ν μ λν΄ λ§€λ¬Ό μ€μ μ ν ν λ€μ μλν΄ μ£Όμμμ€. | 2656 | μ€λΈμ νΈλ₯Ό λ§€λ¬Όλ‘ μ€μ ν ν λ€μ μλν΄ μ£Όμμμ€. |
2572 | </message> | 2657 | </message> |
2573 | </alert> | 2658 | </alert> |
2574 | <alert name="FinishedRawDownload"> | 2659 | <alert name="FinishedRawDownload"> |
@@ -2582,21 +2667,21 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2582 | [SECOND_LIFE] μ λ²μ μ΄ μΆμλμμ΅λλ€. | 2667 | [SECOND_LIFE] μ λ²μ μ΄ μΆμλμμ΅λλ€. |
2583 | [MESSAGE] | 2668 | [MESSAGE] |
2584 | 2669 | ||
2585 | μμ€ν μ μ¬μ©νλ €λ©΄ μ΄ μ λ°μ΄νΈλ₯Ό λ€μ΄λ‘λνμ μΌ ν©λλ€. | 2670 | μμ€ν μ μ¬μ©νλ €λ©΄ μ΄ μ λ°μ΄νΈλ₯Ό λ€μ΄λ‘λν΄μΌ ν©λλ€. |
2586 | </message> | 2671 | </message> |
2587 | <option name="Download"> | 2672 | <option name="Download"> |
2588 | λ€μ΄λ‘λ | 2673 | λ€μ΄λ‘λ |
2589 | </option> | 2674 | </option> |
2590 | <option name="Quit"> | 2675 | <option name="Quit"> |
2591 | λλ΄κΈ° | 2676 | μ’ λ£ |
2592 | </option> | 2677 | </option> |
2593 | </alert> | 2678 | </alert> |
2594 | <alert name="DownloadWindows"> | 2679 | <alert name="DownloadWindows"> |
2595 | <message name="message"> | 2680 | <message name="message"> |
2596 | [SECOND_LIFE] μ λ°μ΄νΈ λ²μ μ΄ λμμ΅λλ€. | 2681 | [SECOND_LIFE] μ λ°μ΄νΈ λ²μ μ΄ μΆμλμμ΅λλ€. |
2597 | [MESSAGE] | 2682 | [MESSAGE] |
2598 | 2683 | ||
2599 | λ³Έ μ λ°μ΄νΈλ νμ μ¬νμ μλλ μ±λ₯ λ° μμ μ± ν₯μμ μν΄ μ€μΉλ₯Ό κΆμ₯ν©λλ€.. | 2684 | λ³Έ μ λ°μ΄νΈλ νμ μ¬νμ μλλ μ±λ₯ λ° μμ μ± ν₯μμ μν΄ μ€μΉλ₯Ό κΆμ₯ν©λλ€. |
2600 | </message> | 2685 | </message> |
2601 | <option name="Download"> | 2686 | <option name="Download"> |
2602 | λ€μ΄λ‘λ | 2687 | λ€μ΄λ‘λ |
@@ -2607,10 +2692,10 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2607 | </alert> | 2692 | </alert> |
2608 | <alert name="DownloadWindowsReleaseForDownload"> | 2693 | <alert name="DownloadWindowsReleaseForDownload"> |
2609 | <message name="message"> | 2694 | <message name="message"> |
2610 | [SECOND_LIFE] μ λ°μ΄νΈ λ²μ μ΄ λμμ΅λλ€. | 2695 | [SECOND_LIFE] μ λ°μ΄νΈ λ²μ μ΄ μΆμλμμ΅λλ€. |
2611 | [MESSAGE] | 2696 | [MESSAGE] |
2612 | 2697 | ||
2613 | λ³Έ μ λ°μ΄νΈλ νμ μ¬νμ μλλ μ±λ₯ λ° μμ μ± ν₯μμ μν΄ μ€μΉλ₯Ό κΆμ₯ν©λλ€.. | 2698 | λ³Έ μ λ°μ΄νΈλ νμ μ¬νμ μλλ μ±λ₯ λ° μμ μ± ν₯μμ μν΄ μ€μΉλ₯Ό κΆμ₯ν©λλ€. |
2614 | </message> | 2699 | </message> |
2615 | <option name="Download"> | 2700 | <option name="Download"> |
2616 | λ€μ΄λ‘λ | 2701 | λ€μ΄λ‘λ |
@@ -2623,24 +2708,24 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2623 | <message name="message"> | 2708 | <message name="message"> |
2624 | [SECOND_LIFE] μ λ²μ μ΄ μΆμλμμ΅λλ€. | 2709 | [SECOND_LIFE] μ λ²μ μ΄ μΆμλμμ΅λλ€. |
2625 | [MESSAGE] | 2710 | [MESSAGE] |
2711 | |||
2712 | μμ€ν μ μ¬μ©νλ €λ©΄ μ΄ μ λ°μ΄νΈλ₯Ό λ€μ΄λ‘λν΄μΌ ν©λλ€. | ||
2626 | 2713 | ||
2627 | μμ€ν μ μ¬μ©νλ €λ©΄ μ΄ μ λ°μ΄νΈλ₯Ό λ€μ΄λ‘λνμ μΌ ν©λλ€. | 2714 | Applications ν΄λμ λ€μ΄λ‘λνμκ² μ΅λκΉ? |
2628 | |||
2629 | μ ν리μΌμ΄μ ν΄λμ λ€μ΄λ‘λνμκ² μ΅λκΉ? | ||
2630 | </message> | 2715 | </message> |
2631 | <option name="Download"> | 2716 | <option name="Download"> |
2632 | λ€μ΄λ‘λ | 2717 | λ€μ΄λ‘λ |
2633 | </option> | 2718 | </option> |
2634 | <option name="Quit"> | 2719 | <option name="Quit"> |
2635 | λλ΄κΈ° | 2720 | μ’ λ£ |
2636 | </option> | 2721 | </option> |
2637 | </alert> | 2722 | </alert> |
2638 | <alert name="DownloadMac"> | 2723 | <alert name="DownloadMac"> |
2639 | <message name="message"> | 2724 | <message name="message"> |
2640 | [SECOND_LIFE] μ λ°μ΄νΈ λ²μ μ΄ λμμ΅λλ€. | 2725 | [SECOND_LIFE] μ λ°μ΄νΈ λ²μ μ΄ μΆμλμμ΅λλ€. |
2641 | [MESSAGE] | 2726 | [MESSAGE] |
2642 | 2727 | ||
2643 | λ³Έ μ λ°μ΄νΈλ νμ μ¬νμ μλλ μ±λ₯ λ° μμ μ± ν₯μμ μν΄ μ€μΉλ₯Ό κΆμ₯ν©λλ€.. | 2728 | λ³Έ μ λ°μ΄νΈλ νμ μ¬νμ μλλ μ±λ₯ λ° μμ μ± ν₯μμ μν΄ μ€μΉλ₯Ό κΆμ₯ν©λλ€. |
2644 | 2729 | ||
2645 | μ ν리μΌμ΄μ ν΄λμ λ€μ΄λ‘λνμκ² μ΅λκΉ? | 2730 | μ ν리μΌμ΄μ ν΄λμ λ€μ΄λ‘λνμκ² μ΅λκΉ? |
2646 | </message> | 2731 | </message> |
@@ -2653,10 +2738,10 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2653 | </alert> | 2738 | </alert> |
2654 | <alert name="DownloadMacReleaseForDownload"> | 2739 | <alert name="DownloadMacReleaseForDownload"> |
2655 | <message name="message"> | 2740 | <message name="message"> |
2656 | [SECOND_LIFE] μ λ°μ΄νΈ λ²μ μ΄ λμμ΅λλ€. | 2741 | [SECOND_LIFE] μ λ°μ΄νΈ λ²μ μ΄ μΆμλμμ΅λλ€. |
2657 | [MESSAGE] | 2742 | [MESSAGE] |
2658 | 2743 | ||
2659 | λ³Έ μ λ°μ΄νΈλ νμ μ¬νμ μλλ μ±λ₯ λ° μμ μ± ν₯μμ μν΄ μ€μΉλ₯Ό κΆμ₯ν©λλ€.. | 2744 | λ³Έ μ λ°μ΄νΈλ νμ μ¬νμ μλλ μ±λ₯ λ° μμ μ± ν₯μμ μν΄ μ€μΉλ₯Ό κΆμ₯ν©λλ€. |
2660 | 2745 | ||
2661 | μ ν리μΌμ΄μ ν΄λμ λ€μ΄λ‘λνμκ² μ΅λκΉ? | 2746 | μ ν리μΌμ΄μ ν΄λμ λ€μ΄λ‘λνμκ² μ΅λκΉ? |
2662 | </message> | 2747 | </message> |
@@ -2669,9 +2754,12 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2669 | </alert> | 2754 | </alert> |
2670 | <alert name="DeedObjectToGroup"> | 2755 | <alert name="DeedObjectToGroup"> |
2671 | <message name="message"> | 2756 | <message name="message"> |
2672 | μ΄ μ¬λ¬Όμ μλν κ²½μ°, ν΄λΉ κ·Έλ£Ήμ ν΄λΉ μ¬λ¬Όμ λν΄ | 2757 | μ΄ μ€λΈμ νΈ μλ μ κ·Έλ£Ήμκ² λ°μνλ κ²°κ³Ό: |
2673 | * μ§λΆλ κΈμ‘μ μλ Ήνκ²λ©λλ€ | 2758 | * μ€λΈμ νΈμ λν μ§λΆκΈμ μλ Ήν¨ |
2674 | </message> | 2759 | </message> |
2760 | <ignore name="ignore"> | ||
2761 | μ€λΈμ νΈλ₯Ό κ·Έλ£ΉμΌλ‘ μλν λ | ||
2762 | </ignore> | ||
2675 | <option name="Deed"> | 2763 | <option name="Deed"> |
2676 | μλ | 2764 | μλ |
2677 | </option> | 2765 | </option> |
@@ -2681,16 +2769,19 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2681 | </alert> | 2769 | </alert> |
2682 | <alert name="AddClassified"> | 2770 | <alert name="AddClassified"> |
2683 | <message name="message"> | 2771 | <message name="message"> |
2684 | κ΄κ³ λ μ°ΎκΈ° λͺ©λ‘μ 'κ΄κ³ ' | 2772 | κ΄κ³ κ° 1μ£ΌμΌ λμ μ°ΎκΈ° λλ ν 리μ 'κ΄κ³ ' μΉμ μ |
2685 | μΉμ μ 1μ£Όκ° κ²μ¬λ©λλ€. | 2773 | λνλ©λλ€. |
2686 | 2774 | ||
2687 | κ΄κ³ λ₯Ό μμ±ν ν 'κ²μ...'λ₯Ό ν΄λ¦νλ©΄ | 2775 | κ΄κ³ λ₯Ό μμ±ν ν 'κ²μνκΈ°...'λ₯Ό ν΄λ¦νμ¬ λλ ν 리μ |
2688 | λͺ©λ‘μ μΆκ°λ©λλ€. | 2776 | μΆκ°ν©λλ€. |
2689 | 2777 | ||
2690 | κ²μλ₯Ό ν΄λ¦νλ©΄ κ°μ μ§λΆν κ²μΈμ§ λ¬Όμ΄λ΄ λλ€. | 2778 | κ²μνκΈ°λ₯Ό ν΄λ¦νλ©΄ μ§λΆν κ°κ²©μ 묻λ λ©μμ§κ° λνλ©λλ€. |
2691 | λ λμ κ°κ²©μ μ§λΆν μλ‘ λ λμ μμΉμ κ²μ¬λκ³ | 2779 | λμ κ°κ²©μ μ§λΆ ν μλ‘ κ΄κ³ κ° λͺ©λ‘μμ λ λμ μμΉμ κ²μλκ³ |
2692 | ν€μλ κ²μμ κ²°κ³Όμ λ μ°μ μ μΌλ‘ νμλ©λλ€. | 2780 | ν€μλ κ²μ κ²°κ³Όμμ λ μ°μ μ μΌλ‘ νμλ©λλ€. |
2693 | </message> | 2781 | </message> |
2782 | <ignore name="ignore"> | ||
2783 | μ κ΄κ³ λ₯Ό μΆκ°ν λ | ||
2784 | </ignore> | ||
2694 | <option name="OK"> | 2785 | <option name="OK"> |
2695 | νμΈ | 2786 | νμΈ |
2696 | </option> | 2787 | </option> |
@@ -2698,57 +2789,70 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2698 | μ·¨μ | 2789 | μ·¨μ |
2699 | </option> | 2790 | </option> |
2700 | </alert> | 2791 | </alert> |
2701 | <alert name="WebLaunchGraphicsDriver"> | 2792 | <alert name="WebLaunchJoinNow"> |
2702 | <message name="message"> | 2793 | <message name="message"> |
2703 | μ΄ μ»΄ν¨ν°μ μ₯μ°©λ [VENDOR_LABLE] [CARD_NAME] κ·Έλν½ λλΌμ΄λ²λ ꡬλ²μ Ό μ λλ€. | 2794 | κ³μ μ κ΄λ¦¬ νκΈ° μν΄www.secondlife.comμΌλ‘ κ°λκΉ? |
2704 | 2795 | </message> | |
2705 | μ΄ λλΌμ΄λ²λ κ·Έλν½ μΉ΄λλ₯Ό μ μ΄νλ μννΈμ¨μ΄μ λλ€. | 2796 | <ignore name="ignore"> |
2706 | ꡬλ²μ Ό λλΌμ΄λ²λ₯Ό μ¬μ©ν κ²½μ° [SECOND_LIFE]κ³Ό(μ) κ°μ 3D κ·Έλν½ νλ‘κ·Έλ¨μ μ€ν μλκ° λ¨μ΄μ§κ±°λ μμλ μ μμ΅λλ€. | 2797 | κ³μ μ κ΄λ¦¬νκΈ° μν΄ μΉ λΈλΌμ°μ λ₯Ό μμν λ |
2707 | 2798 | </ignore> | |
2708 | [VENDOR_LABLE]μμ 무λ£λ‘ λ€μ΄λ‘λλ°μΌμ€ μ μλ [DRIVER_NAME] λλΌμ΄λ²λ‘ μ κ·Έλ μ΄λνμ€ κ²μ κΆμ₯ν©λλ€. | 2799 | <option name="OK"> |
2709 | 2800 | νμΈ | |
2710 | [SECOND_LIFE] λλΌμ΄λ² μΉνμ΄μ§λ‘ μ΄λ νμκ² μ΅λκΉ?" | 2801 | </option> |
2802 | <option name="Cancel"> | ||
2803 | μ·¨μ | ||
2804 | </option> | ||
2805 | </alert> | ||
2806 | <alert name="WebLaunchBugReport101"> | ||
2807 | <message name="message"> | ||
2808 | μΈμ»¨λλΌμ΄ν μν€μμ λ²κ·Έμ κ³ μ λν΄ λ³΄κΈ° | ||
2711 | </message> | 2809 | </message> |
2810 | <ignore name="ignore"> | ||
2811 | λ²κ·Έμ κ³ 101 μν€λ₯Ό μΉ λΈλΌμ°μ μμ λ³Όλ | ||
2812 | </ignore> | ||
2712 | <option name="Gotopage"> | 2813 | <option name="Gotopage"> |
2713 | νμ΄μ§λ‘ μ΄λ | 2814 | νμΈ |
2714 | </option> | 2815 | </option> |
2715 | <option name="Cancel"> | 2816 | <option name="Cancel"> |
2716 | μ·¨μ | 2817 | μ·¨μ |
2717 | </option> | 2818 | </option> |
2718 | </alert> | 2819 | </alert> |
2719 | <alert name="WebLaunchGraphicsDriverIntelExtreme"> | 2820 | <alert name="WebLaunchSecurityIssues"> |
2720 | <message name="message"> | 2821 | <message name="message"> |
2721 | μ΄ μ»΄ν¨ν°μ μ₯μ°©λ μΈν μ΅μ€νΈλ¦Ό κ·Έλν½ λλΌμ΄λ²λ μ€λλ κ²μ λλ€. | 2822 | μΈμ»¨λλΌμ΄ν μν€μμ 보μ κ΄λ ¨ μ κ³ μ λν΄ λ³΄κΈ° |
2722 | |||
2723 | μ΄ λλΌμ΄λ²λ κ·Έλν½ μΉ΄λλ₯Ό μ μ΄νλ μννΈμ¨μ΄μ λλ€. | ||
2724 | μ€λλ λλΌμ΄λ²λ₯Ό μ¬μ©ν κ²½μ° [SECOND_LIFE]κ³Ό(μ) κ°μ 3D κ·Έλν½ νλ‘κ·Έλ¨μ μ€ν μλκ° λ¨μ΄μ§κ±°λ μμλ μ μμ΅λλ€. | ||
2725 | |||
2726 | μΈν μμ 무λ£λ‘ λ€μ΄λ‘λλ°μΌμ€ μ μλ μ΅μ λλΌμ΄λ²λ‘ μ κ·Έλ μ΄λνμ€ κ²μ κ°λ ₯ν κΆμ₯ν©λλ€. | ||
2727 | |||
2728 | [SECOND_LIFE] λλΌμ΄λ² μΉνμ΄μ§λ‘ μ΄λνμκ² μ΅λκΉ? | ||
2729 | </message> | 2823 | </message> |
2824 | <ignore name="ignore"> | ||
2825 | 보μ κ΄λ ¨ μν€λ₯Ό μΉ λΈλΌμ°μ μμ λ³Όλ | ||
2826 | </ignore> | ||
2730 | <option name="Gotopage"> | 2827 | <option name="Gotopage"> |
2731 | νμ΄μ§λ‘ μ΄λ | 2828 | νμΈ |
2732 | </option> | 2829 | </option> |
2733 | <option name="Cancel"> | 2830 | <option name="Cancel"> |
2734 | μ·¨μ | 2831 | μ·¨μ |
2735 | </option> | 2832 | </option> |
2736 | </alert> | 2833 | </alert> |
2737 | <alert name="RunningInPCI"> | 2834 | <alert name="WebLaunchPublicIssue"> |
2738 | <message name="message"> | 2835 | <message name="message"> |
2739 | GLμ μ΄ μμ€ν μμ κ·Έλν½ λλΌμ΄λ²κ° μλκ° λλ¦° κ·Έλν½ μμ± | 2836 | μ΄μ νΈλμμ λ²κ·Έ λ° λ³΄μ κ΄λ ¨ μ κ³ λ³΄κΈ° |
2740 | λ°©μμΈ PCI λͺ¨λλ‘ μλνκ³ μλ€κ³ λνλ΄κ³ μμ΅λλ€. PCI λΉλμ€ μΉ΄λλ₯Ό μ¬μ©νκ³ κ³μ κ²½μ° | ||
2741 | μ΄ λ©μμ§λ 무μνμμμ€. AGP λΉλμ€ μΉ΄λλ₯Ό μ¬μ©νκ³ κ³μ κ²½μ°, λ§λ보λ λλΌμ΄λΈλ₯Ό | ||
2742 | μ λ°μ΄νΈνμ μΌ μ΄ νλ‘κ·Έλ¨ λΏ μλλΌ λ€λ₯Έ 3D μμ© νλ‘κ·Έλ¨μ μ±λ₯μ | ||
2743 | ν₯μμν€μ€ μ μμ΅λλ€. PCI Express κ·Έλν½ μΉ΄λλ₯Ό μ¬μ©νκ³ κ³μ κ²½μ° | ||
2744 | [SECOND_LIFE]μ νκ²½ μ€μ μΌλ‘ κ°μ μ μ΅μ μμ AGP κ·Έλν½ κ°μ(AGP Graphics Acceleration)μ μ ννμ€ μ μμ΅λλ€. | ||
2745 | </message> | 2837 | </message> |
2838 | <ignore name="ignore"> | ||
2839 | μ΄μ νΈλμ μΉ λΈλΌμ°μ μμ λ³Όλ | ||
2840 | </ignore> | ||
2841 | <option name="Gotopage"> | ||
2842 | νμΈ | ||
2843 | </option> | ||
2844 | <option name="Cancel"> | ||
2845 | μ·¨μ | ||
2846 | </option> | ||
2746 | </alert> | 2847 | </alert> |
2747 | <alert name="WebLaunchJoinNow"> | 2848 | <alert name="WebLaunchPublicIssueHelp"> |
2748 | <message name="message"> | 2849 | <message name="message"> |
2749 | www.secondlife.comμΌλ‘ μ΄λν΄ κ³μ μ κ΄λ¦¬νμκ² μ΅λκΉ? | 2850 | μΈμ»¨λλΌμ΄ν μν€μμ μ΄μ νΈλμ λν΄ λ³΄κΈ° |
2750 | </message> | 2851 | </message> |
2751 | <option name="OK"> | 2852 | <ignore name="ignore"> |
2853 | μ΄μ νΈλ κ΄λ ¨ μν€λ₯Ό μΉ λΈλΌμ°μ μμ λ³Όλ | ||
2854 | </ignore> | ||
2855 | <option name="Gotopage"> | ||
2752 | νμΈ | 2856 | νμΈ |
2753 | </option> | 2857 | </option> |
2754 | <option name="Cancel"> | 2858 | <option name="Cancel"> |
@@ -2757,8 +2861,25 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2757 | </alert> | 2861 | </alert> |
2758 | <alert name="WebLaunchForums"> | 2862 | <alert name="WebLaunchForums"> |
2759 | <message name="message"> | 2863 | <message name="message"> |
2760 | μ΅μ ν λ° νΈλ¦μ [SECOND_LIFE] κΈ°μ μλ£λ₯Ό κ²μν©λλ€. | 2864 | μ΅μ ν λ° νΈλ¦μ [SECOND_LIFE] μ§μ μ°½κ³ λ₯Ό κ²μν©λλ€. |
2865 | </message> | ||
2866 | <ignore name="ignore"> | ||
2867 | μ§μμ°½κ³ λ₯Ό λ³΄λ €κ³ μΉ λΈλΌμ°μ λ₯Ό μμν λ | ||
2868 | </ignore> | ||
2869 | <option name="Gotopage"> | ||
2870 | νμ΄μ§λ‘ μ΄λ | ||
2871 | </option> | ||
2872 | <option name="Cancel"> | ||
2873 | μ·¨μ | ||
2874 | </option> | ||
2875 | </alert> | ||
2876 | <alert name="WebLaunchSupport"> | ||
2877 | <message name="message"> | ||
2878 | [SECOND_LIFE] κ³ κ°μ§μμ λ¬Έμ νμμμ€. | ||
2761 | </message> | 2879 | </message> |
2880 | <ignore name="ignore"> | ||
2881 | μ§μ μμ²νκΈ° μν΄ μΉ λΈλΌμ°μ λ₯Ό μμν λ | ||
2882 | </ignore> | ||
2762 | <option name="Gotopage"> | 2883 | <option name="Gotopage"> |
2763 | νμ΄μ§λ‘ μ΄λ | 2884 | νμ΄μ§λ‘ μ΄λ |
2764 | </option> | 2885 | </option> |
@@ -2770,6 +2891,9 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2770 | <message name="message"> | 2891 | <message name="message"> |
2771 | 곡μ λ¦°λ λΈλ‘κ·Έμμ μ΅μ λ΄μ€ λ° μ 보λ₯Ό νμΈνμμμ€. | 2892 | 곡μ λ¦°λ λΈλ‘κ·Έμμ μ΅μ λ΄μ€ λ° μ 보λ₯Ό νμΈνμμμ€. |
2772 | </message> | 2893 | </message> |
2894 | <ignore name="ignore"> | ||
2895 | λΈλ‘κ·Έλ₯Ό λ³΄λ €κ³ μΉ λΈλΌμ°μ λ₯Ό μμν λ | ||
2896 | </ignore> | ||
2773 | <option name="Gotopage"> | 2897 | <option name="Gotopage"> |
2774 | νμ΄μ§λ‘ μ΄λ | 2898 | νμ΄μ§λ‘ μ΄λ |
2775 | </option> | 2899 | </option> |
@@ -2779,8 +2903,11 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2779 | </alert> | 2903 | </alert> |
2780 | <alert name="WebLaunchLSLGuide"> | 2904 | <alert name="WebLaunchLSLGuide"> |
2781 | <message name="message"> | 2905 | <message name="message"> |
2782 | LSL κ°μ΄λλ‘ μ΄λν΄ μ€ν¬λ¦½ν λμμ μ»μΌμκ² μ΅λκΉ? | 2906 | μ€ν¬λ¦½ν λμλ§μ μν΄ LSL κ°μ΄λλ‘ κ°λκΉ? |
2783 | </message> | 2907 | </message> |
2908 | <ignore name="ignore"> | ||
2909 | LSL κ°μ΄λλ₯Ό λ³΄λ €κ³ μΉ λΈλΌμ°μ λ₯Ό μμν λ | ||
2910 | </ignore> | ||
2784 | <option name="Gotopage"> | 2911 | <option name="Gotopage"> |
2785 | νμ΄μ§λ‘ μ΄λ | 2912 | νμ΄μ§λ‘ μ΄λ |
2786 | </option> | 2913 | </option> |
@@ -2790,8 +2917,11 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2790 | </alert> | 2917 | </alert> |
2791 | <alert name="WebLaunchLSLWiki"> | 2918 | <alert name="WebLaunchLSLWiki"> |
2792 | <message name="message"> | 2919 | <message name="message"> |
2793 | LSL μν€λ‘ μ΄λν΄ μ€ν¬λ¦½ν λμμ μ»μΌμκ² μ΅λκΉ? | 2920 | μ€ν¬λ¦½ν λμλ§μ μν΄ LSL ν¬νλ‘ κ°λκΉ? |
2794 | </message> | 2921 | </message> |
2922 | <ignore name="ignore"> | ||
2923 | LSL ν¬νΈμ λ³΄λ €κ³ μΉ λΈλΌμ°μ λ₯Ό μμν λ | ||
2924 | </ignore> | ||
2795 | <option name="Gotopage"> | 2925 | <option name="Gotopage"> |
2796 | νμ΄μ§λ‘ μ΄λ | 2926 | νμ΄μ§λ‘ μ΄λ |
2797 | </option> | 2927 | </option> |
@@ -2801,8 +2931,11 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2801 | </alert> | 2931 | </alert> |
2802 | <alert name="WebLaunchReleaseNotes"> | 2932 | <alert name="WebLaunchReleaseNotes"> |
2803 | <message name="message"> | 2933 | <message name="message"> |
2804 | [SECOND_LIFE] μΆμ μ 보λ₯Ό 보μκ² μ΅λκΉ?. | 2934 | [SECOND_LIFE] μΆμ μ 보λ₯Ό 보μκ² μ΅λκΉ? |
2805 | </message> | 2935 | </message> |
2936 | <ignore name="ignore"> | ||
2937 | μΆμ μ 보λ₯Ό λ³΄λ €κ³ μΉ λΈλΌμ°μ λ₯Ό μμν λ | ||
2938 | </ignore> | ||
2806 | <option name="Gotopage"> | 2939 | <option name="Gotopage"> |
2807 | νμ΄μ§λ‘ μ΄λ | 2940 | νμ΄μ§λ‘ μ΄λ |
2808 | </option> | 2941 | </option> |
@@ -2812,13 +2945,16 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2812 | </alert> | 2945 | </alert> |
2813 | <alert name="ReturnToOwner"> | 2946 | <alert name="ReturnToOwner"> |
2814 | <message name="message"> | 2947 | <message name="message"> |
2815 | μ λ§ μ΄ ν μ§ κ΅¬νλ΄μ μλ μ νλ | 2948 | μ νν μ€λΈμ νΈλ₯Ό μμ μ£Όμκ² |
2816 | μ¬λ¬Όμ ν΄λΉ μμ μμκ² λ°ννμκ² μ΅λκΉ? μλ κ°λ₯ν μλλ | 2949 | λ°ν νμκ² μ΅λκΉ? μλλ |
2817 | μ¬λ¬Όλ€μ κ°κ° μ΄μ μμ μμκ² λ°νλ©λλ€. | 2950 | μλ κ°λ₯ μ€λΈμ νΈκ° μ΄μ μμ μμκ² λ°νλ©λλ€. |
2818 | (λ°νλλ μΌμ²΄μ μ¬λ¬Όμ κ°κ°μ μ΅μ’ μμ¬ ν΄λλ‘ λ°νλ©λλ€.) | 2951 | (λ°νλλ λͺ¨λ μ€λΈμ νΈλ μ΅μ’ μμ ν΄λλ‘ λ°νλ©λλ€.) |
2819 | 2952 | ||
2820 | *κ²½κ³ * μλλ λΉμλμ± μ¬λ¬Όμ μμ λ©λλ€! | 2953 | *κ²½κ³ * μλλ μλ λΆκ°λ₯ μ€λΈμ νΈλ μμ λ©λλ€. |
2821 | </message> | 2954 | </message> |
2955 | <ignore name="ignore"> | ||
2956 | μ€λΈμ νΈλ₯Ό κ° μμ μ£Όμκ² λ°νν λ | ||
2957 | </ignore> | ||
2822 | <option name="Return"> | 2958 | <option name="Return"> |
2823 | λ°ν | 2959 | λ°ν |
2824 | </option> | 2960 | </option> |
@@ -2828,8 +2964,11 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2828 | </alert> | 2964 | </alert> |
2829 | <alert name="ViewReleaseNotes"> | 2965 | <alert name="ViewReleaseNotes"> |
2830 | <message name="message"> | 2966 | <message name="message"> |
2831 | Second Life μΆμ μ 보λ₯Ό 보μκ² μ΅λκΉ? | 2967 | μΈμ»¨λλΌμ΄ν μΆμ μ 보λ₯Ό 보μκ² μ΅λκΉ? |
2832 | </message> | 2968 | </message> |
2969 | <ignore name="ignore"> | ||
2970 | μΆμ μ 보λ₯Ό λ³Ό λ | ||
2971 | </ignore> | ||
2833 | <option name="Gotopage"> | 2972 | <option name="Gotopage"> |
2834 | νμ΄μ§λ‘ μ΄λ | 2973 | νμ΄μ§λ‘ μ΄λ |
2835 | </option> | 2974 | </option> |
@@ -2839,11 +2978,11 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2839 | </alert> | 2978 | </alert> |
2840 | <alert name="GroupLeaveConfirmOfficer"> | 2979 | <alert name="GroupLeaveConfirmOfficer"> |
2841 | <message name="message"> | 2980 | <message name="message"> |
2842 | κ·νλ νμ¬ κ·Έλ£Ή [κ·Έλ£Ήλͺ ]μ κ°λΆμ λλ€. | 2981 | κ·νκ»μλ νμ¬ κ·Έλ£Ή [GROUP]μ μ΄μμ§μ λλ€. |
2843 | κ·Έλ£Ήμ νν΄νμκ² μ΅λκΉ? | 2982 | κ·Έλ£Ήμμ νν΄νμκ² μ΅λκΉ? |
2844 | </message> | 2983 | </message> |
2845 | <option name="Leave"> | 2984 | <option name="Leave"> |
2846 | λ λκΈ° | 2985 | νν΄ |
2847 | </option> | 2986 | </option> |
2848 | <option name="Cancel"> | 2987 | <option name="Cancel"> |
2849 | μ·¨μ | 2988 | μ·¨μ |
@@ -2851,11 +2990,11 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2851 | </alert> | 2990 | </alert> |
2852 | <alert name="GroupLeaveConfirmMember"> | 2991 | <alert name="GroupLeaveConfirmMember"> |
2853 | <message name="message"> | 2992 | <message name="message"> |
2854 | κ·νλ νμ¬ κ·Έλ£Ή [κ·Έλ£Ήλͺ ]μ λ©€λ²μ λλ€. | 2993 | κ·νκ»μλ νμ¬ κ·Έλ£Ή [GROUP]μ νμμ λλ€. |
2855 | κ·Έλ£Ήμ νν΄νμκ² μ΅λκΉ? | 2994 | κ·Έλ£Ήμμ νν΄νμκ² μ΅λκΉ? |
2856 | </message> | 2995 | </message> |
2857 | <option name="Leave"> | 2996 | <option name="Leave"> |
2858 | λ λκΈ° | 2997 | νν΄ |
2859 | </option> | 2998 | </option> |
2860 | <option name="Cancel"> | 2999 | <option name="Cancel"> |
2861 | μ·¨μ | 3000 | μ·¨μ |
@@ -2863,24 +3002,30 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2863 | </alert> | 3002 | </alert> |
2864 | <alert name="ConfirmKick"> | 3003 | <alert name="ConfirmKick"> |
2865 | <message name="message"> | 3004 | <message name="message"> |
2866 | μ λ§ μ¬μ©μλ€μ λͺ¨λ 그리λμμ μ«μλ΄μκ² μ΅λκΉ? | 3005 | λͺ¨λ μ¬μ©μλ₯Ό 그리λ λ°μΌλ‘ λ΄λ³΄λ΄κ² μ΅λκΉ? |
2867 | </message> | 3006 | </message> |
3007 | <option name="Kick"> | ||
3008 | μΆλ°©νκΈ° | ||
3009 | </option> | ||
3010 | <option name="Cancel"> | ||
3011 | μ·¨μ | ||
3012 | </option> | ||
2868 | </alert> | 3013 | </alert> |
2869 | <alert name="MuteLinden"> | 3014 | <alert name="MuteLinden"> |
2870 | <message name="message"> | 3015 | <message name="message"> |
2871 | μ£μ‘ν©λλ€. λ¦°λ μ μμκ±°νμ€ μ μμ΅λλ€. | 3016 | μ£μ‘ν©λλ€. Lindenμ μμκ±°ν μ μμ΅λλ€. |
2872 | </message> | 3017 | </message> |
2873 | <option name="OK"> | 3018 | <option name="OK"> |
2874 | νμΈ | 3019 | νμΈ |
2875 | </option> | 3020 | </option> |
2876 | </alert> | 3021 | </alert> |
2877 | <alert name="MuteByName" title="μ΄λ¦λ³ μμ΄ν μμκ±°"> | 3022 | <alert name="MuteByName" title="μ°¨λ¨ν μ€λΈμ νΈ"> |
2878 | <message name="message"> | 3023 | <message name="message"> |
2879 | μ΄λ¦λ³ μμκ±°λ μ¬λ¬Ό μ±ν κ³Ό IMμλ§ μν₯μ μ£Όλ©° μ¬μ΄λμλ μν₯μ μ£Όμ§ μμ΅λλ€. | 3024 | μ΄λ¦λ³ μ°¨λ¨μ μ€λΈμ νΈ μ±ν κ³Ό λ©μ μ μλ§ μν₯μ μ£Όλ©° μμκ±°λ νμ§ μμ΅λλ€. |
2880 | μμ΄ν μ μ΄λ¦μ μ ννκ² μ λ ₯ν΄μΌ ν©λλ€. | 3025 | μ€λΈμ νΈμ μ΄λ¦μ μ ννκ² μ λ ₯ν΄μΌ ν©λλ€. |
2881 | </message> | 3026 | </message> |
2882 | <editline> | 3027 | <editline> |
2883 | μμ΄ν μ΄λ¦ | 3028 | μ€λΈμ νΈ μ΄λ¦ |
2884 | </editline> | 3029 | </editline> |
2885 | <option name="OK"> | 3030 | <option name="OK"> |
2886 | νμΈ | 3031 | νμΈ |
@@ -2889,9 +3034,9 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2889 | μ·¨μ | 3034 | μ·¨μ |
2890 | </option> | 3035 | </option> |
2891 | </alert> | 3036 | </alert> |
2892 | <alert name="MuteByNameFailed" title="μ΄λ¦λ³ μμ΄ν μμκ±° μ€ν¨"> | 3037 | <alert name="MuteByNameFailed" title="μ€λΈμ νΈ μ°¨λ¨ μ€ν¨"> |
2893 | <message name="message"> | 3038 | <message name="message"> |
2894 | μ΄ κ²μμ μ΄λ―Έ μμκ±°λμμ΅λλ€. | 3039 | μ΄ μ΄λ¦μ μ΄λ―Έ μμκ±°νμ΅λλ€. |
2895 | </message> | 3040 | </message> |
2896 | <option name="OK"> | 3041 | <option name="OK"> |
2897 | νμΈ | 3042 | νμΈ |
@@ -2899,8 +3044,8 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2899 | </alert> | 3044 | </alert> |
2900 | <alert name="RemoveItemWarn"> | 3045 | <alert name="RemoveItemWarn"> |
2901 | <message name="message"> | 3046 | <message name="message"> |
2902 | νμ©λκΈ΄ νμΌλ, μ μ₯λ¬Όμ μμ ν κ²½μ° | 3047 | νμ©λ κ²½μ° μΈλ²€ν 리λ₯Ό μμ νλ©΄ μ€λΈμ νΈκ° μμλ μ |
2903 | μ¬λ¬Όμ΄ μμλ μ μμ΅λλ€. μ μ₯λ¬Όμ μμ νμκ² μ΅λκΉ? | 3048 | μμ΅λλ€. μμ΄ν μ μμ νμκ² μ΅λκΉ? |
2904 | </message> | 3049 | </message> |
2905 | <option name="Yes"> | 3050 | <option name="Yes"> |
2906 | μ | 3051 | μ |
@@ -2911,7 +3056,7 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2911 | </alert> | 3056 | </alert> |
2912 | <alert name="CantRateOwnedByGroup"> | 3057 | <alert name="CantRateOwnedByGroup"> |
2913 | <message name="message"> | 3058 | <message name="message"> |
2914 | μ΄ μ¬λ¬Όμ μμ μλ₯Ό νκ°ν μ μμ΅λλ€. μ¬λ¬Όμ μμ μκ° κ·Έλ£Ήμ λλ€. | 3059 | μ΄ μ€λΈμ νΈμ μμ μ£Όλ₯Ό νκ°ν μ μμ΅λλ€. μ€λΈμ νΈκ° κ·Έλ£Ή μμ μ λλ€. |
2915 | </message> | 3060 | </message> |
2916 | <option name="OK"> | 3061 | <option name="OK"> |
2917 | νμΈ | 3062 | νμΈ |
@@ -2919,7 +3064,7 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2919 | </alert> | 3064 | </alert> |
2920 | <alert name="CantOfferCallingCard"> | 3065 | <alert name="CantOfferCallingCard"> |
2921 | <message name="message"> | 3066 | <message name="message"> |
2922 | νμ¬ μ ν μΉ΄λλ₯Ό μ 곡ν μ μμ΅λλ€. μ μ ν λ€μ μλν΄ μ£Όμμμ€. | 3067 | μ§κΈμ νλ‘νμ μ 곡ν μ μμ΅λλ€. μ μ νμ λ€μ μλν΄ μ£Όμμμ€. |
2923 | </message> | 3068 | </message> |
2924 | <option name="OK"> | 3069 | <option name="OK"> |
2925 | νμΈ | 3070 | νμΈ |
@@ -2927,7 +3072,7 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2927 | </alert> | 3072 | </alert> |
2928 | <alert name="CantOfferFriendship"> | 3073 | <alert name="CantOfferFriendship"> |
2929 | <message name="message"> | 3074 | <message name="message"> |
2930 | νμ¬ μ°μ μ μ 곡ν μ μμ΅λλ€. μ μ ν λ€μ μλν΄ μ£Όμμμ€. | 3075 | μ§κΈμ μ°μ μ μ 곡ν μ μμ΅λλ€. μ μ νμ λ€μ μλν΄ μ£Όμμμ€. |
2931 | </message> | 3076 | </message> |
2932 | <option name="OK"> | 3077 | <option name="OK"> |
2933 | νμΈ | 3078 | νμΈ |
@@ -2935,8 +3080,8 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2935 | </alert> | 3080 | </alert> |
2936 | <alert name="CantSetHome"> | 3081 | <alert name="CantSetHome"> |
2937 | <message name="message"> | 3082 | <message name="message"> |
2938 | μ΄κ³³μ μ§μΌλ‘ μ€μ ν μ μμ΅λλ€. | 3083 | μ΄ κ³³μ νμΌλ‘ μ€μ ν μ μμ΅λλ€. |
2939 | μ§μ κ·ν λ³ΈμΈ λλ κ·ν μμ κ·Έλ£Ήμ μμ ν μ§μμ μμΉν΄μΌ ν©λλ€. | 3084 | νμ κ·νλ κ·νμ κ·Έλ£Ήμ΄ μμ ν ν μ§μ μμ΄μΌ ν©λλ€. |
2940 | </message> | 3085 | </message> |
2941 | <option name="OK"> | 3086 | <option name="OK"> |
2942 | νμΈ | 3087 | νμΈ |
@@ -2944,18 +3089,20 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2944 | </alert> | 3089 | </alert> |
2945 | <alert name="BusyModeSet"> | 3090 | <alert name="BusyModeSet"> |
2946 | <message name="message"> | 3091 | <message name="message"> |
2947 | λ€λ₯Έ μ©λ¬΄ μ€ λͺ¨λ μ€μ | 3092 | λ€λ₯Έ μ©λ¬΄ μ€ λͺ¨λκ° μ€μ λμμ΅λλ€. |
2948 | μ±ν λ° λ©μ μ λ₯Ό μ¨κΉλλ€. λ©μ μ | 3093 | μ±ν λ° λ©μ μ κ° μ¨κ²¨μ§λλ€. λ©μ μ λ₯Ό |
2949 | λ©μμ§λ λ€λ₯Έ μ©λ¬΄ μ€ μλ΅μ λ°κ²λ©λλ€. λͺ¨λ ν 리ν¬νΈ | 3094 | λ°μΌλ©΄ κ·νμ λ€λ₯Έ μ©λ¬΄ μ€ μλ΅μ΄ λ΅λ³ λ©λλ€. λͺ¨λ ν 리ν¬νΈ λ° μμ΄ν μ κ³΅μ΄ κ±°λΆλ©λλ€. |
2950 | λ° μ μ₯κ³ μ μμ κ±°μ λ©λλ€. | ||
2951 | </message> | 3095 | </message> |
3096 | <ignore name="ignore"> | ||
3097 | λΆμ¬μ€ λͺ¨λλ₯Ό μ€μ ν λ | ||
3098 | </ignore> | ||
2952 | <option name="OK"> | 3099 | <option name="OK"> |
2953 | νμΈ | 3100 | νμΈ |
2954 | </option> | 3101 | </option> |
2955 | </alert> | 3102 | </alert> |
2956 | <alert name="NoPVPDetected"> | 3103 | <alert name="NoPVPDetected"> |
2957 | <message name="message"> | 3104 | <message name="message"> |
2958 | νλ μ΄μ΄λ νλ μ΄μ΄(PvP) μ μ©μ΄ κ°μ§λμ§ μμμ΅λλ€ | 3105 | player vs. player (PvP) μ μ©μ΄ νμ§λμ§ μμ |
2959 | </message> | 3106 | </message> |
2960 | <option name="OK"> | 3107 | <option name="OK"> |
2961 | νμΈ | 3108 | νμΈ |
@@ -2963,8 +3110,8 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2963 | </alert> | 3110 | </alert> |
2964 | <alert name="NotecardAttachPermFail"> | 3111 | <alert name="NotecardAttachPermFail"> |
2965 | <message name="message"> | 3112 | <message name="message"> |
2966 | λ ΈνΈμΉ΄λμλ μ νμ΄ μλ 'λ€μ μμ μ£Ό' κΆνμ κ°λ | 3113 | μ νμ΄ μλ βλ€μ μμ μβ κΆν λ΄μ ν μμ΄ν λ§μ΄ |
2967 | μμ΄ν λ§ μ²¨λΆλ μ μμ΅λλ€. | 3114 | λ ΈνΈμΉ΄λμ 첨λΆλ μ μμ΅λλ€. |
2968 | </message> | 3115 | </message> |
2969 | <option name="OK"> | 3116 | <option name="OK"> |
2970 | νμΈ | 3117 | νμΈ |
@@ -2972,44 +3119,52 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
2972 | </alert> | 3119 | </alert> |
2973 | <alert name="JoinedTooManyGroupsMember"> | 3120 | <alert name="JoinedTooManyGroupsMember"> |
2974 | <message name="message"> | 3121 | <message name="message"> |
2975 | μ΄λ―Έ λ무 λ§μ κ·Έλ£Ήμ κ°μ νμκΈ° λλ¬Έμ λ μ΄μ | 3122 | κ·νκ»μλ λ무 λ§μ κ·Έλ£Ήμ |
2976 | κ·Έλ£Ήμ κ°μ ν μ μμ΅λλ€. μ΄ κ·Έλ£Ήμ κ°μ νκΈ° μ μ μ΅μ 1κ° κ·Έλ£Ήμ | 3123 | μ€λ³΅ν΄μ κ°μ λμ΄ μμ΅λλ€. μ΄ κ·Έλ£Ήμ κ°μ νκΈ° μ μ μ΅μ |
2977 | νν΄νκ±°λ μ΄ μ μμ κ±°μ νμ μΌ ν©λλ€. | 3124 | νλ μ΄μμ κ·Έλ£Ήμμ νν΄νκ±°λ μ΄ κ·Έλ£Ή κ°μ μ 곡μ μ·¨μ νμμμ€. |
2978 | κ·Έλ£Ήμμ νν΄νλ €λ©΄ 'νΈμ§' λ©λ΄μμ | 3125 | κ·Έλ£Ήμμ νν΄νλ €λ©΄ 'νΈμ§' λ©λ΄μμ |
2979 | 'λ΄ κ·Έλ£Ή...' μ΅μ μ μ ννμμμ€. | 3126 | 'λ΄ κ·Έλ£Ή' μ΅μ μ μ ννμμμ€. |
2980 | [μ΄λ¦](μ΄)κ° κ·νλ₯Ό λ©€λ²λ‘ κ°μ μ΄μ²νμ΅λλ€. | 3127 | [NAME]μ΄(κ°) κ·νκ° νμμΌλ‘ κ·Έλ£Ήμ μ°Έμ¬νλλ‘ μ΄λνμ΅λλ€. |
2981 | [μ΄μ²] | 3128 | [INVITE] |
2982 | </message> | 3129 | </message> |
2983 | <option name="Join"> | 3130 | <option name="Join"> |
2984 | μ°Έμ¬ | 3131 | κ°μ |
2985 | </option> | 3132 | </option> |
2986 | <option name="Decline"> | 3133 | <option name="Decline"> |
2987 | κ±°μ | 3134 | κ±°λΆ |
2988 | </option> | 3135 | </option> |
2989 | </alert> | 3136 | </alert> |
2990 | <alert name="JoinedTooManyGroupsOfficer"> | 3137 | <alert name="JoinedTooManyGroupsOfficer"> |
2991 | <message name="message"> | 3138 | <message name="message"> |
2992 | μ΄λ―Έ λ무 λ§μ κ·Έλ£Ήμ κ°μ νμκΈ° λλ¬Έμ λ μ΄μ | 3139 | κ·νκ»μλ λ무 λ§μ κ·Έλ£Ήμ |
2993 | κ·Έλ£Ήμ κ°μ ν μ μμ΅λλ€. μ΄ κ·Έλ£Ήμ κ°μ νκΈ° μ μ μ΅μ 1κ° κ·Έλ£Ήμ | 3140 | μ€λ³΅ν΄μ κ°μ λμ΄ μμ΅λλ€. μ΄ κ·Έλ£Ήμ κ°μ νκΈ° μ μ μ΅μ |
2994 | νν΄νκ±°λ μ΄ μ μμ κ±°μ νμ μΌ ν©λλ€. | 3141 | νλ μ΄μμ κ·Έλ£Ήμμ νν΄νκ±°λ μ΄ κ·Έλ£Ή κ°μ μ 곡μ μ·¨μ νμμμ€. |
2995 | κ·Έλ£Ήμμ νν΄νλ €λ©΄ 'νΈμ§' λ©λ΄μμ | 3142 | κ·Έλ£Ήμμ νν΄νλ €λ©΄ 'νΈμ§' λ©λ΄μμ |
2996 | 'λ΄ κ·Έλ£Ή...' μ΅μ μ μ ννμμμ€. | 3143 | 'λ΄ κ·Έλ£Ή' μ΅μ μ μ ννμμμ€. |
2997 | [μ΄λ¦](μ΄)κ° κ·νλ₯Ό λ©€λ²λ‘ κ°μ μ΄μ²νμ΅λλ€. | 3144 | [NAME]μ΄(κ°) κ·νκ° μ΄μμ§μΌλ‘μ κ·Έλ£Ήμ μ°Έμ¬νλλ‘ μ΄λνμ΅λλ€. |
2998 | [μ΄μ²] | 3145 | [INVITE] |
2999 | </message> | 3146 | </message> |
3000 | <option name="Join"> | 3147 | <option name="Join"> |
3001 | μ°Έμ¬ | 3148 | κ°μ |
3002 | </option> | 3149 | </option> |
3003 | <option name="Decline"> | 3150 | <option name="Decline"> |
3004 | κ±°μ | 3151 | κ±°λΆ |
3152 | </option> | ||
3153 | </alert> | ||
3154 | <alert name="HandleRateOwner"> | ||
3155 | <message name="message"> | ||
3156 | μ΄ μ€λΈμ νΈμ μμ μ£Όλ₯Ό νκ°ν μ μμ΅λλ€. μ€λΈμ νΈκ° κ·Έλ£Ή μμ μ λλ€. | ||
3157 | </message> | ||
3158 | <option name="OK"> | ||
3159 | νμΈ | ||
3005 | </option> | 3160 | </option> |
3006 | </alert> | 3161 | </alert> |
3007 | <alert name="KickUser"> | 3162 | <alert name="KickUser"> |
3008 | <message name="message"> | 3163 | <message name="message"> |
3009 | μ΄ μ¬μ©μλ₯Ό μ΄λ€ λ©μμ§λ‘ μ«μλ΄μκ² μ΅λκΉ? | 3164 | μ΄λ€ λ©μμ§λ‘ μ΄ μ¬μ©μλ₯Ό μΆλ°©ν©λκΉ? |
3010 | </message> | 3165 | </message> |
3011 | <editline> | 3166 | <editline> |
3012 | κ΄λ¦¬μκ° λμ λ‘κ·Έ μμνμμ΅λλ€. | 3167 | κ΄λ¦¬μμ μν΄ λ‘κ·Έμ€νλμμ΅λλ€. |
3013 | </editline> | 3168 | </editline> |
3014 | <option name="OK"> | 3169 | <option name="OK"> |
3015 | νμΈ | 3170 | νμΈ |
@@ -3020,10 +3175,10 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
3020 | </alert> | 3175 | </alert> |
3021 | <alert name="KickAllUsers"> | 3176 | <alert name="KickAllUsers"> |
3022 | <message name="message"> | 3177 | <message name="message"> |
3023 | νμ¬ κ·Έλ¦¬λμμ μλ λͺ¨λ μ¬λμ μ΄λ€ λ©μμ§λ‘ μ«μλ΄μκ² μ΅λκΉ? | 3178 | 그리λμ μ§κΈ λ©μμ§κ° μλ λͺ¨λ μ¬λλ€μ μΆλ°©ν©λκΉ? |
3024 | </message> | 3179 | </message> |
3025 | <editline> | 3180 | <editline> |
3026 | κ΄λ¦¬μκ° λμ λ‘κ·Έ μμνμμ΅λλ€. | 3181 | κ΄λ¦¬μμ μν΄ λ‘κ·Έμ€νλμμ΅λλ€. |
3027 | </editline> | 3182 | </editline> |
3028 | <option name="OK"> | 3183 | <option name="OK"> |
3029 | νμΈ | 3184 | νμΈ |
@@ -3034,10 +3189,10 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
3034 | </alert> | 3189 | </alert> |
3035 | <alert name="FreezeUser"> | 3190 | <alert name="FreezeUser"> |
3036 | <message name="message"> | 3191 | <message name="message"> |
3037 | μ΄ μ¬μ©μλ₯Ό μ΄λ€ λ©μμ§λ‘ λκ²°νμκ² μ΅λκΉ? | 3192 | μ΄λ€ λ©μμ§λ‘ μ΄ μ¬μ©μλ₯Ό λκ²° μν΅λκΉ? |
3038 | </message> | 3193 | </message> |
3039 | <editline> | 3194 | <editline> |
3040 | λκ²° μνκ° λμμ΅λλ€. μμ§μ΄κ±°λ μ±ν νμ€ μ μμ΅λλ€. κ΄λ¦¬μκ° λ©μ μ λ₯Ό ν΅ν΄ μ°λ½λ릴 κ²μ λλ€. | 3195 | κ·νλ μ μ§λ μνμ΄λ―λ‘ μ΄λνκ±°λ λνλ₯Ό λλ μ μμ΅λλ€. κ΄λ¦¬μκ° λ©μ μ λ₯Ό ν΅ν΄ μ°λ½μ μ·¨ν κ²μ λλ€. |
3041 | </editline> | 3196 | </editline> |
3042 | <option name="OK"> | 3197 | <option name="OK"> |
3043 | νμΈ | 3198 | νμΈ |
@@ -3048,10 +3203,10 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
3048 | </alert> | 3203 | </alert> |
3049 | <alert name="UnFreezeUser"> | 3204 | <alert name="UnFreezeUser"> |
3050 | <message name="message"> | 3205 | <message name="message"> |
3051 | μ΄ μ¬μ©μλ₯Ό μ΄λ€ λ©μμ§λ‘ λκ²° ν΄μ νμκ² μ΅λκΉ? | 3206 | μ΄λ€ λ©μμ§λ₯Ό μ¬μ©νμ¬ μ΄ μ¬μ©μμ λκ²° μνλ₯Ό ν΄μ νμκ² μ΅λκΉ? |
3052 | </message> | 3207 | </message> |
3053 | <editline> | 3208 | <editline> |
3054 | λκ²° μνκ° ν΄μ λμμ΅λλ€. | 3209 | λ μ΄μ μ μ§ λͺ¨λμ μμ§ μμ΅λλ€. |
3055 | </editline> | 3210 | </editline> |
3056 | <option name="OK"> | 3211 | <option name="OK"> |
3057 | νμΈ | 3212 | νμΈ |
@@ -3062,7 +3217,7 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
3062 | </alert> | 3217 | </alert> |
3063 | <alert name="ExpungeUser"> | 3218 | <alert name="ExpungeUser"> |
3064 | <message name="message"> | 3219 | <message name="message"> |
3065 | μΆμΆνκ³ μ νλ μ¬μ©μμ μμ΄μ νΈ IDλ₯Ό μ λ ₯νμμμ€. | 3220 | μμ ν μ¬μ©μμ μμ΄μ νΈ IDλ₯Ό μ λ ₯νμμμ€. |
3066 | </message> | 3221 | </message> |
3067 | <option name="OK"> | 3222 | <option name="OK"> |
3068 | νμΈ | 3223 | νμΈ |
@@ -3073,10 +3228,10 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
3073 | </alert> | 3228 | </alert> |
3074 | <alert name="OfferTeleport"> | 3229 | <alert name="OfferTeleport"> |
3075 | <message name="message"> | 3230 | <message name="message"> |
3076 | λ€μ λ©μμ§μ ν¨κ» κ·νμ μμΉλ‘ ν 리ν¬νΈλ₯Ό μ 곡νμκ² μ΅λκΉ? | 3231 | λ€μ λ©μμ§κ° μλ λ΄ μμΉλ‘ ν λ ν¬ν μ μ 곡ν©λκΉ? |
3077 | </message> | 3232 | </message> |
3078 | <editline> | 3233 | <editline> |
3079 | [μ§μλͺ ]μ λ€μ΄κ°κ² μ΅λλ€ | 3234 | [REGION]μ κ°μ νκΈ° |
3080 | </editline> | 3235 | </editline> |
3081 | <option name="OK"> | 3236 | <option name="OK"> |
3082 | νμΈ | 3237 | νμΈ |
@@ -3087,10 +3242,10 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
3087 | </alert> | 3242 | </alert> |
3088 | <alert name="OfferTeleportFromGod"> | 3243 | <alert name="OfferTeleportFromGod"> |
3089 | <message name="message"> | 3244 | <message name="message"> |
3090 | μ¬μ©μλ₯Ό κ·νμ μμΉλ‘ μννμκ² μ΅λκΉ? | 3245 | μ¬μ©μλ₯Ό κ·νμ μμΉλ‘ λΆλ¬μ΅λκΉ? |
3091 | </message> | 3246 | </message> |
3092 | <editline> | 3247 | <editline> |
3093 | [μ§μλͺ ]μ λ€μ΄κ°κ² μ΅λλ€ | 3248 | [REGION]μ κ°μ νκΈ° |
3094 | </editline> | 3249 | </editline> |
3095 | <option name="OK"> | 3250 | <option name="OK"> |
3096 | νμΈ | 3251 | νμΈ |
@@ -3099,11 +3254,10 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
3099 | μ·¨μ | 3254 | μ·¨μ |
3100 | </option> | 3255 | </option> |
3101 | </alert> | 3256 | </alert> |
3102 | <alert name="MessageEstate" | 3257 | <alert name="MessageEstate" title="λ΄ μ¬μ μ§λ΄μ λͺ¨λ μ¬λμκ² μ λ¬"> |
3103 | title="κ·νμ μμ μ§λ΄μ λͺ¨λ μ¬λμκ² μ λ¬"> | ||
3104 | <message name="message"> | 3258 | <message name="message"> |
3105 | νμ¬ μμ μ§λ΄μ μλ λͺ¨λ μ¬λμκ² λ³΄λΌ | 3259 | μ¬μ μ§ λ΄μ λͺ¨λ μ¬λλ€μκ² μ λ¬ν |
3106 | 짧μ μ λ¬λ¬Έμ μ λ ₯νμμμ€. | 3260 | κ°λ΅ν 곡μ§λ₯Ό μ λ ₯ν©λλ€. |
3107 | </message> | 3261 | </message> |
3108 | <option name="OK"> | 3262 | <option name="OK"> |
3109 | νμΈ | 3263 | νμΈ |
@@ -3112,177 +3266,177 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
3112 | μ·¨μ | 3266 | μ·¨μ |
3113 | </option> | 3267 | </option> |
3114 | </alert> | 3268 | </alert> |
3115 | <alert name="ChangeLindenEstate" title="λ¦°λ μμ μ§ λ³κ²½"> | 3269 | <alert name="ChangeLindenEstate" title="λ¦°λ μ¬μ μ§ λ³κ²½"> |
3116 | <message name="message"> | 3270 | <message name="message"> |
3117 | κ·νλ μ§κΈ λ¦°λ μμ μμ μ§(λ³Έν , ν΄ κ·Έλ¦¬λ, μ€λ¦¬μν μ΄μ λ±)λ₯Ό | 3271 | κ·νκ»μλ λ¦°λ μμ μ μ¬μ μ§(λ©μΈλλ, ν΄ κ·Έλ¦¬λ, μ€λ¦¬μν μ΄μ λ±)λ₯Ό |
3118 | λ³κ²½νλ €κ³ ν©λλ€. | 3272 | λ³κ²½νλ €κ³ ν©λλ€. |
3119 | 3273 | ||
3120 | μ¬μ©μ κ²½νμ κ·Όλ³Έμ μΈ μν₯μ λ―ΈμΉ μ μκΈ° λλ¬Έμ μ΄λ | 3274 | μ΄λ κ² νλ©΄ κΈ°λ³Έμ μΌλ‘ μ¬μ©μκ° κ²μμ μ¦κΈ°λ λ° μν₯μ |
3121 | κ·Ήν μνν νλμ λλ€. λ³Έν μμλ μμ²κ°μ μ§μμ΄ λ³κ²½λ κ²μ΄λ©° | 3275 | μ€ μ μμΌλ―λ‘ λ§€μ° μνν©λλ€. λν λ©μΈλλμμ μμ²κ°μ§μ μ§μμ΄ λ³κ²½λκ³ |
3122 | μ€νμ΄μ€μλ²μ νμ»΅(hiccup)μ΄ λ°μν κ²μ λλ€. | 3276 | κ³΅κ° μλ²κ° μΌμμ μΌλ‘ μ€λ¨λ μλ μμ΅λλ€. |
3123 | 3277 | ||
3124 | μ€ννμκ² μ΅λκΉ? | 3278 | κ³μνμκ² μ΅λκΉ? |
3125 | </message> | 3279 | </message> |
3126 | <option name="ChangeEstate"> | 3280 | <option name="ChangeEstate"> |
3127 | μμ μ§ λ³κ²½ | 3281 | μ¬μ μ§ λ³κ²½ |
3128 | </option> | 3282 | </option> |
3129 | <option name="Cancel"> | 3283 | <option name="Cancel"> |
3130 | μ·¨μ | 3284 | μ·¨μ |
3131 | </option> | 3285 | </option> |
3132 | </alert> | 3286 | </alert> |
3133 | <alert name="ChangeLindenAccess" title="λ¦°λ μμ μ§ μ‘μΈμ€ λ³κ²½"> | 3287 | <alert name="ChangeLindenAccess" title="λ¦°λ μ¬μ μ§ μ‘μΈμ€ λ³κ²½"> |
3134 | <message name="message"> | 3288 | <message name="message"> |
3135 | κ·νλ μ§κΈ λ¦°λ μμ μμ μ§(λ³Έν , ν΄ κ·Έλ¦¬λ, μ€λ¦¬μν μ΄μ λ±)μ λν | 3289 | κ·νκ»μλ λ¦°λ μμ μ μ¬μ μ§(λ©μΈλλ, ν΄ κ·Έλ¦¬λ, μ€λ¦¬μν μ΄μ λ±)μ λν |
3136 | μ‘μΈμ€ λͺ©λ‘μ λ³κ²½νλ €κ³ ν©λλ€. | 3290 | μ κ·Ό λͺ©λ‘μ λ³κ²½νλ €κ³ ν©λλ€. |
3137 | 3291 | ||
3138 | μ΄λ μνν νλμ΄λ©° μ¬λ¬Ό/λμ΄ κ·Έλ¦¬λ μ/λ°μΌλ‘ μ μ‘λλλ‘ | 3292 | μ΄λ μνν μμ μ΄λ©° μ€λΈμ νΈ/κΈμ‘μ 그리λμμ μ‘μμ ν μ μλλ‘ |
3139 | ν΅μ νΈμΆν κ²½μ°μλ§ | 3293 | ν΅μ λΆλ¬λ΄λ κ²½μ°μλ§ μνν μ |
3140 | μ¬μ©ν΄μΌ ν©λλ€. | 3294 | μμ΅λλ€. |
3141 | 3295 | ||
3142 | μμ²κ°μ μ§μμ΄ λ³κ²½λκ³ , μ€νμ΄μ€μλ²μ | 3296 | μ΄λ κ² νλ©΄ μμ²κ°μ§μ μ§μμ΄ λ³κ²½λκ³ |
3143 | νμ»΅(hiccup)μ΄ λ°μν κ²μ λλ€. | 3297 | κ³΅κ° μλ²κ° μΌμμ μΌλ‘ μ€λ¨λ μλ μμ΅λλ€. |
3144 | 3298 | ||
3145 | μ€ννμκ² μ΅λκΉ? | 3299 | κ³μνμκ² μ΅λκΉ? |
3146 | </message> | 3300 | </message> |
3147 | <option name="ChangeEstate"> | 3301 | <option name="ChangeEstate"> |
3148 | μμ μ§ λ³κ²½ | 3302 | μ¬μ μ§ λ³κ²½ |
3149 | </option> | 3303 | </option> |
3150 | <option name="Cancel"> | 3304 | <option name="Cancel"> |
3151 | μ·¨μ | 3305 | μ·¨μ |
3152 | </option> | 3306 | </option> |
3153 | </alert> | 3307 | </alert> |
3154 | <alert name="EstateAllowedAgentAdd" title="μμ μ§ μ ν"> | 3308 | <alert name="EstateAllowedAgentAdd" title="μ¬μ μ§ μ ν"> |
3155 | <message name="message"> | 3309 | <message name="message"> |
3156 | [ALL_ESTATES]μ λν΄, μλλ©΄ μ΄ μμ μ§μ λν΄μλ§ νμ© λͺ©λ‘μ μΆκ°νμκ² μ΅λκΉ ? | 3310 | μ΄ μ¬μ μ§μ λν΄μλ§ λλ [ALL_ESTATES]μ λν΄ νμ©λ λͺ©λ‘μ μΆκ°νμκ² μ΅λκΉ? |
3157 | </message> | 3311 | </message> |
3158 | <option name="ThisEstate"> | 3312 | <option name="ThisEstate"> |
3159 | μ΄ μμ μ§ | 3313 | μ¬μ μ§ |
3160 | </option> | 3314 | </option> |
3161 | <option name="AllEstates"> | 3315 | <option name="AllEstates"> |
3162 | μ 체 μμ μ§ | 3316 | λͺ¨λ μ¬μ μ§ |
3163 | </option> | 3317 | </option> |
3164 | <option name="Cancel"> | 3318 | <option name="Cancel"> |
3165 | μ·¨μ | 3319 | μ·¨μ |
3166 | </option> | 3320 | </option> |
3167 | </alert> | 3321 | </alert> |
3168 | <alert name="EstateAllowedAgentRemove" title="μμ μ§ μ ν"> | 3322 | <alert name="EstateAllowedAgentRemove" title="μ¬μ μ§ μ ν"> |
3169 | <message name="message"> | 3323 | <message name="message"> |
3170 | [ALL_ESTATES]μ λν΄, μλλ©΄ μ΄ μμ μ§λ§ νμ© λͺ©λ‘μμ μμ νμκ² μ΅λκΉ ? | 3324 | μ΄ μ¬μ μ§λ§ λλ [ALL_ESTATES]μ¬μ μ§ κ΄λ¦¬μλ₯Ό μ κ±°ν©λκΉ? |
3171 | </message> | 3325 | </message> |
3172 | <option name="ThisEstate"> | 3326 | <option name="ThisEstate"> |
3173 | μ΄ μμ μ§ | 3327 | μ¬μ μ§ |
3174 | </option> | 3328 | </option> |
3175 | <option name="AllEstates"> | 3329 | <option name="AllEstates"> |
3176 | μ 체 μμ μ§ | 3330 | λͺ¨λ μ¬μ μ§ |
3177 | </option> | 3331 | </option> |
3178 | <option name="Cancel"> | 3332 | <option name="Cancel"> |
3179 | μ·¨μ | 3333 | μ·¨μ |
3180 | </option> | 3334 | </option> |
3181 | </alert> | 3335 | </alert> |
3182 | <alert name="EstateAllowedGroupAdd" title="μμ μ§ μ ν"> | 3336 | <alert name="EstateAllowedGroupAdd" title="μ¬μ μ§ μ ν"> |
3183 | <message name="message"> | 3337 | <message name="message"> |
3184 | [ALL_ESTATES]μ λν΄, μλλ©΄ μ΄ μμ μ§μ λν΄μλ§ κ·Έλ£Ή νμ© λͺ©λ‘μ μΆκ°νμκ² μ΅λκΉ? | 3338 | μ΄ μ¬μ μ§μ λν΄μλ§ λλ [ALL_ESTATES]μ λν΄ κ·Έλ£Ήμ΄ νμ©ν λͺ©λ‘μ μΆκ°νμκ² μ΅λκΉ? |
3185 | </message> | 3339 | </message> |
3186 | <option name="ThisEstate"> | 3340 | <option name="ThisEstate"> |
3187 | μ΄ μμ μ§ | 3341 | μ¬μ μ§ |
3188 | </option> | 3342 | </option> |
3189 | <option name="AllEstates"> | 3343 | <option name="AllEstates"> |
3190 | μ 체 μμ μ§ | 3344 | λͺ¨λ μ¬μ μ§ |
3191 | </option> | 3345 | </option> |
3192 | <option name="Cancel"> | 3346 | <option name="Cancel"> |
3193 | μ·¨μ | 3347 | μ·¨μ |
3194 | </option> | 3348 | </option> |
3195 | </alert> | 3349 | </alert> |
3196 | <alert name="EstateAllowedGroupRemove" title="μμ μ§ μ ν"> | 3350 | <alert name="EstateAllowedGroupRemove" title="μ¬μ μ§ μ ν"> |
3197 | <message name="message"> | 3351 | <message name="message"> |
3198 | [ALL_ESTATES]μ λν΄, μλλ©΄ μ΄ μμ μ§λ§ κ·Έλ£Ή νμ© λͺ©λ‘μμ μμ νμκ² μ΅λκΉ ? | 3352 | μ΄ μ¬μ μ§λ§ λλ [ALL_ESTATES]μ¬μ μ§λ₯Ό μν κ·Έλ£Ή νμ© λ¦¬μ€νΈλ‘ λΆν° μ κ±°ν©λκΉ? |
3199 | </message> | 3353 | </message> |
3200 | <option name="ThisEstate"> | 3354 | <option name="ThisEstate"> |
3201 | μ΄ μμ μ§ | 3355 | μ¬μ μ§ |
3202 | </option> | 3356 | </option> |
3203 | <option name="AllEstates"> | 3357 | <option name="AllEstates"> |
3204 | μ 체 μμ μ§ | 3358 | λͺ¨λ μ¬μ μ§ |
3205 | </option> | 3359 | </option> |
3206 | <option name="Cancel"> | 3360 | <option name="Cancel"> |
3207 | μ·¨μ | 3361 | μ·¨μ |
3208 | </option> | 3362 | </option> |
3209 | </alert> | 3363 | </alert> |
3210 | <alert name="EstateBannedAgentAdd" title="μμ μ§ μ ν"> | 3364 | <alert name="EstateBannedAgentAdd" title="μ¬μ μ§ μ ν"> |
3211 | <message name="message"> | 3365 | <message name="message"> |
3212 | [ALL_ESTATES]μ λν΄, μλλ©΄ μ΄ μμ μ§μ λν΄μλ§ μ‘μΈμ€λ₯Ό κ±°λΆνμκ² μ΅λκΉ? | 3366 | μ΄ μ¬μ μ§μ λν΄μλ§ λλ [ALL_ESTATES]μ λν΄ μΆμ μ κ±°λΆ νμκ² μ΅λκΉ? |
3213 | </message> | 3367 | </message> |
3214 | <option name="ThisEstate"> | 3368 | <option name="ThisEstate"> |
3215 | μ΄ μμ μ§ | 3369 | μ¬μ μ§ |
3216 | </option> | 3370 | </option> |
3217 | <option name="AllEstates"> | 3371 | <option name="AllEstates"> |
3218 | μ 체 μμ μ§ | 3372 | λͺ¨λ μ¬μ μ§ |
3219 | </option> | 3373 | </option> |
3220 | <option name="Cancel"> | 3374 | <option name="Cancel"> |
3221 | μ·¨μ | 3375 | μ·¨μ |
3222 | </option> | 3376 | </option> |
3223 | </alert> | 3377 | </alert> |
3224 | <alert name="EstateBannedAgentRemove" title="μμ μ§ μ ν"> | 3378 | <alert name="EstateBannedAgentRemove" title="μ¬μ μ§ μ ν"> |
3225 | <message name="message"> | 3379 | <message name="message"> |
3226 | [ALL_ESTATES]μ λν΄, μλλ©΄ μ΄ μμ μ§μ λν΄μλ§ μ‘μΈμ€ κ±°λΆλ₯Ό μ’ λ£νμκ² μ΅λκΉ? | 3380 | μ΄ μμ μ§μ λν΄μλ§ λλ [ALL_ESTATES]μ λν μ κ·Ό κ±°λΆλ₯Ό μ€λ¨νμκ² μ΅λκΉ? |
3227 | </message> | 3381 | </message> |
3228 | <option name="ThisEstate"> | 3382 | <option name="ThisEstate"> |
3229 | μ΄ μμ μ§ | 3383 | μ¬μ μ§ |
3230 | </option> | 3384 | </option> |
3231 | <option name="AllEstates"> | 3385 | <option name="AllEstates"> |
3232 | μ 체 μμ μ§ | 3386 | λͺ¨λ μ¬μ μ§ |
3233 | </option> | 3387 | </option> |
3234 | <option name="Cancel"> | 3388 | <option name="Cancel"> |
3235 | μ·¨μ | 3389 | μ·¨μ |
3236 | </option> | 3390 | </option> |
3237 | </alert> | 3391 | </alert> |
3238 | <alert name="EstateManagerAdd" title="μμ μ§ μ ν"> | 3392 | <alert name="EstateManagerAdd" title="μ¬μ μ§ μ ν"> |
3239 | <message name="message"> | 3393 | <message name="message"> |
3240 | μ 체 μμ μ§μ λν΄, μλλ©΄ μ΄ μμ μ§μ λν΄μλ§ μμ μ§ κ΄λ¦¬μλ₯Ό μΆκ°νμκ² μ΅λκΉ? | 3394 | μ΄ μ¬μ μ§μ λν΄μλ§ λλ λͺ¨λ μ¬μ μ§μ λν΄ μ¬μ μ§ κ΄λ¦¬μλ₯Ό μΆκ°νμκ² μ΅λκΉ? |
3241 | </message> | 3395 | </message> |
3242 | <option name="ThisEstate"> | 3396 | <option name="ThisEstate"> |
3243 | μ΄ μμ μ§ | 3397 | μ¬μ μ§ |
3244 | </option> | 3398 | </option> |
3245 | <option name="AllEstates"> | 3399 | <option name="AllEstates"> |
3246 | μ 체 μμ μ§ | 3400 | λͺ¨λ μ¬μ μ§ |
3247 | </option> | 3401 | </option> |
3248 | <option name="Cancel"> | 3402 | <option name="Cancel"> |
3249 | μ·¨μ | 3403 | μ·¨μ |
3250 | </option> | 3404 | </option> |
3251 | </alert> | 3405 | </alert> |
3252 | <alert name="EstateManagerRemove" title="μμ μ§ μ ν"> | 3406 | <alert name="EstateManagerRemove" title="μ¬μ μ§ μ ν"> |
3253 | <message name="message"> | 3407 | <message name="message"> |
3254 | μ 체 μμ μ§μ λν΄, μλλ©΄ μ΄ μμ μ§μ λν΄μλ§ μμ μ§ κ΄λ¦¬μλ₯Ό μμ νμκ² μ΅λκΉ? | 3408 | μ΄ μ¬μ μ§λ§ λλ λ΄ λͺ¨λ μ¬μ μ§ κ΄λ¦¬μλ₯Ό μ κ±°ν©λκΉ? |
3255 | </message> | 3409 | </message> |
3256 | <option name="ThisEstate"> | 3410 | <option name="ThisEstate"> |
3257 | μ΄ μμ μ§ | 3411 | μ¬μ μ§ |
3258 | </option> | 3412 | </option> |
3259 | <option name="AllEstates"> | 3413 | <option name="AllEstates"> |
3260 | μ 체 μμ μ§ | 3414 | λͺ¨λ μ¬μ μ§ |
3261 | </option> | 3415 | </option> |
3262 | <option name="Cancel"> | 3416 | <option name="Cancel"> |
3263 | μ·¨μ | 3417 | μ·¨μ |
3264 | </option> | 3418 | </option> |
3265 | </alert> | 3419 | </alert> |
3266 | <alert name="EstateCovenantChange" title="μμ μ§ μ ν"> | 3420 | <alert name="EstateCovenantChange" title="μ¬μ μ§ μ ν"> |
3267 | <message name="message"> | 3421 | <message name="message"> |
3268 | [ALL_ESTATES]μ λν΄, μλλ©΄ μ΄ μμ μ§μ λν΄μλ§ κ³μ½ μ‘°ν λ©μμ§λ₯Ό λ³κ²½νμκ² μ΅λκΉ?" | 3422 | μ΄ μ¬μ μ§μ λν΄μλ§ λλ [ALL_ESTATES]μ λν΄ μν κ·μΉ λ΄μ©μ λ³κ²½ νμκ² μ΅λκΉ? |
3269 | </message> | 3423 | </message> |
3270 | <option name="ThisEstate"> | 3424 | <option name="ThisEstate"> |
3271 | μ΄ μμ μ§ | 3425 | μ¬μ μ§ |
3272 | </option> | 3426 | </option> |
3273 | <option name="AllEstates"> | 3427 | <option name="AllEstates"> |
3274 | μ 체 μμ μ§ | 3428 | λͺ¨λ μ¬μ μ§ |
3275 | </option> | 3429 | </option> |
3276 | <option name="Cancel"> | 3430 | <option name="Cancel"> |
3277 | μ·¨μ | 3431 | μ·¨μ |
3278 | </option> | 3432 | </option> |
3279 | </alert> | 3433 | </alert> |
3280 | <alert name="EstateKickUser" title="μ«μλ΄κΈ° νμΈ"> | 3434 | <alert name="EstateKickUser" title="μΆλ°©νκΈ° νμΈ"> |
3281 | <message name="message"> | 3435 | <message name="message"> |
3282 | [EVIL_USER](μ)λ₯Ό λ³Έ μμ μ§μμ μ«μλ΄μκ² μ΅λκΉ? | 3436 | [EVIL_USER](μ)λ₯Ό μΆλ°©ν©λκΉ? |
3283 | </message> | 3437 | </message> |
3284 | <option name="Kick"> | 3438 | <option name="Kick"> |
3285 | μ«μλ΄κΈ° | 3439 | μΆλ°©νκΈ° |
3286 | </option> | 3440 | </option> |
3287 | <option name="Cancel"> | 3441 | <option name="Cancel"> |
3288 | μ·¨μ | 3442 | μ·¨μ |
@@ -3290,7 +3444,7 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
3290 | </alert> | 3444 | </alert> |
3291 | <alert name="EstateChangeCovenant"> | 3445 | <alert name="EstateChangeCovenant"> |
3292 | <message name="message"> | 3446 | <message name="message"> |
3293 | μμ μ§ κ³μ½ μ‘°νμ λ³κ²½νμκ² μ΅λκΉ? | 3447 | μ¬μ μ§ κ³μ½ μ‘°νμ λ³κ²½νμκ² μ΅λκΉ? |
3294 | </message> | 3448 | </message> |
3295 | <option name="Change"> | 3449 | <option name="Change"> |
3296 | λ³κ²½ | 3450 | λ³κ²½ |
@@ -3301,7 +3455,7 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
3301 | </alert> | 3455 | </alert> |
3302 | <alert name="ProblemImportingEstateCovenant"> | 3456 | <alert name="ProblemImportingEstateCovenant"> |
3303 | <message name="message"> | 3457 | <message name="message"> |
3304 | μμ μ§ κ³μ½ μ‘°ν νΈμΆμ λ¬Έμ κ° λ°μνμ΅λλ€. | 3458 | μ¬μ μ§ κ³μ½ μ‘°ν νΈμΆμ λ¬Έμ κ° λ°μνμ΅λλ€. |
3305 | </message> | 3459 | </message> |
3306 | <option name="OK"> | 3460 | <option name="OK"> |
3307 | νμΈ | 3461 | νμΈ |
@@ -3309,7 +3463,7 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
3309 | </alert> | 3463 | </alert> |
3310 | <alert name="UnableToLoadNotecard"> | 3464 | <alert name="UnableToLoadNotecard"> |
3311 | <message name="message"> | 3465 | <message name="message"> |
3312 | λ ΈνΈμΉ΄λ μ 곡μ λ‘λ©μ μ€ν¨νμ΅λλ€. | 3466 | μ°Έκ³ μΉ΄λ μμ°μ λ‘λν μ μμ΅λλ€. |
3313 | </message> | 3467 | </message> |
3314 | <option name="OK"> | 3468 | <option name="OK"> |
3315 | νμΈ | 3469 | νμΈ |
@@ -3317,7 +3471,7 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
3317 | </alert> | 3471 | </alert> |
3318 | <alert name="NotAllowedToViewNotecard"> | 3472 | <alert name="NotAllowedToViewNotecard"> |
3319 | <message name="message"> | 3473 | <message name="message"> |
3320 | μμ²ν μμ° IDμ κ΄λ ¨λ λ ΈνΈμΉ΄λλ₯Ό λ³Ό μ μλ κΆνμ΄ μμ΅λλ€. | 3474 | μμ²ν μμ° IDμ κ΄λ ¨λ λ ΈνΈμΉ΄λλ₯Ό λ³Ό μ μλ κΆνμ΄ λΆμ‘±ν©λλ€. |
3321 | </message> | 3475 | </message> |
3322 | <option name="OK"> | 3476 | <option name="OK"> |
3323 | νμΈ | 3477 | νμΈ |
@@ -3333,12 +3487,12 @@ www.secondlife.comμΌλ‘ λμκ° μλ‘ κ³μ μ λ§λμκ² μ΅λκΉ? | |||
3333 | </alert> | 3487 | </alert> |
3334 | <alert name="PublishClassified"> | 3488 | <alert name="PublishClassified"> |
3335 | <message name="message"> | 3489 | <message name="message"> |
3336 | μμ§ λ§μμμ€: κ΄κ³ μμλ£λ νλΆμ΄ λμ§ μμ΅λλ€. | 3490 | μμ§ λ§ κ²: κ΄κ³ μμλ£λ νλΆ λμ§ μμ. |
3337 | 3491 | ||
3338 | L$[AMOUNT]μ(λ₯Ό) μ§λΆνκ³ κ΄κ³ λ₯Ό κ²μ¬ νμκ² μ΅λκΉ? | 3492 | κ΄κ³ λ₯Ό L$[AMOUNT] μ§κΈ κ²μ¬ νμκ² μ΅λκΉ? |
3339 | </message> | 3493 | </message> |
3340 | <option name="Publish"> | 3494 | <option name="Publish"> |
3341 | κ²μ | 3495 | κ²μνκΈ° |
3342 | </option> | 3496 | </option> |
3343 | <option name="Cancel"> | 3497 | <option name="Cancel"> |
3344 | μ·¨μ | 3498 | μ·¨μ |
@@ -3346,7 +3500,7 @@ L$[AMOUNT]μ(λ₯Ό) μ§λΆνκ³ κ΄κ³ λ₯Ό κ²μ¬ νμκ² μ΅λκΉ? | |||
3346 | </alert> | 3500 | </alert> |
3347 | <alert name="ConfirmRestart" title="μ¬μμ νμΈ"> | 3501 | <alert name="ConfirmRestart" title="μ¬μμ νμΈ"> |
3348 | <message name="message"> | 3502 | <message name="message"> |
3349 | μ λ§ 2λΆ νμ μ΄ μ§μμ μ¬μμνμκ² μ΅λκΉ? | 3503 | 2λΆ ν μ΄ μ§μμ μ¬μμ νμκ² μ΅λκΉ? |
3350 | </message> | 3504 | </message> |
3351 | <option name="Restart"> | 3505 | <option name="Restart"> |
3352 | μ¬μμ | 3506 | μ¬μμ |
@@ -3357,8 +3511,8 @@ L$[AMOUNT]μ(λ₯Ό) μ§λΆνκ³ κ΄κ³ λ₯Ό κ²μ¬ νμκ² μ΅λκΉ? | |||
3357 | </alert> | 3511 | </alert> |
3358 | <alert name="MessageRegion" title="μ΄ μ§μμ λͺ¨λ μ¬λμκ² μ λ¬"> | 3512 | <alert name="MessageRegion" title="μ΄ μ§μμ λͺ¨λ μ¬λμκ² μ λ¬"> |
3359 | <message name="message"> | 3513 | <message name="message"> |
3360 | νμ¬ μ΄ μ§μλ΄μ μλ λͺ¨λ μ¬λμκ² λ³΄λΌ | 3514 | μ΄ μ§μ λ΄μ λͺ¨λ μ¬λλ€μκ² μ λ¬ν |
3361 | 짧μ μ λ¬λ¬Έμ μ λ ₯νμμμ€. | 3515 | κ°λ΅ν 곡μ§λ₯Ό μ λ ₯ν©λλ€. |
3362 | </message> | 3516 | </message> |
3363 | <option name="OK"> | 3517 | <option name="OK"> |
3364 | νμΈ | 3518 | νμΈ |
@@ -3367,59 +3521,64 @@ L$[AMOUNT]μ(λ₯Ό) μ§λΆνκ³ κ΄κ³ λ₯Ό κ²μ¬ νμκ² μ΅λκΉ? | |||
3367 | μ·¨μ | 3521 | μ·¨μ |
3368 | </option> | 3522 | </option> |
3369 | </alert> | 3523 | </alert> |
3370 | <alert name="HelpRegionBlockTerraform" title="ν λΌνΌ κΈμ§"> | 3524 | <alert name="HelpRegionBlockTerraform" title="μ§ν λ³κ²½ κΈμ§"> |
3371 | <message name="message"> | 3525 | <message name="message"> |
3372 | μ΄ μμμ μ²΄ν¬ νμκ° λμ΄μλ κ²½μ°, ν μ§ μμ μ£Όλ€μ κ° κ΅¬νμ 'μ§ν νΈμ§' μ€μ μ κ΄κ³ μμ΄ μμ μ ν μ§λ₯Ό ν λΌνΌν μ μκ² λ©λλ€. | 3526 | 체ν¬κ° λμμ κ²½μ°, ν μ§ μμ μ£Όλ€μ κ° κ΅¬νμ 'μ§ν νΈμ§' μ€μ μ κ΄κ³ μμ΄ μμ μ ν μ§λ₯Ό ν λΌνΌν μ μμ΅λλ€. |
3373 | 3527 | ||
3374 | κΈ°λ³Έ μ€μ : κΊΌμ§ | 3528 | κΈ°λ³Έ μ€μ : κΊΌμ§ |
3375 | </message> | 3529 | </message> |
3376 | </alert> | 3530 | </alert> |
3377 | <alert name="HelpRegionBlockFly" title="λΉν κΈμ§"> | 3531 | <alert name="HelpRegionBlockFly" title="λΉν κΈμ§"> |
3378 | <message name="message"> | 3532 | <message name="message"> |
3379 | μ΄ μμμ μ²΄ν¬ νμκ° λμ΄μλ κ²½μ°, ꡬνλ³ 'λΉν' | 3533 | 체ν¬κ° λμμ κ²½μ°, μ£Όλ―Όλ€μ ꡬν λΉ βλΉνβ μ€μ μ κ΄κ³μμ΄ μ΄ μ§μμμ λΉνν μ μμ΅λλ€. |
3380 | μ€μ μ κ΄κ³ μμ΄ μ΄ μ§μμΌλ‘ λΉνν μ μμ΅λλ€. | ||
3381 | 3534 | ||
3382 | κΈ°λ³Έ μ€μ : κΊΌμ§ | 3535 | κΈ°λ³Έ μ€μ : κΊΌμ§ |
3383 | </message> | 3536 | </message> |
3384 | </alert> | 3537 | </alert> |
3385 | <alert name="HelpRegionAllowDamage" title="μν΄ κ°μ"> | 3538 | <alert name="HelpRegionAllowDamage" title="λ°λ―Έμ§ νμ©"> |
3386 | <message name="message"> | 3539 | <message name="message"> |
3387 | μ΄ μμλ₯Ό μ²΄ν¬ νμν κ²½μ°, κ°λ³ ꡬν μ€μ μ κ΄κ³ μμ΄ | 3540 | μ΄ μμλ₯Ό μ ννλ©΄ κ°λ³ ꡬν μ€μ κ³Ό κ΄κ³μμ΄ λͺ¨λ ꡬνμ |
3388 | μ 체 ꡬνμ λν΄ μμ μμ€ν μ νμ±νν©λλ€. μ΄ μμμ μ²΄ν¬ νμλ₯Ό νμ§ μμ κ²½μ° | 3541 | 보건 μμ€ν μ΄ νμ±ν λ©λλ€. μ΄ μμκ° μ ν ν΄μ λ |
3389 | κ° κ΅¬ν μμ μλ€μ κ°μ μμ ꡬνμ λν΄ | 3542 | κ²½μ°μλ κ°λ³ ꡬν μμ μ£Όκ° μμ μ ꡬν 보건 μμ€ν μ |
3390 | κ°λ³μ μΌλ‘ μμ μμ€ν μ νμ±νν μ μμ΅λλ€. | 3543 | νμ±νν μ μμ΅λλ€. |
3391 | 3544 | ||
3392 | κΈ°λ³Έ μ€μ : κΊΌμ§ | 3545 | κΈ°λ³Έ μ€μ : κΊΌμ§ |
3393 | </message> | 3546 | </message> |
3394 | </alert> | 3547 | </alert> |
3395 | <alert name="HelpRegionAgentLimit" title="μμ΄μ νΈ μ ν"> | 3548 | <alert name="HelpRegionAgentLimit" title="μμ΄μ νΈ μ ν"> |
3396 | <message name="message"> | 3549 | <message name="message"> |
3397 | μ΄ μ§μλ΄μ νμ©λλ μλ°νμ μ΅λ μ«μλ₯Ό μ€μ ν©λλ€. | 3550 | μ΄ μ§μμ νμ©λλ μ΅λ μλ°ν μλ₯Ό μ€μ ν©λλ€. |
3398 | ν μ§μλ΄μ μλ°νμ μ«μκ° λ§μ μλ‘ μ±λ₯μ | 3551 | ν μ§μμ μλ°ν μκ° λ§μμλ‘ |
3399 | κ°μλ μ μμ΅λλ€. | 3552 | μ±λ₯μ΄ μ νλλ€λ μ μ μ λ νμμμ€. |
3400 | 3553 | ||
3401 | κΈ°λ³Έ μ€μ : 30 | 3554 | κΈ°λ³Έ μ€μ : 30 |
3402 | </message> | 3555 | </message> |
3403 | </alert> | 3556 | </alert> |
3404 | <alert name="HelpRegionObjectBonus" title="μ¬λ¬Ό 보λμ€"> | 3557 | <alert name="HelpRegionObjectBonus" title="μ€λΈμ νΈ λ³΄λμ€"> |
3405 | <message name="message"> | 3558 | <message name="message"> |
3406 | μμ΄ν 보λμ€λ μ£Όμ΄μ§ ꡬνμ νλ½λ μ΄κΈ°μΈν μ λ°λΌ μ¦κ° ν©λλ€. νλ½μ λ²μλ 1λΆν° 10 κΉμ§μ΄λ©°, 1μ 512m2 ꡬνλΉ 117κ°μ μμ΄ν μ νλ½ νλ©° 2λ 512m2 ꡬνλΉ 234κ°μ μμ΄ν μ νλ½ν©λλ€. | 3559 | μ€λΈμ νΈ λ³΄λμ€λ νΉμ ꡬνμ νλ½λ νλ¦Όμ λν΄ λ°°λ‘ |
3407 | μ§μλΉ νμ©λλ μ΅κ³ μ«μμ μμ΄ν μ μμ΄ν 보λμ€μ μ«μΉμ μκ΄μμ΄ 15,000κ°λ‘ νμ λ©λλ€. νλ² μ΄ μ ν μ΄ μ΄λ£¨μ΄μ§λ©΄ νμ ꡬνμ μλ μμ΄ν λ€μ λ°ννκ±°λ μμ νκΈ° μ κΉμ§ λμΆ° μ§μ§ μμ΅λλ€. | 3560 | μ¦κ°ν©λλ€. νμ© λ²μλ 1μμ 10μ λλ€. '1'λ‘ μ€μ νμ λ κ° 512m2 ꡬνμ |
3408 | 3561 | νμ©λλ μ€λΈμ νΈλ 117κ°μ λλ€. '2'λ‘ μ€μ νλ©΄ κ° 512m2 ꡬνμ νμ©λλ | |
3409 | κΈ°λ³Έμ€μ : 1.0 | 3562 | μ€λΈμ νΈκ° λ λ°°μΈ 234κ°λ‘ λ©λλ€. μ§μλΉ νμ©λλ |
3563 | μ€λΈμ νΈμ μ΅λ κ°μλ μ€λΈμ νΈ λ³΄λμ€μ λν΄ μ€μ λ κ°κ³Ό μκ΄μμ΄ | ||
3564 | 15,000κ°μ λλ€. μ΄ κ°μ μ€μ ν νμλ, κ° λ³κ²½μΌλ‘ μΈν΄ | ||
3565 | νμ¬ κ΅¬ν λ΄μ μ€λΈμ νΈκ° λ°νλκ±°λ μμ λ κ²μ΄ νμ€νκΈ° μ κΉμ§λ | ||
3566 | μ΄ κ°μ λμΆλ©΄ μλ©λλ€. | ||
3567 | |||
3568 | κΈ°λ³Έ μ€μ : 1.0 | ||
3410 | </message> | 3569 | </message> |
3411 | </alert> | 3570 | </alert> |
3412 | <alert name="HelpRegionMaturity" title="λ§κΈ°μΌ"> | 3571 | <alert name="HelpRegionMaturity" title="μ±μΈμ©"> |
3413 | <message name="message"> | 3572 | <message name="message"> |
3414 | νλ©΄μ μ°μΈ‘ μλ¨ μ½λ λ° μ§λμ νμ νμ νμλ λλ‘ | 3573 | νλ©΄ μ°μΈ‘ μλ¨ μ½λμ μ§λμ νμ νμ νμλ λλ‘ |
3415 | μ§μμ μ±μΈμ© μ¬λΆλ₯Ό μ€μ ν©λλ€. λν, μ±μΈμ© μ€μ μ | 3574 | μ±μΈμ© μ§μμ μ€μ ν©λλ€. μ±μΈμ©μ |
3416 | κ²μ κ²°κ³Όμλ μν₯μ λ―ΈμΉ©λλ€. μ£Όλ―Όλ€μ μ±μΈμ© μ§μ λ΄μ©μ | 3575 | κ²μ κ²°κ³Όμ μν₯μ μ€ μ μμΌλ©° μ£Όλ―Όλ€μ΄ μ±μΈμ© μ§μμ 컨ν μΈ λ₯Ό μ°Ύμ§ λͺ»νλλ‘ |
3417 | κ²μ λμμμ μ μΈνλλ‘ μ νν μ μμ΅λλ€. | 3576 | μ νν μ μμ΅λλ€. |
3418 | 3577 | ||
3419 | μμ€ν μ΄ μ§λ μ 보λ₯Ό μ£ΌκΈ°μ μΌλ‘ μ λ°μ΄νΈνκΈ° λλ¬Έμ | 3578 | μμ€ν μ΄ μ£ΌκΈ°μ μΌλ‘ μ§λ μ λ³΄λ§ μ λ°μ΄νΈνκΈ° λλ¬Έμ |
3420 | μ§λμμ νμ νμ 5λΆκ° λ³κ²½λμ§ μμ΅λλ€. | 3579 | μ§λμ νμ νμ 5λΆ λμ λ³κ²½λμ§ μμ΅λλ€. |
3421 | 3580 | ||
3422 | κΈ°λ³Έ μ€μ : PG(보νΈμ μ§λ νμ) | 3581 | κΈ°λ³Έ μ€μ : PG |
3423 | </message> | 3582 | </message> |
3424 | </alert> | 3583 | </alert> |
3425 | <alert name="HelpRegionRestrictPushObject" title="λ°κΈ° νμ "> | 3584 | <alert name="HelpRegionRestrictPushObject" title="λ°κΈ° νμ "> |
@@ -3435,189 +3594,199 @@ L$[AMOUNT]μ(λ₯Ό) μ§λΆνκ³ κ΄κ³ λ₯Ό κ²μ¬ νμκ² μ΅λκΉ? | |||
3435 | </alert> | 3594 | </alert> |
3436 | <alert name="HelpParcelChanges" title="ꡬν κ²°ν©/μΈλΆ"> | 3595 | <alert name="HelpParcelChanges" title="ꡬν κ²°ν©/μΈλΆ"> |
3437 | <message name="message"> | 3596 | <message name="message"> |
3438 | ν μ§ μμ μ£Όκ° μμ νμ§ μμ ꡬνμ λν΄ | 3597 | μ¬μ μ§ μμ μμ μμ κ° μλ ꡬνμ κ²°ν©νκ±°λ μΈλΆν μ μλμ§ |
3439 | κ²°ν©λκ±°λ μΈλΆλ μ μλμ§λ₯Ό μ€μ ν©λλ€. | 3598 | μ¬λΆλ₯Ό μ€μ ν©λλ€. |
3440 | μ΄ μ΅μ μ 체ν¬λμ§ μμμ κ²½μ°: | 3599 | μ΄ μ΅μ μ μ νλμ§ μμ κ²½μ°: |
3441 | * μμ μ£Ό λλ 맀λμ λ§ κ΅¬νμ κ²°ν©νκ±°λ μΈλΆν μ μμ΅λλ€. | 3600 | * μ¬μ μ§ μμ μ£Ό λλ κ΄λ¦¬μλ§μ΄ ꡬνμ κ²°ν©νκ±°λ μΈλΆν μ μμ΅λλ€. |
3442 | * μ΄λ€μ μμ μ£Όλ κ·Έλ£Ήμ΄ μμ νλ ꡬνλ§ κ²°ν©νκ±°λ μΈλΆν μ μμΌλ©°, | 3601 | * μ΄λ€μ μμ μ£Όκ° κ°μ§ ꡬν λλ κ·Έλ£Ή μμ μ ꡬνμΈ κ²½μ° μ μ ν |
3443 | μ μ ν κ·Έλ£Ή λ₯λ ₯μ κ°μ§κ³ μμ΅λλ€. | 3602 | κ·Έλ£Ή κΆνμ΄ μλ κ²½μ°μλ§ κ²°ν©νκ±°λ μΈλΆν μ μμ΅λλ€. |
3444 | μ΄ μ΅μ μ΄ μ²΄ν¬λ κ²½μ°: | 3603 | μ΄ μ΅μ μ΄ μ νλ κ²½μ°: |
3445 | * λͺ¨λ ꡬν μμ μ£Όλ μμ μ΄ μμ ν ꡬνμ κ²°ν© λλ μΈλΆν μ μμ΅λλ€. | 3604 | * λͺ¨λ ꡬν μμ μ£Όλ μμ μ΄ μμ ν ꡬνμ κ²°ν©νκ±°λ μΈλΆν μ μμ΅λλ€. |
3446 | * κ·Έλ£Ήμ΄ μμ ν ꡬνμ κ²½μ° μ μ ν κ·Έλ£Ή λ₯λ ₯μ΄ μλ κ²λ§ | 3605 | * κ·Έλ£Ή μμ μ ꡬνμΈ κ²½μ° μ μ ν κ·Έλ£Ή κΆνμ΄ μλ κ²½μ° κ΅¬νμ |
3447 | ꡬνμ κ²°ν©νκ±°λ μΈλΆν μ μμ΅λλ€. | 3606 | κ²°ν©νκ±°λ μΈλΆν μ μμ΅λλ€. |
3448 | 3607 | ||
3449 | κΈ°λ³Έ μ€μ : 체ν¬λ¨ | 3608 | κΈ°λ³Έ μ€μ : μ νλ¨ |
3450 | </message> | 3609 | </message> |
3451 | </alert> | 3610 | </alert> |
3452 | <alert name="RegionMaturityChange" title="λ³κ²½λ μ§μ λ§κΈ°μΌ"> | 3611 | <alert name="RegionMaturityChange" title="λ³κ²½λ μ§μ λ§κΈ°μΌ"> |
3453 | <message name="message"> | 3612 | <message name="message"> |
3454 | μ΄ μ§μμ μ±μΈμ© λ±κΈ μ€μ μ΄ μ λ°μ΄νΈλμμ΅λλ€. | 3613 | μ΄ μμμ λν μ±μΈμ© λ±κΈμ΄ μ λ°μ΄νΈλμμ΅λλ€. |
3455 | 3614 | ||
3456 | νμ§λ§ μμ€ν μ΄ μ§λ μ 보λ₯Ό μ κΈ°μ μΌλ‘ μ λ°μ΄νΈνκΈ° λλ¬Έμ | 3615 | μμ€ν μ΄ μ£ΌκΈ°μ μΌλ‘ μ§λ μ λ³΄λ§ μ λ°μ΄νΈνκΈ° λλ¬Έμ |
3457 | μΈκ³ μ§λλ μ½ 5λΆ λ€μ μ λ°μ΄νΈ | 3616 | μλ μ§λλ₯Ό μ λ°μ΄νΈνλ €λ©΄ μ½ 5λΆ μ λ |
3458 | λ©λλ€. | 3617 | μμλ©λλ€. |
3459 | </message> | 3618 | </message> |
3460 | </alert> | 3619 | </alert> |
3461 | <alert name="HelpRegionLandResell" title="ν μ§ μ¬ν맀"> | 3620 | <alert name="HelpRegionLandResell" title="ν μ§ μ¬ν맀"> |
3462 | <message name="message"> | 3621 | <message name="message"> |
3463 | μμ μ§ μμ μμ κ΄λ¦¬μλ μμ μ§ μμ μκ° μμ νλ λͺ¨λ ν μ§λ₯Ό ν맀ν μ μμ΅λλ€. | 3622 | μ¬μ μ§ μμ μμ κ΄λ¦¬μλ μ¬μ μ§ μμ μκ° κ°μ§ λͺ¨λ ν μ§λ₯Ό ν맀ν μ μμ΅λλ€. |
3464 | μ΄ μ΅μ μ μ²΄ν¬ νμλ₯Ό μ§μ°λ©΄ ꡬ맀μκ° μ΄ μ§μμμ ν μ§λ₯Ό μ¬ν맀ν μ μμ΅λλ€. | 3623 | μ΄ μ΅μ μ΄ μ ν ν΄μ λμ΄ μμΌλ©΄ ꡬ맀μκ° μ΄ μ§μμμ ν μ§λ₯Ό μ¬ν맀ν μ μμ΅λλ€. |
3465 | μ΄ μ΅μ μ μ²΄ν¬ νμλ₯Ό νλ©΄ ꡬ맀μκ° μ΄ μ§μμμ ν μ§λ₯Ό μ¬ν맀ν μ μμ΅λλ€. | 3624 | μ΄ μ΅μ μ΄ μ νλμ΄ μμΌλ©΄ ꡬ맀μκ° μ΄ μ§μμμ ν μ§λ₯Ό μ¬ν맀ν μ μμ΅λλ€. |
3466 | 3625 | ||
3467 | κΈ°λ³Έ μ€μ : λΆν | 3626 | κΈ°λ³Έ μ€μ : λΆν |
3468 | </message> | 3627 | </message> |
3469 | </alert> | 3628 | </alert> |
3470 | <alert name="HelpEstateCovenantID" title="κ³μ½ μ‘°ν μμ° ID"> | 3629 | <alert name="HelpEstateCovenantID" title="μν κ·μΉ μμ° ID"> |
3471 | <message name="message"> | 3630 | <message name="message"> |
3472 | μμ μ§ κ³μ½ μ‘°νμ λν λ ΈνΈμΉ΄λ μμ° IDλ₯Ό μ΄ | 3631 | μ¬μ μ§ κ³μ½ μ‘°νμ λν μ°Έκ³ μΉ΄λ μμ° IDλ₯Ό μ΄ μ¬μ μ§λ‘ |
3473 | μμ μ§λ‘ μ€μ ν©λλ€. | 3632 | μ€μ ν©λλ€. |
3474 | 3633 | ||
3475 | κΈ°λ³Έ μ€μ : 00000000-0000-0000-0000-000000000000 λλ μμ | 3634 | κΈ°λ³Έ μ€μ : 00000000-0000-0000-0000-000000000000 λλ μμ |
3476 | </message> | 3635 | </message> |
3477 | </alert> | 3636 | </alert> |
3478 | <alert name="HelpRegionDisableScripts" title="μ€ν¬λ¦½νΈ λκΈ°"> | 3637 | <alert name="HelpRegionDisableScripts" title="μ€ν¬λ¦½νΈ λκΈ°"> |
3479 | <message name="message"> | 3638 | <message name="message"> |
3480 | Simulation μ±λ₯μ΄ μ μ‘°ν κ²½μ° μ€ν¬λ¦½νΈμ λ¬Έμ κ° μμ μ μμ΅λλ€. ν΅κ³ νμμ€(Ctrl-Shift-1)μμ Simulator Physics FPSλ₯Ό νμΈν΄ 보μμμ, λ§μ½ 45λ³΄λ€ λμ κ²½μ° ν΅κ³ νμμ€ νλ¨μ 'μκ°' μλμ°λ₯Ό μ¬μμμ. λ§μ½ μ€ν¬λ¦½νΈ μκ°μ΄ 25msλ κ·Έ μ΄μμ μμΉμΌ κ²½μ°, 'ν μ€ν¬λ¦½' λ²νΌμ ν΄λ¦ νμμμ. μ μ‘°ν μ±λ₯μ μ€ν¬λ¦½νΈμ μ΄λ¦κ³Ό μμΉκ° μ£Όμ΄μ§ κ²μ λλ€. | 3639 | μλ¬λ μ΄μ μ±λ₯μ΄ μ μ‘°ν κ²½μ° μ€ν¬λ¦½νΈμ λ¬Έμ κ° μμ μ μμ΅λλ€. Ctrl-Shift-1μ |
3481 | 3640 | λλ¬ ν΅κ³λ³΄κΈ°λ₯Ό μ½λλ€. Simulator Physics FPSλ₯Ό νμΈνμμμ€. | |
3482 | 'μ€ν¬λ¦½νΈ λΉνμ±' μ 체ν¬νκ³ 'μ μ©'μ λλ₯΄κ² λλ©΄ μΌμμ μΌλ‘ λ³Έ μ§μμλͺ¨λ μ€ν¬λ¦½νΈλ€μ λΉνμ± μνκ° λ©λλ€. λͺ¨λ μ€ν¬λ¦½νΈμ λΉνμ± μνμμ 'ν μ€ν¬λ¦½νΈ'μ νμλ μ§μμΌλ‘ μ΄λ ν κ·Έκ³³ μ€ν¬λ¦½νΈμ λ¬Έμ λ₯Ό νμ ν μ μμ΅λλ€. | 3641 | 45 λ―Έλ§μΈ κ²½μ° ν΅κ³λ³΄κΈ° νλ¨μ μλ 'μκ°' μλμ°λ₯Ό |
3483 | μ§μ μ€ν¬λ¦½νΈλ₯Ό μμ νκ±°λ λ°ν λλ μ€ν¬λ¦½νΈμ μμ μμκ² μ°λ½μ ν μ μμ΅λλ€. 'μ€ν¬λ¦½νΈ λΉνμ±' 체ν¬λ₯Ό ν΄μ νκ³ 'μ μ©'μ λλ₯΄μλ©΄ λ€μ λͺ¨λ μ€ν¬λ¦½νΈλ₯Ό νμ±ν μν¬μ μμ΅λλ€. | 3642 | μ¬μμμ€. μ€ν¬λ¦½νΈ μκ°μ΄ 25λ°λ¦¬μ΄ μ΄μμΈ κ²½μ°μλ |
3484 | 3643 | 'λμ©λ μ€ν¬λ¦½νΈ 보기' λ²νΌμ ν΄λ¦νμμμ€. μ±λ₯μ΄ μ μ‘°ν μμΈμ΄ λλ μ€ν¬λ¦½νΈμ | |
3485 | κΈ°λ³Έμ€μ : off | 3644 | μ΄λ¦κ³Ό μμΉκ° νμλ©λλ€. |
3645 | |||
3646 | 'μ€ν¬λ¦½νΈ λκΈ°' μμλ₯Ό μ νν ν 'μ μ©' λ²νΌμ λλ₯΄λ©΄ | ||
3647 | μ΄ μ§μ λ΄μ λͺ¨λ μ€ν¬λ¦½νΈκ° μΌμμ μΌλ‘ λΉνμ±νλ©λλ€. νμλλ | ||
3648 | 'λμ©λ μ€ν¬λ¦½νΈ'μ μμΉλ‘ μ΄λνκΈ° μν΄ μ΄ μμ μ μνν΄μΌ ν μλ | ||
3649 | μμ΅λλ€. ν΄λΉ μμΉλ‘ μ΄λνλ©΄ μ€ν¬λ¦½νΈλ₯Ό κ²μ¬νμ¬ μ€ν¬λ¦½νΈκ° | ||
3650 | λ¬Έμ λ₯Ό μΌκΈ°νλμ§ μ¬λΆλ₯Ό νμΈνμμμ€. μ€ν¬λ¦½νΈ | ||
3651 | μμ μμκ² λ¬Έμνκ±°λ μ€λΈμ νΈλ₯Ό μμ λλ λ°νν μ μμ΅λλ€. | ||
3652 | 'μ€ν¬λ¦½νΈ λκΈ°' μμλ₯Ό μ ν ν΄μ ν ν 'μ μ©'μ ν΄λ¦νλ©΄ | ||
3653 | μ§μμ μ€ν¬λ¦½νΈκ° λ€μ νμ±νλ©λλ€. | ||
3654 | |||
3655 | κΈ°λ³Έ μ€μ : κΊΌμ§ | ||
3486 | </message> | 3656 | </message> |
3487 | </alert> | 3657 | </alert> |
3488 | <alert name="HelpRegionDisableCollisions" title="μΆ©λ λκΈ°"> | 3658 | <alert name="HelpRegionDisableCollisions" title="μΆ©λ λκΈ°"> |
3489 | <message name="message"> | 3659 | <message name="message"> |
3490 | μλ¬λ μ΄ν°μ μ±λ₯μ΄ λ¨μ΄μ§ κ²½μ° λ¬Όλ¦¬μ μ¬λ¬Όμ΄ μμΈμΌ μ μμ΅λλ€. | 3660 | μλ¬λ μ΄μ μ±λ₯μ΄ μ μ‘°ν κ²½μ° λ¬Όλ¦¬ μμ§μ λ¬Έμ κ° μμ μ μμ΅λλ€. |
3491 | ν΅κ³λ°(Ctrl-Shift-1)λ₯Ό μ΄κ³ μλ¬λ μ΄ν° 물리 FPSλ₯Ό | 3661 | Ctrl-Shift-1μ λλ¬ ν΅κ³λ³΄κΈ°λ₯Ό μ½λλ€. Simulator Physics FPSλ₯Ό |
3492 | μ΄ν΄λ΄ λλ€. 45λ³΄λ€ λμΌλ©΄, ν΅κ³λ° λ°μ μλ 'μκ°(Time)' ν¨λμ | 3662 | νμΈνμμμ€. 45 λ―Έλ§μΈ κ²½μ° ν΅κ³λ³΄κΈ° νλ¨μ μλ 'μκ°' |
3493 | μ½λλ€. μλ¬λ μ΄ν° μκ°(물리)μ΄ | 3663 | μλμ°λ₯Ό μ¬μμμ€. μλ¬λ μ΄μ μκ°(물리)μ΄ |
3494 | 20ms μ΄μμ΄λ©΄ 'ν 컬λΌμ΄λ κ°μ Έμ€κΈ°' λ²νΌμ ν΄λ¦ν©λλ€. | 3664 | 20λ°λ¦¬μ΄ μ΄μμΈ κ²½μ°μλ 'λμ©λ μ½λΌμ΄λ 보기' λ²νΌμ ν΄λ¦νμμμ€. |
3495 | μ±λ₯ μ νμ μμΈμΌ μ μλ 물리μ μ¬λ¬Όμ | 3665 | μ±λ₯μ΄ μ μ‘°ν μμΈμ΄ λλ 물리 μμ§μ μ΄λ¦κ³Ό |
3496 | μ΄λ¦κ³Ό μμΉκ° νμλ©λλ€. | 3666 | μμΉκ° νμλ©λλ€. |
3497 | 3667 | ||
3498 | 'μΆ©λ λκΈ°' μμμ μ²΄ν¬ νμλ₯Ό νκ³ , 'μ μ©'μ | 3668 | 'μΆ©λ λκΈ°' μμλ₯Ό μ νν ν 'μ μ©'λ²νΌμ λλ₯΄λ©΄ |
3499 | λλ₯΄λ©΄ μΌμμ μΌλ‘ μ΄ μ§μλ΄μ λͺ¨λ μ¬λ¬Όλ μ¬λ¬Ό μΆ©λμ΄ λΉνμ±νλ©λλ€. νμλ 'ν 컬λΌμ΄λ'μ | 3669 | μ€λΈμ νΈ κ°μ λͺ¨λ μΆ©λμ΄ μΌμμ μΌλ‘ λΉνμ±νλ©λλ€. 'λμ©λ μ½λΌμ΄λ'μ |
3500 | μμΉλ‘ μ΄λνλ €λ©΄ μ΄κ°μ λΉνμ±νκ° νμν μ | 3670 | μμΉλ‘ μ΄λνκΈ° μν΄ μ΄ μμ μ μνν΄μΌ ν μλ |
3501 | μμ΅λλ€. μΌλ¨ ν΄λΉ μμΉμ λμ°©νλ©΄, ν΄λΉ μ¬λ¬Όμ΄ | 3671 | μμ΅λλ€. ν΄λΉ μμΉλ‘ μ΄λνλ©΄ μ€λΈμ νΈλ₯Ό κ²μ¬νμ¬ μ€λΈμ νΈκ° |
3502 | λ€λ₯Έ μ¬λ¬Όλ€κ³Ό λμμμ΄ μΆ©λνλμ§λ₯Ό μ‘°μ¬ν©λλ€. ν΄λΉ μ¬λ¬Όμ μμ μ£Όμκ² | 3672 | κ³μμ μΌλ‘ λ€λ₯Έ μ€λΈμ νΈμ μΆ©λνλμ§ μ¬λΆλ₯Ό νμΈνμμμ€. μ€λΈμ νΈ |
3503 | μ°λ½νκ±°λ ν΄λΉ μ¬λ¬Όμ μμ λλ λ°νν΄μΌ ν νμκ° μμ μ μμ΅λλ€. | 3673 | μμ μ£Όμκ² λ¬Έμνκ±°λ μ€λΈμ νΈλ₯Ό μμ λλ λ°νν μ μμ΅λλ€. |
3504 | 'μΆ©λ λκΈ°' μμμ μ²΄ν¬ νμλ₯Ό μ§μ°κ³ 'μ μ©'μ λλ₯΄λ©΄ | 3674 | 'μΆ©λ λκΈ°' μμλ₯Ό μ ν ν΄μ ν ν 'μ μ©'μ ν΄λ¦νλ©΄ |
3505 | ν΄λΉ μ§μμ μΆ©λμ΄ λ€μ νμ±νλ©λλ€. | 3675 | μ§μ λ΄ μΆ©λμ΄ λ€μ νμ±νλ©λλ€. |
3506 | 3676 | ||
3507 | κΈ°λ³Έ μ€μ : κΊΌμ§ | 3677 | κΈ°λ³Έ μ€μ : κΊΌμ§ |
3508 | </message> | 3678 | </message> |
3509 | </alert> | 3679 | </alert> |
3510 | <alert name="HelpRegionDisablePhysics" title="물리 λκΈ°"> | 3680 | <alert name="HelpRegionDisablePhysics" title="물리μμ§ λκΈ°"> |
3511 | <message name="message"> | 3681 | <message name="message"> |
3512 | 물리 λκΈ°λ μΆ©λ λκΈ°μ μ μ¬ν©λλ€. λ€λ§ | 3682 | 물리μμ§ λκΈ°λ 물리μμ§ μλ¬λ μ΄μ μ΄ λΉνμ± λλ€λ μ μ |
3513 | 물리 μλ¬λ μ΄μ μ΄ κΊΌμ§λ€λ μ μ΄ λ€λ¦ λλ€. μ΄λ μ¬λ¬Όμ΄ μΆ©λμ λ©μΆ λΏ μλλΌ | 3683 | μ μΈνλ©΄ μΆ©λ λκΈ°μ μ μ¬ν©λλ€. λ€μ λ§ν΄μ, μ€λΈμ νΈκ° μΆ©λμ |
3514 | μλ°νλ€μ΄ μμ§μΌ μ μμμ μλ―Έν©λλ€. | 3684 | μ€μ§μν¬ λΏλ§ μλλΌ μλ°νλ μμ§μΌ μ μκ² λ©λλ€. |
3515 | 3685 | ||
3516 | μ΄ μ΅μ μ μΆ©λ λκΈ°λ₯Ό μ¬μ©νμ κ²½μ° λ¬Όλ¦¬ λ¬Έμ λλ | 3686 | κ·Έλ¬λ―λ‘ λ¬Όλ¦¬μμ§ λκΈ°λ μΆ©λ λκΈ° μ±λ₯μ΄ λΆμ‘±νμ¬ |
3517 | 'ν 컬λΌμ΄λ'λ₯Ό μ‘°μ¬νλλ° νμν μΆ©λΆν μ±λ₯μ | 3687 | ν΄λΉ μ§μμμ 물리 λ¬Έμ λ 'λμ©λ μ½λΌμ΄λ'λ₯Ό μ‘°μ¬ν μ |
3518 | ν΄λΉ μ§μμ λλ €μ£Όμ§ λͺ»ν κ²½μ°μλ§ μ¬μ©νμ μΌ ν©λλ€. | 3688 | μμ λμλ§ μ¬μ©ν΄μΌ ν©λλ€. |
3519 | 3689 | ||
3520 | νμν μν©μ΄ μ’ λ£λλ©΄ 물리λ₯Ό λ€μ μΌλλ‘ νμμμ€. κ·Έλ μ§ μμ κ²½μ° | 3690 | μ΄ κΈ°λ₯μ μ¬μ©ν νμλ 물리μμ§μ λ€μ νμ±ν ν΄μΌ ν©λλ€. |
3521 | μλ°νλ€μ΄ μμ§μ΄μ§ λͺ»νλ μνκ° κ³μλ©λλ€. | 3691 | κ·Έλ μ§ μμΌλ©΄ μλ°νκ° κ³μν΄μ μμ§μ΄μ§ μμ΅λλ€. |
3522 | 3692 | ||
3523 | κΈ°λ³Έ μ€μ : κΊΌμ§ | 3693 | κΈ°λ³Έ μ€μ : κΊΌμ§ |
3524 | </message> | 3694 | </message> |
3525 | </alert> | 3695 | </alert> |
3526 | <alert name="HelpRegionTopColliders" title="ν 컬λΌμ΄λ"> | 3696 | <alert name="HelpRegionTopColliders" title="λμ©λ μ½λΌμ΄λ"> |
3527 | <message name="message"> | 3697 | <message name="message"> |
3528 | μ¬λ¬Όλ μ¬λ¬Ό μΆ©λμ κ°λ₯ νμκ° κ°μ₯ ν° μ¬λ¬Όμ | 3698 | μ€λΈμ νΈ κ°μ μ΅κ³ μμ€μ μΆ©λ κ°λ₯μ±μ κ²½ννλ |
3529 | λͺ©λ‘μ νμν©λλ€. μ΄κ°μ μ¬λ¬Όλ€μ | 3699 | μ€λΈμ νΈ λͺ©λ‘μ νμν©λλ€. μ΄λ¬ν μ€λΈμ νΈλ‘ μΈν΄ |
3530 | μλ¬λ μ΄ν° μ±λ₯μ μ νμν¬ μ μμ΅λλ€. ν΅κ³λ° >보기λ₯Ό μ νν λ€μ | 3700 | Simulation μ±λ₯μ΄ λλ €μ§ μ μμ΅λλ€. 물리μ μΌλ‘ 20 ms μ΄μ μ¬μ©λμλμ§ μ¬λΆλ₯Ό νμΈνλ €λ©΄ |
3531 | μλ¬λ μ΄ν°> μκ° > μλ¬λ μ΄μ μκ°(물리) νλͺ©μμ | 3701 | '보기 > ν΅κ³λ³΄κΈ°'λ₯Ό μ ννκ³ 'μλ¬λ μ΄ν° > |
3532 | 물리μ 20ms μ΄μμ΄ μ¬μ©λκ³ μλμ§ νμΈνμμμ€. | 3702 | μκ° > Simulation μκ°(Physics)'μ νμΈνμμμ€. |
3533 | </message> | 3703 | </message> |
3534 | </alert> | 3704 | </alert> |
3535 | <alert name="HelpRegionTopScripts" title="ν μ€ν¬λ¦½νΈ"> | 3705 | <alert name="HelpRegionTopScripts" title="λμ©λ μ€ν¬λ¦½νΈ"> |
3536 | <message name="message"> | 3706 | <message name="message"> |
3537 | LSL μ€ν¬λ¦½νΈ μ€νμ κ°μ₯ λ§μ μκ°μ μμνκ³ μλ | 3707 | LSL μ€ν¬λ¦½νΈ μ€νμ κ°μ₯ λ§μ μκ°μ μλͺ¨νλ μ€λΈμ νΈμ λͺ©λ‘μ |
3538 | μ¬λ¬Όμ λͺ©λ‘μ νμν©λλ€ μ΄κ°μ μ¬λ¬Όλ€μ μλ¬λ μ΄μ μ±λ₯μ μ νμν¬ μ μμ΅λλ€. | 3708 | νμν©λλ€. μ΄λ¬ν μ€λΈμ νΈλ Simulation μ±λ₯μ μ νμν¬ μ μμ΅λλ€. |
3539 | ν΅κ³λ° >보기λ₯Ό μ νν λ€μ | 3709 | μ€ν¬λ¦½νΈμμ 25 ms μ΄μ μ¬μ©λμλμ§ μ¬λΆλ₯Ό νμΈνλ €λ©΄ |
3540 | μλ¬λ μ΄ν°> μκ° > μλ¬λ μ΄μ μκ°(물리) νλͺ©μμ | 3710 | '보기 > ν΅κ³λ³΄κΈ°'λ₯Ό μ ννκ³ 'μλ¬λ μ΄ν° > |
3541 | μ€ν¬λ¦½νΈμ 25ms μ΄μμ΄ μ¬μ©λκ³ μλμ§ νμΈνμμμ€. | 3711 | μκ° > μ€ν¬λ¦½νΈ μκ°'μ νμΈνμμμ€. |
3542 | </message> | 3712 | </message> |
3543 | </alert> | 3713 | </alert> |
3544 | <alert name="HelpRegionRestart" title="μ§μ μ¬μμ"> | 3714 | <alert name="HelpRegionRestart" title="μ§μ μ¬μμ"> |
3545 | <message name="message"> | 3715 | <message name="message"> |
3546 | 2λΆκ°μ κ²½κ³ λ€μ μ΄ μ§μμ μ€ννλ μλ² νλ‘μΈμ€λ₯Ό | 3716 | μ μ κΈ°λ€λ¦° ν μ΄ μ§μμ μ€ννλ μλ² μ²λ¦¬λ₯Ό μ¬μμ ν©λλ€.μ§μμ λͺ¨λ μ£Όλ―Όλ€μ |
3547 | μ¬μμν©λλ€. μ΄ μ§μμ μ μ£Όλ―Όμ μ°κ²°μ΄ | 3717 | μ°κ²° ν΄μ λ©λλ€.μ§μμ΄ ν΄λΉ μ§μ λ°μ΄ν°λ₯Ό μ μ₯νκ³ |
3548 | ν΄μ λ©λλ€. μ§μ μ 보λ μ μ₯λκ³ , 90μ΄ μ΄λ΄μ λ€μ | 3718 | 90 μ΄ μ΄λ΄μ λμ μμΌ ν©λλ€. |
3549 | μ μ μ΄μμ΄ μ¬κ°λ©λλ€. | ||
3550 | 3719 | ||
3551 | μ§μ μ¬μμμ λλΆλΆμ μ±λ₯ λ¬Έμ λ₯Ό ν΄κ²°νμ§ λͺ»νλ©° | 3720 | μ§μμ μ¬μμνλ©΄ λλΆλΆμ μ€ν |
3552 | λ³΄ν΅ μ§μκ° μμ κ²½μ°μλ§ μ¬μ©νμ μΌ ν©λλ€. | 3721 | λ¬Έμ λ€μ κ³ μΉ μ μκ³ μ§μ λ°λ κ²½μ°μλ§ λ³΄ν΅ μ΄μ©λ μ μμ΅λλ€. |
3553 | </message> | 3722 | </message> |
3554 | </alert> | 3723 | </alert> |
3555 | <alert name="HelpRegionWaterHeight" title="μλ©΄ λμ΄"> | 3724 | <alert name="HelpRegionWaterHeight" title="μλ©΄ λμ΄"> |
3556 | <message name="message"> | 3725 | <message name="message"> |
3557 | λ¬Όμ΄ λνλλ μ₯μλ₯Ό λ―Έν° λ¨μμ λμ΄λ‘ λνλΈ κ²μ λλ€. μ΄ μ€μ κ°μ΄ | 3726 | μ΄κ²μ μλ©΄μ λμ΄(m)λ₯Ό λνλ λλ€. |
3558 | 20μ΄ μλ μμ΄κ³ , μΈκ³μ κ°μ₯μ리μ κ·Όμ ν κ³³μ | ||
3559 | λ¬Ό λλ 'νμ' λ¬Όμ΄ μλ κ²½μ°, | ||
3560 | κ·Έκ³³μλ λμ λλ κ°μ΄ μμ΅λλ€. | ||
3561 | 3727 | ||
3562 | κΈ°λ³Έ μ€μ : 20 | 3728 | κΈ°λ³Έ μ€μ : 20 |
3563 | </message> | 3729 | </message> |
3564 | </alert> | 3730 | </alert> |
3565 | <alert name="HelpRegionTerrainRaise" title="μ§ν λμ΄κΈ°"> | 3731 | <alert name="HelpRegionTerrainRaise" title="μ§ν λμ΄κΈ°"> |
3566 | <message name="message"> | 3732 | <message name="message"> |
3567 | ꡬν μμ μ£Όλ€μ΄ μμ λ€μ μ§νμ | 3733 | μ΄κ²μ μ μ₯λ μ§νμ κΈ°μ€ λμ΄ |
3568 | 'μ μ₯λ' μ§ν κΈ°λ³Έ λμ΄ μλ‘ λμΌ μ μλ | 3734 | μ΄μμΌλ‘ μ§νμ λμΆ μ μλ 거리λ₯Ό |
3569 | 거리μ λλ€. | 3735 | λνλ λλ€. |
3570 | 3736 | ||
3571 | κΈ°λ³Έ μ€μ : 4 | 3737 | κΈ°λ³Έ μ€μ : 4 |
3572 | </message> | 3738 | </message> |
3573 | </alert> | 3739 | </alert> |
3574 | <alert name="HelpRegionTerrainLower" title="μ§ν λμΆκΈ°"> | 3740 | <alert name="HelpRegionTerrainLower" title="μ§ν λμΆκΈ°"> |
3575 | <message name="message"> | 3741 | <message name="message"> |
3576 | ꡬν μμ μ£Όλ€μ΄ μμ λ€μ μ§νμ | 3742 | μ΄κ²μ μ μ₯λ μ§νμ κΈ°μ€ λμ΄ |
3577 | 'μ μ₯λ' μ§ν κΈ°λ³Έ λμ΄ μλλ‘ λμΆ μ μλ | 3743 | λ―Έλ§μΌλ‘ μ§νμ λμΆ μ μλ 거리λ₯Ό |
3578 | 거리μ λλ€. | 3744 | λνλ λλ€. |
3579 | 3745 | ||
3580 | κΈ°λ³Έ μ€μ : -4 | 3746 | κΈ°λ³Έ μ€μ : -4 |
3581 | </message> | 3747 | </message> |
3582 | </alert> | 3748 | </alert> |
3583 | <alert name="HelpRegionUploadRaw" title="RAW μ§ν μ λ‘λ"> | 3749 | <alert name="HelpRegionUploadRaw" title="RAW μ§ν μ λ‘λ"> |
3584 | <message name="message"> | 3750 | <message name="message"> |
3585 | μ΄ λ²νΌμ λ³ΈμΈμ΄ νμ μλ μ§μμ .RAW νμΌμ μ λ‘λ ν©λλ€. μ λ‘λ νκ³ μ νλ νμΌμ RGB컬λ¬μ 256X256μ 13 체λμ΄μ¬μΌ ν©λλ€. μ§ν νμ±μ μν νμΌμ λ§λ€κΈ° μν μ΅μ μ λ°©λ²μ νμ‘΄νλ RAWνμΌμ λ€μ΄λ°λ λ°©λ²μ΄λ©° λ€μ΄λ‘λ λ°μ νμΌμμ μ§νμ μ΅κ³ μ μ ν΄λΉλλ 첫λ²μ§Έ 체λμ μμ ν΄ μ λ‘λ νλ κ²μ λλ€. | 3751 | μ΄ λ²νΌμ .RAW νμΌμ κ·νκ° μμΉν μ§μμ μ λ‘λν©λλ€. |
3586 | 3752 | μ λ‘λνκ³ μ νλ νμΌμ 256X256 ν¬κΈ°μ, RGB 컬λ¬μ΄λ©°, | |
3587 | μ λ‘λλ μ½ 45μ΄μ λκ° μμ λ©λλ€. μ λ‘λνλ μ§ν νμΌμ ν μ§μμ μμ΄ν λ€μ μμΉμλ μν₯μ΄ μμΌλ©° λ¨μ§ μ§νκ³Ό ꡬνμ κ΄λ ¨λ νΌλ―Έμ μλ§ μν₯μ΄ μμ΅λλ€. μ΄ μλ‘μ΄ μ§νμ μ©μΌλ‘ κ³ μ λ μμ΄ν λ€μ μμΉλ μ§νμ μμΉλ μ μμ΅λλ€. | 3753 | 13κ°μ μ±λμ κ°μΆμ΄μΌ ν©λλ€. μ§ν νμΌμ μμ±ν λλ |
3588 | 3754 | κΈ°μ‘΄ RAW νμΌμ λ€μ΄λ‘λνλ κ²μ΄ κ°μ₯ μ’μ΅λλ€. λ¨Όμ | |
3589 | μ§ν μμ μ λν΄μ μ’λ μμΈν μ¬νμ λ€μμμ: | 3755 | 첫 λ²μ§Έ μ±λ(ν μ§ λμ΄)μ μμ νμ¬ |
3590 | http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | 3756 | μ λ‘λν©λλ€. |
3757 | |||
3758 | μ λ‘λμλ μ΅λ 45μ΄ μ λκ° μμλ©λλ€. μ§ν νμΌμ | ||
3759 | μ λ‘λν΄λ ν μ§μ μλ μ€λΈμ νΈκ° μ΄λνμ§λ *μμ΅λλ€*. | ||
3760 | λ¨μ§ μ§ν μ체 λ° κ΅¬ν κ΄λ ¨ κΆνλ§μ΄ | ||
3761 | μ΄λν©λλ€. μ€λΈμ νΈλ€μ΄ μ§νλ‘ μ΄λν μ μμ΅λλ€. | ||
3762 | |||
3763 | μ§μ λμ΄ νλ νΈμ§μ λν μμΈν λ΄μ©μ | ||
3764 | http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFileμμ μ°Έμ‘°νμμμ€. | ||
3591 | </message> | 3765 | </message> |
3592 | </alert> | 3766 | </alert> |
3593 | <alert name="HelpRegionDownloadRaw" title="RAW μ§ν λ€μ΄λ‘λ."> | 3767 | <alert name="HelpRegionDownloadRaw" title="RAW μ§ν λ€μ΄λ‘λ"> |
3594 | <message name="message"> | 3768 | <message name="message"> |
3595 | μ΄ λ²νΌμ λλ₯΄μλ©΄ μ΄ μ§μμ λμ΄ νλͺ© λ°μ΄ν°, ꡬν ν¬κΈ°, | 3769 | μ΄ λ²νΌμ μ¬μ©νλ©΄ ν΄λΉ μ§μμ λν λμ΄ νλ λ°μ΄ν°, ꡬν ν¬κΈ°, |
3596 | ꡬν 맀물 μ¬λΆ, μΌλΆ ꡬν κΆν λ±μ ν¬ν¨νλ νμΌμ΄ | 3770 | νλ§€μ© κ΅¬ν μν, μΌλΆ ꡬν κΆν λ±μ΄ ν¬ν¨λ νμΌμ λ€μ΄λ‘λν |
3597 | λ€μ΄λ‘λλ©λλ€. | 3771 | μ μμ΅λλ€. Photoshopκ³Ό κ°μ νλ‘κ·Έλ¨μμ νμΌμ μ΄ λ |
3598 | 3772 | λ¬Έμμ ν¬κΈ°λ₯Ό RGB, 256x256(13μ±λ ν¬ν¨)μΌλ‘ | |
3599 | 3773 | μ§μ ν΄μΌ ν©λλ€. μ΄ μ§ν νμΌμ λ€λ₯Έ λ°©μμΌλ‘ | |
3600 | |||
3601 | |||
3602 | RGB, 256x256, 13κ° μ±λ. μ΄ μ§ν νμΌμ λ€λ₯Έ λ°©μμΌλ‘λ | ||
3603 | μ΄ μ μμ΅λλ€. | 3774 | μ΄ μ μμ΅λλ€. |
3604 | 3775 | ||
3605 | μ§μ λμ΄ νλͺ© νΈμ§μ κ΄ν μμΈν λ΄μ©μ λ€μ λ§ν¬λ₯Ό μ°Έκ³ νμμμ€: | 3776 | μ§μ λμ΄ νλ νΈμ§μ λν μμΈν μ¬νμ λ€μμΌλ‘ μ΄λνμμμ€: |
3606 | http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | 3777 | http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile |
3607 | </message> | 3778 | </message> |
3608 | </alert> | 3779 | </alert> |
3609 | <alert name="HelpRegionUseEstateSun" title="μμ μ§ νμ μ¬μ©"> | 3780 | <alert name="HelpRegionUseEstateSun" title="μ¬μ μ§ μ μ© νμ μ¬μ©"> |
3610 | <message name="message"> | 3781 | <message name="message"> |
3611 | μ΄ μ²΄ν¬λ°μ€λ μ΄ μ§μμ νμμ΄ λλ¨Έμ§ μμ μ§μμ | 3782 | μ νμ μ΄ μ§μμ νμ μμΉκ° λλ¨Έμ§ μ¬μ μ§μ νμ μμΉμ λμΌνκ² μ€μ λ©λλ€. |
3612 | νμμ μμΉμ λμΌνκ² λ§λλλ€. | ||
3613 | 3783 | ||
3614 | κΈ°λ³Έ μ€μ : μΌμ§ | 3784 | κΈ°λ³Έ μ€μ : μΌμ§ |
3615 | </message> | 3785 | </message> |
3616 | </alert> | 3786 | </alert> |
3617 | <alert name="HelpRegionFixedSun" title="κ³ μ νμ"> | 3787 | <alert name="HelpRegionFixedSun" title="νμ κ³ μ "> |
3618 | <message name="message"> | 3788 | <message name="message"> |
3619 | μ΄ μ²΄ν¬λ°μ€λ νμμ μμΉλ₯Ό λ¨κ³ μ¬λΌμ΄λλ΄ | 3789 | μ¬λΌμ΄λλ‘ νμμ μμΉλ₯Ό μ€μ νκ³ νμμ΄ μ΄λνμ§ μλλ‘ κ³ μ μν΅λλ€. |
3620 | μμΉλ‘ μ€μ ν ν λ μ΄μ μμ§μ΄μ§ μλλ‘ λ§λλλ€. | ||
3621 | 3790 | ||
3622 | κΈ°λ³Έ μ€μ : κΊΌμ§ | 3791 | κΈ°λ³Έ μ€μ : κΊΌμ§ |
3623 | </message> | 3792 | </message> |
@@ -3625,137 +3794,122 @@ http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | |||
3625 | <alert name="HelpRegionBakeTerrain" title="μ§ν μ μ₯"> | 3794 | <alert name="HelpRegionBakeTerrain" title="μ§ν μ μ₯"> |
3626 | <message name="message"> | 3795 | <message name="message"> |
3627 | μ΄ λ²νΌμ λλ₯΄λ©΄ νμ¬ μ§ν λͺ¨μ΅μ΄ μ§μμ μλ‘μ΄ | 3796 | μ΄ λ²νΌμ λλ₯΄λ©΄ νμ¬ μ§ν λͺ¨μ΅μ΄ μ§μμ μλ‘μ΄ |
3628 | κΈ°λ³Έ μ§νμΌλ‘ μ μ₯λ©λλ€. μΌλ¨ μ μ₯λκ³ λλ©΄ κ·ν λλ λ€λ₯Έ μ¬λμ΄ | 3797 | κΈ°λ³Έ μ§νμΌλ‘ μ μ₯λ©λλ€. μ μ₯λν λ³ΈμΈ λλ λ€λ₯Έ μ¬λμ΄ |
3629 | ν μ§ νΈμ§ 볡ꡬ μ΅μ /λꡬλ₯Ό μ¬μ©ν λλ§λ€ | 3798 | ν μ§ νΈμ§μ '볡ꡬ' λ²νΌμ ν΄λ¦ν΄ μ μ₯λ λͺ¨μ΅μ λλ릴 μμμΌλ©°, λν μ μ₯λ μ§νμ μ§ν λμ΄κΈ° λ° λμΆκΈ° |
3630 | μ μ₯ν λͺ¨μ΅μ λλ릴 μ μμ΅λλ€ . λν μ μ₯λ μ§νμ μ§ν λμ΄κΈ° λ° λμΆκΈ° | 3799 | νκ³μ λν κΈ°μ€ μ§μ μ΄ λ©λλ€. |
3631 | νκ³μ λν μ€κ° μ§μ μ΄κΈ°λ ν©λλ€. | ||
3632 | </message> | 3800 | </message> |
3633 | </alert> | 3801 | </alert> |
3634 | <alert name="HelpEstateEstateManager" title="μμ μ§ κ΄λ¦¬μ"> | 3802 | <alert name="HelpEstateEstateManager" title="μ¬μ μ§ κ΄λ¦¬μ"> |
3635 | <message name="message"> | 3803 | <message name="message"> |
3636 | μμ μ§ κ΄λ¦¬μλ μ§μ λ° μμ μ§ μ€μ μ μ΄λ₯Ό | 3804 | μ¬μ μ§ κ΄λ¦¬μλ μ§μ λ° μ¬μ μ§ μ€μ μ μ μ΄ν μ μλλ‘ |
3637 | μμλ°μ μ£Όλ―Όμ λλ€. μμ μ§ κ΄λ¦¬μλ | 3805 | λ³ΈμΈμ΄ μμνλ μ£Όλ―Όμ λλ€. μ¬μ μ§ κ΄λ¦¬μλ |
3638 | μ λ‘λ©, λ€μ΄λ‘λ© λ° μ§ν μ μ₯μ μ μΈν λ³Έ ν¨λλ΄μ λͺ¨λ μ€μ μ | 3806 | μ§ν μ λ‘λ, λ€μ΄λ‘λ λ° μ μ₯μ μ μΈν λͺ¨λ μ€μ μ |
3639 | λ³κ²½ν μ μλ κΆνμ κ°μ§λλ€. νΉν, μμ μ§ κ΄λ¦¬μλ | 3807 | μ΄ μλμ°μμ λ³κ²½ν μ μμ΅λλ€. μ¬μ μ§ κ΄λ¦¬μλ νΉν, |
3640 | μ£Όλ―Όμ΄ μμ μ§λ΄μ κ±°μ£Όν κ²μ νμ© λλ κΈμ§ν μ μμ΅λλ€. | 3808 | μ¬μ μ§μ μ£Όλ―Ό μ§μ μ νμ©νκ±°λ κΈμ§ν μ μμ΅λλ€. |
3641 | 3809 | ||
3642 | μμ μ§ κ΄λ¦¬μλ ν΄λΉ μμ μ§μ μμ μμ μν΄μλ§ μΆκ°-μ κ±°λ μ μμΌλ©° | 3810 | μ¬μ μ§μ μμ μλ§μ΄ μ¬μ μ§ κ΄λ¦¬μλ₯Ό μΆκ°νκ±°λ μ κ±°ν μ μμΌλ©° |
3643 | κ΄λ¦¬μλ€λΌλ¦¬λ μΆκ°-μ κ±°ν μ μμ΅λλ€. μ λ’°ν μ μλ μ£Όλ―Όλ§ | 3811 | μ¬μ μ§ κ΄λ¦¬μλ λ€λ₯Έ κ΄λ¦¬μλ₯Ό μΆκ°νκ±°λ μ κ±°ν μ μμ΅λλ€. μ¬μ μ§ κ΄λ¦¬μμ νλμ |
3644 | μμ μ§ κ΄λ¦¬μλ‘ μλͺ νμμμ€. κ²°κ΅ κ΄λ¦¬μμ νλμ λν μ± μμ | 3812 | λν μ± μμ μ μ μΌλ‘ κ·Έ μ§μμ μμ μκ° μ§λ―λ‘ μ λ’°νλ |
3645 | μμ μκ° μ§κ² λ©λλ€. | 3813 | μ£Όλ―Όμ μ¬μ μ§ κ΄λ¦¬μλ‘ μ νν΄μΌ ν©λλ€. |
3646 | </message> | 3814 | </message> |
3647 | </alert> | 3815 | </alert> |
3648 | <alert name="HelpEstateUseGlobalTime" title="μΈκ³ μκ° μ¬μ©"> | 3816 | <alert name="HelpEstateUseGlobalTime" title="νμ€μκ° μ¬μ©"> |
3649 | <message name="message"> | 3817 | <message name="message"> |
3650 | μ΄ μ²΄ν¬λ°μ€λ μμ μ§μ νμμ΄ λ¦°λ μμ μ | 3818 | μ νμ μ¬μ μ§μ νμμ λ¦°λ μμ |
3651 | 'λ³Έν ' μμ μ§ νμκ³Ό κ°μ μμΉλ₯Ό λ°λ₯΄λλ‘ | 3819 | 'λ©μΈλλ' μ νμ μμΉμ λμΌνκ² |
3652 | ν©λλ€. | 3820 | μ€μ λ©λλ€. |
3653 | 3821 | ||
3654 | κΈ°λ³Έ μ€μ : μΌμ§ | 3822 | κΈ°λ³Έ μ€μ : μΌμ§ |
3655 | </message> | 3823 | </message> |
3656 | </alert> | 3824 | </alert> |
3657 | <alert name="HelpEstateFixedSun" title="κ³ μ νμ"> | 3825 | <alert name="HelpEstateFixedSun" title="νμ κ³ μ "> |
3658 | <message name="message"> | 3826 | <message name="message"> |
3659 | μ΄ μ²΄ν¬λ°μ€λ νμμ μμΉλ₯Ό λ¨κ³ μ¬λΌμ΄λλ΄ | 3827 | μ¬λΌμ΄λλ‘ νμμ μμΉλ₯Ό μ€μ νκ³ νμμ΄ μ΄λνμ§ μλλ‘ κ³ μ μν΅λλ€. |
3660 | μμΉλ‘ μ€μ ν ν λ μ΄μ μμ§μ΄μ§ μλλ‘ λ§λλλ€. | ||
3661 | </message> | 3828 | </message> |
3662 | </alert> | 3829 | </alert> |
3663 | <alert name="HelpEstateMainlandVisible" title="μ¬κΈ°μ λ³Έν λ κ°μκΆλ΄"> | 3830 | <alert name="HelpEstateExternallyVisible" title="μΌλ° 곡κ°"> |
3664 | <message name="message"> | 3831 | <message name="message"> |
3665 | μ΄ μμ μ§μ μ£Όλ―Όλ€μ΄ μΈκ³ μ§λμμμ λ¦°λ μμ μ | 3832 | λ€λ₯Έ μ¬μ μ§ λ΄μ μλ μ£Όλ―Όλ€μ΄ |
3666 | 'λ³Έν ' μμ μ§λ₯Ό λ³Ό μ μλμ§ μ¬λΆλ₯Ό μ€μ ν©λλ€. | 3833 | μ κ·Ό κΆν 리μ€νΈμ μ¬λΌμμ§ μμλ μ΄ μ¬μ μ§μ λ€μ΄κ° μ μλμ§ μ¬λΆλ₯Ό μ€μ ν©λλ€. |
3667 | 3834 | ||
3668 | κΈ°λ³Έ μ€μ : μΌμ§ | 3835 | κΈ°λ³Έ μ€μ : μΌμ§ |
3669 | </message> | 3836 | </message> |
3670 | </alert> | 3837 | </alert> |
3671 | <alert name="HelpEstateExternallyVisible" title="λ³Έν μμ κ°μκΆλ΄"> | 3838 | <alert name="HelpEstateAllowDirectTeleport" title="μ§μ ν λ ν¬νΈ νμ©"> |
3672 | <message name="message"> | 3839 | <message name="message"> |
3673 | λ¦°λ μμ 'λ³Έν ' μμ μ§λ΄μ μλ μ£Όλ―Όλ€μ΄ | 3840 | μ΄ μ΅μ μ μ ννλ©΄ μ£Όλ―Όμ΄ μ¬μ©μ μ¬μ μ§μ λͺ¨λ μ§μ μΌλ‘ |
3674 | μΈκ³ μ§λμμμ κ·νμ μμ μ§λ₯Ό λ³Ό μ μλμ§ μ¬λΆλ₯Ό μ€μ ν©λλ€. | 3841 | μ§μ ν λ ν¬νΈν μ μμ΅λλ€. μ΄ μ΅μ μ μ νμ μ·¨μνλ©΄ μ£Όλ―Όμ΄ κ°μ₯ κ°κΉμ΄ |
3675 | 3842 | ν λ νλΈλ‘ ν λ ν¬νΈν©λλ€. | |
3676 | κΈ°λ³Έ μ€μ : μΌμ§ | ||
3677 | </message> | ||
3678 | </alert> | ||
3679 | <alert name="HelpEstateAllowDirectTeleport" title="μ§μ ν 리ν¬νΈ νμ©"> | ||
3680 | <message name="message"> | ||
3681 | μ²΄ν¬ νμνλ©΄, μ£Όλ―Όλ€μ κ·νμ μμ μ§ μ΄λ μ§μ μΌλ‘λ | ||
3682 | μ§μ ν 리ν¬νΈκ° κ°λ₯ν΄μ§λλ€. μ²΄ν¬ νμλ₯Ό μ§μ°λ©΄, μ£Όλ―Όλ€μ κ°μ₯ κ°κΉμ΄ | ||
3683 | ν 리νλΈλ‘ ν 리ν¬νΈνκ² λ©λλ€. | ||
3684 | 3843 | ||
3685 | κΈ°λ³Έ μ€μ : κΊΌμ§ | 3844 | κΈ°λ³Έ μ€μ : κΊΌμ§ |
3686 | </message> | 3845 | </message> |
3687 | </alert> | 3846 | </alert> |
3688 | <alert name="HelpEstateAllowResident" title="μ‘μΈμ€ νμ©"> | 3847 | <alert name="HelpEstateAllowResident" title="μ‘μΈμ€ νμ©"> |
3689 | <message name="message"> | 3848 | <message name="message"> |
3690 | μ΄ λͺ©λ‘μ μ£Όλ―Όμ΄ ν¬ν¨λμ΄ μλ κ²½μ°, μμ μ§μ λν μ‘μΈμ€λ | 3849 | μ¬μ μ§ μ¬μ©κΆνμ λͺ©λ‘μ μλ μ£Όλ―Όλ€κ³Ό μλ λͺ©λ‘μ κ·Έλ£Ήλ€λ‘ μ νλ©λλ€. |
3691 | λͺ©λ‘μμ μ£Όλ―Ό λ° μλ μ΄κ±°λ κ·Έλ£Ήμ νμ λ©λλ€. | ||
3692 | 3850 | ||
3693 | (ν΄λΉ μμ μ§κ° λ³Έν μ κ°μκΆλ΄μ μλ κ²½μ°, μ‘μΈμ€λ | 3851 | (μ¬μ μ§λ₯Ό λ©μΈλλμμ νμΈν μ μλ κ²½μ°, μ¬μ©κΆνμ μ£Όλ―Ό λλ λͺ©λ‘μμ κ·Έλ£ΉμΌλ‘ μ νλ μ μκ³ , μ΄λ¬ν μ μ΄λ λΉνμ±ν λ©λλ€. βμ κ·Ό κ±°λΆβ λͺ©λ‘λ§ μ¬μ©λ¨). |
3694 | λͺ©λ‘μμ κ·Έλ£Ή λλ μ£Όλ―Όμ νμ λ μ μμΌλ©°, μ΄κ°μ ν΅μ κΆμ | ||
3695 | λΉνμ±νλ©λλ€. 'μ‘μΈμ€ κΈμ§' λͺ©λ‘λ§ μ¬μ©λ©λλ€.) | ||
3696 | </message> | 3852 | </message> |
3697 | </alert> | 3853 | </alert> |
3698 | <alert name="HelpEstateAllowGroup" title="κ·Έλ£Ή μ‘μΈμ€ νμ©"> | 3854 | <alert name="HelpEstateAllowGroup" title="κ·Έλ£Ή μ‘μΈμ€ νμ©"> |
3699 | <message name="message"> | 3855 | <message name="message"> |
3700 | μ΄ λͺ©λ‘μ κ·Έλ£Ήμ΄ ν¬ν¨λμ΄ μλ κ²½μ°, μμ μ§μ λν | 3856 | μ¬μ μ§ μ¬μ©κΆνμ λͺ©λ‘μμ κ·Έλ£Ήλ€κ³Ό μμ νΉλ³ν νλ½λ μ£Όλ―Όλ€λ‘ μ νλ©λλ€. |
3701 | μ‘μΈμ€λ ν΄λΉ κ·Έλ£Ή, κ·Έλ¦¬κ³ μμ ꡬ체μ μΌλ‘ μ§μ λ | ||
3702 | μ£Όλ―Όμ νμ λ©λλ€. | ||
3703 | 3857 | ||
3704 | (ν΄λΉ μμ μ§κ° λ³Έν μ κ°μκΆλ΄μ μλ κ²½μ°, μ‘μΈμ€λ | 3858 | (μ¬μ μ§λ₯Ό λ©μΈλλμμ νμΈν μ μλ κ²½μ°, μ¬μ©κΆνμ μ£Όλ―Ό λλ λͺ©λ‘μμ κ·Έλ£ΉμΌλ‘ μ νλ μ μκ³ , μ΄λ¬ν μ μ΄λ λΉνμ±ν λ©λλ€. βμ κ·Ό κ±°λΆβ λͺ©λ‘λ§ μ¬μ©λ¨). |
3705 | λͺ©λ‘μμ κ·Έλ£Ή λλ μ£Όλ―Όμ νμ λ μ μμΌλ©°, μ΄κ°μ ν΅μ κΆμ | ||
3706 | λΉνμ±νλ©λλ€. 'μ‘μΈμ€ κΈμ§' λͺ©λ‘λ§ μ¬μ©λ©λλ€.) | ||
3707 | </message> | 3859 | </message> |
3708 | </alert> | 3860 | </alert> |
3709 | <alert name="HelpEstateBanResident" title="μ‘μΈμ€ κ±°λΆ"> | 3861 | <alert name="HelpEstateBanResident" title="μ‘μΈμ€ κ±°λΆ"> |
3710 | <message name="message"> | 3862 | <message name="message"> |
3711 | μ΄ λͺ©λ‘μ μλ μ£Όλ―Όλ€μ μμ νμ© λ° κ·Έλ£Ή μ€μ μ κ΄κ³ μμ΄ | 3863 | μ΄ λͺ©λ‘μ μλ μ£Όλ―Όλ€μ |
3712 | κ·νμ μμ μ§ μΆμ μ΄ κΈμ§λ©λλ€. | 3864 | μμ νκ°μ κ·Έλ£Ή μ€μ μ κ΄κ³μμ΄ λ΄ μ¬μ μ§ μ¬μ© κΆνμ΄ κ±°λΆλμμ΅λλ€. |
3713 | 3865 | ||
3714 | μ΄ λͺ©λ‘μ μ£Όλ―Όμ μΆκ°ν κ²½μ°, ν΄λΉ μ£Όλ―Όμ νμ© λͺ©λ‘μμ | 3866 | μ΄ λͺ©λ‘μΌλ‘ μ£Όλ―Όμ μΆκ°νλ©΄ |
3715 | μμ λ©λλ€. | 3867 | νκ° λͺ©λ‘μμ ν΄λΉ μ£Όλ―Όμ΄ μ κ±°λ©λλ€. |
3716 | </message> | 3868 | </message> |
3717 | </alert> | 3869 | </alert> |
3718 | <alert name="HelpEstateCovenant" title="μμ μ§ κ³μ½ μ‘°ν"> | 3870 | <alert name="HelpEstateCovenant" title="μ¬μ μ§ μν κ·μΉ"> |
3719 | <message name="message"> | 3871 | <message name="message"> |
3720 | μμ μ§ κ³μ½ μ‘°νμ μ€μ νλ©΄ ν΄λΉ μμ μ§ λ΄μμ | 3872 | μ¬μ μ§ μν κ·μΉμ μ€μ νλ©΄ ν΄λΉ μ¬μ μ§ λ΄μ ꡬνμ |
3721 | ꡬνμ ν맀ν μ μμ΅λλ€. κ³μ½ μ‘°νμ΄ μ€μ λμ§ μμ κ²½μ° | 3873 | ν맀ν μ μμ΅λλ€. μν κ·μΉμ μ€μ νμ§ μμΌλ©΄ ν μ§λ₯Ό |
3722 | ν μ§λ₯Ό ν맀ν μ μμ΅λλ€. κ³μ½μ‘°νμ λ ΈνΈμΉ΄λλ ꡬ맀μκ° ν μ§ κ΅¬μ μ | 3874 | ν맀ν μ μμ΅λλ€. κ·μΉμ μ μ©νμ§ μμΌλ €λ κ²½μ° λλ ꡬ맀μκ° |
3723 | ν μ§μ κ΄λ ¨λ μ΄λ€ν λ΄μ© μ΄λ κ·μΉλ μ μ©νμ§ μμΌλ €λ κ²½μ° | 3875 | ν μ§λ₯Ό ꡬ맀νκΈ° μ μ ν μ§ κ΄λ ¨ μ¬νμ μλ¦¬κ³ μΆμ κ²½μ°μλ |
3724 | κ³΅λ°±μΌ μ μμ΅λλ€. | 3876 | μν κ·μΉμ λν λ ΈνΈμΉ΄λλ₯Ό λΉμλ μ μμ΅λλ€. |
3725 | 3877 | ||
3726 | κ³μ½μ‘°νμ κ·μΉ, μ§μΉ¨, λ¬Ένμ μ 보μ λνκ² μ΄κ±°λ, | 3878 | μν κ·μΉμ μ¬μ©νμ¬ κ·μΉ, κ°μ΄λ, λ¬Έν κ΄λ ¨ μ 보 |
3727 | ν₯νμ ꡬ맀μμ λν κΈ°λμΌ μ μμ΅λλ€. μ¬κΈ°μλ ꡬμ κ²°μ , κ·μ μ μ , μ§λΆ μ΅μ λλ | 3879 | λλ λ³ΈμΈμ κΈ°λ μ¬ν λ±μ ꡬ맀 μμ μμκ² |
3728 | ꡬ맀νκΈ° μ μ νμΈνκ±°λ λμνκΈ° μν΄ μ€μνλ€κ³ μκ°λλ | 3880 | μ릴 μ μμ΅λλ€. μ¬κΈ°μλ ꡬμ μ€μ , κ·μ μ μ , μ§λΆ μ΅μ |
3729 | κΈ°ν μ λ³΄κ° ν¬ν¨λ©λλ€. | 3881 | λλ ꡬ맀 μμ μκ° κ΅¬λ§€νκΈ° μ μ νμΈνκ³ |
3882 | λμν΄μΌ νλ€κ³ μκ°λλ κΈ°ν μ λ³΄κ° | ||
3883 | ν¬ν¨λ©λλ€. | ||
3730 | 3884 | ||
3731 | ꡬ맀μλ ꡬ맀μ μλ£νκΈ° μ μ νμΈλμ ν΄λ¦νμ¬ | 3885 | ꡬ맀μλ ꡬ맀λ₯Ό μλ£νκΈ° μ μ νμΈλμ ν΄λ¦νμ¬ |
3732 | κ³μ½μ‘°νμ λμν΄μΌ ν©λλ€. μμ μ§ | 3886 | μν κ·μΉμ λμν΄μΌ ν©λλ€. μ¬μ©μκ° |
3733 | κ³μ½ μ‘°νμ λͺ¨λ ꡬνμ λν ν μ§ μ 보 λνμμ | 3887 | μ€μ ν ꡬνμ λν μ¬μ μ§ μν κ·μΉμ ν μ§ μκ° λν μμμμ |
3734 | μΈμ λ μ§ νμΈν μ μμ΅λλ€. | 3888 | μΈμ λ μ§ νμΈν μ μμ΅λλ€. |
3735 | </message> | 3889 | </message> |
3736 | </alert> | 3890 | </alert> |
3737 | <alert name="BuyObjectOneOnly" title="μμ΄ν μ ꡬ맀ν μ μμ΅λλ€"> | 3891 | <alert name="BuyObjectOneOnly" title="μ€λΈμ νΈλ₯Ό ꡬ맀ν μ μμ΅λλ€."> |
3738 | <message name="message"> | 3892 | <message name="message"> |
3739 | νλ²μ μ¬λ¬Ό 1κ°λ§ ꡬ맀ν μ μμ΅λλ€. | 3893 | νλ²μ λ μ΄μμ μ€λΈμ νΈλ₯Ό ꡬμ ν μ μμ΅λλ€. |
3740 | 1κ°μ μ¬λ¬Όλ§ μ νν ν λ€μ μλν΄ μ£Όμμμ€. | 3894 | 1κ°μ μ€λΈμ νΈλ§ μ νν ν λ€μ μλν΄ μ£Όμμμ€. |
3741 | </message> | 3895 | </message> |
3742 | </alert> | 3896 | </alert> |
3743 | <alert name="BuyObjectOneOwner" title="μμ΄ν μ ꡬ맀ν μ μμ΅λλ€"> | 3897 | <alert name="BuyObjectOneOwner" title="μ€λΈμ νΈλ₯Ό ꡬ맀ν μ μμ΅λλ€."> |
3744 | <message name="message"> | 3898 | <message name="message"> |
3745 | λμμ λ€λ₯Έ μ¬λ¬ μμ μ£Όλ‘λΆν° μ¬λ¬Όμ ꡬμ ν μ μμ΅λλ€. | 3899 | λμμ λ€λ₯Έ μ¬λ¬ μμ μ£Όλ‘ λΆν° μ€λΈμ νΈλ₯Ό ꡬμ ν μ μμ΅λλ€. |
3746 | 1κ°μ μ¬λ¬Όλ§ μ νν ν λ€μ μλν΄ μ£Όμμμ€. | 3900 | 1κ°μ μ€λΈμ νΈλ§ μ νν ν λ€μ μλν΄ μ£Όμμμ€. |
3747 | </message> | 3901 | </message> |
3748 | </alert> | 3902 | </alert> |
3749 | <alert name="BuyContentsOneOnly" title="컨ν μΈ λ₯Ό ꡬ맀ν μ μμ΅λλ€"> | 3903 | <alert name="BuyContentsOneOnly" title="컨ν μΈ λ₯Ό ꡬ맀ν μ μμ΅λλ€."> |
3750 | <message name="message"> | 3904 | <message name="message"> |
3751 | νλ²μ 1κ° μ¬λ¬Όμ 컨ν μΈ λ§ κ΅¬λ§€ν μ μμ΅λλ€. | 3905 | νλ²μ 2κ° μ΄μ μ€λΈμ νΈμ 컨ν μΈ λ₯Ό ꡬμ ν μ μμ΅λλ€. |
3752 | 1κ°μ μ¬λ¬Όλ§ μ νν ν λ€μ μλν΄ μ£Όμμμ€. | 3906 | 1κ°μ μ€λΈμ νΈλ§ μ νν ν λ€μ μλν΄ μ£Όμμμ€. |
3753 | </message> | 3907 | </message> |
3754 | </alert> | 3908 | </alert> |
3755 | <alert name="BuyContentsOneOwner" title="컨ν μΈ λ₯Ό ꡬ맀ν μ μμ΅λλ€"> | 3909 | <alert name="BuyContentsOneOwner" title="컨ν μΈ λ₯Ό ꡬ맀ν μ μμ΅λλ€."> |
3756 | <message name="message"> | 3910 | <message name="message"> |
3757 | λμμ λ€λ₯Έ μ¬λ¬ μμ μ£Όλ‘λΆν° μ¬λ¬Όμ ꡬμ ν μ μμ΅λλ€. | 3911 | λμμ λ€λ₯Έ μ¬λ¬ μμ μ£Όλ‘ λΆν° μ€λΈμ νΈλ₯Ό ꡬμ ν μ μμ΅λλ€. |
3758 | 1κ°μ μ¬λ¬Όλ§ μ νν ν λ€μ μλν΄ μ£Όμμμ€. | 3912 | 1κ°μ μ€λΈμ νΈλ§ μ νν ν λ€μ μλν΄ μ£Όμμμ€. |
3759 | </message> | 3913 | </message> |
3760 | </alert> | 3914 | </alert> |
3761 | <alert name="PermYes"> | 3915 | <alert name="PermYes"> |
@@ -3770,8 +3924,8 @@ http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | |||
3770 | </alert> | 3924 | </alert> |
3771 | <alert name="BuyOriginal"> | 3925 | <alert name="BuyOriginal"> |
3772 | <message name="message"> | 3926 | <message name="message"> |
3773 | L$[PRICE]μ [OWNER](μΌ)λ‘λΆν° μλ³Έ μμ΄ν μ ꡬ맀νμκ² μ΅λκΉ? | 3927 | L$[PRICE]μ [OWNER](μΌ)λ‘λΆν° μλ³Έ μ€λΈμ νΈλ₯Ό ꡬ맀 νμκ² μ΅λκΉ? |
3774 | κ·νλ μ΄ μμ΄ν μ μμ μ£Όκ° λ κ²μ λλ€. | 3928 | κ·νλ μ΄ μ€λΈμ νΈμ μμ μ£Όκ° λ©λλ€. |
3775 | λ€μμ μνν μ μμ΅λλ€: | 3929 | λ€μμ μνν μ μμ΅λλ€: |
3776 | μμ : [MODIFYPERM] | 3930 | μμ : [MODIFYPERM] |
3777 | 볡μ¬: [COPYPERM] | 3931 | 볡μ¬: [COPYPERM] |
@@ -3786,9 +3940,9 @@ http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | |||
3786 | </alert> | 3940 | </alert> |
3787 | <alert name="BuyOriginalNoOwner"> | 3941 | <alert name="BuyOriginalNoOwner"> |
3788 | <message name="message"> | 3942 | <message name="message"> |
3789 | L$[PRICE]μ μλ³Έ μμ΄ν μ ꡬ맀νμκ² μ΅λκΉ? | 3943 | L$[PRICE]μ μλ³Έ μ€λΈμ νΈλ₯Ό ꡬ맀 νμκ² μ΅λκΉ? |
3790 | κ·νλ μ΄ μμ΄ν μ μμ μ£Όκ° λ κ²μ λλ€. | 3944 | κ·νλ μ΄ μ€λΈμ νΈμ μμ μ£Όκ° λ©λλ€. |
3791 | λ€μ μμ μ μνν μ μμ΅λλ€: | 3945 | λ€μμ μνν μ μμ΅λλ€: |
3792 | μμ : [MODIFYPERM] | 3946 | μμ : [MODIFYPERM] |
3793 | 볡μ¬: [COPYPERM] | 3947 | 볡μ¬: [COPYPERM] |
3794 | μ¬ν맀 λλ λ¬΄λ£ λ°°ν¬: [RESELLPERM] | 3948 | μ¬ν맀 λλ λ¬΄λ£ λ°°ν¬: [RESELLPERM] |
@@ -3802,9 +3956,9 @@ http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | |||
3802 | </alert> | 3956 | </alert> |
3803 | <alert name="BuyCopy"> | 3957 | <alert name="BuyCopy"> |
3804 | <message name="message"> | 3958 | <message name="message"> |
3805 | L$[PRICE]μ [OWNER](μΌ)λ‘λΆν° 볡μ¬λ³Έμ ꡬ맀νμκ² μ΅λκΉ? | 3959 | L$[PRICE]μ [OWNER](μΌ)λ‘λΆν° 볡μ¬λ³Έμ ꡬ맀 νμκ² μ΅λκΉ? |
3806 | μ¬λ¬Όμ΄ μ¬μ©μμ 보κ΄ν¨μΌλ‘ 볡μ¬λ©λλ€. | 3960 | μ€λΈμ νΈλ μ¬μ©μμ μΈλ²€ν λ¦¬λ‘ λ³΅μ¬λ©λλ€. |
3807 | λ€μμ ν μ μμ΅λλ€: | 3961 | λ€μμ μνν μ μμ΅λλ€: |
3808 | μμ : [MODIFYPERM] | 3962 | μμ : [MODIFYPERM] |
3809 | 볡μ¬: [COPYPERM] | 3963 | 볡μ¬: [COPYPERM] |
3810 | μ¬ν맀 λλ λ¬΄λ£ λ°°ν¬: [RESELLPERM] | 3964 | μ¬ν맀 λλ λ¬΄λ£ λ°°ν¬: [RESELLPERM] |
@@ -3818,9 +3972,9 @@ http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | |||
3818 | </alert> | 3972 | </alert> |
3819 | <alert name="BuyCopyNoOwner"> | 3973 | <alert name="BuyCopyNoOwner"> |
3820 | <message name="message"> | 3974 | <message name="message"> |
3821 | L$[PRICE]μ 볡μ¬λ³Έμ ꡬ맀νμκ² μ΅λκΉ? | 3975 | L$[PRICE]μ 볡μ¬λ³Έμ ꡬ맀 νμκ² μ΅λκΉ? |
3822 | μμ΄ν μ΄ μ¬μ©μμ μ μ₯κ³ λ‘ λ³΅μ¬λ©λλ€. | 3976 | μ€λΈμ νΈλ μ¬μ©μμ μΈλ²€ν λ¦¬λ‘ λ³΅μ¬λ©λλ€. |
3823 | λ€μ μμ μ μνν μ μμ΅λλ€: | 3977 | λ€μμ μνν μ μμ΅λλ€: |
3824 | μμ : [MODIFYPERM] | 3978 | μμ : [MODIFYPERM] |
3825 | 볡μ¬: [COPYPERM] | 3979 | 볡μ¬: [COPYPERM] |
3826 | μ¬ν맀 λλ λ¬΄λ£ λ°°ν¬: [RESELLPERM] | 3980 | μ¬ν맀 λλ λ¬΄λ£ λ°°ν¬: [RESELLPERM] |
@@ -3834,8 +3988,8 @@ http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | |||
3834 | </alert> | 3988 | </alert> |
3835 | <alert name="BuyContents"> | 3989 | <alert name="BuyContents"> |
3836 | <message name="message"> | 3990 | <message name="message"> |
3837 | L$[PRICE]μ [OWNER](μΌ)λ‘λΆν° 컨ν μΈ λ₯Ό ꡬ맀νμκ² μ΅λκΉ? | 3991 | L$[PRICE]μ [OWNER](μΌ)λ‘λΆν° 컨ν μΈ λ₯Ό ꡬ맀 νμκ² μ΅λκΉ? |
3838 | 컨ν μΈ λ μ¬μ©μμ 보κ΄ν¨μΌλ‘ 볡μ¬λ©λλ€. | 3992 | 컨ν μΈ λ μ¬μ©μμ μΈλ²€ν λ¦¬λ‘ λ³΅μ¬λ©λλ€. |
3839 | </message> | 3993 | </message> |
3840 | <option name="Buy"> | 3994 | <option name="Buy"> |
3841 | ꡬ맀 | 3995 | ꡬ맀 |
@@ -3847,7 +4001,7 @@ http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | |||
3847 | <alert name="BuyContentsNoOwner"> | 4001 | <alert name="BuyContentsNoOwner"> |
3848 | <message name="message"> | 4002 | <message name="message"> |
3849 | L$[PRICE]μ 컨ν μΈ λ₯Ό ꡬ맀νμκ² μ΅λκΉ? | 4003 | L$[PRICE]μ 컨ν μΈ λ₯Ό ꡬ맀νμκ² μ΅λκΉ? |
3850 | 컨ν μΈ λ μ¬μ©μμ 보κ΄ν¨μΌλ‘ 볡μ¬λ©λλ€. | 4004 | 컨ν μΈ λ μ¬μ©μμ μΈλ²€ν λ¦¬λ‘ λ³΅μ¬λ©λλ€. |
3851 | </message> | 4005 | </message> |
3852 | <option name="Buy"> | 4006 | <option name="Buy"> |
3853 | ꡬ맀 | 4007 | ꡬ맀 |
@@ -3858,11 +4012,11 @@ http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | |||
3858 | </alert> | 4012 | </alert> |
3859 | <alert name="ConfirmPurchase"> | 4013 | <alert name="ConfirmPurchase"> |
3860 | <message name="message"> | 4014 | <message name="message"> |
3861 | μ΄ κ±°λλ: | 4015 | κ±°λλ λ€μκ³Ό κ°μ΅λλ€: |
3862 | 4016 | ||
3863 | [νλ] | 4017 | [ACTION] |
3864 | 4018 | ||
3865 | μ λ§ μ΄ κ±°λλ₯Ό μ§ννμκ² μ΅λκΉ? | 4019 | ꡬ맀λ₯Ό μ§ν νμκ² μ΅λκΉ? |
3866 | </message> | 4020 | </message> |
3867 | <option name="Confirm"> | 4021 | <option name="Confirm"> |
3868 | νμΈ | 4022 | νμΈ |
@@ -3873,12 +4027,12 @@ http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | |||
3873 | </alert> | 4027 | </alert> |
3874 | <alert name="ConfirmPurchasePassword"> | 4028 | <alert name="ConfirmPurchasePassword"> |
3875 | <message name="message"> | 4029 | <message name="message"> |
3876 | μ΄ κ±°λλ: | 4030 | κ±°λλ λ€μκ³Ό κ°μ΅λλ€: |
3877 | 4031 | ||
3878 | [νλ] | 4032 | [ACTION] |
3879 | 4033 | ||
3880 | μ λ§ μ΄ κ±°λλ₯Ό μ§ννμκ² μ΅λκΉ? | 4034 | ꡬ맀λ₯Ό μ§ννμκ² μ΅λκΉ? |
3881 | μνΈλ₯Ό μ¬μ λ ₯νκ³ νμΈμ ν΄λ¦ν΄ μ£Όμμμ€. | 4035 | μνΈλ₯Ό λ€μ μ λ ₯νκ³ 'νμΈ'μ ν΄λ¦νμμμ€. |
3882 | </message> | 4036 | </message> |
3883 | <option name="ConfirmPurchase"> | 4037 | <option name="ConfirmPurchase"> |
3884 | ꡬ맀 νμΈ | 4038 | ꡬ맀 νμΈ |
@@ -3890,9 +4044,9 @@ http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | |||
3890 | <alert name="SetPickLocation"> | 4044 | <alert name="SetPickLocation"> |
3891 | <message name="message"> | 4045 | <message name="message"> |
3892 | μ°Έκ³ : | 4046 | μ°Έκ³ : |
3893 | μ΄ μ ν μμΉλ μ λ°μ΄νΈ | 4047 | μ΄ μ ν μμΉλ |
3894 | μλ£λμμΌλ λ€λ₯Έ μΈλΆ μ¬νμ | 4048 | μ λ°μ΄νΈ μλ£λμμΌλ λ€λ₯Έ μΈλΆ μ¬νμ |
3895 | λ³Έλ κ°μ΄ μ μ§λ©λλ€. | 4049 | λ³Έλ κ°μ΄ μ μ§λ©λλ€. |
3896 | </message> | 4050 | </message> |
3897 | <option name="OK"> | 4051 | <option name="OK"> |
3898 | νμΈ | 4052 | νμΈ |
@@ -3900,185 +4054,341 @@ http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | |||
3900 | </alert> | 4054 | </alert> |
3901 | <alert name="MoveInventoryFromObject"> | 4055 | <alert name="MoveInventoryFromObject"> |
3902 | <message name="message"> | 4056 | <message name="message"> |
3903 | '무볡μ¬' μ μ₯κ³ μμ΄ν μ μ ννμ ¨μ΅λλ€. | 4057 | λ³΅μ¬ λΆκ° ' μΈλ²€ν 리 μμ΄ν μ μ ννμ ¨μ΅λλ€. |
3904 | μ΄ μμ΄ν λ€μ κ·νμ μ μ₯κ³ λ‘ λ³΅μ¬λλ κ²μ΄ μλλΌ μ겨μ§κ² λ©λλ€. | 4058 | μ΄λ¬ν μμ΄ν μ μΈλ²€ν 리μμ μ κ±°λλ©° 볡μ¬ν μ μμ΅λλ€. |
3905 | 4059 | ||
3906 | ν΄λΉ μμ΄ν (λ€)μ μ μ₯κ³ λ‘ μκΈ°μκ² μ΅λκΉ? | 4060 | μμ΄ν μ μκΈ°μκ² μ΅λκΉ? |
3907 | </message> | 4061 | </message> |
4062 | <ignore name="ignore"> | ||
4063 | μ€λΈμ νΈμμ 볡μ¬λΆκ° μμ΄ν μ μ΄λν λ | ||
4064 | </ignore> | ||
3908 | <option name="Move"> | 4065 | <option name="Move"> |
3909 | μ΄λ | 4066 | μ΄λ |
3910 | </option> | 4067 | </option> |
3911 | <option name="Don'tMove"> | 4068 | <option name="Don'tMove"> |
3912 | μ΄λ κΈμ§ | 4069 | μ΄λ μ ν¨ |
3913 | </option> | 4070 | </option> |
3914 | </alert> | 4071 | </alert> |
3915 | <alert name="MoveInventoryFromScriptedObject"> | 4072 | <alert name="MoveInventoryFromScriptedObject"> |
3916 | <message name="message"> | 4073 | <message name="message"> |
3917 | '무볡μ¬' μ μ₯κ³ μμ΄ν μ μ ννμ ¨μ΅λλ€. μ΄ μμ΄ν λ€μ | 4074 | λ³΅μ¬ λΆκ°' μΈλ²€ν 리 μμ΄ν μ μ ννμ ¨μ΅λλ€. μ΄λ¬ν μμ΄ν μ |
3918 | κ·νμ μ μ₯κ³ λ‘ λ³΅μ¬λλ κ²μ΄ μλλΌ μ겨μ§κ² λ©λλ€. | 4075 | μΈλ²€ν 리μμ μ κ±°λλ©° 볡μ¬ν μ μμ΅λλ€. |
3919 | 4076 | ||
3920 | μ΄ μ¬λ¬Όμ μ€ν¬λ¦½νΈλμ΄μκΈ° λλ¬Έμ, μ΄ μμ΄ν λ€μ | 4077 | μ΄λ¬ν μ€λΈμ νΈλ μ€ν¬λ¦½νΈλμκΈ° λλ¬Έμ μ΄ μμ΄ν μ |
3921 | μ μ₯κ³ λ‘ μκΈΈ κ²½μ° μ€ν¬λ¦½νΈμ μ€μλμ΄ λ°μν μ μμ΅λλ€. | 4078 | μΈλ²€ν λ¦¬λ‘ μ΄λνλ©΄ μ€ν¬λ¦½νΈμ λ¬Έμ κ° λ°μν μ μμ΅λλ€. |
3922 | 4079 | ||
3923 | ν΄λΉ μμ΄ν (λ€)μ μ μ₯κ³ λ‘ μκΈ°μκ² μ΅λκΉ? | 4080 | μμ΄ν μ μκΈ°μκ² μ΅λκΉ? |
3924 | </message> | 4081 | </message> |
4082 | <ignore name="ignore"> | ||
4083 | μ€ν¬λ¦½νΈ μ€λΈμ νΈμμ 볡μ¬λΆκ° μμ΄ν μ μ΄λν λ | ||
4084 | </ignore> | ||
3925 | <option name="Move"> | 4085 | <option name="Move"> |
3926 | μ΄λ | 4086 | μ΄λ |
3927 | </option> | 4087 | </option> |
3928 | <option name="Don'tMove"> | 4088 | <option name="Don'tMove"> |
3929 | μ΄λ κΈμ§ | 4089 | μ΄λ μ ν¨ |
3930 | </option> | 4090 | </option> |
3931 | </alert> | 4091 | </alert> |
3932 | <alert name="ClickActionNotPayable"> | 4092 | <alert name="ClickActionNotPayable"> |
3933 | <message name="message"> | 4093 | <message name="message"> |
3934 | κ²½κ³ : Pay Object ν΄λ¦ λμμ΄ μ€μ λμμ§λ§, μ€ν¬λ¦½νΈκ° | 4094 | κ²½κ³ : μ€λΈμ νΈ μ§λΆ ν΄λ¦ νλμ΄ μ€μ λμμ§λ§ |
3935 | money() μ΄λ²€νΈμ μΆκ°λ κ²½μ°μλ§ μλν©λλ€. | 4095 | μ€ν¬λ¦½νΈκ° money() μ΄λ²€νΈμ ν¨κ» μΆκ°λ κ²½μ°μλ§ μλν©λλ€. |
3936 | κ·Έ μ΄μ λ μΌλ°μ μΌλ‘ μ£Όλ―Όλ€μ λμ΄ μ§λΆλλ©΄ | 4096 | μ΄λ μ£Όλ―Όλ€μ΄ μΌλ°μ μΌλ‘ μ€λΈμ νΈμ λΉμ©μ΄ μ§λΆλ λ |
3937 | μ¬λ¬Όμ΄ μ΄λ€ λ°©μμΌλ‘λ λ°μν κ²μΌλ‘ κΈ°λνκΈ° λλ¬Έμ λλ€. | 4097 | μ€λΈμ νΈκ° λ°μν κ²μ΄λΌκ³ μμνκΈ° λλ¬Έμ λλ€. |
3938 | </message> | 4098 | </message> |
4099 | <ignore name="ignore"> | ||
4100 | money() μ΄λ²€νΈ μμ΄ μ€λΈμ νΈμ 'μ§λΆ' μ€μ ν λ | ||
4101 | </ignore> | ||
3939 | </alert> | 4102 | </alert> |
3940 | <alert name="OpenObjectCannotCopy"> | 4103 | <alert name="OpenObjectCannotCopy"> |
3941 | <message name="message"> | 4104 | <message name="message"> |
3942 | μ΄ μμ΄ν μλ 볡μ¬κ° νμ©λ νλͺ©μ΄ μμ΅λλ€. | 4105 | μ΄ μ€λΈμ νΈμλ 볡μ¬κ° νμ©λ μμ΄ν μ΄ μμ΅λλ€. |
3943 | </message> | 4106 | </message> |
3944 | </alert> | 4107 | </alert> |
3945 | <alert name="LoadAccountTransactions"> | 4108 | <alert name="WebLaunchAccountHistory"> |
3946 | <message name="message"> | 4109 | <message name="message"> |
3947 | [URL](μΌ)λ‘ μ΄λν΄ | 4110 | κ³μ κΈ°λ‘μ 보기 μν΄ μΈμ»¨λλΌμ΄ν μΉ μ¬μ΄νΈλ‘ κ°λκΉ? |
3948 | κ±°λ μΈλΆ λ΄μμ νμΈνμκ² μ΅λκΉ? | ||
3949 | </message> | 4111 | </message> |
3950 | <option name="OK"> | 4112 | <ignore name="ignore"> |
3951 | νμΈ | 4113 | κ³μ κΈ°λ‘ μΉ νμ΄μ§λ₯Ό λ‘λν λ |
4114 | </ignore> | ||
4115 | <option name="Gotopage"> | ||
4116 | νμ΄μ§λ‘ μ΄λ | ||
3952 | </option> | 4117 | </option> |
3953 | <option name="Cancel"> | 4118 | <option name="Cancel"> |
3954 | μ·¨μ | 4119 | μ·¨μ |
3955 | </option> | 4120 | </option> |
3956 | </alert> | 4121 | </alert> |
3957 | <alert name="HelpReportAbuse"> | 4122 | <alert name="HelpReportAbuseEmailLL"> |
3958 | <message name="message"> | 4123 | <message name="message"> |
3959 | Use this tool to report violations of the Terms of Service and Community Standards. See: | 4124 | μ΄ λꡬλ₯Ό μ¬μ©νμ¬ μλΉμ€ μ½κ΄κ³Ό 컀λ€λν° νμ€μ μλ° μ¬νμ |
3960 | http://secondlife.com/corporate/tos.php | 4125 | λ³΄κ³ ν©λλ€. λ€μμ μ°Έμ‘°νμμμ€. |
3961 | http://secondlife.com/corporate/cs.php | 4126 | - |
3962 | 4127 | http://secondlife.com/community/support.php | |
3963 | All reported abuses of the Terms of Service and Community Standards | 4128 | http://secondlife.com/community/support.php |
3964 | are investigated and resolved. You will receive an email informing you | 4129 | - |
3965 | of the resolution when it occurs. | 4130 | λ³΄κ³ λ μλΉμ€ μ‘°νκ³Ό 컀λ€λν° νμ€μ λ¨μ© μ¬λ‘λ λͺ¨λ |
3966 | You can also view the incident resolution on the Police Blotter at: | 4131 | μ‘°μ¬ν΄μ ν΄κ²°ν©λλ€. μ¬κ±΄μ΄ ν΄κ²°λλ©΄ μ κ³ μμκ²λ μ¬κ±΄ν΄κ²°μ |
3967 | 4132 | μ리λ λ©μΌμ΄ λ°μ‘λ©λλ€. μ¬κ±΄ ν΄κ²°μ λ€μ μ£Όμμ μλ | |
3968 | http://secondlife.com/community/blotter.php | 4133 | κ²½μ°° μ¬κ±΄ κΈ°λ‘λΆμμλ νμΈνμ€ μ μμ΅λλ€. |
4134 | - | ||
4135 | http://secondlife.com/community/support.php | ||
4136 | </message> | ||
4137 | </alert> | ||
4138 | <alert name="HelpReportAbuseEmailEO"> | ||
4139 | <message name="message"> | ||
4140 | μ£Όμ μ¬ν: μ΄ λ³΄κ³ μλ λ¦°λ λ©μ΄ μλ νμ¬ | ||
4141 | μ¬μ©μκ° μν΄ μλ μ§μ μμ μμκ² λ°μ‘λ©λλ€. | ||
4142 | - | ||
4143 | μ£Όλ―Όκ³Ό λ°©λ¬Έμμ λν μλΉμ€μ μΌνμΌλ‘ μ¬μ©μκ° μν΄ μλ | ||
4144 | μ§μμ μμ μκ° κ·Έ μ§μμμ λ°μν λ³΄κ³ μλ₯Ό λͺ¨λ μμ νκ³ | ||
4145 | ν΄κ²°νλλ‘ νμμ΅λλ€. λ¦°λ λ©μ | ||
4146 | μ΄ μμΉμμ μ¬μ©μκ° μ κΈ°ν λ³΄κ³ μλ₯Ό μ‘°μ¬νμ§ μμ΅λλ€. | ||
4147 | μ¬μ μ§ μν κ·μΉμμ κ°λ΅ν λνλ λ°μ κ°μ΄, μ§μ μμ μκ° ν΄λΉ μ§λ°© | ||
4148 | λ²κ·λ₯Ό κ·Όκ±°λ‘ νμ¬ λ³΄κ³ μλ₯Ό ν΄κ²°ν©λλ€. | ||
4149 | (μν κ·μΉμ μ΄λνλ €λ©΄ μλ λ©λ΄μμ ν μ§ μκ°λ₯Ό | ||
4150 | μ ννμμμ€.) | ||
4151 | - | ||
4152 | μ΄ λ³΄κ³ μμ ν΄κ²°μ μ΄ μ§μμμλ§ μ μ©λλ©°, μΈμ»¨λλΌμ΄νλ΄μ | ||
4153 | κΈ°ν μ§μμ λν μ£Όλ―Όλ€μ μ κ·Ό κΆνμ μ΄ λ³΄κ³ μμ κ²°κ³Όμ | ||
4154 | μν₯μ λ°μ§ μμ΅λλ€. μ€μ§ λ¦°λ λ©λ§μ΄ | ||
4155 | μΈμ»¨λλΌμ΄ν μ 체μ μ κ·Ό κΆνμ μ νν μ μμ΅λλ€. | ||
3969 | </message> | 4156 | </message> |
3970 | </alert> | 4157 | </alert> |
3971 | <alert name="HelpReportBug"> | 4158 | <alert name="HelpReportBug"> |
3972 | <message name="message"> | 4159 | <message name="message"> |
3973 | Use this tool to report technical features that do not perform | 4160 | μ΄ λꡬλ₯Ό μ¬μ©νμ¬ μ€λͺ κ³Ό μμλλ‘ μννμ§ μμ κΈ°λ₯μ *μ€μ§* λ³΄κ³ λ§ νμμμ€. |
3974 | as described or expected. All bug reports are investigated and | 4161 | κ°λ₯ν ν μμΈν λ³΄κ³ νμμμ€. μλ μλ΅ |
3975 | resolved. No email response will be sent, you may reply to the | 4162 | μ΄λ©μΌμ λ΅νμ¬ λ³΄κ³ μμ μμΈ λ΄μμ λ§λΆμ¬λ λ©λλ€. |
3976 | auto-response email to add more details to your report. | 4163 | λͺ¨λ λ²κ·Έ λ³΄κ³ μλ μ‘°μ¬ ν νκ°λ©λλ€. μ΄λ ν μ΄λ©μΌλ λ°μ‘λμ§ μμ΅λλ€. |
3977 | If you are having a technical difficulty, please contact Support at: | 4164 | - |
3978 | 4165 | κΈ°μ μ μΈ μ΄λ €μμ΄ λ°μν κ²½μ°, κ³ κ° μ§μ μΌν°λ‘ λ¬Έμνμμμ€. | |
3979 | http://secondlife.com/community/support.php | 4166 | http://secondlife.com/community/support.php |
4167 | - | ||
4168 | μ°Έκ³ : λΆμμ ν λ³΄κ³ μλ μ‘°μ¬ λμμμ μ μΈλ©λλ€ | ||
3980 | </message> | 4169 | </message> |
3981 | </alert> | 4170 | </alert> |
3982 | <alert name="HelpReportAbuseSelectCategory"> | 4171 | <alert name="HelpReportAbuseSelectCategory"> |
3983 | <message name="message"> | 4172 | <message name="message"> |
3984 | μ΄ μ μ© μ κ³ μ λν μΉ΄ν κ³ λ¦¬λ₯Ό μ ννμμμ€. | 4173 | μ΄ μ μ© μ κ³ μ λν μΉ΄ν κ³ λ¦¬λ₯Ό μ ννμμμ€. |
3985 | 4174 | ||
3986 | μΉ΄ν κ³ λ¦¬λ₯Ό μ ννλ©΄ μ μ© μ κ³ λ₯Ό νμΌλ§νκ³ μ²λ¦¬νλ λ° λμμ΄ λ©λλ€. | 4175 | μΉ΄ν κ³ λ¦¬λ₯Ό μ ννλ©΄ μ μ© μ κ³ λ₯Ό μ μΆνκ³ μ²λ¦¬νλ λ° λμμ΄ λ©λλ€. |
3987 | </message> | 4176 | </message> |
3988 | </alert> | 4177 | </alert> |
3989 | <alert name="HelpReportBugSelectCategory"> | 4178 | <alert name="HelpReportBugSelectCategory"> |
3990 | <message name="message"> | 4179 | <message name="message"> |
3991 | μ΄ λ¬Έμ μ λν μΉ΄ν κ³ λ¦¬λ₯Ό μ€μ ν΄ μ£Όμμμ€. νμΌμ΄λ μ§νμμ λ¬Έμ μ λν μΉ΄ν κ³ λ¦¬ μ€μ μ λΆν λ립λλ€. | 4180 | μ΄ λ²κ·Έμ λν μΉ΄ν κ³ λ¦¬λ₯Ό μ ννμμμ€. |
4181 | |||
4182 | μΉ΄ν κ³ λ¦¬λ₯Ό μ ννλ©΄ λ²κ·Έ μ κ³ λ₯Ό μ μΆνκ³ μ²λ¦¬νλ λ° λμμ΄ λ©λλ€. | ||
3992 | </message> | 4183 | </message> |
3993 | </alert> | 4184 | </alert> |
3994 | <alert name="HelpReportAbuseAbuserNameEmpty"> | 4185 | <alert name="HelpReportAbuseAbuserNameEmpty"> |
3995 | <message name="message"> | 4186 | <message name="message"> |
3996 | μ μ©μμ μ΄λ¦μ μ λ ₯νμμμ€. | 4187 | μ μ©μμ μ΄λ¦μ μ λ ₯νμμμ€. |
3997 | 4188 | ||
3998 | μ νν κ°μ μ λ ₯νλ©΄ μ μ© μ κ³ λ₯Ό νμΌλ§νκ³ μ²λ¦¬νλ λ° λμμ΄ λ©λλ€. | 4189 | μ νν κ°μ μ λ ₯νλ©΄ μ μ© μ κ³ λ₯Ό μ μΆνκ³ μ²λ¦¬νλ λ° λμμ΄ λ©λλ€. |
3999 | </message> | 4190 | </message> |
4000 | </alert> | 4191 | </alert> |
4001 | <alert name="HelpReportAbuseAbuserLocationEmpty"> | 4192 | <alert name="HelpReportAbuseAbuserLocationEmpty"> |
4002 | <message name="message"> | 4193 | <message name="message"> |
4003 | μ μ©μ΄ μ¬μ©λ μμΉλ₯Ό μ λ ₯νμμμ€. | 4194 | μ μ©μ΄ λ°μλ μμΉλ₯Ό μ λ ₯νμμμ€. |
4004 | 4195 | ||
4005 | μ νν κ°μ μ λ ₯νλ©΄ μ μ© μ κ³ λ₯Ό νμΌλ§νκ³ μ²λ¦¬νλ λ° λμμ΄ λ©λλ€. | 4196 | μ νν κ°μ μ λ ₯νλ©΄ μ μ© μ κ³ λ₯Ό μ μΆνκ³ μ²λ¦¬νλ λ° λμμ΄ λ©λλ€. |
4006 | </message> | 4197 | </message> |
4007 | </alert> | 4198 | </alert> |
4008 | <alert name="HelpReportAbuseSummaryEmpty"> | 4199 | <alert name="HelpReportAbuseSummaryEmpty"> |
4009 | <message name="message"> | 4200 | <message name="message"> |
4010 | μ¬μ©λ μ μ©μ λν μμ½μ μ λ ₯νμμμ€. | 4201 | λ°μλ μ μ©μ λν μμ½ μ¬νμ μ λ ₯νμμμ€. |
4011 | 4202 | ||
4012 | μ νν μμ½μ μ λ ₯νλ©΄ μ μ© μ κ³ λ₯Ό νμΌλ§νκ³ μ²λ¦¬νλ λ° λμμ΄ λ©λλ€. | 4203 | μ νν μμ½ μ¬νμ μ λ ₯νλ©΄ μ μ© μ κ³ λ₯Ό μ μΆνκ³ μ²λ¦¬νλ λ° λμμ΄ λ©λλ€. |
4013 | </message> | 4204 | </message> |
4014 | </alert> | 4205 | </alert> |
4015 | <alert name="HelpReportBugSummaryEmpty"> | 4206 | <alert name="HelpReportBugSummaryEmpty"> |
4016 | <message name="message"> | 4207 | <message name="message"> |
4017 | λ¬Έμ μ λν κ°λ΅ν μμ½μ λΆν λ립λλ€. νμΌμ΄λ μ§νμμ λ¬Έμ μ λν΄ μμΈν μ€λͺ μ λΆν λ립λλ€. | 4208 | λ²κ·Έμ λν μμ½ μ¬νμ μ λ ₯νμΈμ. |
4209 | |||
4210 | μ νν μμ½ μ¬νμ μ λ ₯νλ©΄ μ μ© μ κ³ λ₯Ό μ μΆνκ³ μ²λ¦¬νλ λ° λμμ΄ λ©λλ€. | ||
4018 | </message> | 4211 | </message> |
4019 | </alert> | 4212 | </alert> |
4020 | <alert name="HelpReportAbuseDetailsEmpty"> | 4213 | <alert name="HelpReportAbuseDetailsEmpty"> |
4021 | <message name="message"> | 4214 | <message name="message"> |
4022 | μ¬μ©λ μ μ©μ λν΄ μμΈν μ€λͺ μ μ λ ₯νμμμ€. | 4215 | λ°μν μ μ©μ λν΄ μμΈν μ€λͺ μ μ λ ₯νμμμ€. |
4023 | ꡬ체μ μΌλ‘ μ μ΄ μ£Όμκ³ κ΄λ ¨μ μ΄λ¦ λ° μ κ³ μ¬κ±΄μ | 4216 | ꡬ체μ μΌλ‘ μ μ΄ μ£Όμκ³ κ΄λ ¨μ μ΄λ¦ λ° μ κ³ μ¬κ±΄μ |
4024 | μΈλΆ λ΄μ©λ μ μ΄ μ£Όμμμ€. | 4217 | μΈλΆ λ΄μ©λ μ μ΄ μ£Όμμμ€. |
4025 | 4218 | ||
4026 | μ νν μ€λͺ μ μ λ ₯νλ©΄ μ μ© μ κ³ λ₯Ό νμΌλ§νκ³ μ²λ¦¬νλ λ° λμμ΄ λ©λλ€. | 4219 | μ νν μ€λͺ μ μ λ ₯νλ©΄ μ μ© μ κ³ λ₯Ό μ μΆνκ³ μ²λ¦¬νλ λ° λμμ΄ λ©λλ€. |
4027 | </message> | 4220 | </message> |
4028 | </alert> | 4221 | </alert> |
4029 | <alert name="HelpReportBugDetailsEmpty"> | 4222 | <alert name="HelpReportBugDetailsEmpty"> |
4030 | <message name="message"> | 4223 | <message name="message"> |
4031 | λ¬Έμ μ λν μμΈν μ€λͺ μ λΆνλλ¦Όμ΄λ€. κ°λ₯ν λ¬Έμ κ° λ°μλκΈ°κΉμ§μ λͺ¨λ κ³Όμ μ μμΈνκ² λ§μν΄ μ£ΌμκΈΈ λ°λλλ€. νμΌμ΄λ μ§νμμ λ¬Έμ μ λν΄ μμΈν μ€λͺ μ λΆν λ립λλ€. | 4224 | λ²κ·Έμ λν μμΈν μ€λͺ μ μ λ ₯νμΈμ. |
4225 | ꡬ체μ μΌλ‘ μ μ΄ μ£Όμκ³ | ||
4226 | κ°λ₯νλ©΄ λ²κ·Έ μ¬μ λ¨κ³λ μ μ΄ μ£Όμμμ€. | ||
4227 | |||
4228 | μ νν μ€λͺ μ μ λ ₯νλ©΄ μ μ© μ κ³ λ₯Ό μ μΆνκ³ μ²λ¦¬νλ λ° λμμ΄ λ©λλ€. | ||
4032 | </message> | 4229 | </message> |
4033 | </alert> | 4230 | </alert> |
4034 | <alert name="HelpReportAbuseContainsCopyright"> | 4231 | <alert name="HelpReportAbuseContainsCopyright"> |
4035 | <message name="message"> | 4232 | <message name="message"> |
4036 | μ£Όλ―Ό μ¬λ¬λΆ, | 4233 | μ£Όλ―Ό μ¬λ¬λΆκ», |
4037 | 4234 | ||
4038 | μ μκΆ μΉ¨ν΄μ λν μ κ³ λ | 4235 | μ μκΆ μΉ¨ν΄μ λν μ κ³ λ http://secondlife.com/corporate/dmca.phpμ |
4039 | http://secondlife.com/corporate/dmca.phpμ μ€λͺ μ λ°λΌμλ§ μ μΆν μ μμ΅λλ€. | 4236 | μ€λͺ μ λ°λΌ μ μΆν΄ μ£Όμ μΌ ν©λλ€. |
4040 | 4237 | ||
4041 | μ μκΆ μΉ¨ν΄μ λν μ κ³ λ βμ μ© μ κ³ β κΈ°λ₯μ ν΅ν΄ | 4238 | μ μκΆ μΉ¨ν΄μ λν μ κ³ κ° 'μ μ© μ κ³ ' |
4042 | μ μΆλλ κ²½μ° μλμΌλ‘ νκΈ°λ©λλ€. μ κ³ νμ λ΄μ©μ΄ μ μκΆ μΉ¨ν΄μ κ΄λ ¨μ΄ μλ€λ©΄, | 4239 | κΈ°λ₯μ ν΅ν΄ μ μΆλλ κ²½μ° μλμΌλ‘ |
4043 | μ΄ μ°½μ λ«κ³ μ κ³ μ μΆμ μ’ λ£νμ λ λ©λλ€. | 4240 | νκΈ°λ©λλ€. μ κ³ νμλ λ΄μ©μ΄ μ μκΆ μΉ¨ν΄μ κ΄λ ¨μ΄ μλ€λ©΄ |
4241 | μ΄ μ°½μ λ«μ μ κ³ λ₯Ό μ’ λ£νμ€ μ μμ΅λλ€. | ||
4044 | 4242 | ||
4045 | κ°μ¬ν©λλ€. | 4243 | κ°μ¬ν©λλ€. |
4046 | 4244 | ||
4047 | Linden Lab | 4245 | λ¦°λ λ© λλ¦Ό |
4048 | </message> | 4246 | </message> |
4049 | </alert> | 4247 | </alert> |
4050 | <alert name="FailedRequirementsCheck"> | 4248 | <alert name="FailedRequirementsCheck"> |
4051 | <message name="message"> | 4249 | <message name="message"> |
4052 | [νλ₯μ]μμ μλμ νμ κ΅¬μ± μμκ° λ°κ²¬λμ§ μμ΅λλ€: | 4250 | λ€μμ νμ κ΅¬μ± μμκ° [FLOATER]μ μμ΅λλ€: |
4053 | [ꡬμ±μμ] | 4251 | [COMPONENTS] |
4054 | </message> | 4252 | </message> |
4055 | </alert> | 4253 | </alert> |
4056 | <alert name="ReplaceAttachment" title="κΈ°μ‘΄ λΆμ°©λ¬Ό κ΅μ²΄"> | 4254 | <alert name="ReplaceAttachment" title="κΈ°μ‘΄ μ°©μ©λ¬Ό λ체"> |
4057 | <message name="message"> | 4255 | <message name="message"> |
4058 | λ³ΈμΈμ μ 체μμ λμΌλΆμμ μ΄λ―Έ λΆμ°©λ μμ΄ν μ΄ μμ΅λλ€. | 4256 | μ 체μ λμΌλΆμμ μ΄λ―Έ μ°©μ©λ μ€λΈμ νΈκ° μμ΅λλ€. |
4059 | κΈ°μ‘΄ μμ΄ν μ μ νλ μμ΄ν μΌλ‘ κ΅μ²΄νμκ² μ΅λκΉ? | 4257 | κΈ°μ‘΄ μ€λΈμ νΈλ₯Ό μ νλ μ€λΈμ νΈλ‘ κ΅μ²΄νμκ² μ΅λκΉ? |
4060 | </message> | 4258 | </message> |
4259 | <ignore name="ignore"> | ||
4260 | κΈ°μ‘΄ μ°©μ©λ¬Όμ κ΅μ²΄ν λ | ||
4261 | </ignore> | ||
4061 | <option ignore="μλ λ체" name="Yes"> | 4262 | <option ignore="μλ λ체" name="Yes"> |
4062 | μ | 4263 | μ |
4063 | </option> | 4264 | </option> |
4064 | <option ignore="λ체 μ λ κΈμ§" name="No"> | 4265 | <option ignore="λ체 κΈμ§" name="No"> |
4065 | μλμ€ | 4266 | μλμ€ |
4066 | </option> | 4267 | </option> |
4067 | </alert> | 4268 | </alert> |
4068 | <alert name="BusyModePay" title="λ€λ₯Έ μ©λ¬΄ μ€ κ²½κ³ "> | 4269 | <alert name="BusyModePay" title="λ€λ₯Έ μ©λ¬΄ μ€ λͺ¨λ κ²½κ³ "> |
4069 | <message name="message"> | 4270 | <message name="message"> |
4070 | κ·νλ νμ¬ λ€λ₯Έ μ©λ¬΄ μ£Ό λͺ¨λμ μμΌλ©° λ°λΌμ λκΈ | 4271 | κ·νκ»μλ λ€λ₯Έ μ©λ¬΄ μ€ λͺ¨λμ μμΌλ―λ‘ |
4071 | μ§κΈμ λν λκ°λ‘ μΌμ²΄ μμ΄ν μ λ°μ μ | 4272 | μ΄ κ²°μ μ λν μ΄λ ν μμ΄ν λ μλ Ήν μ |
4072 | μμ΅λλ€. | 4273 | μμ΅λλ€. |
4073 | 4274 | ||
4074 | μ΄ κ±°λλ₯Ό μλ£νκΈ° μ μ λ€λ₯Έ μ©λ¬΄ μ€ λͺ¨λλ₯Ό | 4275 | μ΄ κ±°λλ₯Ό μλ£νκΈ° μ μ λ€λ₯Έ μ©λ¬΄ μ€ λͺ¨λμμ |
4075 | μ’ λ£νμκ² μ΅λκΉ? | 4276 | λμ€μκ² μ΅λκΉ? |
4277 | </message> | ||
4278 | <ignore name="ignore"> | ||
4279 | λΆμ¬μ€ λͺ¨λμμ μ¬λ λλ μ€λΈμ νΈλ₯Ό μ§λΆν λ | ||
4280 | </ignore> | ||
4281 | <option ignore="λ€λ₯Έ μ©λ¬΄ μ€ λͺ¨λ νμ ν΄μ " name="Yes"> | ||
4282 | μ | ||
4283 | </option> | ||
4284 | <option ignore="λ€λ₯Έ μ©λ¬΄ λͺ¨λ μ¬μ© μν¨" name="No"> | ||
4285 | μλμ€ | ||
4286 | </option> | ||
4287 | </alert> | ||
4288 | <alert name="ConfirmEmptyTrash"> | ||
4289 | <message name="message"> | ||
4290 | ν΄μ§ν΅ ν΄λμ λ΄μ©μ μꡬμ μΌλ‘ | ||
4291 | μ κ±° νμκ² μ΅λκΉ? | ||
4076 | </message> | 4292 | </message> |
4077 | <option ignore="νμ λ€λ₯Έ μ©λ¬΄ μ€ λͺ¨λλ‘" name="Yes"> | 4293 | <ignore name="ignore"> |
4294 | μΈλ²€ν 리μ ν΄μ§ν΅ ν΄λλ₯Ό λΉμΈ λ | ||
4295 | </ignore> | ||
4296 | <option name="Yes"> | ||
4078 | μ | 4297 | μ |
4079 | </option> | 4298 | </option> |
4080 | <option ignore="λ€λ₯Έ μ©λ¬΄ μ€ λͺ¨λ λκΈ°" name="No"> | 4299 | <option name="No"> |
4081 | μλμ€ | 4300 | μλμ€ |
4082 | </option> | 4301 | </option> |
4083 | </alert> | 4302 | </alert> |
4303 | <alert name="ConfirmClearBrowserCache"> | ||
4304 | <message name="message"> | ||
4305 | λΈλΌμ°μ μ μΊμ¬λ₯Ό μ λΆ μμ νμκ² μ΅λκΉ? | ||
4306 | </message> | ||
4307 | <option name="Yes"> | ||
4308 | νμΈ | ||
4309 | </option> | ||
4310 | <option name="No"> | ||
4311 | μ·¨μ | ||
4312 | </option> | ||
4313 | </alert> | ||
4314 | <alert name="ConfirmClearCookies"> | ||
4315 | <message name="message"> | ||
4316 | μΏ ν€λ₯Ό μ λΆ μμ νμκ² μ΅λκΉ? | ||
4317 | </message> | ||
4318 | <option name="Yes"> | ||
4319 | νμΈ | ||
4320 | </option> | ||
4321 | <option name="No"> | ||
4322 | μ·¨μ | ||
4323 | </option> | ||
4324 | </alert> | ||
4325 | <alert name="ConfirmEmptyLostAndFound"> | ||
4326 | <message name="message"> | ||
4327 | λΆμ€λ¬Ό 보κ΄μ ν΄λμ λ΄μ©μ | ||
4328 | μꡬμ μΌλ‘ μ κ±° νμκ² μ΅λκΉ? | ||
4329 | </message> | ||
4330 | <ignore name="ignore"> | ||
4331 | μΈλ²€ν 리μ λΆμ€ λ° λ°κ²¬ ν΄λλ₯Ό λΉμΈ λ | ||
4332 | </ignore> | ||
4333 | <option name="Yes"> | ||
4334 | μ | ||
4335 | </option> | ||
4336 | <option name="No"> | ||
4337 | μλμ€ | ||
4338 | </option> | ||
4339 | </alert> | ||
4340 | <alert name="CopySLURL"> | ||
4341 | <message name="message"> | ||
4342 | ν΄λ¦½λ³΄λμ λ€μκ³Ό κ°μ SLURLμ΄ λ³΅μ¬λμμ΅λλ€. | ||
4343 | |||
4344 | [SLURL] | ||
4345 | |||
4346 | μΉ νμ΄μ§μ μ¬λ €μ νμΈλ€μ΄ μ΄ μμΉμ μ½κ² μ κ·Όνλλ‘ νκ±°λ | ||
4347 | μΉ λΈλΌμ°μ μ μ£Όμμ°½μ λΆμ¬λ£κΈ° ν΄μ μ§μ μνν΄λ³΄μμμ€. | ||
4348 | </message> | ||
4349 | <ignore name="ignore"> | ||
4350 | SLURLμ ν΄λ¦λ³΄λλ‘ λ³΅μ¬ν λ | ||
4351 | </ignore> | ||
4352 | </alert> | ||
4353 | <alert name="IMSessionStartError"> | ||
4354 | <message name="message"> | ||
4355 | [RECIPIENT]μ λν μ λ©μ μ μΈμ μμ μ€ μ€λ₯κ° λ°μνμ΅λλ€. | ||
4356 | [REASON] | ||
4357 | </message> | ||
4358 | <option name="OK"> | ||
4359 | νμΈ | ||
4360 | </option> | ||
4361 | </alert> | ||
4362 | <alert name="IMSessionStartNotVerified"> | ||
4363 | <message name="message"> | ||
4364 | [RECIPIENT]μ λν μ λ©μ μ μΈμ μμ μ€ μ€λ₯κ° λ°μνμ΅λλ€. | ||
4365 | [REASON] | ||
4366 | </message> | ||
4367 | <option name="OK"> | ||
4368 | νμΈ | ||
4369 | </option> | ||
4370 | </alert> | ||
4371 | <alert name="IMSessionEventError"> | ||
4372 | <message name="message"> | ||
4373 | μ€λ₯: [EVENT] [RECIPIENT]. | ||
4374 | [REASON] | ||
4375 | </message> | ||
4376 | <option name="OK"> | ||
4377 | νμΈ | ||
4378 | </option> | ||
4379 | </alert> | ||
4380 | <alert name="ForceCloseIMSession"> | ||
4381 | <message name="messsage"> | ||
4382 | [NAME](κ³Ό)μμ λ©μ μ μΈμ μ μ’ λ£ν΄μΌ ν©λλ€. | ||
4383 | [REASON] | ||
4384 | </message> | ||
4385 | <option name="OK"> | ||
4386 | νμΈ | ||
4387 | </option> | ||
4388 | </alert> | ||
4389 | <alert name="Cannot_Purchase_an_Attachment"> | ||
4390 | <message name="message"> | ||
4391 | μ°©μ©μ€μΈ μμ΄ν μ ꡬ맀 λΆκ°λ₯ ν©λλ€. | ||
4392 | </message> | ||
4393 | </alert> | ||
4084 | </alerts> | 4394 | </alerts> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_about.xml b/linden/indra/newview/skins/xui/ko/floater_about.xml index d2651c4..ec0e1a4 100644 --- a/linden/indra/newview/skins/xui/ko/floater_about.xml +++ b/linden/indra/newview/skins/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="Second Life μκ°"> | 2 | <floater name="floater_about" title="μΈμ»¨λλΌμ΄ν μ 보"> |
3 | <text_editor name="credits_editor"> | 3 | <text_editor name="credits_editor"> |
4 | Second Life μ μμλ€: Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYunYoum, 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 κ·ΈμΈμ λ§μ λΆλ€μ΄ μκ³ ν΄ μ£Όμ ¨μ΅λλ€. | 4 | Second Life μ μμ: a2, Aaron, Abishai, adrian, Alberto, Alex, Alexei, Alfred, Alice, Altruima, Amber, Anastasia, Andrea, Andrew, Andy, Annette, Anthony, Aura, Avi, Babbage, Beast, beez, Belinda, Ben, Benjamin, Benny, Betsy, Bill, Blue, Bo, Bob, Brad, Branka, Brent, Brian, Bruce, Bub, Bucky, Bunny, Burgess, Buttercup, Callum, Casino, Cat, Catherine, Chadrick, Char, Charity, Charlie, Chiyo, Chris, Christopher, Civic, Claudia, Cleopetra, Cole, ColeD, Colin, Colleen, Cornelius, Cory, Cube, Cupid, Cyan, Cyn, Dan, DanceStar, Daniel, Data, Dave, David, David2, Deana, Debra, Dee, Dek, Del, Dez, Don, Donovan, DongYun Youm, Doug, drunkensufi, Dummy, dustin, Eddie, Eileen, Elena, Elle, Emily, Eric, erika, Erin, Ethan, Evan, Eve, Everett, Firefly, Flashpoint, Fordak, Frank, Fred, Fritz, Frontier, Garry, George, Gia, Ginsu, Glenn, Gulliver, Guy, Hamlet, Haney, Harmony, Harry, Helen, Hello, Henrik, Heretic, Hermia, Holly, Hungry, Hunter, Ian, Icculus, Irfan, Iris, Isaac, Isabel, IsThat, Ivy, Izzy, Jack, Jacqui, Jake, James, Jane, Janet, Jaron, Jay, Jean, Jed, Jeff, Jennifer, Jeremy, Jeska, JeskaTest, Jesse, Jill, Jim, Jimbo, Joe, John, Jon, Jonathan, Joon Hyuck Lee, Jose, Joshua, Jp, June, Justin, Karen, Kari, Karinelson, Kelly, Kelvin, Ken, Kenny, Kent, Kevin, Kona, Kyle, LaughingMan, Lauren, Lawrence, Lee, Leopard, Leprechaun, Leviathania, Lexie, Leyla, Liana, Libby, Lightfoot, Lizzie, Lock, Logan, Loki, Louie, Lucy, Luke, Madhavi, Magellan, Magenta, Makiko, Marius, Mark, Martin, Matthew, Maurice, Mayor, Melanie, Meta, Mia, Michael, MichaelFrancis, Mick, Migyeong, Mikeb, MikeT, Milo, Mitch, Mogura, Monkey, Monroe, Morpheus, Natria, Neo, Nicolas, Nicole, Nigel, Noel, Nora, Nova, Otakon, Page, Pathfinder, Patsy, Paul, Peter, Philip, Phoenix, PierreLuc, Pilouk, Pony, Professor, Qarl, Rachelle, Ramzi, Ray, Realestate, Red, Rejean, Reuben, Rheya, Richard, Rika, Rob, Robin, Roosevelt, Ross, Runitai, Ruth, Ryan, Sabin, Sally, Sam, Sarah, Satoko, Sean, Secret, Sejong, Senator, Seth, Showme, Siobhan, Sky, Sleepy, Spike, Stefan, Stephanie, Stephany, Stephen, Steve, Stryfe, sturm, Sudhi, Sunil, Swiss, Sylvain, Tanya, Tbone, Teeny, Teeple, Teresa, Tesla, Tess, Tessa, Thomas, Thrax, Thumper, Tim, Tobin, Todd, Tofu, Tom, Torley, Tracy, Uncle, Varas, Vasudha, Vektor, Ventrella, Video, Viola, Walker, Warren, Wendy, Which, Xan, Xander, Xenon, Xtreme, Yedwab, Yohan, Yool, Yoz, Yuko, Zach, Zee, Zero μ΄μΈμλ λ§μ λΆλ€μ΄ μκ³ ν΄ μ£Όμ ¨μ΅λλ€. |
5 | 5 | ||
6 | ν λ²μ Όμ΄ μ΅κ³ λ²μ μ΄ λ μ μλλ‘ λμμ£Όμ μ£Όλ―Όλ€κ» κ°μ¬λ립λλ€: Kyrah Abattoir, Icesis Anansi, Clifton Antonelli, Nargus Asturias, Justizin Austinmer, Drake Bacon, Bitzer Balderdash, McWheelie Baldwin, SuezanneC Baskerville, Sweetheart Baskerville, Logan Bauer, Malarthi Behemoth, phoenix Behemoth, Eva Bellambi, Samgame Bertrand, Woody Blair, Tin Bling, Bibi Book, Barney Boomslang, Eric Boyer, Chromal Brodsky, Kerian Bunin, Lara Bunin, BigRick Byrd, Jillian Callahan, Hypatia Callisto, Frans Charming, nathalie Christensen, Francis Chung, pizzaguy Clutterbuck, Evo Commons, Entity Cosmo, Grazel Cosmo, Tiger Crossing, Fremont Cunningham, Jaki Daligdig, Sugar Darling, Todd David, Norman Desmoulins, Gxeremio Dimsum, Happy Dimsum, Kim Dingo, Roy Domela, Cory Edo, Delu Elytis, DBDigital Epsilon, Leeza Everett, Garth FairChang, Snowflake Fairymeadow, Khamon Fate, lex Fitzcarraldo, Kitto Flora, Angel Fluffy, CrystalShard Foo, Raudf Fox, Govindira Galatea, Rizpah Galatea, Tre Giles, Gattz Gilman, Kex Godel, Armandi Goodliffe, Tsu Goodliffe, Nickolas Goodman, Damen Gorilla, Nytemyst Grace, Mhaijik Guillaume, Gleeb Gupte, Ebonfire Harbinger, Bethanee Heaney, Jenny Hicks, Sandling Honey, Victoria Jacques, Adso Krogstad, Travis Lambert, simon Lameth, Duffy Langdon, Aaron Levy, Jade Lily, Gwyneth Llewelyn, Lola Lollipop, Michi Lumin, KaiLastOfTheBrunnenG Macdonald, Jesse Malthus, Herry Maltz, Seth Mandelbrot, Raavi Mann, Shirley Marquez, Dnate Mars, Ima Mechanique, Hawk Mendicant, Mercury Metropolitan, Haravikk Mistral, Trent Mondrian, Nexus Nash, Seraph Nephilim, Lewis Nerd, Aurael Neurocam, Lex Neva, Prokofy Neva, Seagel Neville, Kate Nicholas, Didde Nielsen, Richard Noonan, crevan Nori, Maczter Oddfellow, vanler Odets, Fat Ogre, Hamncheese Omlet, Strife Onizuka, Panthar Orlowski, Jessica Ornitz, Ron Overdrive, OmniCron Overlord, Dargon Pacer, Kar Parks, Eloise Pasteur, Caliandris Pendragon, Julianna Pennyfeather, Iron Perth, Shawk Pertwee, Mera Pixel, Elle Pollack, Phoenix Psaltery, Hank Ramos, Jon Ree, Tam Ree, Zi Ree, Jon Rolland, BamBam Sachertorte, kai Sachertorte, Mily Sartre, ice Semple, Desmond Shang, DigiKatt Shaw, Felix Sholokhov, Rhyph Somme, Rain Soothsayer, Oz Spade, squeekachu Spearmann, Wesley Spengler, Belaya Statosky, eltee Statosky, Khashai Steinbeck, Draco Steinhardt, Hope Stilman, Ashen Stygian, Seifert Surface, Gigs Taggart, Dolmere Talamasca, JayJay Talamasca, Becky Tardis, Fenris Tardis, Cubey Terra, Osprey Therian, Millie Thompson, John Toonie, Charlene Trudeau, Lyr Tuppakaka, Indy Turner, Luthien Unsung, Random Unsung, Huns Valen, Valdemar Virgo, Gordon Wendt, Mike Westerburg, Wayfinder Wishbringer, Lee Wormser, Aimee Xia, nimrod Yaffle, Yiffy Yaffle, Elle74 Zaftig κ·Έ μΈ λ§μ λΆλ€μ΄ μκ³ ν΄ μ£Όμ ¨μ΅λλ€. | 6 | νμ¬ λ²μ μ΄ μ΅κ³ λ²μ μ΄ λ μ μλλ‘ λμμ£Όμ μ£Όλ―Όλ€κ» κ°μ¬ λ립λλ€: AlexandriaS Aabye, devilite Aabye, Dynamqting Aabye, hellebore Aabye, Maddog Aabye, Urru Aabye, mabare Abattoir, Didi Abdallah, Elwood Abernathy, Jake Abramovich, Schort Achterbahn, Divily Ackland, JadeCharlet Ackland, Kevin Acorn, Binvis Acronym, Robert Adelaide, Atte Aderdeen, KiVanyel Adria, Krillian Adria, Mandi Adria, Butch Adzebills, Beccaboo Aero, Akasha Aferdita, Nicole Aferdita, Nero Agnomen, Hay Ah, Oxoc Ah, Sironl Ah, evokue Ahn, nycbadboy Ahn, Taan Ahn, Cyres Aida, TalNova Aji, Illusion Akula, Xen Akula, Jessa Alba, Alba Albert, kernowed Albert, Blaine Albion, AnneMarie Alcott, Bo Alcott, Cindie Alcott, Cunundrum Alcott, fighter Alcott, Jarad Alcott, Marcello Aldwych, Xenia Alemany, CellMaster Alexander, Molly Alexander, Aerotisma Alexandre, Ghostofgoat Alexandre, Took Alexandre, Ty Alexandre, Christophe Perrin / Krisp Alexandre, Adec Alexandria, Kiwi Alfa, Rowr Aliev, aivlys Allen, asclepius Allen, Aveyond06 Allen, Calvin Allen, gayfrench Allen, gender Allen, Grayson Allen, Jak Allen, Jerdog Allen, MariahMarie Allen, Metzyn Allen, Misty26 Allen, moshetzi Allen, nayara Allen, NH Allen, Pegi Allen, Ponesco Allen, Rap4rag Allen, Safer Allen, sobroke Allen, Bethann Allstar, Sloan Almendros, Ogro Almodovar, Raymondo Alonzo, Rebeca Alonzo, Omega Alphabeta, Elirien Alturas, Rick Alvarado, Golam Amadeus, Kea Amarula, Ariella Amat, Popas Amat, xxjojxx Amat, Jamie Amdahl, Helyos Ames, julies Ames, Keisha Ames, Javz Amsterdam, Kathy Amsterdam, Twistaspliff Amsterdam, darian Anabuki, Dnali Anabuki, Wes Anaconda, Serra Anansi, Britney Anatine, pax Anatine, Ranya Anatine, sientaya Anatine, Siowen Anatine, Padu Andalso, Chanel Anderson, Donna Andrews, Trixie Angel, Macphisto Angelus, meQal Anna, Aznxer Antfarm, Karlo Antonelli, Maksimilian Antonelli, Vala Antonelli, Athoni Antonioni, klement Antwerp, lildeadgirl Antwerp, GeordieJohn Anubis, KatanaBlade Anubis, Diag Anzac, Lunarlie Anzac, Picker Apogee, Azuby Apparatchik, brianica Appin, SwedenArtSheepdogs Aquacade, CaSimone Aquitaine, Dexter Aquitaine, Pericat Aquitaine, Sunshine Araw, Bino Arbuckle, Evangeline Arcadia, Niles Argus, pe Argus, BenneDJezzerette Ariantho, Karmaticdragon Ariantho, Teren Aridian, Garcia Ariel, Ina Arkin, alva Arliss, Noriyoko Arliss, Harle Armistice, Avi Arrow, Ming Arrow, Rox Arten, Razitra Artizar, Mandy Asano, Ty Asano, Kristoff Asbrink, Skye Asbrink, Threasher Asbrink, Daniel Ash, Dion Ashby, Eva Ashby, Ravenal Ashby, TOPDIME Ashby, danielluh Ashton, Deb Ashton, ach Asp, cokeser Asp, lastping Asp, Posrednik Asp, Notypewell Astro, Nargus Asturias, SiRiS Asturias, yol Asturias, ZATZAi Asturias, Animus Asylum, Sang Asylum, SomethingReal Atkey, Dakota Atlanta, Irie Atlantis, Matt Attenborough, Nirva Attenborough, CaptJosh Au, Goren Auer, Jackamo Auer, Jonathan Auer, Tisdi Auer, Chris Auk, Raven Axon, Shawn Ay, TJ Ay, ares Ayres, Cazz Ayres, Eon Ayres, Laura Ayres, zoeba Ayres, Naomi Babcock, Eldrich Babeli, Adrianna Babenco, She Babenco, sterick Babenco, corto Babii, Dia Babii, EvilCutz Babii, Flooxx Babii, Girl Babii, Imraanos Babii, Iv Babii, Lizthebabe Babii, Torrence Babii, Chrystal Babii, Sara Bachman, dzb0 Bade, Doug Bagration, Hobbit Bagration, Abert Bailey, Bambi Bailey, EveNice Bailey, Kaliya Bailey, Kriz Bailey, Leen Bailey, Leonine Bailey, Minke Bailey, Nightjaxs Bailey, Peyton Bailey, Shan Bailey, Stevo Bailey, Tariv Bailey, cream Bailly, Ezekiel Bailly, Gianna Bailly, Hells Bain, Briauna Bainbridge, AnaSofia Bakalava, Jonas Bakalava, Micki Baker, Anita Balczo, Naomi Balczo, Nathan Balder, Bibi Balhaus, Sponz Balhaus, Ainsleigh Ballinger, Dimitry Ballinger, Miriam Ballinger, Rik Ballinger, Trey Ballinger, Zagor Ballinger, Zek Ballinger, Kilara Balnarring, Maya Balut, Franz Bamaisin, Manolo Bamboo, Yuki Bamboo, Oliver Bandit, Pirate Bandit, Outy Banjo, winkler Banjo, SabreWulf Banshee, Akeela Banting, Elke Banting, Arkesh Baral, Barber Barbarossa, Samantha Barbee, Aruk Barbosa, Ayahuasca Barbosa, Bastill Barbosa, Corleone Barbosa, Padrig Barbosa, Samakh Barbosa, seat Barbosa, Topper Barbosa, Thery Bardeen, Bridgitte Bardot, Nici Barley, Annie Barnard, Josse Barnard, DB Barnes, Kitty Barnett, Threshin Barnett, Amy Barnett, Scott Baron, Jeremy Barracuda, Verbuda Barragar, Daphne Barrett, Fenleab Barrett, Lindsey Barrett, Smiley Barry, Denise Barrymore, Manuela Barrymore, Nell Barrymore, Sensation Barrymore, BraadWorst Barth, XxRevelationxX Barthelmess, Fleur Bartlett, Marina Bartlett, Lucius Bartz, Mack Bartz, Astley Bascom, dolomite Bascom, Dags Basevi, Lena Basevi, crystal Basiat, SuezanneC Baskerville, Sweetheart Baskerville, Demi Bates, Demon Bates, kane Bates, Will Bates, ShadixBear Bathgate, Carlotta Batra, Bruce Batz, Silentborn Batz, Dominik Bauer, Logan Bauer, Boz Baxter, Camryn Baxter, diesus Baxter, Drett Baxter, Gazmanjones Baxter, Kiley Baxter, Schwenny Baxter, Shimboo Baxter, Stoffe Baxter, Diamond Baxter, Gruntos Baxter, BC Bayliss, Bibi Bayliss, Backly Beam, BigFoot Beam, JuJu Beam, nati Beam, Pelgrim Beam, ELLiebob Bean, LeatherElf1 Beat, Nikky Beat, Carl Beattie, Fe Beattie, sonoma Beatty, Henri Beauchamp, TimTam Beauchamp, Conrad Beaumont, Dieudonnee Beaumont, Kitten Beaumont, Lucilla Beaumont, Odina Beaumont, PCBRANDY Beaumont, PLASTOK Beaumont, Sheree Beaumont, Sweet Beaumont, Olivier Beaumont, Busybee Beaver, Chiheb Bechir, Caspian Beck, GoldenGamer Beck, icar Beck, Jigoes Beck, Matsumoto Beck, Millie Beck, Rhino Beck, Ronor Beck, ropland Beck, wai Beck, laurionna Beckenbauer, Jeffery Beckersted, Dominick Beckham, Druu Becloud, Holger Becloud, Duce Bedlam, Beach Beebe, Manicexpression Beebe, Nicolette Beebe, Feril Beeks, BillyJoe Beerbaum, Lola Beerbaum, Pimppdog Beerbaum, Baylee Beery, DrathnotT Behemoth, Malarthi Behemoth, phoenix Behemoth, Trinity Bekkers, Dioana Bellah, KissesRhawt Bellambi, Bream Bellman, Hazel Bellow, Milo Bellow, Corvette Beltran, Lefty Belvedere, Jaden Benavente, Bianca Bender, Jeremy Bender, Mercedes Benedek, Albert Benelli, Dodi Benelli, Emili Benelli, laurette Benelli, ninake Benelli, Evazion Benelli, Elaine Bennett, Izabella Bentham, Carol Bentley, Deedrick Benton, Joel Berblinger, Lord Berchot, Pele Berchot, Marimar Berchot, Melody Beresford, Brielle Bergbahn, chrissie Bergson, Kody Bergson, Bit Berjis, Kevin Bernal, Dorie Bernstein, mystic Berry, Razza Berry, Bella Bertone, Taylor Berzin, liz Bessie, Kekken Biberman, Nicolas Biddle, Halbert Bienenstich, terrycrow Bigwig, Jasmine Bijoux, Kala Bijoux, Dano Bikcin, enzo Bikcin, Angle Binder, Cuffs Binder, Roxtor Binder, Tom Binder, Agamemnon Bing, Chalander Bing, Gigi Bing, runeking3007 Bing, Monsieur Bingyi, Angelica Biondetti, Melissa Birge, reeneebob Birmingham, Anubis Bishop, Danica Bishop, Mowesy Bisiani, Marteas Biziou, Karla Bjornson, Roxie Bjornson, Travis Bjornson, Atlwolf Blabbermouth, Rice Black, Nathan Black, Amanda Blackmountain, Disstraction Blackthorne, Miriya Blackthorne, Teagan Blackthorne, Orko Blanchard, Neural Blankes, Random Blankes, Shaura Blazer, Nethermind Bliss, dayanne Boa, Denideny Boa, lecosutre Boa, naholc Boa, NITR0US Boa, Prana Boa, RS Boa, penelope Bobak, Bad Bobbysocks, Ryuujin Boccara, Joey Bock, Elkissa Bode, Annika Boehm, Babyblues Boffin, Snodude101101 Bogan, Dirk Bogart, Jily Bogart, Pompo Bombacci, Ascanio Bonetto, Bony Bonetto, Casanova Bonetto, Cuncittina Bonetto, Frede Bonetto, Ervee Bonne, Jolanda Bonne, Poppy Bonne, Becky Book, Bibi Book, Barney Boomslang, Sam Boomslang, Steeven Boorman, Rogue Borgnine, Summer Borgnine, Rafe Borrelly, Equitus Bosch, Peter van den Bosch, tessa Bosshart, Hermione Bossy, Mr Bossy, Rhiannon Bossy, Aspen Bossy, Marisela Bouchard, Tony Bouchard, Annita Boucher, Aster Boucher, Katy Boucher, Lisae Boucher, Router Boucher, Sneaky1 Boucher, Varak Boucher, DarkAlpha Bourne, Hastings Bournemouth, bend Bowie, Lucy Bowie, Casper Box, coolbimbo Box, Kittenna Box, Metaphor Box, Nemesis Box, Bell Boyd, Kelley Boyd, Sylar Boyd, WendyCat Boyd, Denis Boyle, Jennifer Boyle, melmuse Boyle, Alycia Bradley, jayne Bradley, Airie Braendle, Glitch Braess, Su Brando, Tybalt Brando, IntLibber Brautigan, Dante Breck, Carbon Breed, WitchFire Breed, Bella Brennan, erika Brenner, gaby Brenner, Talthybius Brevity, KitKat Brewster, Lindsey Breyer, Artemis Bright, Brigitte Bright, Donnie Bright, Lucas Bright, Oya Bright, Prentice Bright, Risa Bright, Starfire Bright, Beebo Brink, Marcus Brink, Emi Brissot, Ice Brodie, Luth Brodie, Sam Brodie, Chromal Brodsky, Tydomus Brodsky, Cage Brody, Darling Brody, Kurston Brody, Mike1A Brody, UserJesse Brody, Reese Brody, Faith Broek, Happy Broek, ShadowHunter Brokken, Jacey Brooks, Shake Brooks, Shary Brooks, Sigurd Brooks, Tate Brooks, Vanleen Brooks, BruTuS Broome, PastorD Broome, Sarita Broome, October Brotherhood, Elroy Brouwer, Neophyte Brouwer, Jebediah Brown, linda Brown, Schwartz Bruder, lupu Brule, Joshua Brynner, Linda Brynner, Southy Buckenburger, drifterr Bugaboo, Michelle Bumbo, Trixie Bumbo, Paul Bumi, Jitar Bunin, Kerian Bunin, Crystalmom Bunnyhug, Embrace Bunnyhug, Zues Burali, GiGi Burgess, Keith Burgess, Shawna Burgess, Bain Buridan, Sean Buridan, Chiccorosso Burke, Count Burks, Hinamori Burleigh, Atom Burma, Jasper Burma, Aleshanee Burnett, Dottie Burns, Ebro Burns, Skipper Burns, John Burns, Haroldthe Burrel, Big Burt, dubureau Burt, Keisha Burt, phill Burt, Janloo Burton, Madd Burton, Bowlalot Bury, Dreklore Bury, Jarek Bury, Jenni Bury, Lou Bury, Orlando Bury, Angel Butuzova, dodi Byrd, Enchtris Byrd, Tleva Caballero, Gayle Cabaret, Monique Cabaret, Adele Cagney, Cralyn Cagney, Caribbean Cahill, Darien Caldwell, Lily Caldwell, CFire Caldwell, Ciara Calhern, Karl Calhern, Cecil Calhoun, Tizzy Calliope, Hypatia Callisto, Raven Callisto, Fred Cameron, Meliana Cameron, Antonius Camus, Maddie Camus, Raskella Canadeo, Exotica Canadeo, Vessus Candour, Alexis Canetti, Silvio Canetti, Talia Canetti, bragan Canning, Charenthia Canning, Reeda Canning, Vannesh Cannoli, Changurr Cao, Chilli Cao, Dorian Cao, RosyLee Cao, steve319 Cao, Contamina Capalini, Cougard Capalini, Kirsti Capalini, Lindichka Capalini, Lyla Capalini, JohnMAC Carbenell, snake Carbenell, Capri Carbetta, Sophia Carducci, Kid Cardway, Icould Careless, Aurore Carlberg, Brumia Carlberg, Bruni Carlberg, Brandie Carlos, Jenny Carlos, Avalon Carmona, Moana Carmona, Ashelia Carnell, Rain Carnell, CJ Carnot, Madison Carnot, Julie Carpathea, HALOCAT Carr, coolmaria Carroll, karyme Carroll, Leila Carroll, Crisii Carter, cyrielle Carter, isidore Carter, Missi Carter, Shatara Carter, Tristan Carthage, Aemilia Case, Baby Case, Jenn Cassady, Kittygloom Cassady, Charlotte Cassavetes, Holly Cassavetes, Anthony Cassini, Supertell Cassini, Wietse Cassini, Just Cattaneo, Mandy Cattaneo, Aleicester Catteneo, arthuraleksandravicius Cavan, Maximus Cazalet, Quellin Ceawlin, dMetria Cela, Spidey Cela, Arcadia Ceres, wanderer Cerveau, Aaron Cerveau, Marky Chaffe, Stefani Chaffe, The Chaffe, Becca Chambers, Lexis Chambers, Inigo Chamerberlin, Shion Chandrayaan, Ibrisse Chantilly, MaryAnne Chantilly, Cool Chaparral, guy2 Chaplin, Iadwen Chaplin, Lillyann Chaplin, wllmn Chaplin, Marsha Chapman, Caspar Chapman, Dominique Charles, Chilly Charlton, Pammie Charming, Total Chastity, Arohee Chatnoir, Papillon Chatnoir, Barry Cheeky, coldFuSion Cheeky, Nyla Cheeky, Ryan Cheeky, Aggressor Cheetah, Ronald Cheevers, Michelle Chernov, Maggy Chestnut, Cam Chevalier, Eleonore Chevalier, Kelly Chevalier, Mauries Chevalier, Ozzy Chevalier, Rayvendell Chevalier, Swampy Chevalier, Cheesemuncher Chickenwing, Kaltezar Chickenwing, milespeed Chihuly, Coolkama Childs, Michelle Childs, Nicole Childs, SimonRaven Chippewa, Albert Choche, Annetha Christensen, Jennifer Christensen, Zell Christensen, Herman Christiansen, Haifeng Chu, Francis Chung, tyana Chung, Sundance Churchill, Anubis Cioc, Corpierro Cioc, Dwayne Cioc, Knibbel Cioc, Slowhand Citylights, PonygirlSarah Clapper, Jim Clark, Jacob Clark, Jo A Clark, Angelos Clary, Biffle Clary, lilly733 Clary, Rui Clary, William Clary, Otto Clave, Arahan Claveau, Neil Claxton, Mimi Claymore, Pete Claymore, Sam Clayton, Blank Cleanslate, Deckheard Cleanslate, Electron Cleanslate, Spirit Cleanslate, Willow Cleanslate, Kovu Cleaver, Bell Clellon, Covisha Clift, EBCY Clift, Iumi Cline, pizzaguy Clutterbuck, knightrider Clymer, Exia Coage, Brenda Coakes, Lindsay Coakes, Lyndka Cochrane, Ceinwen Coen, Oneil Coen, Mahogony Coffee, Mark Coffee, Lisbeth Cohen, Melayna Colasanti, holly Coldstream, Moon Cole, Shiden Coledale, Castalia Collingwood, JUNKIE Colman, Silver Colman, Stahi Columbia, SweetAbe Columbia, CC Columbo, Charity Colville, Isabeau Conacher, Deb Cone, emili0 Congrejo, MarioDaniel Congrejo, Jazzy Connell, Jenika Connolly, Cooper Conover, Garn Conover, Mara Conover, Myles Cooper, Angelina Coorara, Valentine Coppens, psyco Coppola, Tremleh Coppola, Venus Coppola, Chiana Cordeaux, Sensuality Cordeaux, Clarissa Cordoso, Methos Corinthian, Tylerferland Cork, Caleb Corleone, Montana Corleone, Sparkey Corleone, Zoey Corleone, Achtai Coronet, Count Coronet, Dweedle Coronet, jjccc Coronet, Ron Coronet, Caterina Cortes, Letitia Cortes, Marcella Cortes, Martinelli Cortes, Raven Cortes, Soopafly Cortes, Grazel Cosmo, Athena Cosmos, Cally Cosmos, Annyssa Cosmos, Bunny Costello, Zelitor Costello, Lionel Cournoyer, Sasha Cowen, Carl Crabe, Lyssa Craig, micke Craig, Mel Cramer, Tee Cramer, Avil Creeggan, Bunch Creeggan, CronoCloud Creeggan, NewYorkCityDJ Cremorne, Shalori Cremorne, Artik Crimson, Bliss Crimson, Daffodil Crimson, Raul Crimson, Shaoti Crimson, Trevor Crimson, Rex Cronon, Ace Crosby, Linnrenate Crosby, DaRealNeo Crossing, Wark Cruyff, Silver Csak, Eulalia Cuddihy, Lauralynne Cuddihy, Rammstig Cummings, Rita Cummings, Fremont Cunningham, Jinger Curie, RICX Curie, Betty Curry, Marissa Curtis, Mercurion Curtiss, Juan Cusack, Sanderman Cyclone, Marek Czervik, Alreania DaSilva, Dnel DaSilva, Seph DaSilva, Kelly Dabney, dorothyann07 Dae, Frax Dae, Frost Dae, Syryne Dae, Oddy Dae, 1Time Daehlie, Sinead Daehlie, TRACI Daehlie, Dante Daffodil, Limey Daffodil, stripey Daffodil, Atomik Dagger, Bloodsoaked Dagger, Coca Dagger, Colera Dagger, J4ck Dagger, Jaune Dagger, leigha Dagger, Silver1 Dagger, Alexander Dagmar, Simeon Dagmar, Dweezle Dagostino, Ginoo7 Dagostino, Joka Dagostino, Rachid Dagostino, Sinatra Dagostino, DR Dahlgren, Alexandra Daikon, Devious Dailey, Natalie Dailey, Sukit Dailey, Zoya Dailey, Nad Dal, Rudra Dal, Robert Dale, Coventina Dalgleish, Salvador Dalgleish, Anya Daligdig, Nyterious Daligdig, yvette Daligdig, Kylie Dallin, Angel Damask, Phantom Damask, QatanI Damdin, Bekka Damone, Pashin Damone, Vaekraun Damone, Zoraya Damone, elmoono Dana, Mary Dana, ml Dana, Rezzer Dancer, Shrug Dangle, Guttstein, Daniel, Bubba Daniels, Dinky Daniels, Kiana Daniels, marcel Daniels, Rosey Daniels, Sara Daniels, VictoriaRose Daniels, Ignacio Dannunzio, SlimD Dannunzio, williamae Dannunzio, Chriss Darkes, Digit Darkes, Tanooki Darkes, Bree Darling, Chasity Darling, Darra Darling, Val Darracq, Diana Darragh, Ryan Darragh, Bane Darrow, Bree Darrow, Ivy Darrow, cuddles Dassin, Leeloo Dassin, Dachine Daviau, Gyllian Daviau, Leben Daviau, Serioto Daviau, Willow Daviau, Allison David, JamieZel David, Todd David, Casey Davidson, LaNikki Davis, Whispering Dawn, Lady Dawson, Helen Dayton, Ryan Dayton, Ooh Dazy, Woopsy Dazy, Brighid DeCuir, eZekiel DeCuir, Link DeCuir, nath DeCuir, Rhys DeCuir, siliconegirl DeCuir, spring DeCuir, Iron DeCuir, Escort DeFarge, Archangelo DeSantis, Aubrey DeSantis, Gustav DeSantis, Hippy DeSantis, Ilana DeSantis, Sutara DeSantis, Undina DeSantis, Axienne DeVaux, Dana DeVaux, Kitty DeVaux, Mindy DeVaux, Krystal DeVinna, Krystalynn DeVinna, Magenta DeVinna, Manuela DeVinna, Spike Deakins, Debbes Dean, Korben Dean, Dogbert Debevec, Savannah Debs, emily Decatur, Heiko Decatur, Zorena Deckard, Andrea Decosta, Dolly Decosta, Esperenza Decosta, Kruppen Decosta, larrykin Decosta, PhoenixRose Decosta, Sophy Decosta, Twinsen Decosta, Vladimir Decosta, Duxster Deere, Maxim Deharo, Summerbreeze Deharo, Matti Deigan, DeeAnn Dejavu, Gina Dejavu, Shai Delacroix, alexis Delcon, Ashly Delcon, Kane Delcon, Dante Deledda, Lady Deledda, Jega Delgado, Alicia Delphin, Darek Deluca, Lestat Demain, Nuka Demain, Allissa Demar, Lilyanah Demar, Aeleen Demina, Blowing Demina, Kalm Demina, Sarias Demina, Skeddles Demina, Sweet Demina, Alida Demontrond, Redux Dengaku, J. Derby, Cristell Deschanel, Ivey Deschanel, SinaMaria Deschanel, Elisabeth Desideri, Monique Desideri, Bartiloux Desmoulins, Hazel Desmoulins, Isis Desmoulins, Phoenix Desmoulins, Jon Desmoulins, Dino Despres, Samantha Despres, Snowflake Despres, Bones Detritus, Neo Devoix, Bre Dharma, Showshawna Dharma, Mike DiPrima, Winter DiPrima, Gongree Diage, Azure Diamond, Styles Diamond, Maike Dibou, Klaus Dieffenbach, Xavier Dieffenbach, Lordfly Digeridoo, Selkit Diller, Tari Dilley, Kelly Dilweg, Werewolf Dingo, Darkharmony Dingson, Knud Dingson, Jewel Dinkin, Mecha Dinosaur, Savonna Dinova, Amina Diplomat, FuZzY Diqui, Crimson Divine, Lizbeth Divine, Cryptid Divisadero, Destiny Divisadero, Montsho Division, Gryphon Dix, Kittybird Dix, Hope Dixon, CadiWolf Dobbs, Darling Doboy, Nicole Docherty, Ralph Doctorow, Odo Dod, nik385 Doesburg, sam Doigts, Elea Dollinger, Miche Dollinger, Severina Dollinger, Eric Domela, Krysta Domela, Franky Donaldo, Duntroon Donburi, Tricia Donovan, Sabrina Doolittle, DeDe Doowangle, Dinghy Doowangle, Phoebe Doowangle, Ratzfatz Dorado, Jessalicious Dorance, RJaNator Dorance, Kalemika Dougall, Fi Douglas, Norelyn Douglas, Aerrett Dovgal, Wendy Dovgal, Alex Drago, MAGWolf Drago, Lupo Drake, Palanth Drake, Aryanna Draken, Drinkin Draken, Kaylan Draken, Maddy Draken, nixkuroi Draken, Thornpaw Draken, Sinjo Drakes, James001 Dryke, Nameless Dryke, Roberta Ducatillon, Helke Duettmann, Moni Duettmann, Kyla Duke, Esence Dulce, Manuella Dulce, Ric Dulce, Shannel Dulce, Xander Dumont, Lionna Dumouriez, Marko Duncan, Duncan, Lyre Dunia, Cyndari Dunn, Garth Dunn, Sugababe Duport, Taylorholic Durant, Vixie Durant, Julie Durant, Drew Dwi, Ribbon Dye, Michelle Dzieciol, shngy Dzieciol, Jeffrey Earp, Umbrella Ebi, Adi Eccleston, Bazzerbill Eccleston, Dragon Eccleston, chawna Eclipse, Minolin Eclipse, Valkyrie Eclipse, Joi Edelman, Alx Edman, Daniella Edman, Saskia Edman, Storm Edman, Cory Edo, Tommy Ehrler, Stephe Ehrler, Edred Einarmige, Hope Eldrich, Kai Eldrich, Winter Eldrich, Thunder Electric, Ezmerelda Electricteeth, Hostile Electricteeth, Kris Electricteeth, Loki Eliot, rudy2zday Eliot, Shaydin Eliot, Iris Ellison, Enigma Elswit, Tim Ely, Darkling Elytis, Delu Elytis, Happy Elytis, Jessica Elytis, Bernd Emmons, Kellie Emmons, Robbert Emmons, Bean Emoto, dick Encore, Andy Enfield, Fuzionor Engawa, Hethr Engel, RH Engel, Digital Enigma, Kahlest Enoch, Lex Enoch, Oran Enoch, Ryal Enoch, Wobmongle Enoch, Wyatt Enoch, Pea Enzyme, Antony Epin, Sapphire Epin, DBDigital Epsilon, Shoshana Epsilon, FallenAngel Erato, Renton Eretz, Mo Eriksen, 64Y80Y Eros, tommy Eros, Nicola Escher, Zak Escher, Salvatore Esposito, Quinevere Essex, Zed Essex, Fabian Etchegaray, Psyche Etoile, Byanex Etzel, CrimsonWings Eun, Deckard Eun, Arwen Eusebio, Anastacia Evans, buttonlynn Evans, Rose Evans, Romeo Evelyn, Sephiroth Everidge, Patriiick Ewing, Trey Ewing, Vivian Ewing, Xwing Ewing, Zha Ewry, SirZarath Excelsior, Zorrita Express, Hierophant Extraordinaire, Blanche Fabre, Annie Fackler, Wolfgang Fackler, Amy Faddoul, Shukran Fahid, Garth FairChang, Brooke Fairplay, TOmmy Fairplay, Vixen Fairplay, Bobby Fairweather, Darlean Fairymeadow, Gotobug Fairymeadow, Heathie Fairymeadow, Meleni Fairymeadow, Moon Fairymeadow, Odysseus Fairymeadow, rob Fairymeadow, Taylkusha Fairymeadow, Crystal Falcon, WhiteAngel Falcon, VetteMan Falken, Evilpony Fallon, Fernand Fapp, Sasuke Fapp, Roen Fardel, Dariush Fargis, Jenn Fargis, Mandy Farina, Kokoro Fasching, Madison Fasching, Ben Fassbinder, Leo Fastback, Rikky Faulds, STEEL Faulds, Equino Faulkland, Flynn Faulkland, High Faulkland, Arda Fauna, Elvis Faust, Benelli Federal, Forest Federko, Belle Fegte, Danny Feingold, Luc Feingold, Bing Fell, Darky Fellini, Jaze Fellini, Sacha Fellini, paulie Femto, Ynot Fenua, Fau Ferdinand, Soren Ferlinghetti, Meri Fermi, Boxter Ferraris, Danamea Ferraris, Duilho Ferraris, Fred33 Ferraris, LeekySean Ferraris, Letizia Ferraris, Marlowe Ferraris, Wanted Ferraris, Xavier Ferraris, Feff Ferrer, Thomas Ferris, Nakala Fetisov, Astrin Few, Chosen Few, Ahh Fiddlesticks, Chantal Fielding, Caleb Fierrens, Patrice Fierrens, sam Fieseler, NutZ Figaro, summer Figaro, Leumia Figgis, Mae Figtree, Maldavius Figtree, Ravovich Figtree, Morgana Fillion, Brett Finsbury, sofia Finsbury, Jazmina Firefly, sasha Fischer, william Fish, Nadia Fisher, StevenSDF Fisher, Carol A . Fisher, Dimitri Fisseux, Manni Fitzgerald, Freddie Fitzroy, Phineas Flagstaff, Ante Flan, Braden Flanagan, BrettEbay Flanagan, Echo Flanagan, Knute Flanagan, Kristjan Flanagan, LilyRose Flanagan, Meril Flanagan, Lulu Flasheart, Jolie Fleury, Clitoria Flint, Fifi Flintlock, Frostie Flora, Kitto Flora, Chriss Florio, Arlen Flossberg, Angel Fluffy, Emilyuk Fluffy, Frurry Fluno, Faedra Flytrap, Brieg Foden, Annette Fonda, Katina Fonda, Raymond Fonda, Marcos Fonzarelli, Yuri Fonzarelli, CrystalShard Foo, etoile16 Food, Kim Food, Kode Forager, Vodka Forager, Wendy Forager, Lucien Forcella, Maela Forcella, Olli Forcella, Violet Forcella, Clarissa Forder, darkdog Forder, Hans Forder, Jango3234 Forder, Olli Forder, Naryu Forester, FaustTiger Forte, Richie Forte, BMFC Forwzy, Erick Forwzy, SusNy Foss, Sanford Foulon, Iwana Fouquet, Kae Fox, Raudf Fox, Wolfie Fox, Phli Foxchase, Kityn Foxley, MollyBrown Foxley, Qua Frampton, Ice Franchini, Nicolas Franchini, Soizie Franciosa, Samson Francis, Nequam Frangilli, Andreas Frankfurter, PreWired Frankfurter, Diane Franklin, Cappy Frantisek, Romano Frascati, DeMits Frederix, Mel Fredriksson, Sune Fredriksson, Tina Fredriksson, Fastfreddy Freeloader, Sammar Freeman, Kitty Freund, Jorgen Friis, Zorin Frobozz, mdbobbitt Frobozz, Chris Frontenac, Foolish Frost, Asriazh Frye, Patti Frye, Phish Frye, Nobody Fugazi, Simba Fuhr, Snugglebunny Fuhr, fallendream Furse, Jamie Furst, Cherise Gagliano, Laura Gagliano, Gammy Gainey, Gazz Galatea, Govindira Galatea, Rizpah Galatea, Amber Galbraith, Mandy Galileo, william Galileo, David Gall, LoLa Galland, Zach Ganache, Casey Gandini, Edgar Gantenbein, Jonx Gao, Soso Gao, Madison Gardner, Silver Garfield, Michelle Garrigus, Nerdmaster Garrigus, Jarik Garsztka, Svoboda Garsztka, Salkin Gascoigne, Roger Gaspara, Buttlock Gasser, Pud Gasser, Zina Gasser, Prince Gausman, livingdead Ge, Josh Geesink, Tolly Geest, Georgina Geewhiz, Chris Geiger, Sabine Geiger, Samuel Geiger, Tristessa Geiger, Joe Gemini, Mielle Gemini, Misty Gentil, Sanna Georgette, Phoenix Gerhadsen, Mic Ghia, Salores Ghia, Loskobosko Giacomin, Susanne Giffen, Lazarus Giha, Micah Giha, Merry Gildea, Summer Gildea, Brittany Giles, Rayy Giles, sevron Giles, Gattz Gilman, Rori Gilmour, SunQueen Ginsberg, Rockwell Ginsberg, Intolerable Ginsburg, Junie Ginsburg, Enrico Giove, Krystal Giove, Annie Giovinazzo, Cat Gisel, Constantine Giugiaro, Io Giugiaro, Persimmon Gjellerup, Lorna Gladstone, Toby Gladstone, Dale Glass, Gellan Glenelg, EmmaBella Glimmer, louise Glimmer, Gianna Glitter, Melyissa Glitterbuck, Victoria Glushenko, Wolf Goalpost, Chris Gobo, Xerses Goff, Sturdus Goldblatt, Nigel Goldflake, Major Golding, Master Goldkey, Zho Golem, Stylez Gomez, Carlos Gomez, Alecydoss Gontermann, Skyler Goode, Valentine Goode, Odd Goodfellow, Dragyn Goodliffe, Hank Goodliffe, Livinda Goodliffe, Robertt Goodliffe, Daphne Goodnight, Sean Gorham, Ledje Gorky, Emma Gould, Amaze Grace, Lagerstone Graff, Harper Grainger, Andy Grant, Carrie Grant, LauraLOral Granville, AlphaOmega Graves, Ebon Graves, Kyrii Graves, Leeloo Graves, Bosco Gray, Dez Gray, Renegade Gray, Summer Gray, Aries Graysmark, Edian Graysmark, Scotty Grayson, Mantis Grebe, Kelly Green, cara Greene, Kimber Greene, Mystical Greene, Raven Greene, Soilent Greene, Matthew Greene, Soilent Greene, Roberta Greenfield, ShayLee Greenspan, Dax Greer, Angel Gregg, Kyleigh Gregg, Sophie Greggan, Deanna Gregoire, StylynProfylyn Gretzky, Farallon Greyskin, Kraal Griffith, Xavier Griffith, Jacomo Grigg, Sylvie Grizot, bodyman72 Grot, Damian Grot, MarieCaroline Grumiaux, Mozo Grumiaux, Oceane Grumiaux, Jadem Gruppman, Gracie Grut, Jennie Grut, Mhaijik Guillaume, Frog Gulick, RacerX Gullwing, Enktan Gully, Gilly Gully, Woozie Gumshoe, Teddy Gumsing, Stephane Gunawan, Alienbear Gupte, Boroondas Gupte, mcgeeb Gupte, Elise Guyot, Jamal Guyot, Lawyer Guyot, Thiago Guyot, Arwen Gymnast, denniswo1993 Gymnast, Lukes Gymnast, Miki Gymnast, Sizoark Gynoid, Markiss Haas, Pepper Haas, Arkanys Hadlee, Apollo Haight, Lord Haight, Fawn Hailey, Kaelin Hailey, Gaelle Halasy, ISIS Halberd, Meg Halberd, Zander Halberd, Arnold Halderman, Malarwen Hall, Ken Hall, Jonah2cd Hallard, Saii Hallard, Trixie Hallard, Doris Haller, Destina Halley, Susiee Hamilton, IBMTapeGuy Hammerer, Lighten Hammerer, VEVER Hammerer, Alison Hamsun, Fawn Hana, leah Hana, Darknite Hand, Emperors Hand, nefertiti71 Handrick, Rodney Handrick, Delerium Hannibal, leanhaumshee Hannya, jingle Hansen, Mattie Hansen, Terry Hansen, Vox Hansen, Filo Hapmouche, Gustavus Hapmouche, Nounouch Hapmouche, Adrian Harbinger, Kami Harbinger, StormCrow Harbinger, CherryBomb Hare, Den Hare, Omegasun Harford, ricky Harford, ricky Harford, Harley, Jenna Harley, Kristina Harley, Natasha Harlow, Hummer Harmison, Allen Harrington, Tessa Harrington, Joker Harris, Shanti Harris, Dagon Harrison, J0NATHAN Harrop, Kerinauu Hartunian, Kyentay Hartunian, Rav Hartunian, Ski Harvey, Tuesday Harvey, Xylo Hasp, Betina Hatfield, Gina Hatfield, Calamity Hathaway, Dorian Hathaway, Duncan Hathaway, Xavier Hathaway, Jack Hathor, Kamilah Hauptmann, Pam Havercamp, swift Havercamp, Griselda Hawes, kwanita Hawks, Ravenis Hawks, BenG Hax, el33t Hax, Juicy Hax, Macx Hax, Meta Hax, Mikka Hax, Mokona512 Hax, Mr8ball Hax, Prophet Hax, Rina Hax, Slober Hax, Starbuck Hax, Takehiro4 Hax, Kyle Hayashi, Ashrilyn Hayashida, Eriko Hayashida, August Hayek, Milton Hayek, Ronnie Hayes, Max Hazlehurst, Sorsaran Hazlehurst, Grath Hazlitt, Violet Hazlitt, April Heaney, Aquela Hearn, jefferey Heart, Kalyrra Heart, Marissa Heart, Taina Heart, TLC Heart, Tori Heart, Dana Hebert, Trimzi Hedges, AmazedBlue Hegel, Dagmar Heideman, r0bin Helsinki, Moira Henley, Ursa Henley, Joharr Hennah, Daviana Hennesy, GJ Hennesy, jens Hennesy, Karl Herber, mistydawn Herbst, Donatella Hermano, Robins Hermano, Ekib Hern, Greves Heron, Jagged Heron, Christel Herzbrun, le Herzog, Reverend Herzog, Elektra Hesse, SweetDesire Heston, Cotton Hicks, Zack Hicks, Kevyn Hienke, Tristan Hienzman, Devin Hill, Wendy Hill, Tensai Hilra, Valek Hin, Adolph Hinkle, Timothy Hinkle, YoCo Hird, Amber Hirvi, Dagon Hitchcock, Heather Hitchcock, Noah Hitchcock, Sianna Hock, Dominique Hofmann, Holly Hofmann, Ganador Holgado, Brookston Holiday, Davidd Holmer, Sam Holyoke, Alexander Homewood, atory Homewood, dabadguy Homewood, Ed Homewood, Huge Homewood, Meesha Homewood, tilstad Homewood, Cremi Honey, Laura Honey, Sandling Honey, Honey, Haos Honua, Vudu Hoodoo, Dallas Horsefly, Lucy Horton, SJ Horton, Homer Horwitz, naty Hotaling, Traceysvideos Hotger, DaQueenB Houston, Natasha Houston, Tia Houston, Hughes Howard, Meg Howe, Edward Howton, Falllen Howton, Pepto Hoyer, Sabrina Hoyer, LadyAbigail Hubbard, Kristopher Hudson, Nikita Hudson, Titus Hudson, XLR8RRICK Hudson, Holly Huffhines, Bella Hugo, Haole Hula, Sard Huldschinsky, Neran Hull, Anastasia Humphrey, October Hush, Silent Hush, Ctarr Huszar, ac14 Hutson, Dex Hutton, Fox Hwasung, Johanna Hyacinth, White Hyacinth, Adrianna Hyde, DJ Hyde, Ty Hyland, Adeline Hynes, Cathy Hynes, DeepSweet Hynes, Psykeeper Hynes, Sexy Hynes, Ares Hyun, Emperor Hyun, melodie Hyun, slayer Hyun, Puck Ida, Weary Ida, Anne Idler, Ruby Idora, Bryan Idziak, Six Igaly, elfi Independent, Spike Independent, Veilofunknown Independent, Bryndi Ingersoll, Ingrid Ingersoll, Noelyci Ingmann, Andrew Ingrassia, Dale Innis, Foxy Innis, Vern Innis, 111Mc Innis, Cloud Insoo, MEtoo Insoo, Quinn Iredell, Rebekah Iredell, Lucien Ireton, Maggie Ireton, Austin Ironclad, DavidJames Irwin, Roy Irwin, Xavier Irwin, Esmee Isbell, Miyu Ishii, Billy Islander, Misa Itamae, Magnum Iuga, Akasha Ivory, Juliana Ivory, WHITEMAGIC Ivory, Gazometr Ivory, Indigo Izumi, Kami Izumi, Salazar Jack, Gunslinger Jackalope, Sutton Jacks, Casandra Jackson, Dernard Jackson, Dougal Jacobs, Lone Jacobs, Sydney Jacobs, jefftlse Jacobus, jose007 Jacobus, justine Jacobus, LampLighter Jacobus, Micha Jacobus, Jadge Jacobus, Enchant Jacques, Victoria Jacques, Dreamweaver Jae, Gregoire James, Kizza James, Vienna James, Barry Jannings, Bianca Jannings, Gwen Jannings, Juappa Jannings, Paisley Jannings, Coos Jansma, Fernandinho Jansma, Griffioen Jansma, Jiire Jansma, IsisLynn Janus, Theobaise Janus, Conway Jarrico, DylanJr Jarrico, Quest Jarrico, erba Jarvis, Jeagerman Javelin, Alan Jay, Lopp Jay, harpo Jedburgh, Craig Jeffries, Alexis Jenns, Bimbie Jenns, XanXan Jervil, Alexander Jessop, Gelenas Jessop, RodneyLee Jessop, Tataniya Jessop, Amethyst Jetaime, Kooky Jetaime, Sapphire Jetaime, Tempest Jewel, Vampirella Jewel, Elia Jewell, Josey Jewell, Shaolin Jewell, Sheeba Jewell, Stefu Jewell, Uma Jewell, Rosslin Jiang, alex Jimenez, Forest Joffe, John Jogiches, Dyani Johin, Musashi Johin, Major Johnson, Dean Johnson, Peter Johnson, Thomas Carson Johnson, Janet Jones, Jason Jones, Bedo Jonze, Elaine Jorgensen, Osiloa Jorgensen, Mariah Jubilee, Sam Jubilee, Ada Jun, Chenak Jun, Ferris Jun, kelyane Jun, Takeshi Jun, Tommi Jun, Phoebe Juneau, Grace Juniper, icandi Juno, Kimo Junot, isha Juran, Orchid Juran, Torsten Juran, Krzywol Kaczmarek, Sakura Kagekiyo, Meni Kaiousei, Fritz Kakapo, Esdrael Kamachi, Kathy Kamenev, Darsuky Kaminski, Rebecca Kaminski, Digital Kaos, Kappa Kappa, Leah Kappa, Gapple Kappler, Cristalle Karami, Toledo Karas, Tina Karlfeldt, Angelina Karura, Samara Kasshiki, Kitty Katscher, Lonetree Katscher, Goldie Katsu, Shamir Katsu, Lacey Kavanagh, Scrooge Kavanagh, Faye Kawabata, Ninja Kawabata, Onimusho Kawaguichi, Brad Kazakov, Ida Keen, Jeff Kelley, Kyle Kelley, An Kellner, Cindy Kellner, Kean Kelly, Tony Kembla, KaliCat Kennedy, Fred Kenorland, Sharon Kent, Nils Kenzo, Rase Kenzo, Tammy Kenzo, Tyci Kenzo, chica Keon, Benja Kepler, Gust Kepler, KittyKatt Kerensky, anton Keynes, Ipenda Keynes, Malevolyn Keynes, Ayumi Khorana, Hoshi Kiama, Nekorina Kiama, Aurillius Kidd, Bare Kidd, Billboard Kidd, Blurple Kidd, Cade Kidd, Ekerilar Kidd, FFS Kidd, Lazarus Kidd, Lea Kidd, MidnightRush Kidd, Mittens Kidd, Morliona Kidd, Neilly Kidd, Kim Kienzle, RJ Kikuchiyo, Gail Kilara, Fish Kilby, zeelee Kindley, Montez King, Dax Kirkorian, Myoukitsune Kirkorian, Szandor Kirkorian, Cmtccmoi Kish, Kia Kish, DaQbet Kish, Coca Kit, Developer Kit, pronto Kit, Sunshine Kit, ssjkriccolo Kitchensink, Reisuki Kitsune, Tengu Kitsune, AngelEyes Kittinger, Devilish Kitty, Kitty, Panther Kitty, Daaneth Kivioq, Praseodymium Kivioq, Sonya Kivioq, Emily Kleene, Buejien Klees, Princess Klees, SaltySugar Klees, Parrish Kline, ProfessorKindly Kline, Chelsay Knibber, Victoria Knight, Raspitomaru Knopfli, Cocoanut Koala, Akiko Koba, Bryan Koba, dawood Koba, Izen Koba, Nebur Koba, Taran Koba, Pamela Koenig, Neo Koga, BlackOut Kohime, Jazzie Kohime, Naa Kohime, Seriuskid Kohime, Wandale Kohime, Zana Kohime, Zerosix Kohime, Maucat Koi, Dagmar Kojishi, Chroma Kolache, Icey Kolache, Kornscope Komachi, Bri Koolhaas, KamaSutra Koolhaas, Katya Koolhaas, Trylle Korda, Corrine Korobase, Navajo Korvin, Pasha Korvin, David Kostolany, quintin Kostolany, Tasha Kostolany, Amy Kotobide, Zaphod Kotobide, KYWLDCT Kovacs, LillyEliska Kralomoc, Joseph Krams, Fumon Kubo, LudwigVan Kubrick, Anagras Kuhn, Selina Kuhn, Tal Kuhn, Finora Kuncoro, Maya Kupferberg, Jana Kurelek, Shika Kuri, Yo0gy Kuri, Endo Kurosawa, Tatsuki Kurosawa, MrBill Kurri, Albert Kwak, Kwakkelde Kwak, Duckling Kwak, Kasey Kyger, Kaimi Kyomoon, Stelard Kyomoon, Kyo Kyong, Emm Laa, Keera Laasonen, Delvendez Laborde, Raban Laborde, Amodeus Labrada, Louisa Labrada, Sweeten Lacey, Fiachra Lach, Eliv Lachman, Flykiwi Lachman, Charlie Laffer, LarryS Laffer, Sasha Lafleur, OxLukexO Lagan, Shadow Lagan, Tilianna Lagan, Jaye Lahtoh, Davoid Lake, Fairlight Lake, Thomas Lake, Veronique Lalonde, Leticia Lambeau, Maleia Lambeau, Cross Lament, Drakon Lameth, Misch Lameth, Caeleigh Lamington, Nedrick Lamont, essayn Lamont, Dwayne Lancaster, Hiram Lancaster, Carlton Lane, Christo83 Lane, DOO Lane, Niket Lane, Roughtoe Lane, Taylor Lane, Ami Lang, Emily Lang, Ruadh Langwarrin, Sasha Lapointe, Garrett Laramide, TBA Lardner, Beverly Larkin, Marcoh Larsen, Vanessa Larsen, bjf25 Larsson, curL Larsson, Garsson Larsson, Jondolarr Larsson, Justicar Larsson, Quinn Larsson, redshoedave Larsson, Tod Larsson, lea Laryukov, Renate Laryukov, Benny Lassally, Khristen Lassard, Josh Latrell, Lacey Latrell, Shari Latrell, Casper Laughton, Kory Laughton, Lisa Launay, Sasha Launay, Areyn Laurasia, Crystaleen Laval, Moirae Laval, Sascha Laval, Slasha Laval, Tiberius Laval, Shadow Laviolette, Velarissa Laviolette, Zeus Laws, Snaptick Laxness, wtf Laxness, Carrie Laysan, Norton Lazarno, Candide LeMay, Dustin LeMay, Shelly LeMay, Antionette LeShelle, Hayden LeShelle, Kristian LeShelle, Monika LeShelle, Mysti LeShelle, Shaklin LeShelle, Shavaii LeShelle, Lord Leafblower, Kinjry Legend, UniqueRose Legend, Jonny Legien, Lillia Lehane, Renae Leigh, KeiAira Leigh, Casper Leinhardt, MiaLily Lelouch, Adriana Lemieux, Keiki Lemieux, Ginger Lemmon, Heather Lemmon, JohnnyMac Lemmon, Lenni Lemuria, Bubba Leonard, Spyder Leroy, Aral Levitt, DarionMonkee Levitt, Quiana Levitt, Angharad Lewellen, AngelEyes Lewis, Cookie Lewis, JonnyImpala Lewis, Ekka Li, Jesa Li, Anark Liebknecht, KUieTSToRm Lightcloud, Lincoln Lightfoot, Nicola Lightfoot, Shaman Lightstone, Nika Lightworker, April Lilliehook, Joi Lilliehook, Kimi Lilliehook, LAPDHOLLYWOOD2000 Lilliehook, Lindy Lilliehook, Shayne Lilliehook, Skywil Lilliehook, Neo Linden, Amber Linden, Guy Linden, Teeple Linden, Marck Lindman, NoSpy Lindman, Rahduhlac Lineker, Evangeline Ling, Kailani Ling, Karyll Ling, Lexus Ling, moon Ling, Wai Ling, Samantha Lingiuan, CyberonX Link, Laynie Link, SLurl Link, Aphrodisiack Lisle, Petunia Liveoak, Eithnie Llanfair, Jennifer Llanfair, Pami Llewelyn, Gwyneth Llewelyn, Kiten Lobo, Paul Lobo, Khrome Lock, Brett Logan, Dragger Lok, Pavig Lok, Sera Lok, May Loll, Lola Lollipop, SweetTasting Lollipop, Nikee London, Trinity London, Dogan Lonergan, Rod Longcloth, Excalibur Longstaff, Apolonique Loon, Austyn Loon, Danyhael Loon, Goreki Loon, Huligo Loon, Jaffred Loon, LouisS Loon, Luke Loon, mahee Loon, Ruthless Loon, Melina Loonie, rasta Lopez, Lydiah Lorentz, Stellar Losangeles, Blackie Lotus, Misha Lotus, Alysia Loudon, Grace Loudon, grumble Loudon, Kate Loudon, kimmie Loveless, LadyMacbrat Loveless, Ally Lovell, Dixii Lovell, Darb2rad Lowe, Lozzie Lowe, Trip Lowe, Andrek Lowell, Jaraziah Lowell, Lissa Lowell, Stryfe Lowell, Leland Lowell, Leonardo Lowey, Stagger Lowey, Strabo Lowey, Raen Lu, Laurie Lubezki, MissJean Lubezki, Lucia Lucero, Lee Ludd, Franchises Lulu, Jayden Lulu, Kitten Lulu, mona Lumet, Alienor Lumiere, Michi Lumin, Wolf Lumin, Grumpy Lumley, Sian Lumley, HamSuiJe Lumpen, Laguna Luna, Starbella Luna, Ashley Lundquist, Theosta Lunt, Cliothe Luo, Lincoln Lupino, Bronwyn Lurra, Mineki Lurra, MYMistress Lusch, Linnae Lusso, Natalie Lustre, Rose Luxemburg, Helena Lycia, AG Lykin, Lhlilith Lykin, Niko Lykin, Logan Lyne, Jacques Lytton, Kianeira MacDiarmid, Apple MacKay, Melissa MacKay, Bailey Mackenzie, Maxx Mackenzie, Rose Mackie, Ee Maculate, Gaetan Maculate, Ravarian Maculate, Adrian Maddaloni, yearning Maddaloni, Ava Maddux, Flezix Maddux, Karamel Madison, Allure Madonna, Mannie Madonna, Sitearm Madonna, Mario Madsen, Mitzy Madsen, Ben Maersk, Lillian Maertens, Turk Maertens, Stephanie Magnolia, Lonique Magojiro, WarKirby Magojiro, Loki Mahana, Vinny Mahana, Semiramis Mahina, Shadow Mahoney, Rissa Maidstone, Tynana Maidstone, Angel Majestic, Jeremy Majestic, StarFire Majestic, Tiara Majestic, One Maktoum, Lana Maladay, Marzipan Maladay, Missy Malaprop, Ordinal Malaprop, Void Malaprop, Natasha Malibu, Rygel Malick, Ali Maltz, Leena Maltz, Cage Mandala, Synthalor Mandelbrot, Zeppelin Mandelbrot, Esteban Manen, Kawaii Manga, Mailee Manga, Nathalie Manga, Yinato Manga, Mya Mantis, Madame Maracas, Maisa Maracas, Domino Marama, Panama Marama, Charm March, SallyWoelfin March, Markel Marchionne, AdriAnne Margulis, Edgware Marker, Tika Market, AiSenshi Market, Lizbeth Marlowe, Queue Marlowe, Joana Maroon, Grey Marquette, Adrianna Marquez, Jeremy Marquez, Shirley Marquez, Christian Marquez, Dax Mars, Dnate Mars, Xandi Mars, Sarah Marsi, Garmon Martin, Sean Martin, SignpostMarv Martin, Brittany Martinek, Sweet Martini, ElDraque Martov, Aminom Marvin, Edwin Marvin, Meatnik Marvin, Zanza Marx, bollit Masala, Nguai Masala, Satya Masala, team23 Mascot, Tyler Mason, NAM Massey, Minasojo Massiel, Gatto Mastroianni, Checho Masukami, SlavegirlPaula Masukami, Hellsing Matador, Femina Matahari, Leoki Matahari, Rosa Mathieson, Violet Mathieson, MikVik Mathilde, Jonathan Mathy, Ernesto Matova, Selenia Matova, Meltharas Matsukaze, lordneg Matzerath, Memnoch Matzerath, Dedric Mauriac, Kezz Mauriac, Wolruf Mauvaise, coyote Maverick, Martin Maxwell, jericka May, Jeza May, Mellony May, Lauri Mayfair, EnCore Mayne, revochen Mayne, amaya Mayo, Hellmanns Mayo, Jima Mayo, Kion Mayo, Kisho Mayo, Mo9a7i Mayo, Neobe Mayo, Salazar Mayo, Sat Mayo, Scotto Mayo, William Mayo, Gino McAllister, Masion McAllister, Wallace McAllister, DarlinNikki McAlpine, Hawk McAlpine, Inga McAlpine, Lex McArdle, Maggie McArdle, Joshua McCallister, Keegan McCallister, Bradford McCann, Ella McCann, Flox McCarey, Jezzie McCellan, David E . McClure, Cash McConachie, Cathal McConachie, Tad McConachie, Aodhan McDunnough, Drew McDunnough, Artie McFly, Minnie McGann, Sabine McGettigan, Poppet McGimsie, Carole McGuire, Tegwenn McKenna, Shaemus McLaglen, ShirleyM McLaglen, Dirty McLean, HoseQueen McLean, Billibob McLeod, Cari McLeod, Innes McLeod, Jaenae McLeod, Slate McLeod, Troy McLuhan, Anya McMahon, DoGGo McMahon, Hutch McMahon, Iras McMahon, Jian McMahon, Jimama McMahon, Kouki McMahon, Sioban McMahon, Akie McMillan, laika McMillan, Lauris McMillan, Marteze McMillan, Maye McMillan, Nicholas McMillan, Radikal McMillan, Tammi McMillan, Jax McNally, Arwyn Meadowbrook, Waterflower Meadowbrook, Ima Mechanique, Nber Medici, Chandra Meehan, Geo Meek, Earane Meiji, Jessica Meiklejohn, Emiko Meili, penelope Meili, Luz Melbourne, Marti Melnik, MenuBar Memorial, Aitor Mendes, Mona Mendes, Jay Menges, Kimmie Menges, Lennart Menges, Margaret Menges, Mikel Menjou, VzNevada Menoptra, Merselus Mensing, Leia Mercy, SAPPHIRE Mercy, Sofie Mercy, ozadakan Meriman, Sandycd Meriman, Washington1985 Meriman, Infiniview Merit, Nanashe Merkur, Ayahuasca Merlin, Craischen Merlin, devillover Merlin, Faer Merlin, Jarros Merlin, Jolie Merlin, Kejo Merlin, Mario4 Merlin, Sarah Merlin, Silas Merlin, Wizard01 Merlin, Telitha Merlin, Vrrgo Merlin, Rocky Merosi, Luxe Merrienboer, Lance Mertel, Angus Mesmer, MysElf Messmer, Lonny Miasma, Utopar Michinaga, MTC Mielziner, Enysy Mikita, Celeste Miles, Giovani Miles, Guli Miles, Mars Miles, Noah Miles, RobWest Miles, Subzero Miles, DALLAS Milestone, Jane Milev, Jesper Milev, MMz Milev, YumYum Milk, Belle Milland, Berri Milland, Joanne Milland, Vicky Miller, Samantha Miller, Calvin Millions, Envy Millions, Lusty Millions, Versu Millionsofus, AsteroidS Mills, Emixam Mills, Goodstuff Mills, Guntrinkyt Mills, Isabella Mills, Landen Mills, Noelle Mills, Sand Mills, Djarno Mills, Mandee Milner, Haika Milo, Mankud Milo, Slobodan Milosz, Eliezer Mimistrobell, Amoret Mineff, Little Ming, Mako Minogue, Mandee Minogue, Milena Minogue, Sylfie Minogue, Manon Mirabeau, Tygeria Mirabeau, leliel Mirihi, Cmdr Misfit, disisme Misfit, fangy Misfit, Grim Misfit, RedWolf Misfit, Michal Mishin, Robby Mission, Shawn Mission, Haravikk Mistral, Thom Mistral, Sertories Mitchell, Temporal Mitra, Bphero Mizser, Stolar Mohr, DarkWulf Mokeev, Nemo Mokeev, sharon Mokeev, Sech Molinari, lara Molinaro, MARIOS Molinaro, James Mommsen, Sierra Monnett, Joan Monstre, Cattra Montagne, Galadhriel Montagne, AnnaMarie Montgomery, Christine Montgomery, Mariah Montgomery, Shawna Montgomery, Jemima Moo, Jihashi Moo, Moonie Moo, Wiske Moo, Borgie Moody, DOA Moody, Makinzie Moody, Preciousse Moody, Bit Moody, Luna Moody, ziphren Moonflower, Axl Moonlight, FxyLdy Moonlight, Stormy Moonlight, Lichtje Moonsoo, Astryd Moore, Haze Moore, Walker Moore, wiseman Moore, Zak Moore, Mordechai Moose, JMM Morahan, Kayleigh Morahan, Cyndi Moran, Marcus Moreau, Kathy Morellet, Violet Morellet, Heather Morenz, Maggie Morgan, Newbie1canobe Morgan, Sumar Morgan, Bella Morico, Ornella Morigi, Eagle Morris, Amanda Morrison, Maeyanie Mosienko, Svetlana Mosienko, Trinity Mostel, Risa Mosuke, Falcon Mountain, NEWB Mountain, Windy Mountain, KittenAnne Mousehold, Minky Mousehold, Lawna Mower, Pure Moxie, webeagle Moy, Buckaroo Mu, Nye Mu, Kara Muir, Robert Muir, Criscad Muni, Jean Munro, Pranay Munro, Nobu Murakami, Shar Murakami, Yumi Murakami, Arrekusu Muromachi, Sasameyuki Muromachi, Usagi Musashi, Spiritfire Musketeer, Questyn Myhre, Myst Mysterio, Vincent Nacon, Fox Nadir, Morgana Nagorski, Sari Naheed, Yasmin Nakamichi, Aibyou Nakamura, Aluviel Nakamura, Kyriani Nakamura, Madeea Nakamura, Masao Nakamura, Misao Nakamura, Tammi Nakamura, Tanabata Nakamura, Nawtakune Nakatani, rich Nasu, Lev Nedkov, Coal Nelson, Shiharizad Nelson, Laurah Nemeth, Beladonna Nephilim, Lianna Nephilim, Seraph Nephilim, Sari Neruda, Tiberious Neruda, otakup0pe Neumann, Wilhelm Neumann, Chet Neurocam, Draconis Neurocam, Cenji Neutra, Lex Neva, Prokofy Neva, BC Nevadan, Seagel Neville, Judi Newall, Killian Newall, Si Newall, Roenik Newell, Jos Newman, Lynda Newman, MadCat Newman, Weaver Newman, Ian Newt, Ribblet Newt, ninjafoo Ng, Raideur Ng, William Niangao, Gao Niangao, Lori Nicholas, Pravda Nicholas, Evangeline Nichols, Joella Nico, Morpheus Nieder, Titzalina Nieder, Blaze Nielsen, Angelus Nielson, Lazaros Nikolaidis, lincoln Nikolaidis, Tiruviel Nikolaidis, Kenn Nilsson, Lib Nilsson, Jokyr Nimbus, Tateru Nino, Jyotsna Nishi, lloll Nishi, Roxas Nishi, Tuote Nishi, Katlene Niven, Kari Niven, Thegamer Nixdorf, May Noarlunga, Jo Noe, DesrAw Noel, Jacindia Noel, Jaz Noel, MelodyRose Noel, Mi Noel, Paden Noel, Ricky Noel, Sunno Noel, Ono Noh, Tuach Noh, Feras Nolan, Jane Nolan, Harald Nomad, Helen Nomura, Lolita Nomura, Richard Noonan, Aenea Nori, Aulin Normandy, Kat Normandy, Zebra North, Stephen Northport, Galare Novi, KittyMarie Novi, Soo Novi, Elia Nozaki, lynsey Nozaki, Rini Nozaki, Kinzo Nurmi, Yasmin Nurmi, Kyran Nyak, Lauren Nykvist, Karma Oates, Alice Obscure, Honeymoon Obscure, Mikhail Obscure, Origin Obscure, Dementia Obviate, Lucius Obviate, Mootly Obviate, TripleXXXTex Obviate, Vanessa Obviate, Vitis Obviate, Sieben Ochs, Avery Oddfellow, Clinton Oddfellow, Maczter Oddfellow, Sempervirens Oddfellow, Tashie Oddfellow, Wagahai Oddfellow, CarlinRae Odell, Johnny Odell, Liny Odell, Lucifer Odell, vanler Odets, Foxb Oe, Kiwini Oe, Natalie Oe, Eddy Ofarrel, Mylinn Ofeq, Roundabout Ogee, Bannock Ogg, Behemoth Ogre, Anju Oh, BlackCinders Oh, Canoe Oh, Crippy Oh, Dakotah Oh, Day Oh, Doo Oh, Feander Oh, Heady Oh, Job Oh, kyushudan Oh, Lila Oh, Luxura Oh, MrSim Oh, OHYES Oh, Oury Oh, Qyty Oh, Santa Oh, Svn Oh, Volta Oh, xepadd Oh, isla Oh, Angelina Ohara, Troy Oherlihy, Yasuragi Okame, Rephaim Okina, Sven Okonomi, benyamin Olaria, EvlDesire Oliver, Brightly Olivier, Renton Olivier, Gary Olson, Christopher Omega, Hamncheese Omlet, Joseph Omlet, Libuse Ondricek, luminye Onizuka, Miyuki Onmura, Toshiro Onmura, Hotaru Onomatopoeia, Isis Ophelia, Orchid Ophelia, Stumbelina Ophelia, Roberto Oppewall, Anthony Opus, Spaceman Opus, Vakis Oranos, Koop Orbit, Sammy Ormsby, Cal Orr, Usra Ostrich, Nikki Osumi, Ariel Otafuku, kevin Oto, CJ Oto, Ann Otoole, Patrice Otoole, Abyssin Otoro, Omega Otsuzum, Teravus Ousley, Straitjacket Overlord, Szegey Oxberger, LemonYellow Oxide, Tabitha Oxide, Rianne Ozsvar, Coyote Pace, Hare Pace, Dargon Pacer, Piero Padar, Zasha Padar, Chav Paderborn, Edison Paderborn, Otenth Paderborn, RC Paderborn, Sylvia Paderborn, Chandra Page, Lili Page, Raven Page, Web Page, AnneJoy Paine, DravenLee Paine, Isobella Paine, Larva Paine, Lushious Paine, Thomas42 Paine, Cesar Pakula, Federico Palen, Monica Palen, Diana Palmer, sense Palmer, Crazy Pangaea, Sacha Pangaea, Upinthe Panhandle, Simbiant Paperclip, Drea Paperdoll, Pannie Paperdoll, raymon Paperdoll, jaesung Papp, JohnJ Papp, Alec Paragon, Cliff Paris, Vertigo Paris, Blue Parisi, serena Parisi, JR Parker, Kora Parker, Prawnyloks Parker, Etheria Parrott, Tommy Parrott, Selaras Partridge, Sexy Partridge, Maegen Parvenu, Francie Pasternak, Mr Pasternak, Eloise Pasteur, sandhya2 Patel, Bruce Patton, Penny Patton, Dave Patton, Haole Pau, Andy Paul, LanNoire Paul, Nolte, Paul, Nicholi Pavlova, shadow Pawpaw, Cuffman Payne, Deseri Payne, Gypsy Paz, LupineFox Paz, Shy Peart, Tamara Peart, Pontias Peck, Robin Peel, Elum Pegler, Kotek Pekli, Pulp Pekli, Reaser Pencer, Caliandris Pendragon, Hiro Pendragon, Jopsy Pendragon, Darren Pennell, Mideon Pennell, Powell Pera, Stanley Pera, Tajma Pera, FlipperPA Peregrine, Jennyfur Peregrine, Alana Perenti, MaxPerfect Perenti, Revolution Perenti, MoonGazer Perhaps, Brooklyn Perinal, Shawk Pertwee, Drakior Perun, Charm Perway, Jubilee Pessoa, Riley Pessoa, Tristram Petion, Aline Petrov, Larry Petrov, PantzerHamzter Petshop, scott Petshop, Foxy Petunia, Inara Pey, Tony Pey, Brathak Pfeffer, Henrick Pfeffer, Jack Pfeffer, Marlo Pfeffer, Resi Pfeffer, Lum Pfohl, TACK Pfohl, rren Pfohl, Psyke Phaeton, Sangi Phaeton, Don Pharaoh, Topdog Pharaoh, Anderson Philbin, Philb Philbin, Ridge Phillips, Maximus Phlox, Careltje Phoenix, Winter Phoenix, Ummm Pickles, Piper Picnic, Loki Pico, Hawk Pidgeon, followmeimthe Piedpiper, Alin Piek, Ricky Piek, angelwithahintoflife Pierterson, Elsibeth Pierterson, Marod Pierterson, Noshi Pierterson, Shanel Pierterson, Natasha Pike, Joshua Pilote, Adeline Pinion, Miguel Pinion, Quinn Pinion, Peach Pink, Tisha Pink, Lulu Pink, alice Pinkerton, Getty Pinkerton, Apple Pinkney, Becky Pippen, Tam Pippen, sandra Pitney, Trish Pitney, Max Pitre, Hawk Pitts, Spritely Pixel, Chel Pixie, HotBuns Pixie, Mina Pixie, Mcplane Planer, simon Planer, Guy Plasma, Halogen Plasma, Mathias Plasma, Phill Plasma, White Platini, Phoenix Platthy, Gallia Plubeau, Corki Plunkett, PollyD Plunkett, Asalynda Pluto, Evgeniy Podolsky, OTTONE Pogelmann, Henry Poindexter, Phoebe Poitier, Rowan Poitier, Rigorus Poitier, Stephen Pollock, Mishka Pomeray, Kuatum Poole, Karina Popinjay, Francesca Poppy, Hot Poppy, Shelly Portello, Anthony Portsmouth, Ian Portsmouth, HackPatooey Posthorn, JohnnyD Posthorn, Madison Posthorn, Antitese Poulot, Uccello Poultry, Tanarus Pow, Frederic Prevost, Bill Priestly, Dit Priestly, Phil Priestman, Rachelle Priestman, Sage Priestman, Simone Prieto, Wundur Primbee, Jacob Primeau, Twilight Primeau, Beautifull Princess, Creamyyy Princess, Graciella Princess, Lyna Princess, Theo Prinz, Krono Pro, Don Proost, Games Prototype, Melissa Prunes, Pie Psaltery, Danger Pugilist, Lily Pussycat, LoL Pye, PITTACOS Pye, Prize Pyle, Reese Qian, Ash Qin, Jen Qinan, milesmess Qinan, Quino Quaggy, Starsitter Quality, Algeard Quamar, Flack Quartermass, Marcus Quartermass, Shaggy Quimby, Laura Quimby, Memir Quinn, Amy Quirk, Edge Qunhua, HeinzJoachim Qunhua, Tsing Qunhua, brooke Ra, Dael Ra, Knightsof Ra, Mayo Ra, Roger Raabe, Sharven Raabe, Sail Racer, Supra Racer, Ada Radius, Rob Raffke, Rayne Ragowski, Starfoxtj4 Rail, mantitaur2 Rainbow, Sparkly Rainbow, Andromeda Raine, musicteacher Rampal, Hoyle Rang, Hermione Ranger, jurnal Ranger, Horgus Rasmuson, Trend Rasmuson, Whoosh Rasmuson, Rascal Ratelle, Eriss Rau, Morugai Rau, Ozhika Rau, slave Rau, Awsoonn Rawley, Marie Rawley, Guy Raymaker, JAC Raymaker, PlanetThoughts Raymaker, Rogier Raymaker, Trident Raymaker, Xoren Raymaker, Ranaa Raymond, Rowena Rearwin, Londyn Reatequi, Neo Rebus, Bekka Redgrave, Etude Redgrave, Lyn Redgrave, Publicist Redgrave, Wingless Redgrave, Allie Ree, Jon Ree, Thyna Ree, Zi Ree, Todd Reed, RhaRha Rees, Alex Regent, Alexander Regent, Cat Rehula, Timoteo Reifsnider, Sirus Reiner, Trilobite Reisman, ali Reiter, Ruben Reiter, Fenrir Reitveld, EmpressNever Rejected, Maya Remblai, Kapu Ren, Atticus Renoir, catsrounds Renoir, Cedric Renoir, Julion Renoir, karman Renoir, Sim Renoir, Isabela Repine, MysticalCeCe Repine, Sissimaid Resistance, Tom Reuven, Beagle Revolution, Xin Revolution, Keex Rexroth, Ordos Reymont, Roz Reynolds, CJ Rezillo, Rena Rhea, Hiroaki Rhino, Curious Rhode, Lexy Rhode, Natriumcitrate Rhode, Toshi Rhode, Pam Ribble, Gia Richard, Gigly Richez, Hutton Richez, Renae Richez, Ronald Richez, Roxi Richez, Jimbo Richez, Josh Rident, Finncaev Riederer, Aeryn Riel, INK Rinkitink, Puck Rinkitink, Riki Rinkitink, Edoardo Ritt, Bibi Riva, Eche Riverview, helloau Riverview, Liam Roark, Angela Robertson, Jay Robson, Brooks Rocco, Marth Rocco, Mo Rocco, Wolf Rocco, dartagnan29 Rockett, marco Rockett, Monida Rockett, ortaga Rockett, Raziel Rockett, Anastasia Roelofs, Stormy Roentgen, Hector Roffo, Ricci Roffo, Tonio Roffo, Picaro Roffo, IvanTwin Rogers, Chrisje100 Rojyo, Rowana Rolland, Shine Rolls, Iris Ronmark, Jacques Ronmark, Phil Ronzoni, Keishii Roo, MattyMcHatton Roo, Kimika Rookwood, Prego Rosca, Rayne Rosca, Uber Rosca, Felix Rosenberg, Amethyst Rosencrans, Alejandro Rosenthal, Davian Rosenthal, Edgar Rosenthal, Seth Rosetta, Alustriel Rosewood, Arenae Rosewood, Fury Rosewood, Gwendelyn Rosewood, Kira Rosewood, liz Rosewood, Oriene Rosewood, Lashelle Rosse, Roodvosje Rosse, Rose Rosse, Rico Rosse, Jonah Rossini, Milordino Rossini, Sparrow Rossini, Yira Rossini, Zanah Rossini, zina Rossini, Francaldo Rotunno, Reckless Rotunno, Excel Rousselot, mica Rousselot, Lexie Rovio, Alexandra Rucker, Lilith Ruff, Stina Ruff, Aragorn Runo, Kragelund Runo, Rinziq Runo, ViRi Runo, Distilled1 Rush, Jordann Russell, Kryton Russell, Miyaki, Russell, Brent Russell, Revons Rutabaga, Rocky Rutabaga, FEZ Rutherford, Darcy Rutledge, Jo Ruttenberg, Odo Ruttenberg, Theodorrick Ruttenberg, Artix Ruxton, Armand Ryan, Zakeir Rydell, Cathy Ryder, McCall Ryder, Inarra Saarinen, Kai Sabena, Sarie Sabena, Alissa Sabre, Arcticfire Sabre, BamBam Sachertorte, kai Sachertorte, Umphrey Sachs, Mila Sadovnycha, Proxima Saenz, Lynne Sage, Cheloxchile2006 Saiman, Milo Saintlouis, Natasia Saintlouis, Trinity Saintlouis, Rollergirl Saiz, Nyoko Salome, Scandinavian Salomon, Agarash Salsman, Rayne Saltair, Horus Salubrius, Solta Salyut, Nicola Samiam, Aleg Sandell, angeltf Sands, Balkan Sands, Charmaign Sands, Check Sands, Damien Sands, Orika Sands, Other Sands, Padraic Sands, Sotos Sands, Taira Sands, Cloudia Sani, Carinthia Sansome, Allasandra Santos, Rosell Santos, Solanghe Sarlo, Ishara Sartre, Charles Sassoon, Damian Saule, Jesse Sautereau, Natalia Sawley, Billie Scaggs, Mordecai Scaggs, Roz Scaggs, Socaliwag Scaggs, Johannason Scarborough, Jim Schack, Norm Schack, Fatz Scheflo, MissKitten Schildhauer, Nelson Schmo, Werner Schnabel, Tammye Schneider, Frank Schneider, Funk Schnook, cleopatras Schnyder, mylife Schnyder, ScOrPiOn Schnyder, Count Schridde, Kircheis Schroeder, Julia Schulze, Anita Schwartzman, Cornelious Schwartzman, Etrius Schwartzman, Dr Scofield, Joe Scofield, RyanAva Scofield, Kira Scott, Six Seale, Sterremare Seale, Dallas Seaton, Star Seaton, Spurs Seattle, Elio Seelowe, Jaden Seelowe, Moira Seelowe, Teleio Seferis, Artemus Seifert, Gouranga Seiling, Alyrae Seitan, Grace Selene, Maureen Selene, amandaelisabeth Sellers, Chelsey Sellers, Fashion Sellers, Novellium Sellers, Kerutsen Sellery, Semolina Semaphore, ice Semple, Daisy Semyorka, Roxy Semyorka, DarkStar Senior, River Senyurt, Singular Seoul, James Seraph, Jesrad Seraph, Liv Serf, Tears Serf, Neon Serge, Magnum Serpentine, Jazzy Serra, Aiyana Serrurier, Coelacanth Seurat, Jean Severine, Landreu Severine, Gitana Sevier, Elizabell Sewell, johni Seymour, nayeli Shabazz, Talena Shabazz, Princess Shalala, Robbie Shamroy, Dimas Shan, Lancer Shan, Nae Shan, onlyyou Shan, Shango Shan, Spirit Shan, Jumpda Shark, DigiKatt Shaw, Steffi Shenlin, Afon Shepherd, Clair Shepherd, Eastern Shepherd, LadyLeah Shepherd, Lexis Shepherd, Siddhartha Shepherd, Taran Shepherd, Valentin Shepherd, Jieux Shepherd, Delicious Sheridan, LauraAnne Sheridan, Remco Sheridan, Aki Shichiroji, Todedoz Shichiroji, BlckCobra Shikami, Mary Shikami, Seven Shikami, Thomas Shikami, Szia Shilova, lisalove Shimada, Yoyo Shinobu, Tarrant Shipman, Kitsuribami Shirabyoshi, Amber Shirakawa, AmySue Shirakawa, Kanna Shirakawa, Shelectra Shirakawa, CJ Shojo, Felix Sholokhov, VonFoxFire Sholokhov, Renegade Shriner, Alexandra Shu, Bung Shu, Ddevine Shuftan, emmakael Shuftan, Skipper Shutt, Jaime Sicling, Ko Sicling, Lucien Sidek, Ulrich Sidran, Darlene Sieyes, Darling Sieyes, sparkles Sieyes, Mjren Silvera, Apotheus Silverman, HVX Silverstar, Nirven Silverstar, Rocco Silverstar, Tamar Silverstar, Rosie Simca, Drvid Simoni, Dragos Simons, barnowlgirl Sinatra, Cheyanne Sinatra, marilsdb Sinatra, Nanceee Sinatra, Quiet Sinatra, Vent Sinatra, Frosty Sinatra, Misty Singer, Katie Singh, Sydney Singh, Philo Sion, followingwaves Sirbu, Saya Sirbu, Don Sivocci, Danielle Skall, Hegemon Skall, JASMINE Skall, Mykal Skall, Dovryn Skall, Arathorn Slade, Artakan Slade, djsunz Slade, Eleana Slade, Erica Slade, Jupiter Slade, Kronikz Slade, Methosmv Slade, piro Slade, Snapeslove Slade, Sys Slade, TylerSnk Slade, Wylee Slade, ZirQ Slade, Xabax Slade, Malik Slapstick, Coug Sleeper, Kenny Sleeper, Lucia Slippery, Adrian Sloane, Alistair Sloane, Rysz Sloane, Angel Slocombe, PrinceDK Slunce, Flo Slunce, Tatiana Smagulov, badboy1331 Smalls, Brat Smalls, EDhardy Smalls, Lomgren Smalls, DonAmon Smirnov, Andrew Smith, Elliott Smith, Mikal Snakeankle, Esch Snoats, Eian Snook, Pavee Snook, floe Snookums, kramer Snookums, Rach Snookums, Jonboy Snye, fionn Soderstrom, miguel Soderstrom, Bellisima Sodwind, Dafydd Sodwind, Scott69 Sodwind, Shipper Sodwind, Ilianexsi Sojourner, Shirokuro Sojourner, The Sojourner, Wiccan Sojourner, Elijah Sol, Lara Sola, Vanilla Sola, Silvari Soleil, David23 Something, DolphPun Somme, Rhyph Somme, aewyn Sondergaard, Kali Sonic, Packard Sonic, Jayman Sonnenblume, Pippen Sonnenblume, Esichs Sonnerstein, Sylvia Sonoda, ASCLEPIUS Soon, Tecumseh Soon, Julia Soothsayer, Shadowspawn Soothsayer, Tindallia Soothsayer, RJ Source, Akemi Soy, Aln Soy, Aaron Soyer, Tsuno Soyinka, Oz Spade, Ellen Spark, karlynn Sparkle, Kaylie Sparkle, TruHeart Sparkle, Dave Sparrow, slyflower Sparrow, Flapjack Spatula, Cheyenne Spearmann, Jester Spearmann, JewelKicker Spearmann, Data Spectre, Rai Speculaas, Sin Speculaas, Thornne Speculaas, Ehdward Spengler, mo Spengler, Wesley Spengler, Datentyp Sperber, Niko Sperber, Giuseppe Spicoli, Snakeye Spicoli, Marcus Spire, Setori Spire, Crackervelli Spitteler, Naughty Spitteler, Studders101 Spitteler, Yojne Spitteler, ScaryMary Spitz, Geezer Spoonhammer, GutterBlood Spoonhammer, Tour Spoonhammer, Sheet Spotter, tree Sprawl, Kitty Sprocket, Alan Standish, Fox Standish, Clive Stanwell, Alexis Stapovic, Hippyjim Starbrook, Missy Starbrook, Thunder Starbrook, Babydoll Stardust, Birdy Stardust, Johannes Starostin, Ariana Starr, Funk Starr, eltee Statosky, Hanako Stawberry, Micheal Steadham, Blueman Steele, sugar Steele, Jennifer Steele, Golda Stein, Tyler Stein, Uber Stein, Bernd Steinhardt, Whisper Stella, Hjoerdis Stenvaag, Timmy Stepford, LaserFingers Steptoe, Athena Sterling, Selvina Sterling, Hunter Stern, Ocmer Sternberg, Jabath Steuart, Sylvia Steuben, Bracin Stevenson, Sammmy Stewart, Skeeter Stiglitz, Lily Stilman, Nisaa Stilman, Quick Stilman, Spaydar Stine, Unger Stine, Sherrade Stirling, Till Stirling, Juggernaut Stoklitsky, Meret Stonebender, Argent Stonecutter, Gearsawe Stonecutter, Kayla Stonecutter, Liquids Stonewall, Nevera Stooge, Matthew Stork, Sam Stork, Neotoy Story, AllieKat Stovall, Krystal Straaf, Kyrus Straaf, Laars Straaf, Niccia Straaf, Aloe Stradling, egbert Stradling, Lotus Stradling, SlyFox Stradling, Eristic Strangelove, Thaumata Strangelove, Valiant Strangelove, Salome Strangelove, Erica Strauss, Zinger Strauss, Gabrielle Street, Artistniko Streeter, Bruce82 Streeter, Builder Streeter, dast Streeter, Hans Streeter, Stilette Streeter, Darzus Strutt, Bluto Stubbs, Olivier Sturges, Kharie Su, Rexx Su, Vudu Suavage, Silverrain Sucettes, Siyu Suen, Zack Suen, Linnian Sugar, Sierra Sugar, Stacey Sugar, Jodie Suisei, Koto Sukra, Takira Sukra, Ravanne Sullivan, Rik Sullivan, Sofi Sullivan, Joffi Sumbula, BrightAngel Summers, Kiyana Summers, Eclipsed Sun, Shinshinto Sungsoo, Angel Sunset, Warord Suntzu, DalE Supply, ivan Supply, Frictionless Surface, Brightwing Surtees, David Surtees, Georges Susa, Caterina Susanti, Fatima Susanti, Owen Susanto, Caliburn Susanto, Kevin Susenko, Forseti Svarog, Kinga Svarog, Batman Swenholt, Flame Swenholt, Shyressa Swenholt, Earle Swenson, Harvey Swenson, Kevin Swenson, Anastasia Swindlehurst, Liz Swindlehurst, Swein Swindlehurst, Verrenus Swindlehurst, Christain Switchblade, Guy Szondi, Nonlucid Szondi, Sagmumu Szondi, XVenomX Szymborska, CaelThunderwing Tackleberry, Mitzi Tackleberry, Ayla Tae, Maya Tae, Princess Tae, Carsten Taft, Gigs Taggart, Aphrodite Tagore, Lynn Tagore, Jenna Taira, Zephora Taiyou, Rusmi Taka, Kaimen Takahe, Akina Takakura, Sabina Takakura, Tao Takashi, Cornelius Tal, Dolmere Talamasca, Kelindra Talamasca, Sabane Talamasca, Tod69 Talamasca, Bad Tamale, Kitchkinet Tamale, Dany Tammas, kym Tammas, Phoming Tammas, sasha Tammas, Alina Tamura, Janu Tamura, Karetta Tamura, Melli Tamura, Morina Tamura, Snake Tamura, Valentina Tamura, Rutain Tandino, Tracy Tani, Jolt Tank, Rachel Tapioca, Ilyara Tardis, Jaxx Tardis, Aaron Tardis, Sim Tatham, Tobi Taurog, Joey Tavoularis, John Taylor, Jeffrey Temin, Enabran Templar, Crymzon Tempura, Jehan Tendaze, Angel Tengu, Arctic Tenk, Ginevro Tenk, OolBatar Tenk, Sally Tenk, Storchi Tenk, Bloodsong Termagant, Cubey Terra, Lynn Terra, Niles Theas, Sterre Theas, Lost Thereian, Osprey Therian, Lukas Thetan, Larson Thibaud, Redd Thielt, Tana Thielt, Thongshaman Thirroul, Millie Thompson, Brooke Thurston, Lisa Thyben, Bengal Tiger, RavenAnn Tiger, Terrigo Tiger, Sable Till, Soraya Till, Zayn Till, Trixie Timtam, immortal Tiramisu, Matthew Todd, Watermelon Tokyo, Amily Toland, Prijian Toland, Wigger Toland, Wym Toland, Shaia Toll, harathoi Toman, EH Tomcat, Pawz Tomcat, nicky Tomsen, Olyntchen Tomsen, Siul Tomsen, Zukini Tomsen, Darkover Tone, JazzySweet Tone, Tea Tone, Shelly Toonie, Tristan Torgeson, Katie Tornado, manufr Torok, Drew Torres, Xavier Tosung, Benjamin Tower, TJ Tower, Coquine Tracy, Fintaya Tracy, Herman Tracy, killer Tracy, Marcel Tran, Cabal Trautman, Nadja Travanti, Steve Trenchard, Grimm Trenchmouth, Neogrinch Trenchmouth, Scarlet Trenton, input Trilam, Debbie Trilling, Dahlia Trimble, TrainingDay Trimble, Candy Tripp, FeelGood Tripp, Nate Tripp, Skalligrim Tripp, stimpy Tripp, Michael Tripsa, Orion Tristan, Sam Troell, Celebrity Trollop, MaidHeather Trollop, Roberto Trotter, Tipsey Troughton, Lucille Trudeau, Paul Trudeau, arthus Truffaut, Chambord Truffaut, Siss Truss, Boshiken Tsuki, Sindy Tsure, Dante Tucker, ImAOzGrl Tucker, Scott Tucker, BabyAlice Tulip, Bryce Tully, Pixie Tungl, Lyr Tuppakaka, Hawthorn Tuque, Omei Turnbull, Victor Tuxing, Cloe Twang, Twill Tymets, Andrew Tyson, Lyndyn Tzara, Ilyushin Tzedek μ΄μΈμλ λ§μ λΆλ€μ΄ μκ³ ν΄ μ£Όμ ¨μ΅λλ€. |
7 | 7 | ||
8 | 8 | ||
9 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 9 | APR Copyright (C) 2000-2004 The Apache Software Foundation |
@@ -22,9 +22,7 @@ SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | |||
22 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | 22 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. |
23 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | 23 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. |
24 | 24 | ||
25 | All rights reserved. μμΈν λ΄μ©μ licenses.txtλ₯Ό μ°Έκ³ νμμμ€. | 25 | All rights reserved. μμΈν λ΄μ©μ licenses.txtλ₯Ό μ°Έμ‘°νμμμ€. |
26 | 26 | ||
27 | |||
28 | κ²°ν¨μ΄ μλλΌ νΉμ§μ λλ€. | ||
29 | </text_editor> | 27 | </text_editor> |
30 | </floater> | 28 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_about_land.xml b/linden/indra/newview/skins/xui/ko/floater_about_land.xml index b164310..8c189a0 100644 --- a/linden/indra/newview/skins/xui/ko/floater_about_land.xml +++ b/linden/indra/newview/skins/xui/ko/floater_about_land.xml | |||
@@ -1,7 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="floaterland" title="ν μ§ μκ°"> | 2 | <floater name="floaterland" title="ν μ§ μκ°"> |
3 | <tab_container name="landtab"> | 3 | <tab_container name="landtab"> |
4 | <panel label="μΌλ°μ¬ν" name="land_general_panel"> | 4 | <panel label="μΌλ°" name="land_general_panel"> |
5 | <text type="string" length="1" name="Name:"> | 5 | <text type="string" length="1" name="Name:"> |
6 | μ΄λ¦: | 6 | μ΄λ¦: |
7 | </text> | 7 | </text> |
@@ -9,75 +9,75 @@ | |||
9 | μ€λͺ : | 9 | μ€λͺ : |
10 | </text> | 10 | </text> |
11 | <text type="string" length="1" name="Owner:"> | 11 | <text type="string" length="1" name="Owner:"> |
12 | μμ μ£Ό: | 12 | μμ μ: |
13 | </text> | 13 | </text> |
14 | <text type="string" length="1" name="OwnerText"> | 14 | <text type="string" length="1" name="OwnerText"> |
15 | Leyla Linden | 15 | Leyla Linden |
16 | </text> | 16 | </text> |
17 | <button label="νλ‘ν..." label_selected="νλ‘ν..." name="Profile..." /> | 17 | <button label="νλ‘νβ¦" label_selected="νλ‘νβ¦" name="Profile..." /> |
18 | <text type="string" length="1" name="Group:"> | 18 | <text type="string" length="1" name="Group:"> |
19 | κ·Έλ£Ή: | 19 | κ·Έλ£Ή: |
20 | </text> | 20 | </text> |
21 | <button label="μ€μ ..." label_selected="μ€μ ..." name="Set..." /> | 21 | <button label="μ€μ β¦" label_selected="μ€μ β¦" name="Set..." /> |
22 | <check_box label="κ·Έλ£Ήμ μλ νμ©" name="check deed" | 22 | <check_box label="κ·Έλ£Ήμ μλ νμ©" name="check deed" |
23 | tool_tip="κ·Έλ£Ή κ°λΆλ μ΄ ν μ§κ° κ·Έλ£Ήμ ν μ§ ν λΉμΌλ‘ μ μ§λλλ‘ ν΄λΉ ν μ§λ₯Ό κ·Έλ£Ήμ μλν μ μμ΅λλ€." /> | 23 | tool_tip="κ·Έλ£Ή μ΄μμ§μ μ΄ ν μ§κ° κ·Έλ£Ήμ ν μ§ ν λΉμΌλ‘ μ μ§λλλ‘ ν΄λΉ ν μ§λ₯Ό κ·Έλ£Ήμ μλν μ μμ΅λλ€." /> |
24 | <button label="μλ..." label_selected="μλ..." name="Deed..." | 24 | <button label="μλ..." label_selected="μλ..." name="Deed..." |
25 | tool_tip="λ³ΈμΈμ΄ μ ν κ·Έλ£Ήμ κ°λΆμΌ κ²½μ°μλ§ ν μ§λ₯Ό μλνμ€ μ μμ΅λλ€." /> | 25 | tool_tip="μ¬μ©μκ° μ νλ κ·Έλ£Ήμ μ΄μμ§μΌ κ²½μ°μλ§ ν μ§λ₯Ό μλν μ μμ΅λλ€." /> |
26 | <check_box label="μμ μ£Όκ° μλλ‘ κΈ°μ¬" name="check contib" | 26 | <check_box label="μμ μ£Όκ° μλλ‘ κΈ°μ¬" name="check contrib" |
27 | tool_tip="ν μ§κ° κ·Έλ£Ήμ μλλλ©΄, μ΄μ μμ μ£Όλ ν΄λΉ ν μ§λ₯Ό ꡬ룹μ μ§μ νκΈ°μ μΆ©λΆν ν μ§ ν λΉλΆμ κΈ°λΆν μ μ λλ€." /> | 27 | tool_tip="ν μ§κ° κ·Έλ£Ήμ μλλλ©΄, μ΄μ μμ μ£Όλ ν΄λΉ ν μ§λ₯Ό κ·Έλ£Ήμ μ§μνκΈ°μ μΆ©λΆν ν μ§ ν λΉλΆμ κΈ°λΆν μ μ λλ€." /> |
28 | <text type="string" length="1" name="For Sale:"> | 28 | <text type="string" length="1" name="For Sale:"> |
29 | 맀물: | 29 | ν맀 μ¬λΆ: |
30 | </text> | 30 | </text> |
31 | <text type="string" length="1" name="Not for sale."> | 31 | <text type="string" length="1" name="Not for sale."> |
32 | ν맀μ©μ΄ μλλλ€. | 32 | λΉλ§€μ©. |
33 | </text> | 33 | </text> |
34 | <text type="string" length="1" name="For Sale: Price L$[PRICE]."> | 34 | <text type="string" length="1" name="For Sale: Price L$[PRICE]."> |
35 | κ°κ²©: L$[PRICE]. | 35 | κ°κ²©: L$[PRICE]. |
36 | </text> | 36 | </text> |
37 | <button label="ν μ§ ν맀..." label_selected="ν μ§ ν맀..." name="Sell Land..." /> | 37 | <button label="ν μ§ ν맀β¦" label_selected="ν μ§ ν맀β¦" name="Sell Land..." /> |
38 | <text type="string" length="1" name="For sale to"> | 38 | <text type="string" length="1" name="For sale to"> |
39 | ν맀 λμ: [BUYER] | 39 | ν맀 λμ: [BUYER] |
40 | </text> | 40 | </text> |
41 | <text type="string" length="1" name="Sell with landowners objects in parcel."> | 41 | <text type="string" length="1" name="Sell with landowners objects in parcel."> |
42 | ν맀μ μμ΄ν μ΄ ν¬ν¨λμ΄ μμ΅λλ€. | 42 | ν맀μ μ€λΈμ νΈκ° ν¬ν¨λ¨. |
43 | </text> | 43 | </text> |
44 | <text type="string" length="1" name="Selling with no objects in parcel."> | 44 | <text type="string" length="1" name="Selling with no objects in parcel."> |
45 | ν맀μ μμ΄ν μ΄ ν¬ν¨λμ΄ μμ§ μμ΅λλ€. | 45 | ν맀μ μ€λΈμ νΈκ° ν¬ν¨λμ§ μμ. |
46 | </text> | 46 | </text> |
47 | <button label="ν μ§ ν맀 μ·¨μ" label_selected="ν μ§ ν맀 μ·¨μ" | 47 | <button label="ν μ§ ν맀 μ·¨μ" label_selected="ν μ§ ν맀 μ·¨μ" |
48 | name="Cancel Land Sale" /> | 48 | name="Cancel Land Sale" /> |
49 | <text type="string" length="1" name="Claimed:"> | 49 | <text type="string" length="1" name="Claimed:"> |
50 | κΆλ¦¬ μ€μ : | 50 | κ°μμΌ: |
51 | </text> | 51 | </text> |
52 | <text type="string" length="1" name="DateClaimText"> | 52 | <text type="string" length="1" name="DateClaimText"> |
53 | 2006λ 8μ 15μΌ νμμΌ 15 13:47:25 | 53 | 2006λ 8μ 15μΌ νμμΌ 13:47:25 |
54 | </text> | 54 | </text> |
55 | <text type="string" length="1" name="PriceLabel"> | 55 | <text type="string" length="1" name="PriceLabel"> |
56 | μμ: | 56 | λ©΄μ : |
57 | </text> | 57 | </text> |
58 | <text type="string" length="1" name="PriceText"> | 58 | <text type="string" length="1" name="PriceText"> |
59 | 4048 νλ°© λ―Έν° | 59 | 4048 μ κ³±λ―Έν° |
60 | </text> | 60 | </text> |
61 | <text type="string" length="1" name="Traffic:"> | 61 | <text type="string" length="1" name="Traffic:"> |
62 | ν΅νλ: | 62 | ν΅νλ: |
63 | </text> | 63 | </text> |
64 | <text type="string" length="1" name="DwellText"> | 64 | <text type="string" length="1" name="DwellText"> |
65 | 0 | 65 | κ±°μ§ |
66 | </text> | 66 | </text> |
67 | <button label="ν μ§ κ΅¬λ§€νκΈ°..." label_selected="ν μ§ κ΅¬λ§€νκΈ°..." | 67 | <button label="ν μ§ κ΅¬λ§€νκΈ°..." label_selected="ν μ§ κ΅¬λ§€νκΈ°..." |
68 | name="Buy Land..." /> | 68 | name="Buy Land..." /> |
69 | <button label="κ·Έλ£Ή λμ ꡬ맀νκΈ°..." | 69 | <button label="κ·Έλ£Ή ν μ§ κ΅¬λ§€..." label_selected="κ·Έλ£Ή ν μ§ κ΅¬λ§€..." |
70 | label_selected="κ·Έλ£Ή λμ ꡬ맀νκΈ°..." name="Buy For Group..." /> | 70 | name="Buy For Group..." /> |
71 | <button label="ν¨μ€ ꡬ맀νκΈ°..." label_selected="ν¨μ€ ꡬ맀νκΈ°..." | 71 | <button label="ν¨μ€ ꡬ맀νκΈ°..." label_selected="ν¨μ€ ꡬ맀νκΈ°..." |
72 | name="Buy Pass..." | 72 | name="Buy Pass..." |
73 | tool_tip="ν¨μ€λ μ΄ ν μ§μ λν μμ μ‘μΈμ€λ₯Ό λΆμ¬ν©λλ€." /> | 73 | tool_tip="ν¨μ€λ μ΄ ν μ§μ λν μμ ν΅νκΆμ λΆμ¬ν©λλ€." /> |
74 | <button label="ν μ§ ν¬κΈ°..." label_selected="ν μ§ ν¬κΈ°..." | 74 | <button label="ν μ§ λ²λ¦¬κΈ°..." label_selected="ν μ§ λ²λ¦¬κΈ°..." |
75 | name="Abandon Land..." /> | 75 | name="Abandon Land..." /> |
76 | <button label="ν μ§ κ°κ°..." label_selected="ν μ§ κ°κ°..." | 76 | <button label="ν μ§ μ¬μ²κ΅¬β¦" label_selected="ν μ§ μ¬μ²κ΅¬β¦" |
77 | name="Reclaim Land..." /> | 77 | name="Reclaim Land..." /> |
78 | <button label="λ¦°λ 맀물..." label_selected="λ¦°λ 맀물..." | 78 | <button label="λ¦°λ ν맀β¦" label_selected="λ¦°λ ν맀β¦" |
79 | name="Linden Sale..." | 79 | name="Linden Sale..." |
80 | tool_tip="ν μ§λ μμ μνμ¬μΌ νλ©°, λ΄μ©λ¬Όμ΄ μ€μ λμ΄μΌ νλ©°, μ΄λ―Έ 경맀μνκ° μλμ΄μΌ ν©λλ€." /> | 80 | tool_tip="ν μ§λ μμ μνμ¬μΌ νλ©°, 컨ν μΈ κ° μ€μ λμ΄μΌ νλ©°, λΉκ²½λ§€μν μ΄μ΄μΌ ν©λλ€." /> |
81 | <text name="new users only"> | 81 | <text name="new users only"> |
82 | μλ‘μ΄ μ¬μ©μμ ν ν¨ | 82 | μλ‘μ΄ μ¬μ©μμ ν ν¨ |
83 | </text> | 83 | </text> |
@@ -85,9 +85,9 @@ | |||
85 | λͺ¨λ μ¬λ | 85 | λͺ¨λ μ¬λ |
86 | </text> | 86 | </text> |
87 | </panel> | 87 | </panel> |
88 | <panel label="κ³μ½ μ‘°ν" name="land_covenant_panel"> | 88 | <panel label="μν κ·μΉ" name="land_covenant_panel"> |
89 | <text type="string" length="1" name="covenant_timestamp_text"> | 89 | <text type="string" length="1" name="covenant_timestamp_text"> |
90 | μ΅κ·Ό μμ μΌ 1969λ 12μ 31μΌ μμμΌ 16:00:0 | 90 | μ΅κ·Ό μμ μΌ 1969λ 12μ 31μΌ μμμΌ 16:00:00 |
91 | </text> | 91 | </text> |
92 | <text type="string" length="1" name="region_name_lbl"> | 92 | <text type="string" length="1" name="region_name_lbl"> |
93 | μ§μ: | 93 | μ§μ: |
@@ -96,101 +96,100 @@ | |||
96 | leyla | 96 | leyla |
97 | </text> | 97 | </text> |
98 | <text type="string" length="1" name="estate_name_lbl"> | 98 | <text type="string" length="1" name="estate_name_lbl"> |
99 | μμ μ§: | 99 | μ¬μ μ§: |
100 | </text> | 100 | </text> |
101 | <text type="string" length="1" name="estate_name_text"> | 101 | <text type="string" length="1" name="estate_name_text"> |
102 | λ³Έν | 102 | λ©μΈλλ |
103 | </text> | 103 | </text> |
104 | <text type="string" length="1" name="estate_owner_lbl"> | 104 | <text type="string" length="1" name="estate_owner_lbl"> |
105 | μμ μ§ μμ μ: | 105 | μ¬μ μ§ μμ μ: |
106 | </text> | 106 | </text> |
107 | <text type="string" length="1" name="estate_owner_text"> | 107 | <text type="string" length="1" name="estate_owner_text"> |
108 | (μμ) | 108 | (μμ) |
109 | </text> | 109 | </text> |
110 | <text type="string" length="1" name="resellable_clause"> | 110 | <text type="string" length="1" name="resellable_clause"> |
111 | μ΄ μ§μμμ ꡬμ ν ν μ§λ μ¬ν맀ν μ μμ΅λλ€. | 111 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ μ¬ν맀 ν μ μμ΅λλ€. |
112 | </text> | 112 | </text> |
113 | <text type="string" length="1" name="changeable_clause"> | 113 | <text type="string" length="1" name="changeable_clause"> |
114 | μ΄ μ§μμμ ꡬμ ν ν μ§λ κ²°ν© λλ λΆν ν μ μμ΅λλ€. | 114 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ κ²°ν©/λΆν λΆκ°λ₯ ν©λλ€. |
115 | </text> | 115 | </text> |
116 | <text_editor type="string" length="1" name="covenant_editor"> | 116 | <text_editor type="string" length="1" name="covenant_editor"> |
117 | μ΄ μμ μ§μ λν΄ μ 곡λ κ³μ½ μ‘°νμ΄ μμ΅λλ€. | 117 | μ΄ μ¬μ μ§μ λν΄ μ 곡λμν κ·μΉμ΄ μμ΅λλ€. |
118 | </text_editor> | 118 | </text_editor> |
119 | <text name="can_resell"> | 119 | <text name="can_resell"> |
120 | μ΄ μ§μμμ ꡬμ ν ν μ§λ μ¬ν맀ν μ μμ΅λλ€. | 120 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ μ¬ν맀 ν μ μμ΅λλ€. |
121 | </text> | 121 | </text> |
122 | <text name="can_not_resell"> | 122 | <text name="can_not_resell"> |
123 | μ΄ μ§μμμ ꡬμ ν ν μ§λ μ¬ν맀ν μ μμ΅λλ€. | 123 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ μ¬ν맀 ν μ μμ΅λλ€. |
124 | </text> | 124 | </text> |
125 | <text name="can_change"> | 125 | <text name="can_change"> |
126 | μ΄ μ§μμμ ꡬμ ν ν μ§λ κ²°ν© λλ λΆν ν μ μμ΅λλ€. | 126 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ κ²°ν© λλ λΆν κ°λ₯ ν©λλ€. |
127 | </text> | 127 | </text> |
128 | <text name="can_not_change"> | 128 | <text name="can_not_change"> |
129 | μ΄ μ§μμμ ꡬμ ν ν μ§λ κ²°ν© λλ λΆν ν μ μμ΅λλ€. | 129 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ κ²°ν© λλ λΆν λΆκ°λ₯ ν©λλ€. |
130 | </text> | 130 | </text> |
131 | </panel> | 131 | </panel> |
132 | <panel label="μ¬λ¬Ό" name="land_objects_panel"> | 132 | <panel label="μ€λΈμ νΈ" name="land_objects_panel"> |
133 | <text type="string" length="1" name="Simulator primitive usage:"> | 133 | <text type="string" length="1" name="Simulator primitive usage:"> |
134 | μλ¬λ μ΄ν° ν리미ν°λΈ μ¬μ©: | 134 | μλ¬λ μ΄ν° νλ¦Ό μ¬μ©λ₯ : |
135 | </text> | 135 | </text> |
136 | <text type="string" length="1" name="0 out of 0 available"> | 136 | <text type="string" length="1" name="0 out of 0 available"> |
137 | 14055κ° μ€ 0κ°(14055κ° μ¬μ© κ°λ₯) | 137 | 14055κ° μ€ 0κ°(14055κ° μ¬μ© κ°λ₯) |
138 | </text> | 138 | </text> |
139 | <text type="string" length="1" name="Primitives parcel supports:"> | 139 | <text type="string" length="1" name="Primitives parcel supports:"> |
140 | ꡬνμ΄ μ§μνλ ν리미ν°λΈ: | 140 | ꡬνμ΄ μ§μνλ νλ¦Ό κ°μ: |
141 | </text> | 141 | </text> |
142 | <text type="string" length="1" name="object_contrib_text"> | 142 | <text type="string" length="1" name="object_contrib_text"> |
143 | 926 | 143 | 926 |
144 | </text> | 144 | </text> |
145 | <text type="string" length="1" name="Primitives on parcel:"> | 145 | <text type="string" length="1" name="Primitives on parcel:"> |
146 | ꡬν ν리미ν°λΈ: | 146 | ꡬνλ΄ νλ¦Ό μ: |
147 | </text> | 147 | </text> |
148 | <text type="string" length="1" name="total_objects_text"> | 148 | <text type="string" length="1" name="total_objects_text"> |
149 | 0 | 149 | κ±°μ§ |
150 | </text> | 150 | </text> |
151 | <text type="string" length="1" name="Owned by parcel owner:"> | 151 | <text type="string" length="1" name="Owned by parcel owner:"> |
152 | ꡬν μμ μ£Όκ° μμ : | 152 | ꡬν μμ μ£Όκ° μμ : |
153 | </text> | 153 | </text> |
154 | <text type="string" length="1" name="owner_objects_text"> | 154 | <text type="string" length="1" name="owner_objects_text"> |
155 | 0 | 155 | κ±°μ§ |
156 | </text> | 156 | </text> |
157 | <button label="νμ" label_selected="νμ" name="ShowOwner" /> | 157 | <button label="νμ" label_selected="νμ" name="ShowOwner" /> |
158 | <button label="λ°ν..." label_selected="λ°ν..." name="ReturnOwner..." | 158 | <button label="λ°νβ¦" label_selected="λ°νβ¦" name="ReturnOwner..." |
159 | tool_tip="μ¬λ¬Όμ κ° μμ μ£Όμκ² λ°ν." /> | 159 | tool_tip="μ€λΈμ νΈλ₯Ό κ° μμ μμκ² λ°ν." /> |
160 | <text type="string" length="1" name="Set to group:"> | 160 | <text type="string" length="1" name="Set to group:"> |
161 | κ·Έλ£ΉμΌλ‘ μ€μ : | 161 | κ·Έλ£ΉμΌλ‘ μ€μ : |
162 | </text> | 162 | </text> |
163 | <text type="string" length="1" name="group_objects_text"> | 163 | <text type="string" length="1" name="group_objects_text"> |
164 | 0 | 164 | κ±°μ§ |
165 | </text> | 165 | </text> |
166 | <button label="νμ" label_selected="νμ" name="ShowGroup" /> | 166 | <button label="νμ" label_selected="νμ" name="ShowGroup" /> |
167 | <button label="λ°ν..." label_selected="λ°ν..." name="ReturnGroup..." | 167 | <button label="λ°νβ¦" label_selected="λ°νβ¦" name="ReturnGroup..." |
168 | tool_tip="μ¬λ¬Όμ κ° μμ μ£Όμκ² λ°ν." /> | 168 | tool_tip="μ€λΈμ νΈλ₯Ό κ° μμ μμκ² λ°ν." /> |
169 | <text type="string" length="1" name="Owned by others:"> | 169 | <text type="string" length="1" name="Owned by others:"> |
170 | λ€λ₯Έ μ¬λμ΄ μμ : | 170 | λ€λ₯Έ μ¬λμ΄ μμ : |
171 | </text> | 171 | </text> |
172 | <text type="string" length="1" name="other_objects_text"> | 172 | <text type="string" length="1" name="other_objects_text"> |
173 | 0 | 173 | κ±°μ§ |
174 | </text> | 174 | </text> |
175 | <button label="νμ" label_selected="νμ" name="ShowOther" /> | 175 | <button label="νμ" label_selected="νμ" name="ShowOther" /> |
176 | <button label="λ°ν..." label_selected="λ°ν..." name="ReturnOther..." | 176 | <button label="λ°νβ¦" label_selected="λ°νβ¦" name="ReturnOther..." |
177 | tool_tip="μ¬λ¬Όμ κ° μμ μ£Όμκ² λ°ν." /> | 177 | tool_tip="μ€λΈμ νΈλ₯Ό κ° μμ μμκ² λ°ν." /> |
178 | <text type="string" length="1" name="Selected / sat upon:"> | 178 | <text type="string" length="1" name="Selected / sat upon:"> |
179 | μ ν / μ°¨μ§: | 179 | μ ν / μ°¨μ§: |
180 | </text> | 180 | </text> |
181 | <text type="string" length="1" name="selected_objects_text"> | 181 | <text type="string" length="1" name="selected_objects_text"> |
182 | 0 | 182 | κ±°μ§ |
183 | </text> | 183 | </text> |
184 | <text type="string" length="1" name="Autoreturn other resident&apos;s objects (minutes, 0 for off):"> | 184 | <text type="string" length="1" name="Autoreturn"> |
185 | λ€λ₯Έ μ£Όλ―Όλ€μ μ¬λ¬Όμ μλ λ°ν(λ¨μ: λΆ; λλ €λ©΄ | 185 | λ€λ₯Έ μ£Όλ―Όλ€μ μ€λΈμ νΈμ μλ λ°ν(λ¨μ:λΆ, λλ €λ©΄ 0 μ λ ₯): |
186 | μ λ ₯): | ||
187 | </text> | 186 | </text> |
188 | <text type="string" length="1" name="Object Owners:"> | 187 | <text type="string" length="1" name="Object Owners:"> |
189 | μ¬λ¬Ό μμ μ£Ό: | 188 | μ€λΈμ νΈ μμ μ£Ό: |
190 | </text> | 189 | </text> |
191 | <button label="λͺ©λ‘ μλ‘ κ³ μΉ¨" label_selected="λͺ©λ‘ μλ‘ κ³ μΉ¨" | 190 | <button label="λͺ©λ‘ μλ‘ κ³ μΉ¨" label_selected="λͺ©λ‘ μλ‘ κ³ μΉ¨" |
192 | name="Refresh List" /> | 191 | name="Refresh List" /> |
193 | <button label="μ¬λ¬Ό λ°ν..." label_selected="μ¬λ¬Ό λ°ν..." | 192 | <button label="μ€λΈμ νΈ λ°νβ¦" label_selected="μ€λΈμ νΈ λ°νβ¦" |
194 | name="Return objects..." /> | 193 | name="Return objects..." /> |
195 | <button label="" label_selected="" name="Type" tool_tip="μ ν κΈ°μ€ μ λ ¬" /> | 194 | <button label="" label_selected="" name="Type" tool_tip="μ ν κΈ°μ€ μ λ ¬" /> |
196 | <button label="μ΄λ¦" label_selected="μ΄λ¦" name="Name" | 195 | <button label="μ΄λ¦" label_selected="μ΄λ¦" name="Name" |
@@ -198,32 +197,44 @@ | |||
198 | <button label="κ°μ" label_selected="κ°μ" name="Count" | 197 | <button label="κ°μ" label_selected="κ°μ" name="Count" |
199 | tool_tip="μ κΈ°μ€ μ λ ¬" /> | 198 | tool_tip="μ κΈ°μ€ μ λ ¬" /> |
200 | </panel> | 199 | </panel> |
201 | <panel label="μ νμ¬ν" name="land_options_panel"> | 200 | <panel label="μ΅μ " name="land_options_panel"> |
202 | <text type="string" length="1" name="allow_label"> | 201 | <text type="string" length="1" name="allow_label"> |
203 | λ€λ₯Έ μ£Όλ―Όμκ² νμ©: | 202 | λ€λ₯Έ μ£Όλ―Όμκ² λ€μμ νμ©: |
204 | </text> | 203 | </text> |
205 | <check_box label="μ¬λ¬Ό μμ±" name="edit objects check" /> | ||
206 | <check_box label="μ§ν νΈμ§" name="edit land check" /> | 204 | <check_box label="μ§ν νΈμ§" name="edit land check" /> |
207 | <check_box label="κ²½κ³ νμ μμ±" name="check landmark" /> | 205 | <check_box label="λλλ§ν¬ λ§λ€κΈ°" name="check landmark" /> |
208 | <check_box label="κ·Έλ£Ή μ€ν¬λ¦½νΈ μ€ν" name="check group scripts" /> | ||
209 | <check_box label="λΉν" name="check fly" /> | 206 | <check_box label="λΉν" name="check fly" /> |
210 | <check_box label="κΈ°ν μ€ν¬λ¦½νΈ μ€ν" name="check other scripts" /> | 207 | <text type="string" length="1" name="allow_label2"> |
208 | μ€λΈμ νΈ λ§λ€κΈ°: | ||
209 | </text> | ||
210 | <check_box label="λͺ¨λ μ£Όλ―Ό" name="edit objects check" /> | ||
211 | <check_box label="κ·Έλ£Ή" name="edit group objects check" /> | ||
212 | <text type="string" length="1" name="allow_label3"> | ||
213 | μ€λΈμ νΈ μ λ ₯: | ||
214 | </text> | ||
215 | <check_box label="λͺ¨λ μ£Όλ―Ό" name="all object entry check" /> | ||
216 | <check_box label="κ·Έλ£Ή" name="group object entry check" /> | ||
217 | <text type="string" length="1" name="allow_label4"> | ||
218 | μ€ν¬λ¦½νΈ μ€ν: | ||
219 | </text> | ||
220 | <check_box label="λͺ¨λ μ£Όλ―Ό" name="check other scripts" /> | ||
221 | <check_box label="κ·Έλ£Ή" name="check group scripts" /> | ||
211 | <text type="string" length="1" name="land_options_label"> | 222 | <text type="string" length="1" name="land_options_label"> |
212 | ν μ§ μ΅μ : | 223 | ν μ§ μ΅μ : |
213 | </text> | 224 | </text> |
214 | <check_box label="μμ (μμ€ μμ)" name="check safe" /> | 225 | <check_box label="μμ (λ°λ―Έμ§ μμ)" name="check safe" /> |
215 | <check_box label="λ°κΈ° νμ " name="PushRestrictCheck" | 226 | <check_box label="λ°κΈ° νμ " name="PushRestrictCheck" |
216 | tool_tip="llPushObjectκΈ°λ₯μ ꡬν μμ μ£Ό μ€ν¬λ¦½νΈλ₯Ό ν΅νκ±°λ κΈ°λ₯ ꡬνμκ° μ€ν¬λ¦½νΈ μμ μμΈ κ²½μ°μλ§ μλν©λλ€." /> | 227 | tool_tip="llPushObjectκΈ°λ₯μ ꡬν μμ μ£Ό μ€ν¬λ¦½νΈμ΄κ±°λ κΈ°λ₯ ꡬνμκ° μ€ν¬λ¦½νΈ μμ μμΈ κ²½μ°μλ§ μλν©λλ€." /> |
217 | <check_box label="Show in Search > Places (L$30/week) under" name="ShowDirectoryCheck" /> | 228 | <check_box label="κ²μ > μ₯μ(L$30/μ£Ό)μ 보μ΄κΈ°" name="ShowDirectoryCheck" /> |
218 | <combo_box name="land category"> | 229 | <combo_box name="land category"> |
219 | <combo_item name="AnyCategory"> | 230 | <combo_item name="AnyCategory"> |
220 | λͺ¨λ μΉ΄ν κ³ λ¦¬ | 231 | λͺ¨λ μΉ΄ν κ³ λ¦¬ |
221 | </combo_item> | 232 | </combo_item> |
222 | <combo_item name="LindenLocation"> | 233 | <combo_item name="LindenLocation"> |
223 | λ¦°λ μμΉ | 234 | λ¦°λ λ© κ΄λ ¨ |
224 | </combo_item> | 235 | </combo_item> |
225 | <combo_item name="Adult"> | 236 | <combo_item name="Adult"> |
226 | μ±μΈμ© | 237 | μ±μΈ μ μ© |
227 | </combo_item> | 238 | </combo_item> |
228 | <combo_item name="Arts&Culture"> | 239 | <combo_item name="Arts&Culture"> |
229 | μμ & λ¬Έν | 240 | μμ & λ¬Έν |
@@ -235,13 +246,13 @@ | |||
235 | κ΅μ‘μ© | 246 | κ΅μ‘μ© |
236 | </combo_item> | 247 | </combo_item> |
237 | <combo_item name="Gaming"> | 248 | <combo_item name="Gaming"> |
238 | κ²μ΄λ° | 249 | κ²μ |
239 | </combo_item> | 250 | </combo_item> |
240 | <combo_item name="Hangout"> | 251 | <combo_item name="Hangout"> |
241 | μμ£Ό κ°λ κ³³ | 252 | μ§ν©μ |
242 | </combo_item> | 253 | </combo_item> |
243 | <combo_item name="NewcomerFriendly"> | 254 | <combo_item name="NewcomerFriendly"> |
244 | μ μ°Έμμ μ°νΈμ | 255 | μ΄λ³΄μμ© |
245 | </combo_item> | 256 | </combo_item> |
246 | <combo_item name="Parks&Nature"> | 257 | <combo_item name="Parks&Nature"> |
247 | 곡μ λ° μμ° | 258 | 곡μ λ° μμ° |
@@ -256,41 +267,41 @@ | |||
256 | κΈ°ν | 267 | κΈ°ν |
257 | </combo_item> | 268 | </combo_item> |
258 | </combo_box> | 269 | </combo_box> |
259 | <check_box label="λͺ©λ‘ μΉμ κ²μ" name="PublishCheck" | ||
260 | tool_tip="λ΄ κ΅¬ν μ 보λ₯Ό μΉμ κ²μ." /> | ||
261 | <check_box label="μ±μΈμ© 컨ν μΈ " name="MatureCheck" | 270 | <check_box label="μ±μΈμ© 컨ν μΈ " name="MatureCheck" |
262 | tool_tip="λ³ΈμΈμ ꡬν μ 보λ μ±μΈμ©μΌλ‘ κ°μ£Ό λ©λλ€." /> | 271 | tool_tip="μ¬μ©μμ ꡬν μ 보 λλ 컨ν μΈ λ μ±μΈ μ μ©μΌλ‘ κ°μ£Όλ©λλ€." /> |
272 | <check_box label="μΉμ κ²μ" name="PublishCheck" | ||
273 | tool_tip="λ΄ κ΅¬ν μ 보λ₯Ό μΉμ κ²μ." /> | ||
263 | <button label="?" label_selected="?" name="?" /> | 274 | <button label="?" label_selected="?" name="?" /> |
264 | <text type="string" length="1" name="Snapshot:"> | 275 | <text type="string" length="1" name="Snapshot:"> |
265 | μ€λ μ·: | 276 | μ€λ μ·: |
266 | </text> | 277 | </text> |
267 | <texture_picker label="" name="snapshot_ctrl" tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 278 | <texture_picker label="" name="snapshot_ctrl" |
279 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
268 | <text type="string" length="1" name="Landing Point: (none)"> | 280 | <text type="string" length="1" name="Landing Point: (none)"> |
269 | μ°©λ₯ μ§μ (μμ) | 281 | ν λ ν¬νΈ λμ°©μ§ (μμ) |
270 | </text> | 282 | </text> |
271 | <button label="μ€μ " label_selected="μ€μ " name="Set" | 283 | <button label="μ€μ " label_selected="μ€μ " name="Set" |
272 | tool_tip="μ°©λ₯ μ§μ μ λ΄ μλ°ν μμΉλ‘ μ€μ . μ΄ ν μ§ κ΅¬ν λ΄λΆμ¬μΌ ν©λλ€." /> | 284 | tool_tip="ν λ ν¬νΈ λμ°©μ§λ₯Ό λ΄ μλ°ν μμΉλ‘ μ€μ ν©λλ€. μ΄ ν μ§ κ΅¬ν λ΄λΆμ¬μΌ ν©λλ€." /> |
273 | <button label="λΉμ°κΈ°" label_selected="λΉμ°κΈ°" name="Clear" | 285 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Clear" |
274 | tool_tip="μ°©λ₯ μ§μ ν보." /> | 286 | tool_tip="ν λ ν¬νΈ λμ°©μ§λ₯Ό μ·¨μν©λλ€." /> |
275 | <text type="string" length="1" name="Teleport Routing: "> | 287 | <text type="string" length="1" name="Teleport Routing: "> |
276 | ν 리ν¬νΈ λΌμ°ν : | 288 | ν λ ν¬νΈ μ°©μ μ ν: |
277 | </text> | 289 | </text> |
278 | <combo_box name="landing type" | 290 | <combo_box name="landing type" |
279 | tool_tip="Teleport Routing -- select how to handle teleports onto your land."> | 291 | tool_tip="Teleport Routing -- select how to handle teleports onto your land."> |
280 | <combo_item type="string" length="1" name="Blocked"> | 292 | <combo_item type="string" length="1" name="Blocked"> |
281 | κΈμ§ | 293 | κΈμ§λ¨ |
282 | </combo_item> | 294 | </combo_item> |
283 | <combo_item type="string" length="1" name="LandingPoint"> | 295 | <combo_item type="string" length="1" name="LandingPoint"> |
284 | μ°©λ₯ μ§μ | 296 | ν λ ν¬νΈ λμ°©μ§ |
285 | </combo_item> | 297 | </combo_item> |
286 | <combo_item type="string" length="1" name="Anywhere"> | 298 | <combo_item type="string" length="1" name="Anywhere"> |
287 | μ΄λλ μ§ | 299 | λͺ¨λ μμΉ |
288 | </combo_item> | 300 | </combo_item> |
289 | </combo_box> | 301 | </combo_box> |
290 | </panel> | 302 | </panel> |
291 | <panel label="맀λμ" name="land_media_panel"> | 303 | <panel label="λ―Έλμ΄" name="land_media_panel"> |
292 | <check_box label="μ΄ κ΅¬νμλ§ κ³΅κ°μ± λΆμ¬ν μ리 νμ " | 304 | <check_box label="μ리λ₯Ό μ΄ κ΅¬νμΌλ‘ νμ " name="check sound local" /> |
293 | name="check sound local" /> | ||
294 | <text type="string" length="1" name="Music URL:"> | 305 | <text type="string" length="1" name="Music URL:"> |
295 | μμ URL: | 306 | μμ URL: |
296 | </text> | 307 | </text> |
@@ -299,39 +310,39 @@ | |||
299 | ν μ€μ²: | 310 | ν μ€μ²: |
300 | </text> | 311 | </text> |
301 | <text type="string" length="1" name="Replace this texture:"> | 312 | <text type="string" length="1" name="Replace this texture:"> |
302 | μ΄ ν μ€μ² κ΅μ²΄: | 313 | μ΄ ν μ€μ²λ₯Ό λ체ν¨: |
303 | </text> | 314 | </text> |
304 | <texture_picker label="" name="media texture" tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 315 | <texture_picker label="" name="media texture" |
316 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
305 | <text type="string" length="1" name="with content from this URL:"> | 317 | <text type="string" length="1" name="with content from this URL:"> |
306 | μ΄ URLλ‘λΆν°μ 컨ν μΈ : | 318 | μ΄ URLμ 컨ν μΈ λ‘ κ΅μ²΄: |
307 | </text> | 319 | </text> |
308 | <check_box label="컨ν μΈ μλ ν¬κΈ° μ‘°μ (μλ λ° μκ° νμ§ κ°μ)" | 320 | <check_box label="컨ν μΈ μλ ν¬κΈ° μ‘°μ (μλ λ° μκ° νμ§ μ ν)" |
309 | name="media_auto_scale" | 321 | name="media_auto_scale" |
310 | tool_tip="μ΄ μ΅μ μ μ νν κ²½μ° μ΄ κ΅¬νμ λ΄μ©λ¬Όμ΄ μλμΌλ‘ λΉλ‘ λ³νλ©λλ€. μλ λ° μκ°μ νμ§μ΄ μ½κ° λ¨μ΄μ§λ μΆκ°μ μΈ ν μ€μ² λΉλ‘ λ³ν λλ μ λ ¬μ νμ μμ΅λλ€." /> | 322 | tool_tip="μ΄ μ΅μ μ μ ννλ©΄ μ΄ κ΅¬νμ 컨ν μΈ μ ν¬κΈ°κ° μλμΌλ‘ μ‘°μ λ©λλ€. μλ λ° μκ° νμ§μ΄ μ½κ° λ¨μ΄μ§ μ μμ§λ§ μΆκ°μ μΈ ν μ€μ² ν¬κΈ° μ‘°μ μ΄λ μ λ ¬μ΄ νμ μμ΅λλ€." /> |
311 | </panel> | 323 | </panel> |
312 | <panel label="μμΈμ€" name="land_access_panel"> | 324 | <panel label="μ¬μ© κΆν" name="land_access_panel"> |
313 | <text type="string" length="1" name="Limit access to this parcel to:"> | 325 | <text type="string" length="1" name="Limit access to this parcel to:"> |
314 | μ΄ κ΅¬νμ λν μ‘μΈμ€λ₯Ό λ€μμΌλ‘ μ ν: | 326 | μ΄ κ΅¬νμ λν μ¬μ©κΆνμ λ€μμΌλ‘ μ ν: |
315 | </text> | 327 | </text> |
316 | <check_box label="κ·Έλ£Ή: (μμ)" name="GroupCheck" /> | 328 | <check_box label="κ·Έλ£Ή: (μμ)" name="GroupCheck" /> |
317 | <check_box label="μλ°ν: (0κ° λμ΄, μ΅λ 300κ°)" name="AccessCheck" /> | 329 | <check_box label="μλ°ν: (0κ° λμ΄, μ΅λ 300κ°)" name="AccessCheck" /> |
318 | <button label="μΆκ°..." label_selected="μΆκ°..." name="Add..." /> | 330 | <button label="μΆκ°..." label_selected="μΆκ°..." name="Add..." /> |
319 | <button label="μ κ±°" label_selected="μ κ±°" name="Remove" /> | 331 | <button label="μ κ±°" label_selected="μ κ±°" name="Remove" /> |
320 | <check_box label="μμ μ‘μΈμ€ νμ© ν¨μ€ ν맀:" name="PassCheck" /> | 332 | <check_box label="μμ ν΅νκΆ ν맀:" name="PassCheck" /> |
321 | <spinner label="κ°κ²©(λ¨μ: L$):" name="PriceSpin" /> | 333 | <spinner label="κ°κ²© (L$):" name="PriceSpin" /> |
322 | <spinner label="μ‘μΈμ€ μκ°:" name="HoursSpin" /> | 334 | <spinner label="μ¬μ©μκ°:" name="HoursSpin" /> |
323 | </panel> | 335 | </panel> |
324 | <panel label="μ°¨λ¨" name="land_ban_panel"> | 336 | <panel label="μ°¨λ¨" name="land_ban_panel"> |
325 | <check_box label="λ€μ μλ°ν κΈμ§: (0κ° λμ΄, μ΅λ 300κ°)" | 337 | <check_box label="μ°¨λ¨λ μλ°ν: (0κ° λμ΄, μ΅λ 300κ°)" name="LandBanCheck" /> |
326 | name="LandBanCheck" /> | ||
327 | <button label="μΆκ°..." label_selected="μΆκ°..." name="Add..." /> | 338 | <button label="μΆκ°..." label_selected="μΆκ°..." name="Add..." /> |
328 | <button label="μ κ±°" label_selected="μ κ±°" name="Remove" /> | 339 | <button label="μ κ±°" label_selected="μ κ±°" name="Remove" /> |
329 | <text type="string" length="1" name="Deny by Payment Status:"> | 340 | <text type="string" length="1" name="Deny by Payment Status:"> |
330 | μ§λΆ μνμ λ°λΌ κ±°λΆ: | 341 | μ§λΆ μνλ³λ‘ μΆμ κ±°λΆ |
331 | </text> | 342 | </text> |
332 | <check_box label="νμΌμ λ―Έμ§λΆ μ 보 κ±°λΆ" name="DenyAnonymousCheck" /> | 343 | <check_box label="κ²°μ μλ¨ λ―Έλ±λ‘μ μΆμ κ±°λΆ" name="DenyAnonymousCheck" /> |
333 | <check_box label="νμΌμ μ§λΆ μ 보 κ±°λΆ" name="DenyIdentifiedCheck" /> | 344 | <check_box label="κ²°μ μλ¨ λ±λ‘μ μΆμ κ±°λΆ" name="DenyIdentifiedCheck" /> |
334 | <check_box label="μ¬μ©ν μ§λΆ μ 보 κ±°λΆ" name="DenyTransactedCheck" /> | 345 | <check_box label="κ²°μ μλ¨ μ¬μ©μ μΆμ κ±°λΆ" name="DenyTransactedCheck" /> |
335 | </panel> | 346 | </panel> |
336 | </tab_container> | 347 | </tab_container> |
337 | </floater> | 348 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_animation_preview.xml b/linden/indra/newview/skins/xui/ko/floater_animation_preview.xml index 5bd034a..cbf13ec 100644 --- a/linden/indra/newview/skins/xui/ko/floater_animation_preview.xml +++ b/linden/indra/newview/skins/xui/ko/floater_animation_preview.xml | |||
@@ -7,74 +7,73 @@ | |||
7 | μ€λͺ : | 7 | μ€λͺ : |
8 | </text> | 8 | </text> |
9 | <spinner label="μ°μ μμ" name="priority" | 9 | <spinner label="μ°μ μμ" name="priority" |
10 | tool_tip="μ΄ μ λλ©μ΄μ μ΄ μ΄λ€ μ λλ©μ΄μ μ μ€λ²λΌμ΄λν μ§λ₯Ό μ μ΄ν©λλ€." /> | 10 | tool_tip="μ΄ μ λλ©μ΄μ μ΄ μ΄λ€ μ λλ©μ΄μ μ μ€λ²λΌμ΄λ ν μ§λ₯Ό μ μ΄ ν©λλ€." /> |
11 | <text name="preview_label"> | 11 | <text name="preview_label"> |
12 | λ€μ μμ λμ 미리보기 | 12 | λ€μ 쑰건μΌλ‘ 미리보기 |
13 | </text> | 13 | </text> |
14 | <combo_box label="" name="preview_base_anim" | 14 | <combo_box label="" name="preview_base_anim" |
15 | tool_tip="Use this to test your animation behavior while your avatar performs common actions."> | 15 | tool_tip="Use this to test your animation behavior while your avatar performs common actions."> |
16 | <combo_item name="Standing"> | 16 | <combo_item name="Standing"> |
17 | μμλ€ | 17 | μκΈ° |
18 | </combo_item> | 18 | </combo_item> |
19 | <combo_item name="Walking"> | 19 | <combo_item name="Walking"> |
20 | κ±·λλ€ | 20 | κ±·κΈ° |
21 | </combo_item> | 21 | </combo_item> |
22 | <combo_item name="Sitting"> | 22 | <combo_item name="Sitting"> |
23 | μμμλ€ | 23 | μκΈ° |
24 | </combo_item> | 24 | </combo_item> |
25 | <combo_item name="Flying"> | 25 | <combo_item name="Flying"> |
26 | λ λ€ | 26 | λΉν |
27 | </combo_item> | 27 | </combo_item> |
28 | </combo_box> | 28 | </combo_box> |
29 | <check_box label="루ν" name="loop_check" | 29 | <check_box label="λ°λ³΅" name="loop_check" tool_tip="μ λλ©μ΄μ λ°λ³΅" /> |
30 | tool_tip="μ΄ μ λλ©μ΄μ μ΄ λ£¨ννκ² λ©λλ€." /> | 30 | <spinner label="(%)" name="loop_in_point" |
31 | <spinner label="In(%)" name="loop_in_point" | 31 | tool_tip="μ λλ©μ΄μ μ 루ν λ°νμ μ μ€μ ν©λλ€." /> |
32 | tool_tip="μ λλ©μ΄μ μ 루ν λ°νμ μ€μ ." /> | ||
33 | <spinner label="Out(%)" name="loop_out_point" | 32 | <spinner label="Out(%)" name="loop_out_point" |
34 | tool_tip="μ λλ©μ΄μ μ 루ν μ’ λ£μ μ€μ ." /> | 33 | tool_tip="μ λλ©μ΄μ μ 루ν μ’ λ£μ μ μ€μ ν©λλ€." /> |
35 | <text name="hand_label"> | 34 | <text name="hand_label"> |
36 | μ λμ | 35 | μ ν¬μ¦ |
37 | </text> | 36 | </text> |
38 | <combo_box label="" name="hand_pose_combo" | 37 | <combo_box label="" name="hand_pose_combo" |
39 | tool_tip="Controls what hands do during animation."> | 38 | tool_tip="Controls what hands do during animation."> |
40 | <combo_item name="Spread"> | 39 | <combo_item name="Spread"> |
41 | ν΄λ€ | 40 | νΌμΉκΈ° |
42 | </combo_item> | 41 | </combo_item> |
43 | <combo_item name="Relaxed"> | 42 | <combo_item name="Relaxed"> |
44 | λμ¨ν¨ | 43 | 릴λ μ€ |
45 | </combo_item> | 44 | </combo_item> |
46 | <combo_item name="PointBoth"> | 45 | <combo_item name="PointBoth"> |
47 | μμͺ½ κ°λ¦¬ν€κΈ° | 46 | μ (μμͺ½) |
48 | </combo_item> | 47 | </combo_item> |
49 | <combo_item name="Fist"> | 48 | <combo_item name="Fist"> |
50 | μ£Όλ¨Ή | 49 | μ£Όλ¨Ή |
51 | </combo_item> | 50 | </combo_item> |
52 | <combo_item name="RelaxedLeft"> | 51 | <combo_item name="RelaxedLeft"> |
53 | μΌμͺ½ λμ¨ν¨ | 52 | 릴λ μ€(μ’) |
54 | </combo_item> | 53 | </combo_item> |
55 | <combo_item name="PointLeft"> | 54 | <combo_item name="PointLeft"> |
56 | μΌμͺ½ κ°λ¦¬ν€κΈ° | 55 | μ (μ’) |
57 | </combo_item> | 56 | </combo_item> |
58 | <combo_item name="FistLeft"> | 57 | <combo_item name="FistLeft"> |
59 | μΌμͺ½ μ£Όλ¨Ή | 58 | μΌμͺ½ μ£Όλ¨Ή |
60 | </combo_item> | 59 | </combo_item> |
61 | <combo_item name="RelaxedRight"> | 60 | <combo_item name="RelaxedRight"> |
62 | μ€λ₯Έμͺ½ λμ¨ν¨ | 61 | 릴λ μ€(μ°) |
63 | </combo_item> | 62 | </combo_item> |
64 | <combo_item name="PointRight"> | 63 | <combo_item name="PointRight"> |
65 | μ€λ₯Έμͺ½ κ°λ¦¬ν€κΈ° | 64 | μ (μ°) |
66 | </combo_item> | 65 | </combo_item> |
67 | <combo_item name="FistRight"> | 66 | <combo_item name="FistRight"> |
68 | μ€λ₯Έμͺ½ μ£Όλ¨Ή | 67 | μ€λ₯Έμͺ½ μ£Όλ¨Ή |
69 | </combo_item> | 68 | </combo_item> |
70 | <combo_item name="SaluteRight"> | 69 | <combo_item name="SaluteRight"> |
71 | κ²½λ‘ μ€λ₯Έμͺ½ | 70 | κ²½μμ κ΄ν κΆλ¦¬ |
72 | </combo_item> | 71 | </combo_item> |
73 | <combo_item name="Typing"> | 72 | <combo_item name="Typing"> |
74 | νμ΄ν | 73 | μ λ ₯ |
75 | </combo_item> | 74 | </combo_item> |
76 | <combo_item name="PeaceRight"> | 75 | <combo_item name="PeaceRight"> |
77 | νν νμ μ€λ₯Έμͺ½ | 76 | ννμ λν κΆλ¦¬ |
78 | </combo_item> | 77 | </combo_item> |
79 | </combo_box> | 78 | </combo_box> |
80 | <text name="emote_label"> | 79 | <text name="emote_label"> |
@@ -83,77 +82,77 @@ | |||
83 | <combo_box label="" name="emote_combo" | 82 | <combo_box label="" name="emote_combo" |
84 | tool_tip="Controls what face does during animation."> | 83 | tool_tip="Controls what face does during animation."> |
85 | <combo_item name="[None]"> | 84 | <combo_item name="[None]"> |
86 | [μμ] | 85 | [None] |
87 | </combo_item> | 86 | </combo_item> |
88 | <combo_item name="Aaaaah"> | 87 | <combo_item name="Aaaaah"> |
89 | μμμμ | 88 | μ- |
90 | </combo_item> | 89 | </combo_item> |
91 | <combo_item name="Afraid"> | 90 | <combo_item name="Afraid"> |
92 | λλ ΅λ€ | 91 | λλ €μ |
93 | </combo_item> | 92 | </combo_item> |
94 | <combo_item name="Angry"> | 93 | <combo_item name="Angry"> |
95 | νλ¨ | 94 | νλ¨ |
96 | </combo_item> | 95 | </combo_item> |
97 | <combo_item name="BigSmile"> | 96 | <combo_item name="BigSmile"> |
98 | νν λ―Έμ | 97 | νμ§ μμ |
99 | </combo_item> | 98 | </combo_item> |
100 | <combo_item name="Bored"> | 99 | <combo_item name="Bored"> |
101 | λ°λΆν¨ | 100 | μ§λ£¨ν¨ |
102 | </combo_item> | 101 | </combo_item> |
103 | <combo_item name="Cry"> | 102 | <combo_item name="Cry"> |
104 | μΈλ€ | 103 | μΈκΈ° |
105 | </combo_item> | 104 | </combo_item> |
106 | <combo_item name="Disdain"> | 105 | <combo_item name="Disdain"> |
107 | κ²½λ©Ένλ€ | 106 | κ²½λ©Έ |
108 | </combo_item> | 107 | </combo_item> |
109 | <combo_item name="Embarrassed"> | 108 | <combo_item name="Embarrassed"> |
110 | λΉνΉμ€λ½λ€ | 109 | λΉν©ν¨ |
111 | </combo_item> | 110 | </combo_item> |
112 | <combo_item name="Frown"> | 111 | <combo_item name="Frown"> |
113 | μ°‘κ·Έλ¦¬λ€ | 112 | νμ μ°‘κ·Έλ¦Ό |
114 | </combo_item> | 113 | </combo_item> |
115 | <combo_item name="Kiss"> | 114 | <combo_item name="Kiss"> |
116 | ν€μ€ | 115 | ν€μ€ |
117 | </combo_item> | 116 | </combo_item> |
118 | <combo_item name="Laugh"> | 117 | <combo_item name="Laugh"> |
119 | μλ€ | 118 | μμ |
120 | </combo_item> | 119 | </combo_item> |
121 | <combo_item name="Plllppt"> | 120 | <combo_item name="Plllppt"> |
122 | Plllppt | 121 | Plllppt |
123 | </combo_item> | 122 | </combo_item> |
124 | <combo_item name="Repulsed"> | 123 | <combo_item name="Repulsed"> |
125 | νμ€μ€λ¬μ | 124 | κ±°μ λ¨ |
126 | </combo_item> | 125 | </combo_item> |
127 | <combo_item name="Sad"> | 126 | <combo_item name="Sad"> |
128 | μ¬ν | 127 | μ¬ν |
129 | </combo_item> | 128 | </combo_item> |
130 | <combo_item name="Shrug"> | 129 | <combo_item name="Shrug"> |
131 | μ΄κΉ¨λ₯Ό μΌμ±νλ€ | 130 | μ΄κΉ¨λ₯Ό μΌμ±νκΈ° |
132 | </combo_item> | 131 | </combo_item> |
133 | <combo_item name="Smile"> | 132 | <combo_item name="Smile"> |
134 | λ―Έμ | 133 | λ―Έμ |
135 | </combo_item> | 134 | </combo_item> |
136 | <combo_item name="Surprise"> | 135 | <combo_item name="Surprise"> |
137 | λλΌκ²νλ€ | 136 | λλ |
138 | </combo_item> | 137 | </combo_item> |
139 | <combo_item name="Wink"> | 138 | <combo_item name="Wink"> |
140 | μν¬ | 139 | μν¬ |
141 | </combo_item> | 140 | </combo_item> |
142 | <combo_item name="Worry"> | 141 | <combo_item name="Worry"> |
143 | κ±±μ ν¨ | 142 | κ±±μ |
144 | </combo_item> | 143 | </combo_item> |
145 | </combo_box> | 144 | </combo_box> |
146 | <spinner label="Ease In(μ΄)" name="ease_in_time" | 145 | <spinner label="μ μ κ°κΉμ΄(μ΄)" name="ease_in_time" |
147 | tool_tip="μ λλ©μ΄μ μ΄ μ μ©λλλ° κ±Έλ¦¬λ μκ°(μ΄λ¨μ)." /> | 146 | tool_tip="μ λλ©μ΄μ μ΄ μ μ©λλλ° κ±Έλ¦¬λ μκ°(μ΄λ¨μ)." /> |
148 | <spinner label="Ease Out(μ΄)" name="ease_out_time" | 147 | <spinner label="μ μ λ©λ¦¬(μ΄)" name="ease_out_time" |
149 | tool_tip="μ λλ©μ΄μ μ΄ λΆλ¦¬λλλ° κ±Έλ¦¬λ μκ°(μ΄λ¨μ)." /> | 148 | tool_tip="μ λλ©μ΄μ μ΄ λΆλ¦¬λλλ° κ±Έλ¦¬λ μκ°(μ΄λ¨μ)." /> |
150 | <button label="" name="play_btn" tool_tip="μ λλ©μ΄μ μ¬μ/μΌμ μ μ§." /> | 149 | <button label="" name="play_btn" tool_tip="μ λλ©μ΄μ μ¬μ/μΌμ μ μ§." /> |
151 | <button label="" name="stop_btn" tool_tip="μ λλ©μ΄μ μ¬μ μ€μ§" /> | 150 | <button label="" name="stop_btn" tool_tip="μ λλ©μ΄μ μ¬μ μ€μ§" /> |
152 | <slider label="" name="playback_slider" /> | 151 | <slider label="" name="playback_slider" /> |
153 | <text name="bad_animation_text"> | 152 | <text name="bad_animation_text"> |
154 | μ λλ©μ΄μ νμΌμ μ½μ μ μμ΅λλ€. | 153 | μ λλ©μ΄μ νμΌμ μ½μ μ μμ΅λλ€. |
155 | 154 | ||
156 | Poser 4μμ BVH νμΌμ λ΄λ³΄λ΄κΈ°νμ€ κ²μ κΆμ₯ν©λλ€. | 155 | Poser 4μμ λ΄λ³΄λΈ BVH νμΌμ μ¬μ©ν κ²μ κΆμ₯ν©λλ€. |
157 | </text> | 156 | </text> |
158 | <button label="μ·¨μ" name="cancel_btn" /> | 157 | <button label="μ·¨μ" name="cancel_btn" /> |
159 | <button label="μ λ‘λ(L$[AMOUNT])" name="ok_btn" /> | 158 | <button label="μ λ‘λ(L$[AMOUNT])" name="ok_btn" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_auction.xml b/linden/indra/newview/skins/xui/ko/floater_auction.xml index 1ebd624..ea8e9c8 100644 --- a/linden/indra/newview/skins/xui/ko/floater_auction.xml +++ b/linden/indra/newview/skins/xui/ko/floater_auction.xml | |||
@@ -1,14 +1,6 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="floater_auction" title="λ¦°λ ν μ§ ν맀 μμ"> | 2 | <floater name="floater_auction" title="λ¦°λ ν μ§ ν맀 μμ"> |
3 | <check_box label="λ Έλμ μ ν νμ€ ν¬ν¨" name="fence_check" /> | 3 | <check_box label="ν©μ μ ν μΈν리 ν¬ν¨" name="fence_check" /> |
4 | <combo_box name="saletype_combo"> | ||
5 | <combo_item name="Auction"> | ||
6 | 경맀 | ||
7 | </combo_item> | ||
8 | <combo_item name="FirstLand"> | ||
9 | 첫 ν μ§ | ||
10 | </combo_item> | ||
11 | </combo_box> | ||
12 | <button label="μ€λ μ·" label_selected="μ€λ μ·" name="snapshot_btn" /> | 4 | <button label="μ€λ μ·" label_selected="μ€λ μ·" name="snapshot_btn" /> |
13 | <button label="νμΈ" label_selected="νμΈ" name="ok_btn" /> | 5 | <button label="νμΈ" label_selected="νμΈ" name="ok_btn" /> |
14 | <text name="already for sale"> | 6 | <text name="already for sale"> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_avatar_picker.xml b/linden/indra/newview/skins/xui/ko/floater_avatar_picker.xml index 0bba42c..b0fe719 100644 --- a/linden/indra/newview/skins/xui/ko/floater_avatar_picker.xml +++ b/linden/indra/newview/skins/xui/ko/floater_avatar_picker.xml | |||
@@ -1,15 +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="avatarpicker" title="μ¬λ μ ν"> | 2 | <floater name="avatarpicker" title="μ£Όλ―Ό μ ν"> |
3 | <text name="Type part of the person's name:"> | 3 | <text name="Type part of the person's name:"> |
4 | μ΄λ¦μ μΌλΆλ₯Ό μ λ ₯νμμμ€: | 4 | μ£Όλ―Ό μ΄λ¦μ μΌλΆλ₯Ό μ λ ₯νμμμ€: |
5 | </text> | ||
6 | <text name="Type part of the resident's name:"> | ||
7 | μ΄λ¦μ μΌλΆλ₯Ό μ λ ₯ νμμμ€. | ||
5 | </text> | 8 | </text> |
6 | <button label="μ°ΎκΈ°" label_selected="μ°ΎκΈ°" name="Find" /> | 9 | <button label="μ°ΎκΈ°" label_selected="μ°ΎκΈ°" name="Find" /> |
7 | <text name="Or select a calling card:"> | 10 | <text name="Or select a calling card:"> |
8 | λλ λͺ ν¨μ μ ννμμμ€: | 11 | λλ νλ‘νμ μ νν¨: |
12 | </text> | ||
13 | <text name="Or select their calling card:"> | ||
14 | λλ νλ‘ν μ ν | ||
9 | </text> | 15 | </text> |
10 | <button label="μ ν" label_selected="μ ν" name="Select" /> | 16 | <button label="μ ν" label_selected="μ ν" name="Select" /> |
11 | <button label="λ«κΈ°" label_selected="λ«κΈ°" name="Close" /> | 17 | <button label="λ«κΈ°" label_selected="λ«κΈ°" name="Close" /> |
12 | <text name="NotFound"> | 18 | <text name="NotFound"> |
13 | β[TEXT]β(μ)λ₯Ό μ°Ύμ μ μμ΅λλ€ | 19 | '[TEXT]' μ°Ύμ μ μμ |
14 | </text> | 20 | </text> |
15 | </floater> | 21 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_avatar_textures.xml b/linden/indra/newview/skins/xui/ko/floater_avatar_textures.xml index 96ddc64..7d75972 100644 --- a/linden/indra/newview/skins/xui/ko/floater_avatar_textures.xml +++ b/linden/indra/newview/skins/xui/ko/floater_avatar_textures.xml | |||
@@ -1,26 +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="avatar_texture_debug" title="Avatar Textures"> | 2 | <floater name="avatar_texture_debug" title="μλ°ν ν μ€μ²"> |
3 | <text name=""> | 3 | <text name=""> |
4 | Baked Textures | 4 | μ μ₯λ ν μ€μ² |
5 | </text> | 5 | </text> |
6 | <text name=""> | 6 | <text name=""> |
7 | Composite Textures | 7 | λ³΅ν© ν μ€μ² |
8 | </text> | 8 | </text> |
9 | <texture_picker label="머리" name="baked_head" /> | 9 | <texture_picker label="머리" name="baked_head" /> |
10 | <texture_picker label="λ©μ΄ν¬μ " name="head_bodypaint" /> | 10 | <texture_picker label="λ©μ΄ν¬μ " name="head_bodypaint" /> |
11 | <texture_picker label="ν€μ΄μ€νμΌ" name="hair" /> | 11 | <texture_picker label="ν€μ΄" name="hair" /> |
12 | <button label="Dump" label_selected="Dump" name="Dump" /> | 12 | <button label="λ€ν" label_selected="λ€ν" name="Dump" /> |
13 | <texture_picker label="λ" name="baked_eyes" /> | 13 | <texture_picker label="λ" name="baked_eyes" /> |
14 | <texture_picker label="Eye" name="eye_texture" /> | 14 | <texture_picker label="λ" name="eye_texture" /> |
15 | <texture_picker label="Upper Body" name="baked_upper_body" /> | 15 | <texture_picker label="μ체" name="baked_upper_body" /> |
16 | <texture_picker label="Upper Body Tattoo" name="upper_bodypaint" /> | 16 | <texture_picker label="μ체 λ¬Έμ " name="upper_bodypaint" /> |
17 | <texture_picker label="μμ μΈ " name="undershirt" /> | 17 | <texture_picker label="λ΄μ(μ)" name="undershirt" /> |
18 | <texture_picker label="μ₯κ°" name="gloves" /> | 18 | <texture_picker label="μ₯κ°" name="gloves" /> |
19 | <texture_picker label="μ μΈ " name="shirt" /> | 19 | <texture_picker label="μ μΈ " name="shirt" /> |
20 | <texture_picker label="Upper Jacket" name="upper_jacket" /> | 20 | <texture_picker label="μμ μ¬ν·" name="upper_jacket" /> |
21 | <texture_picker label="Lower Body" name="baked_lower_body" /> | 21 | <texture_picker label="νλ°μ " name="baked_lower_body" /> |
22 | <texture_picker label="Lower Body Tattoo" name="lower_bodypaint" /> | 22 | <texture_picker label="νλ°μ λ¬Έμ " name="lower_bodypaint" /> |
23 | <texture_picker label="μλ°μ§" name="underpants" /> | 23 | <texture_picker label="λ΄μ(ν)" name="underpants" /> |
24 | <texture_picker label="μλ§" name="socks" /> | 24 | <texture_picker label="μλ§" name="socks" /> |
25 | <texture_picker label="μ λ°" name="shoes" /> | 25 | <texture_picker label="μ λ°" name="shoes" /> |
26 | <texture_picker label="λ°μ§" name="pants" /> | 26 | <texture_picker label="λ°μ§" name="pants" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_build_options.xml b/linden/indra/newview/skins/xui/ko/floater_build_options.xml index 7831280..b258fa6 100644 --- a/linden/indra/newview/skins/xui/ko/floater_build_options.xml +++ b/linden/indra/newview/skins/xui/ko/floater_build_options.xml | |||
@@ -2,6 +2,7 @@ | |||
2 | <floater name="build options floater" title="그리λ μ΅μ "> | 2 | <floater name="build options floater" title="그리λ μ΅μ "> |
3 | <spinner label="그리λ λ¨μ(λ―Έν°)" name="GridResolution" /> | 3 | <spinner label="그리λ λ¨μ(λ―Έν°)" name="GridResolution" /> |
4 | <spinner label="그리λ λ©΄μ (λ―Έν°)" name="GridDrawSize" /> | 4 | <spinner label="그리λ λ©΄μ (λ―Έν°)" name="GridDrawSize" /> |
5 | <check_box label="νμ μ λ μ€λ΄ν μΌκΈ°" name="GridSubUnit" /> | 5 | <check_box label="νμ 그리λ μλ μ λ ¬" name="GridSubUnit" /> |
6 | <slider label="그리λ λΆν¬λͺ λ" name="GridOpacity" /> | 6 | <check_box label="격μ 보μ΄κΈ°" name="GridCrossSection" /> |
7 | <slider label="그리λ ν¬λͺ λ" name="GridOpacity" /> | ||
7 | </floater> | 8 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_bumps.xml b/linden/indra/newview/skins/xui/ko/floater_bumps.xml index 62703e5..35ee93c 100644 --- a/linden/indra/newview/skins/xui/ko/floater_bumps.xml +++ b/linden/indra/newview/skins/xui/ko/floater_bumps.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="floater_bumps" title="μΆλ°©, λ°κΈ° λ° λ리기"> | 2 | <floater name="floater_bumps" title="λ°κΈ°, ν격 λ± κ°μ§"> |
3 | <text name="none_detected"> | 3 | <text name="none_detected"> |
4 | κ°μ§λ κ²μ΄ μμ | 4 | κ°μ§λ κ²μ΄ μμ |
5 | </text> | 5 | </text> |
6 | <text name="bump"> | 6 | <text name="bump"> |
7 | [TIME]μ [LAST] [FIRST](μ΄)κ° κ·νλ₯Ό μ«μλμ΅λλ€ | 7 | [TIME] [FIRST] [LAST]λκ³Ό λΆλͺνμ΅λλ€. |
8 | </text> | 8 | </text> |
9 | <text name="llpushobject"> | 9 | <text name="llpushobject"> |
10 | [TIME]μ [LAST] [FIRST](μ΄)κ° κ·νλ₯Ό μ€ν¬λ¦½νΈλ‘ λ°μμ΅λλ€. | 10 | [TIME] [FIRST] [LAST]λμ΄ μ€ν¬λ¦½νΈλ‘ λ°μμ΅λλ€. |
11 | </text> | 11 | </text> |
12 | <text name="selected_object_collide"> | 12 | <text name="selected_object_collide"> |
13 | [TIME]μ [LAST] [FIRST](μ΄)κ° κ·νλ₯Ό μμ΄ν μΌλ‘ λλ Έμ΅λλ€ | 13 | [TIME] [FIRST] [LAST]λμ΄ μ€λΈμ νΈλ‘ μ³€μ΅λλ€,. |
14 | </text> | 14 | </text> |
15 | <text name="scripted_object_collide"> | 15 | <text name="scripted_object_collide"> |
16 | [TIME]μ [LAST] [FIRST](μ΄)κ° κ·νλ₯Ό μ€ν¬λ¦½νΈ μμ΄ν μΌλ‘ λλ Έμ΅λλ€ | 16 | [TIME] [FIRST] [LAST]λμ΄ μ€ν¬λ¦½νΈ μ€λΈμ νΈλ‘ μ³€μ΅λλ€. |
17 | </text> | 17 | </text> |
18 | <text name="physical_object_collide"> | 18 | <text name="physical_object_collide"> |
19 | [TIME]μ [LAST] [FIRST](μ΄)κ° κ·νλ₯Ό 물리μ μμ΄ν μΌλ‘ λλ Έμ΅λλ€ | 19 | [TIME] [FIRST] [LAST]λμ΄ λ¬Όλ¦¬ μμ§ μ€λΈμ νΈλ‘ μ³€μ΅λλ€. |
20 | </text> | 20 | </text> |
21 | </floater> | 21 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_buy_contents.xml b/linden/indra/newview/skins/xui/ko/floater_buy_contents.xml index c68dc57..4acc356 100644 --- a/linden/indra/newview/skins/xui/ko/floater_buy_contents.xml +++ b/linden/indra/newview/skins/xui/ko/floater_buy_contents.xml | |||
@@ -1,10 +1,10 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="floater_buy_contents" title="컨ν μΈ κ΅¬λ§€"> | 2 | <floater name="floater_buy_contents" title="컨ν μΈ κ΅¬λ§€"> |
3 | <text name="contains_text"> | 3 | <text name="contains_text"> |
4 | [NAME]μ ν¬ν¨λ λ΄μ©: | 4 | [NAME]μ ν¬ν¨λ μ¬ν: |
5 | </text> | 5 | </text> |
6 | <text name="buy_text"> | 6 | <text name="buy_text"> |
7 | [NAME](μΌ)λ‘λΆν° L$[AMOUNT]μ ꡬμ νμκ² μ΅λλ€? | 7 | L$[AMOUNT]μ [NAME](μΌ)λ‘λΆν° ꡬ맀 νμκ² μ΅λκΉ? |
8 | </text> | 8 | </text> |
9 | <button label="μ·¨μ" label_selected="μ·¨μ" name="cancel_btn" /> | 9 | <button label="μ·¨μ" label_selected="μ·¨μ" name="cancel_btn" /> |
10 | <button label="ꡬ맀" label_selected="ꡬ맀" name="buy_btn" /> | 10 | <button label="ꡬ맀" label_selected="ꡬ맀" name="buy_btn" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_buy_currency.xml b/linden/indra/newview/skins/xui/ko/floater_buy_currency.xml index e8ab54e..674b823 100644 --- a/linden/indra/newview/skins/xui/ko/floater_buy_currency.xml +++ b/linden/indra/newview/skins/xui/ko/floater_buy_currency.xml | |||
@@ -1,29 +1,29 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="buy currency" title="νν ꡬ맀"> | 2 | <floater name="buy currency" title="λ¦°λ λ¬λ¬(L$) ꡬ맀"> |
3 | <text name="info_buying"> | 3 | <text name="info_buying"> |
4 | ꡬ맀 νν: | 4 | λ¦°λ λ¬λ¬(L$) ꡬ맀: |
5 | </text> | 5 | </text> |
6 | <text name="info_cannot_buy"> | 6 | <text name="info_cannot_buy"> |
7 | μ§κΈ ꡬμ ν μ μμ: | 7 | μ§κΈ ꡬμ ν μ μμ: |
8 | </text> | 8 | </text> |
9 | <text name="info_need_more"> | 9 | <text name="info_need_more"> |
10 | ννκ° λ νμν©λλ€. | 10 | λ¦°λ λ¬λ¬(L$)κ° λ νμν©λλ€: |
11 | </text> | 11 | </text> |
12 | <text name="error_message"> | 12 | <text name="error_message"> |
13 | λκ° μλͺ»λμμ΅λλ€. | 13 | λ¬Έμ κ° λ°μνμ΅λλ€. |
14 | </text> | 14 | </text> |
15 | <button label="μΉμ¬μ΄νΈλ‘ μ΄λ" name="error_web" /> | 15 | <button label="μΉ μ¬μ΄νΈλ‘ κ°κΈ°" name="error_web" /> |
16 | <text name="contacting"> | 16 | <text name="contacting"> |
17 | LindeXμ μ°λ½ μ€... | 17 | λ¦°λ±μ€(LindeX)μ μ°κ²° μ€... |
18 | </text> | 18 | </text> |
19 | <text name="buy_action_unknown"> | 19 | <text name="buy_action_unknown"> |
20 | LindeX νμ¨λ‘ L$ ꡬμ | 20 | LindeX νμ¨λ‘ λ¦°λ λ¬λ¬(L$) ꡬ맀 |
21 | </text> | 21 | </text> |
22 | <text name="buy_action"> | 22 | <text name="buy_action"> |
23 | [NAME] L$ [PRICE] | 23 | [NAME] L$ [PRICE] |
24 | </text> | 24 | </text> |
25 | <text name="currency_action"> | 25 | <text name="currency_action"> |
26 | L$ ꡬ맀 | 26 | λ¦°λ λ¬λ¬(L$) ꡬ맀 |
27 | </text> | 27 | </text> |
28 | <line_editor name="currency_amt"> | 28 | <line_editor name="currency_amt"> |
29 | 1234 | 29 | 1234 |
@@ -38,24 +38,24 @@ | |||
38 | L$ [AMT] | 38 | L$ [AMT] |
39 | </text> | 39 | </text> |
40 | <text name="buying_label"> | 40 | <text name="buying_label"> |
41 | κ·νμ ꡬ맀 λμ | 41 | ꡬ맀 μ€μ λλ€. |
42 | </text> | 42 | </text> |
43 | <text name="buying_amount"> | 43 | <text name="buying_amount"> |
44 | L$ [AMT] | 44 | L$ [AMT] |
45 | </text> | 45 | </text> |
46 | <text name="total_label"> | 46 | <text name="total_label"> |
47 | κ·νμ μ 보μ μκ³ | 47 | κ·νμ μκ³ λ |
48 | </text> | 48 | </text> |
49 | <text name="total_amount"> | 49 | <text name="total_amount"> |
50 | L$ [AMT] | 50 | L$ [AMT] |
51 | </text> | 51 | </text> |
52 | <text name="purchase_warning_repurchase"> | 52 | <text name="purchase_warning_repurchase"> |
53 | μ΄ κ΅¬λ§€λ₯Ό νμΈνλ©΄ ννλ§ κ΅¬λ§€νκ² λ©λλ€. | 53 | μ΄ κ΅¬λ§€λ₯Ό νμΈνλ©΄ λ¦°λ λ¬λ¬(L$) κ΅¬λ§€λ§ μνλ©λλ€. |
54 | μμ μ μ¬μλνμ μΌ ν©λλ€. | 54 | μ΄ μμ μ λ€μ μλν΄μΌ ν©λλ€. |
55 | </text> | 55 | </text> |
56 | <text name="purchase_warning_notenough"> | 56 | <text name="purchase_warning_notenough"> |
57 | μΆ©λΆν ννλ₯Ό μ¬μ§ μμμ΅λλ€ | 57 | μΆ©λΆν λ¦°λ λ¬λ¬λ₯Ό ꡬ맀νμ§ μμμ΅λλ€. |
58 | ꡬμ νλ €λ κΈμ‘μ λ리μμμ€. | 58 | ꡬ맀νλ €λ κΈμ‘μ λ리μμμ€. |
59 | </text> | 59 | </text> |
60 | <button label="ꡬ맀" name="buy_btn" /> | 60 | <button label="ꡬ맀" name="buy_btn" /> |
61 | <button label="μ·¨μ" name="cancel_btn" /> | 61 | <button label="μ·¨μ" name="cancel_btn" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_buy_land.xml b/linden/indra/newview/skins/xui/ko/floater_buy_land.xml index a01815f..e703181 100644 --- a/linden/indra/newview/skins/xui/ko/floater_buy_land.xml +++ b/linden/indra/newview/skins/xui/ko/floater_buy_land.xml | |||
@@ -1,70 +1,70 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="buy land" title="ν μ§ κ΅¬λ§€"> | 2 | <floater name="buy land" title="ν μ§ κ΅¬λ§€νκΈ°"> |
3 | <text name="region_name_label"> | 3 | <text name="region_name_label"> |
4 | μ§μ: | 4 | μ§μ: |
5 | </text> | 5 | </text> |
6 | <text name="region_name_text"> | 6 | <text name="region_name_text"> |
7 | (μλ €μ§μ§ μμ) | 7 | (μ μ μμ) |
8 | </text> | 8 | </text> |
9 | <text name="estate_name_label"> | 9 | <text name="estate_name_label"> |
10 | μμ μ§: | 10 | μ¬μ μ§: |
11 | </text> | 11 | </text> |
12 | <text name="estate_name_text"> | 12 | <text name="estate_name_text"> |
13 | (μλ €μ§μ§ μμ) | 13 | (μ μ μμ) |
14 | </text> | 14 | </text> |
15 | <text name="estate_owner_label"> | 15 | <text name="estate_owner_label"> |
16 | μμ μ§ μμ μ: | 16 | μ¬μ μ§ μμ μ: |
17 | </text> | 17 | </text> |
18 | <text name="estate_owner_text"> | 18 | <text name="estate_owner_text"> |
19 | (μλ €μ§μ§ μμ) | 19 | (μ μ μμ) |
20 | </text> | 20 | </text> |
21 | <text name="resellable_changeable_label"> | 21 | <text name="resellable_changeable_label"> |
22 | μ΄ μ§μμμ ꡬμ ν ν μ§: | 22 | μ΄ μ§μμμ ꡬ맀ν ν μ§: |
23 | </text> | 23 | </text> |
24 | <text name="resellable_clause"> | 24 | <text name="resellable_clause"> |
25 | μ΄ μ§μμμ ꡬμ ν ν μ§λ μ¬ν맀ν μ μλ κ²½μ°λ μμ΅λλ€. | 25 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ μ¬ν맀 ν μ μλ κ²½μ°λ μμ΅λλ€. |
26 | </text> | 26 | </text> |
27 | <text name="changeable_clause"> | 27 | <text name="changeable_clause"> |
28 | μ°Έμ¬ λλ μΈλΆλμ§ μμ μ μμ΅λλ€. | 28 | κ²°ν© λλ μΈλΆλ μ μμ΅λλ€(λλ μμ΅λλ€). |
29 | </text> | 29 | </text> |
30 | <text name="covenant_text"> | 30 | <text name="covenant_text"> |
31 | λ€μ μμ μ§ κ³μ½ μ‘°νμ λμν΄μΌ ν©λλ€. | 31 | λ°λμ μ¬μ μ§ κ³μ½ μ‘°νμ λμν΄μΌ ν©λλ€. |
32 | </text> | 32 | </text> |
33 | <text_editor name="covenant_editor"> | 33 | <text_editor name="covenant_editor"> |
34 | λ‘λ©μ€... | 34 | λ‘λ© μ€β¦ |
35 | </text_editor> | 35 | </text_editor> |
36 | <check_box label="μμ μ μν κ³μ½ μ‘°νμ λμν©λλ€." | 36 | <check_box label="μμ μ μν μν κ·μΉμ λμν©λλ€." |
37 | name="agree_covenant" /> | 37 | name="agree_covenant" /> |
38 | <text name="info_parcel_label"> | 38 | <text name="info_parcel_label"> |
39 | ꡬν: | 39 | ꡬν: |
40 | </text> | 40 | </text> |
41 | <text name="info_parcel"> | 41 | <text name="info_parcel"> |
42 | μ€μ½ν±ν λ¦μ€ 138,204 | 42 | Scotopteryx 138,204 |
43 | </text> | 43 | </text> |
44 | <text name="info_size_label"> | 44 | <text name="info_size_label"> |
45 | ν¬κΈ° : | 45 | ν¬κΈ°: |
46 | </text> | 46 | </text> |
47 | <text name="info_size"> | 47 | <text name="info_size"> |
48 | 1024 νλ°© λ―Έν° | 48 | 1024 μ κ³±λ―Έν° |
49 | </text> | 49 | </text> |
50 | <text name="info_price_label"> | 50 | <text name="info_price_label"> |
51 | κ°κ²©: | 51 | κ°κ²©: |
52 | </text> | 52 | </text> |
53 | <text name="info_price"> | 53 | <text name="info_price"> |
54 | L$ 1500, μ¬λ¬Ό ν¬ν¨ | 54 | L$ 1500, μ€λΈμ νΈ ν¬ν¨ |
55 | </text> | 55 | </text> |
56 | <text name="info_action"> | 56 | <text name="info_action"> |
57 | μ΄ ν μ§λ₯Ό 맀μ ν κ²½μ°: | 57 | μ΄ ν μ§ κ΅¬λ§€ λ΄μ: |
58 | </text> | 58 | </text> |
59 | <text name="error_message"> | 59 | <text name="error_message"> |
60 | λκ° μλͺ»λμμ΅λλ€. | 60 | λ¬Έμ κ° λ°μνμ΅λλ€. |
61 | </text> | 61 | </text> |
62 | <button label="μΉμ¬μ΄νΈλ‘ μ΄λ" name="error_web" /> | 62 | <button label="μΉ μ¬μ΄νΈλ‘ κ°κΈ°" name="error_web" /> |
63 | <text name="account_action"> | 63 | <text name="account_action"> |
64 | ν리미μ λ©€λ²μμΌλ‘ μ κ·Έλ μ΄λν©λλ€. | 64 | ν리미μ νμμΌλ‘ μ κ·Έλ μ΄λνμμμ€. |
65 | </text> | 65 | </text> |
66 | <text name="account_reason"> | 66 | <text name="account_reason"> |
67 | ν리미μ λ©€λ²λ§ ν μ§λ₯Ό μμ ν μ μμ΅λλ€. | 67 | ν리미μ νμλ§μ΄ ν μ§λ₯Ό μμ ν μ μμ΅λλ€. |
68 | </text> | 68 | </text> |
69 | <combo_box name="account_level"> | 69 | <combo_box name="account_level"> |
70 | <combo_item name="US$9.95/month,billedmonthly"> | 70 | <combo_item name="US$9.95/month,billedmonthly"> |
@@ -78,20 +78,20 @@ | |||
78 | </combo_item> | 78 | </combo_item> |
79 | </combo_box> | 79 | </combo_box> |
80 | <text name="land_use_action"> | 80 | <text name="land_use_action"> |
81 | μ ν μ§ μ¬μ©λ£λ₯Ό λ―Έν$ 40/μλ‘ μΈμνμμμ€. | 81 | US$ 40/μλ‘ μ ν μ§ μ¬μ©λ£λ₯Ό λμ |
82 | </text> | 82 | </text> |
83 | <text name="land_use_reason"> | 83 | <text name="land_use_reason"> |
84 | κ·νλ νμ¬ 1,309 νλ°© λ―Έν°μ ν μ§λ₯Ό 보μ νκ³ μμ΅λλ€. | 84 | κ·νλ νμ¬ 1,309 μ κ³± λ―Έν°μ ν μ§λ₯Ό μμ νκ³ μμ΅λλ€. |
85 | μ΄ κ΅¬νμ 512 νλ°© λ―Έν°μ ν μ§μ λλ€. | 85 | μ΄ κ΅¬νμ 512 μ κ³± λ―Έν°μ λλ€. |
86 | </text> | 86 | </text> |
87 | <text name="purchase_action"> | 87 | <text name="purchase_action"> |
88 | Joe μ£Όλ―Όμκ² ν μ§ λκ°λ‘ L$4000λ₯Ό μ§λΆν©λλ€ | 88 | μ£Όλ―Ό Joeμκ² ν μ§ λκΈ L$4000 μ§λΆ |
89 | </text> | 89 | </text> |
90 | <text name="currency_reason"> | 90 | <text name="currency_reason"> |
91 | κ·νλ νμ¬ L$2,100λ₯Ό 보μ νκ³ μμ΅λλ€. | 91 | νμ¬ L$2,100λ₯Ό 보μ νκ³ μμ΅λλ€. |
92 | </text> | 92 | </text> |
93 | <text name="currency_action"> | 93 | <text name="currency_action"> |
94 | μΆκ° L$ ꡬ맀 | 94 | μΆκ°λ‘ λ¦°λ λ¬λ¬(L$) ꡬ맀 |
95 | </text> | 95 | </text> |
96 | <line_editor name="currency_amt"> | 96 | <line_editor name="currency_amt"> |
97 | 1000 | 97 | 1000 |
@@ -100,9 +100,10 @@ | |||
100 | μ½ US$ [AMOUNT2] | 100 | μ½ US$ [AMOUNT2] |
101 | </text> | 101 | </text> |
102 | <text name="currency_balance"> | 102 | <text name="currency_balance"> |
103 | κ·νλ νμ¬ L$2,100λ₯Ό 보μ νκ³ μμ΅λλ€. | 103 | νμ¬ L$2,100λ₯Ό 보μ νκ³ μμ΅λλ€. |
104 | </text> | 104 | </text> |
105 | <check_box label="ꡬμ μμ κ΅¬λ£ΉκΈ°λΆ μ μΈ νκΈ°" name="remove_contribution" /> | 105 | <check_box label="κ·Έλ£Ή κΈ°λΆμμ [AMOUNT] νλ°© λ―Έν°λ₯Ό μ κ±°ν©λλ€." |
106 | name="remove_contribution" /> | ||
106 | <button label="ꡬ맀" name="buy_btn" /> | 107 | <button label="ꡬ맀" name="buy_btn" /> |
107 | <button label="μ·¨μ" name="cancel_btn" /> | 108 | <button label="μ·¨μ" name="cancel_btn" /> |
108 | <text name="can_resell"> | 109 | <text name="can_resell"> |
@@ -121,7 +122,7 @@ | |||
121 | νλ μ€μΈ κ·Έλ£Ήμ μν΄ ν μ§λ₯Ό 맀μ ν κΆνμ΄ μμ΅λλ€. | 122 | νλ μ€μΈ κ·Έλ£Ήμ μν΄ ν μ§λ₯Ό 맀μ ν κΆνμ΄ μμ΅λλ€. |
122 | </text> | 123 | </text> |
123 | <text name="no_land_selected"> | 124 | <text name="no_land_selected"> |
124 | ν μ§λ₯Ό μ ννμ§ μμμ΅λλ€. | 125 | ν μ§λ₯Ό μ ννμ§ μμ. |
125 | </text> | 126 | </text> |
126 | <text name="multiple_parcels_selected"> | 127 | <text name="multiple_parcels_selected"> |
127 | μ¬λ¬κ°μ κ°κΈ° λ€λ₯Έ ꡬνμ΄ μ νλμμ΅λλ€. | 128 | μ¬λ¬κ°μ κ°κΈ° λ€λ₯Έ ꡬνμ΄ μ νλμμ΅λλ€. |
@@ -137,7 +138,7 @@ | |||
137 | λ³Έ κ·Έλ£Ήμ μ΄λ―Έ ν΄λΉ ꡬνμ μμ νκ³ μμ΅λλ€. | 138 | λ³Έ κ·Έλ£Ήμ μ΄λ―Έ ν΄λΉ ꡬνμ μμ νκ³ μμ΅λλ€. |
138 | </text> | 139 | </text> |
139 | <text name="you_already_own"> | 140 | <text name="you_already_own"> |
140 | κ·νλ ν΄λΉ ꡬνμ μ΄λ―Έ μμ νκ³ μμ΅λλ€. | 141 | ν΄λΉ ꡬνμ μ΄λ―Έ μμ νκ³ μμ΅λλ€. |
141 | </text> | 142 | </text> |
142 | <text name="set_to_sell_to_other"> | 143 | <text name="set_to_sell_to_other"> |
143 | μ νν ꡬνμ λ€λ₯Έ μ¬λμκ² ν맀νλλ‘ μ€μ λμ΄ μμ΅λλ€. | 144 | μ νν ꡬνμ λ€λ₯Έ μ¬λμκ² ν맀νλλ‘ μ€μ λμ΄ μμ΅λλ€. |
@@ -158,13 +159,15 @@ | |||
158 | κ·νλ μ΄λ―Έ ν μ§λ₯Ό μμ νκ³ μμ΅λλ€. | 159 | κ·νλ μ΄λ―Έ ν μ§λ₯Ό μμ νκ³ μμ΅λλ€. |
159 | </text> | 160 | </text> |
160 | <text name="processing"> | 161 | <text name="processing"> |
161 | ꡬμ μ²λ¦¬μ€... (1λΆμμ 2λΆλ§ κΈ°λ€λ € μ£Όμμμ) | 162 | ꡬ맀 μ²λ¦¬ μ€.. |
163 | |||
164 | (λͺ λΆμ΄ μμλ μ μμ.) | ||
162 | </text> | 165 | </text> |
163 | <text name="fetching_error"> | 166 | <text name="fetching_error"> |
164 | ν μ§ κ΅¬λ§€ μ 보λ₯Ό κ°μ Έμ€λ λμ μ€λ₯κ° μμμ΅λλ€. | 167 | ν μ§ κ΅¬λ§€ μ 보λ₯Ό κ°μ Έμ€λ λμ μ€λ₯κ° λ°μνμ΅λλ€. |
165 | </text> | 168 | </text> |
166 | <text name="buying_will"> | 169 | <text name="buying_will"> |
167 | μ΄ ν μ§λ₯Ό 맀μ ν κ²½μ°: | 170 | μ΄ ν μ§ κ΅¬λ§€ λ΄μ: |
168 | </text> | 171 | </text> |
169 | <text name="buying_for_group"> | 172 | <text name="buying_for_group"> |
170 | κ·Έλ£Ήμ λμ ν΄ ν μ§ λ§€μ : | 173 | κ·Έλ£Ήμ λμ ν΄ ν μ§ λ§€μ : |
@@ -173,61 +176,55 @@ | |||
173 | μ§κΈ ꡬμ ν μ μμ: | 176 | μ§κΈ ꡬμ ν μ μμ: |
174 | </text> | 177 | </text> |
175 | <text name="not_for_sale"> | 178 | <text name="not_for_sale"> |
176 | λΉν맀:. | 179 | λΉλ§€μ©: |
177 | </text> | 180 | </text> |
178 | <text name="none_needed"> | 181 | <text name="none_needed"> |
179 | νμν μ¬ν μμ | 182 | νμν μ¬ν μμ |
180 | </text> | 183 | </text> |
181 | <text name="must_upgrade"> | 184 | <text name="must_upgrade"> |
182 | ν μ§λ₯Ό μμ νλ €λ©΄ κ·νμ κ³μ μ μ κ·Έλ μ΄λν΄μΌ ν©λλ€. | 185 | ν μ§λ₯Ό μμ νλ €λ©΄ κ³μ μ μ κ·Έλ μ΄λν΄μΌ ν©λλ€. |
183 | </text> | 186 | </text> |
184 | <text name="cant_own_land"> | 187 | <text name="cant_own_land"> |
185 | κ·νμ κ³μ μ ν μ§λ₯Ό μμ ν μ μμ΅λλ€. | 188 | κ·νμ κ³μ μ ν μ§λ₯Ό μμ ν μ μμ΅λλ€. |
186 | </text> | 189 | </text> |
187 | <text name="first_purchase"> | ||
188 | μ΅μ΄μ ν μ§ κ΅¬λ§€μ΄λ©° '첫 ν μ§' ꡬνμ ꡬμ ν μ μλ μ μΌν κΈ°νμ λλ€. | ||
189 | </text> | ||
190 | <text name="first_time_but_not_first_land"> | ||
191 | μ΅μ΄μ ν μ§ κ΅¬λ§€μ΄μ§λ§ μ΅μ΄ ꡬ맀μλ₯Ό μν΄ μμ½λ ꡬνμ μλλλ€. κ²μμ μ¬μ©νμ¬ μ λ ΄ν '첫 ν μ§' ꡬνμ μ°Ύμ μ μμ΅λλ€. | ||
192 | </text> | ||
193 | <text name="land_holdings"> | 190 | <text name="land_holdings"> |
194 | ν μ§μ [BUYER] μ€ν΄μ΄ λ―Έν°λ₯Ό μμ νμ ¨μ΅λλ€. | 191 | ν μ§μ [BUYER] μ κ³± λ―Έν°λ₯Ό μμ νκ³ μμ΅λλ€. |
195 | </text> | 192 | </text> |
196 | <text name="pay_to_for_land"> | 193 | <text name="pay_to_for_land"> |
197 | νμ¬ ν μ§μ λν΄ [ν맀μ]μκ² L$ [κΈμ‘] μ§λΆ | 194 | [SELLER](μ)κ² ν μ§ λκΈ [AMOUNT] μ§λΆ |
198 | </text> | 195 | </text> |
199 | <text name="buy_for_US"> | 196 | <text name="buy_for_US"> |
200 | μ½ US$ [AMOUNT2] μ L$ [AMOUNT]ꡬ맀, | 197 | μ½ US$ [AMOUNT2]μ L$ [AMOUNT]λ₯Ό ꡬ맀 νμκ² μ΅λκΉ? |
201 | </text> | 198 | </text> |
202 | <text name="parcel_meters"> | 199 | <text name="parcel_meters"> |
203 | μ΄ κ΅¬νμ [AMOUNT] νλ°© λ―Έν°μ λλ€. | 200 | μ΄ κ΅¬νμ [AMOUNT] νλ°© λ―Έν°μ λλ€. |
204 | </text> | 201 | </text> |
205 | <text name="premium_land"> | 202 | <text name="premium_land"> |
206 | μ΄ ν μ§λ ν리미μμ΄λ©° [AMOUNT] νλ°© λ―Έν°λ‘ λΉμ©μ΄ λΆκ³Όλ©λλ€. | 203 | μ΄ ν μ§λ ν리미μ μ§μμ΄λ©° [AMOUNT] νλ°© λ―Έν°λ‘ λΉμ©μ΄ λΆκ³Όλ©λλ€. |
207 | </text> | 204 | </text> |
208 | <text name="discounted_land"> | 205 | <text name="discounted_land"> |
209 | μ΄ ν μ§λ ν μΈλμμΌλ©° [AMOUNT] νλ°© λ―Έν°λ‘ λΉμ©μ΄ λΆκ³Όλ©λλ€. | 206 | μ΄ ν μ§λ ν μΈ μ§μμ΄λ©° [AMOUNT] νλ°© λ―Έν°λ‘ λΉμ©μ΄ λΆκ³Όλ©λλ€. |
210 | </text> | 207 | </text> |
211 | <text name="meters_supports_object"> | 208 | <text name="meters_supports_object"> |
212 | [AMOUNT] νλ°© λ―Έν° | 209 | [AMOUNT]μ κ³±λ―Έν° |
213 | supports [AMOUNT2] μ¬λ¬Ό μ§μ | 210 | [AMOUNT2]κ°μ μ€λΈμ νΈ μ§μ |
214 | </text> | 211 | </text> |
215 | <text name="sold_with_objects"> | 212 | <text name="sold_with_objects"> |
216 | μμ΄ν κ³Ό ν¨κ» ν맀 | 213 | μ€λΈμ νΈμ ν¨κ» νλ§€λ¨ |
217 | </text> | 214 | </text> |
218 | <text name="insufficient_land_credits"> | 215 | <text name="insufficient_land_credits"> |
219 | κ·Έλ£Ή [GROUP]μ(λ) κ΅¬λ§€κ° μλ£λκΈ° μ μ λ³Έ ꡬνμ 체λ₯Ό λ΄λΉν μ μλ ν μ§ μ¬μ©μ μν μΆ©λΆν μ μ©μ΄ νμν©λλ€. | 216 | κ·Έλ£Ή [GROUP]μ(λ) λ³Έ ꡬν μ 체μ μ¬μ©μ μν μΆ©λΆν μ μ©μ΄ νμνλ©°, κ΅¬λ§€κ° μλ£λκΈ° μ μ νμΈ λμ΄μΌ ν©λλ€. |
220 | </text> | 217 | </text> |
221 | <text name="have_enough_lindens"> | 218 | <text name="have_enough_lindens"> |
222 | μ΄ ν μ§λ₯Ό ꡬμ νκΈ°μ μΆ©λΆν L$ [AMOUNT]μ(λ₯Ό) κ°μ§κ³ μμ΅λλ€. | 219 | μ΄ ν μ§λ₯Ό ꡬμ νκΈ°μ μΆ©λΆν L$ [AMOUNT]μ(λ₯Ό) κ°μ§κ³ μμ΅λλ€. |
223 | </text> | 220 | </text> |
224 | <text name="not_enough_lindens"> | 221 | <text name="not_enough_lindens"> |
225 | νμ¬ L$ [AMOUNT]λ°μ μμΌλ―λ‘ L$ [AMOUNT2]μ΄(κ°) λ νμν©λλ€. | 222 | νμ¬ L$ [AMOUNT]μ(λ₯Ό) 보μ νκ³ μμΌλ©° L$ [AMOUNT2]μ΄(κ°) λ νμν©λλ€. |
226 | </text> | 223 | </text> |
227 | <text name="balance_left"> | 224 | <text name="balance_left"> |
228 | ꡬμ νμ L$ [AMOUNT]μ΄(κ°) λ¨κ² λ©λλ€. | 225 | ꡬμ νμ L$ [AMOUNT]κ° λ¨κ² λ©λλ€. |
229 | </text> | 226 | </text> |
230 | <text name="balance_needed"> | 227 | <text name="balance_needed"> |
231 | μ΄ ν μ§λ₯Ό ꡬμ νλ €λ©΄ L$ [AMOUNT] μ΄μμ μ§λΆν΄μΌ ν©λλ€. | 228 | μ΄ ν μ§λ₯Ό ꡬμ νλ €λ©΄ μ΅μ L$ [AMOUNT] μ΄μμ μ§λΆν΄μΌ ν©λλ€. |
232 | </text> | 229 | </text> |
233 | </floater> | 230 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_buy_object.xml b/linden/indra/newview/skins/xui/ko/floater_buy_object.xml index 9468696..34e6e85 100644 --- a/linden/indra/newview/skins/xui/ko/floater_buy_object.xml +++ b/linden/indra/newview/skins/xui/ko/floater_buy_object.xml | |||
@@ -1,10 +1,10 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="contents" title="μ¬λ¬Ό 볡μ¬λ³Έ ꡬ맀"> | 2 | <floater name="contents" title="μ€λΈμ νΈ λ³΅μ¬λ³Έ ꡬ맀"> |
3 | <text name="contents_text"> | 3 | <text name="contents_text"> |
4 | λλ Έμ΅λλ€: | 4 | λ° μ»¨ν μΈ : |
5 | </text> | 5 | </text> |
6 | <text name="buy_text"> | 6 | <text name="buy_text"> |
7 | [NAME](μΌ)λ‘λΆν° L$[AMOUNT]μ ꡬμ νμκ² μ΅λλ€? | 7 | L$[AMOUNT]μ [NAME](μΌ)λ‘λΆν° ꡬ맀 νμκ² μ΅λκΉ? |
8 | </text> | 8 | </text> |
9 | <button label="μ·¨μ" label_selected="μ·¨μ" name="cancel_btn" /> | 9 | <button label="μ·¨μ" label_selected="μ·¨μ" name="cancel_btn" /> |
10 | <button label="ꡬ맀" label_selected="ꡬ맀" name="buy_btn" /> | 10 | <button label="ꡬ맀" label_selected="ꡬ맀" name="buy_btn" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_chat_history.xml b/linden/indra/newview/skins/xui/ko/floater_chat_history.xml index 998931c..6babcf2 100644 --- a/linden/indra/newview/skins/xui/ko/floater_chat_history.xml +++ b/linden/indra/newview/skins/xui/ko/floater_chat_history.xml | |||
@@ -1,5 +1,6 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="chat floater" title="μ±ν κΈ°λ‘"> | 2 | <floater name="chat floater" title="μ±ν κΈ°λ‘"> |
3 | <button label="μ£Όλ―Ό μμκ±°" label_selected="μ£Όλ―Ό μμκ±°" name="Mute resident" /> | 3 | <button label="μ±ν " name="Chat" /> |
4 | <check_box label="μμκ±° ν μ€νΈ νμνκΈ°" name="show mutes" /> | 4 | <button label="μ°¨λ¨" name="Mute resident" /> |
5 | <check_box label="μμκ±°λ ν μ€νΈ νμνκΈ°" name="show mutes" /> | ||
5 | </floater> | 6 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_clothing.xml b/linden/indra/newview/skins/xui/ko/floater_clothing.xml index fd8d880..8c17b7d 100644 --- a/linden/indra/newview/skins/xui/ko/floater_clothing.xml +++ b/linden/indra/newview/skins/xui/ko/floater_clothing.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="clothing" title="μλ₯"> | 2 | <floater name="clothing" title="μ·"> |
3 | <scroll_list name="clothing_list"> | 3 | <scroll_list name="clothing_list"> |
4 | <column label="" name="icon" /> | 4 | <column label="" name="icon" /> |
5 | <column label="Name" name="name" /> | 5 | <column label="Name" name="name" /> |
6 | </scroll_list> | 6 | </scroll_list> |
7 | <button label="μ΄λ₯" name="take_off_btn" /> | 7 | <button label="λ²κΈ°" name="take_off_btn" /> |
8 | <button label="μ°©μ©" name="wear_btn" /> | 8 | <button label="μ°©μ©" name="wear_btn" /> |
9 | </floater> | 9 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_color_picker.xml b/linden/indra/newview/skins/xui/ko/floater_color_picker.xml index ceb3593..78fb662 100644 --- a/linden/indra/newview/skins/xui/ko/floater_color_picker.xml +++ b/linden/indra/newview/skins/xui/ko/floater_color_picker.xml | |||
@@ -1,10 +1,10 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="ColorPicker" title="μ νΌμ»€"> | 2 | <floater name="ColorPicker" title="μ κ΄λ¦¬κΈ°"> |
3 | <text name="r_val_text"> | 3 | <text name="r_val_text"> |
4 | λΉ¨κ°μ: | 4 | μ μ: |
5 | </text> | 5 | </text> |
6 | <text name="g_val_text"> | 6 | <text name="g_val_text"> |
7 | μ΄λ‘μ: | 7 | λ Ήμ: |
8 | </text> | 8 | </text> |
9 | <text name="b_val_text"> | 9 | <text name="b_val_text"> |
10 | νλμ: | 10 | νλμ: |
@@ -13,12 +13,12 @@ | |||
13 | μμ‘°: | 13 | μμ‘°: |
14 | </text> | 14 | </text> |
15 | <text name="s_val_text"> | 15 | <text name="s_val_text"> |
16 | Sat: | 16 | μ±λ: |
17 | </text> | 17 | </text> |
18 | <text name="l_val_text"> | 18 | <text name="l_val_text"> |
19 | λΌ: | 19 | λͺ μ: |
20 | </text> | 20 | </text> |
21 | <check_box label="μ¦μ μ μ©" name="apply_immediate" /> | 21 | <check_box label="μ§κΈ μ μ©" name="apply_immediate" /> |
22 | <button label="" label_selected="" name="color_pipette" /> | 22 | <button label="" label_selected="" name="color_pipette" /> |
23 | <button label="μ·¨μ" label_selected="μ·¨μ" name="cancel_btn" /> | 23 | <button label="μ·¨μ" label_selected="μ·¨μ" name="cancel_btn" /> |
24 | <button label="μ ν" label_selected="μ ν" name="select_btn" /> | 24 | <button label="μ ν" label_selected="μ ν" name="select_btn" /> |
@@ -26,6 +26,6 @@ | |||
26 | νμ¬ μ: | 26 | νμ¬ μ: |
27 | </text> | 27 | </text> |
28 | <text name="(Drag below to save.)"> | 28 | <text name="(Drag below to save.)"> |
29 | (μλλ‘ λλκ·Έν΄ μ μ₯.) | 29 | μλλ‘ λμ΄ μ μ₯ |
30 | </text> | 30 | </text> |
31 | </floater> | 31 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_critical.xml b/linden/indra/newview/skins/xui/ko/floater_critical.xml index 26357c1..e5ce706 100644 --- a/linden/indra/newview/skins/xui/ko/floater_critical.xml +++ b/linden/indra/newview/skins/xui/ko/floater_critical.xml | |||
@@ -3,10 +3,10 @@ | |||
3 | <button label="κ³μ" label_selected="κ³μ" name="Continue" /> | 3 | <button label="κ³μ" label_selected="κ³μ" name="Continue" /> |
4 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Cancel" /> | 4 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Cancel" /> |
5 | <text name="tos_title"> | 5 | <text name="tos_title"> |
6 | μ£Όμ λ©μμ§ | 6 | μ€μ λ©μμ§ |
7 | </text> | 7 | </text> |
8 | <text name="tos_heading"> | 8 | <text name="tos_heading"> |
9 | μλ λ©μμ§λ₯Ό μμΈν μ½μΌμμμ€. | 9 | λ€μ λ©μμ§λ₯Ό μ μ½μΌμΈμ. |
10 | </text> | 10 | </text> |
11 | <text_editor name="tos_text"> | 11 | <text_editor name="tos_text"> |
12 | TOS_TEXT | 12 | TOS_TEXT |
diff --git a/linden/indra/newview/skins/xui/ko/floater_customize.xml b/linden/indra/newview/skins/xui/ko/floater_customize.xml index 3abe397..9c29b1e 100644 --- a/linden/indra/newview/skins/xui/ko/floater_customize.xml +++ b/linden/indra/newview/skins/xui/ko/floater_customize.xml | |||
@@ -1,13 +1,8 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="floater customize" title="μΈμ"> | 2 | <floater name="floater customize" title="λ΄ λͺ¨μ΅"> |
3 | <tab_container name="customize tab container"> | 3 | <tab_container name="customize tab container"> |
4 | <panel label="μ 체λΆλΆ" /> | 4 | <panel label="μ 체 λΆμ" /> |
5 | <panel label="μΈν" name="Shape"> | 5 | <panel label="μΈν" name="Shape"> |
6 | <button label="μ λͺ¨μ΅ μμ±" label_selected="μ λͺ¨μ΅ μμ±" name="Create New" /> | ||
7 | <button label="μ΄λ₯" label_selected="μ΄λ₯" name="Take Off" /> | ||
8 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | ||
9 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" | ||
10 | name="Save As" /> | ||
11 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> | 6 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> |
12 | <button label="μ 체" label_selected="μ 체" name="Body" /> | 7 | <button label="μ 체" label_selected="μ 체" name="Body" /> |
13 | <button label="머리" label_selected="머리" name="Head" /> | 8 | <button label="머리" label_selected="머리" name="Head" /> |
@@ -18,151 +13,170 @@ | |||
18 | <button label="ν±" label_selected="ν±" name="Chin" /> | 13 | <button label="ν±" label_selected="ν±" name="Chin" /> |
19 | <button label="λͺΈν΅" label_selected="λͺΈν΅" name="Torso" /> | 14 | <button label="λͺΈν΅" label_selected="λͺΈν΅" name="Torso" /> |
20 | <button label="λ€λ¦¬" label_selected="λ€λ¦¬" name="Legs" /> | 15 | <button label="λ€λ¦¬" label_selected="λ€λ¦¬" name="Legs" /> |
21 | <button label="μμλ‘" label_selected="μμλ‘" name="Randomize" /> | 16 | <radio_group name="sex radio"> |
17 | <radio_item type="string" length="1" name="radio"> | ||
18 | μ¬μ± | ||
19 | </radio_item> | ||
20 | <radio_item type="string" length="1" name="radio2"> | ||
21 | λ¨μ± | ||
22 | </radio_item> | ||
23 | </radio_group> | ||
24 | <button label="무μμ" label_selected="무μμ" name="Randomize" /> | ||
22 | <text type="string" length="1" name="title"> | 25 | <text type="string" length="1" name="title"> |
23 | [DESC] | 26 | [DESC] |
24 | </text> | 27 | </text> |
25 | <text type="string" length="1" name="title_no_modify"> | 28 | <text type="string" length="1" name="title_no_modify"> |
26 | [DESC]: μμ ν μ μμ΅λλ€ | 29 | [DESC]: μμ λΆκ° |
27 | </text> | 30 | </text> |
28 | <text type="string" length="1" name="title_loading"> | 31 | <text type="string" length="1" name="title_loading"> |
29 | [DESC]: λ‘λ©μ€... | 32 | [DESC]: λ‘λ μ€... |
30 | </text> | 33 | </text> |
31 | <text type="string" length="1" name="title_not_worn"> | 34 | <text type="string" length="1" name="title_not_worn"> |
32 | [DESC]: λ§λͺ¨λμ§ μμ΅λλ€ | 35 | [DESC]: μ°©μ© μ ν¨ |
33 | </text> | 36 | </text> |
34 | <text type="string" length="1" name="path"> | 37 | <text type="string" length="1" name="path"> |
35 | [PATH]μ μμΉ | 38 | [PATH]μ μμΉν¨ |
36 | </text> | 39 | </text> |
37 | <text type="string" length="1" name="not worn instructions"> | 40 | <text type="string" length="1" name="not worn instructions"> |
38 | 보κ΄ν¨μμ μλ‘μ΄ μΈμμ λλκ·Ένμ¬ μλ°νμκ² μ μ©ν΄ 보μμμ€. λλ μ€ν¬λ«μΉμμ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | 41 | μΈλ²€ν 리λ‘λΆν° μ λͺ¨μ΅μ λλκ·Ένμ¬ |
42 | μλ°νμ μ μ©ν΄ 보μμμ€.. λλ, | ||
43 | μ‘°μ μ¬λΌμ΄λλ‘ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | ||
39 | </text> | 44 | </text> |
40 | <text type="string" length="1" name="no modify instructions"> | 45 | <text type="string" length="1" name="no modify instructions"> |
41 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. | 46 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. |
42 | </text> | 47 | </text> |
43 | <radio_group name="sex radio"> | 48 | <button label="μ μΈν λ§λ€κΈ°" label_selected="μ μΈν λ§λ€κΈ°" |
44 | <radio_item type="string" length="1" name="radio"> | 49 | name="Create New" /> |
45 | μ¬μ± | 50 | <button label="λ²κΈ°" label_selected="λ²κΈ°" name="Take Off" /> |
46 | </radio_item> | ||
47 | <radio_item type="string" length="1" name="radio2"> | ||
48 | λ¨μ± | ||
49 | </radio_item> | ||
50 | </radio_group> | ||
51 | </panel> | ||
52 | <panel label="νΌλΆ" name="Skin"> | ||
53 | <button label="μ νΌλΆ μμ±" label_selected="μ νΌλΆ μμ±" name="Create New" /> | ||
54 | <button label="μ΄λ₯" label_selected="μ΄λ₯" name="Take Off" /> | ||
55 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | 51 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> |
56 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" | 52 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" |
57 | name="Save As" /> | 53 | name="Save As" /> |
58 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> | 54 | </panel> |
55 | <panel label="νΌλΆ" name="Skin"> | ||
59 | <button label="νΌλΆμ" label_selected="νΌλΆμ" name="Skin Color" /> | 56 | <button label="νΌλΆμ" label_selected="νΌλΆμ" name="Skin Color" /> |
60 | <button label="μΌκ΅΄ μΈλΆ μ¬ν" label_selected="μΌκ΅΄ μΈλΆ μ¬ν" | 57 | <button label="μΌκ΅΄ λν μΌ" label_selected="μΌκ΅΄ λν μΌ" name="Face Detail" /> |
61 | name="Face Detail" /> | ||
62 | <button label="λ©μ΄ν¬μ " label_selected="λ©μ΄ν¬μ " name="Makeup" /> | 58 | <button label="λ©μ΄ν¬μ " label_selected="λ©μ΄ν¬μ " name="Makeup" /> |
63 | <button label="μ 체 μΈλΆ μ¬ν" label_selected="μ 체 μΈλΆ μ¬ν" | 59 | <button label="μ 체 λν μΌ" label_selected="μ 체 λν μΌ" name="Body Detail" /> |
64 | name="Body Detail" /> | ||
65 | <button label="μμλ‘" label_selected="μμλ‘" name="Randomize" /> | ||
66 | <text type="string" length="1" name="title"> | 60 | <text type="string" length="1" name="title"> |
67 | [DESC] | 61 | [DESC] |
68 | </text> | 62 | </text> |
69 | <text type="string" length="1" name="title_no_modify"> | 63 | <text type="string" length="1" name="title_no_modify"> |
70 | [DESC]: μμ ν μ μμ΅λλ€ | 64 | [DESC]: μμ λΆκ° |
71 | </text> | 65 | </text> |
72 | <text type="string" length="1" name="title_loading"> | 66 | <text type="string" length="1" name="title_loading"> |
73 | [DESC]: λ‘λ©μ€... | 67 | [DESC]: λ‘λ μ€... |
74 | </text> | 68 | </text> |
75 | <text type="string" length="1" name="title_not_worn"> | 69 | <text type="string" length="1" name="title_not_worn"> |
76 | [DESC]: λ§λͺ¨λμ§ μμ΅λλ€ | 70 | [DESC]: μ°©μ© μ ν¨ |
77 | </text> | 71 | </text> |
78 | <text type="string" length="1" name="path"> | 72 | <text type="string" length="1" name="path"> |
79 | [PATH]μ μμΉ | 73 | [PATH]μ μμΉν¨ |
80 | </text> | 74 | </text> |
81 | <text type="string" length="1" name="not worn instructions"> | 75 | <text type="string" length="1" name="not worn instructions"> |
82 | 보κ΄ν¨μμ μλ‘μ΄ νΌλΆλ₯Ό λλκ·Ένμ¬ μλ°νμκ² μ¬μ©ν΄ 보μμμ€. λλ μ€ν¬λ«μΉμμ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | 76 | μΈλ²€ν 리λ‘λΆν° μ νΌλΆλ₯Ό λλκ·Ένμ¬ |
77 | μλ°νμ μ μ©ν΄ 보μμμ€.λλ, | ||
78 | μ‘°μ μ¬λΌμ΄λλ‘ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | ||
83 | </text> | 79 | </text> |
84 | <text type="string" length="1" name="no modify instructions"> | 80 | <text type="string" length="1" name="no modify instructions"> |
85 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. | 81 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. |
86 | </text> | 82 | </text> |
87 | <texture_picker label="머리 λ¬Έμ " name="Head Tattoos" | 83 | <texture_picker label="머리 λ¬Έμ " name="Head Tattoos" |
88 | tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 84 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> |
89 | <texture_picker label="λ¬Έμ μ¬λ¦¬κΈ°" name="Upper Tattoos" | 85 | <texture_picker label="μλ°μ λ¬Έμ " name="Upper Tattoos" |
90 | tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 86 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> |
91 | <texture_picker label="λ¬Έμ λμΆκΈ°" name="Lower Tattoos" | 87 | <texture_picker label="νλ¨ λ¬Έμ " name="Lower Tattoos" |
92 | tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 88 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> |
93 | </panel> | 89 | <button label="무μμ" label_selected="무μμ" name="Randomize" /> |
94 | <panel label="ν€μ΄μ€νμΌ" name="Hair"> | 90 | <button label="μ νΌλΆ λ§λ€κΈ°" label_selected="μ νΌλΆ λ§λ€κΈ°" |
95 | <button label="μ ν€μ΄μ€νμΌ μμ±" label_selected="μ ν€μ΄μ€νμΌ μμ±" | ||
96 | name="Create New" /> | 91 | name="Create New" /> |
97 | <button label="μ΄λ₯" label_selected="μ΄λ₯" name="Take Off" /> | 92 | <button label="λ²κΈ°" label_selected="λ²κΈ°" name="Take Off" /> |
98 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | 93 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> |
99 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" | 94 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" |
100 | name="Save As" /> | 95 | name="Save As" /> |
101 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> | 96 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> |
97 | </panel> | ||
98 | <panel label="ν€μ΄" name="Hair"> | ||
102 | <button label="μ" label_selected="μ" name="Color" /> | 99 | <button label="μ" label_selected="μ" name="Color" /> |
103 | <button label="μ€νμΌ" label_selected="μ€νμΌ" name="Style" /> | 100 | <button label="μ€νμΌ" label_selected="μ€νμΌ" name="Style" /> |
104 | <button label="λμΉ" label_selected="λμΉ" name="Eyebrows" /> | 101 | <button label="λμΉ" label_selected="λμΉ" name="Eyebrows" /> |
105 | <button label="μΌκ΅΄" label_selected="μΌκ΅΄" name="Facial" /> | 102 | <button label="μμΌ" label_selected="μμΌ" name="Facial" /> |
106 | <button label="μμλ‘" label_selected="μμλ‘" name="Randomize" /> | ||
107 | <text type="string" length="1" name="title"> | 103 | <text type="string" length="1" name="title"> |
108 | [DESC] | 104 | [DESC] |
109 | </text> | 105 | </text> |
110 | <text type="string" length="1" name="title_no_modify"> | 106 | <text type="string" length="1" name="title_no_modify"> |
111 | [DESC]: μμ ν μ μμ΅λλ€ | 107 | [DESC]: μμ λΆκ° |
112 | </text> | 108 | </text> |
113 | <text type="string" length="1" name="title_loading"> | 109 | <text type="string" length="1" name="title_loading"> |
114 | [DESC]: λ‘λ©μ€... | 110 | [DESC]: λ‘λ μ€... |
115 | </text> | 111 | </text> |
116 | <text type="string" length="1" name="title_not_worn"> | 112 | <text type="string" length="1" name="title_not_worn"> |
117 | [DESC]: λ§λͺ¨λμ§ μμ΅λλ€ | 113 | [DESC]: μ°©μ© μ ν¨ |
118 | </text> | 114 | </text> |
119 | <text type="string" length="1" name="path"> | 115 | <text type="string" length="1" name="path"> |
120 | [PATH]μ μμΉ | 116 | [PATH]μ μμΉν¨ |
121 | </text> | 117 | </text> |
122 | <text type="string" length="1" name="not worn instructions"> | 118 | <text type="string" length="1" name="not worn instructions"> |
123 | 보κ΄ν¨ μΌλ‘λΆν° μλ‘μ΄ ν€μ΄μ€νμΌμ λλκ·Ένμ¬ μλ°νμκ² μ μ©ν΄ 보μμμ€. λλ μ€ν¬λ«μΉμμ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | 119 | μΈλ²€ν 리λ‘λΆν° μλ‘μ΄ ν€μ΄λ₯Ό λλκ·Ένμ¬ |
120 | μλ°νμ μ μ©ν΄ 보μμμ€.λλ, | ||
121 | μ‘°μ μ¬λΌμ΄λλ‘ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | ||
124 | </text> | 122 | </text> |
125 | <text type="string" length="1" name="no modify instructions"> | 123 | <text type="string" length="1" name="no modify instructions"> |
126 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. | 124 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. |
127 | </text> | 125 | </text> |
128 | <texture_picker label="ν μ€μ²" name="Texture" | 126 | <texture_picker label="ν μ€μ²" name="Texture" |
129 | tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 127 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> |
130 | </panel> | 128 | <button label="무μμ" label_selected="무μμ" name="Randomize" /> |
131 | <panel label="λ" name="Eyes"> | 129 | <button label="μ ν€μ΄ λ§λ€κΈ°" label_selected="μ ν€μ΄ λ§λ€κΈ°" |
132 | <button label="μ λ μμ±" label_selected="μ λ μμ±" name="Create New" /> | 130 | name="Create New" /> |
133 | <button label="μ΄λ₯" label_selected="μ΄λ₯" name="Take Off" /> | 131 | <button label="λ²κΈ°" label_selected="λ²κΈ°" name="Take Off" /> |
134 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | 132 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> |
135 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" | 133 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" |
136 | name="Save As" /> | 134 | name="Save As" /> |
137 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> | 135 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> |
138 | <button label="μμλ‘" label_selected="μμλ‘" name="Randomize" /> | 136 | </panel> |
137 | <panel label="λ" name="Eyes"> | ||
139 | <text type="string" length="1" name="title"> | 138 | <text type="string" length="1" name="title"> |
140 | [DESC] | 139 | [DESC] |
141 | </text> | 140 | </text> |
142 | <text type="string" length="1" name="title_no_modify"> | 141 | <text type="string" length="1" name="title_no_modify"> |
143 | [DESC]: μμ ν μ μμ΅λλ€ | 142 | [DESC]: μμ λΆκ° |
144 | </text> | 143 | </text> |
145 | <text type="string" length="1" name="title_loading"> | 144 | <text type="string" length="1" name="title_loading"> |
146 | [DESC]: λ‘λ©μ€... | 145 | [DESC]: λ‘λ μ€... |
147 | </text> | 146 | </text> |
148 | <text type="string" length="1" name="title_not_worn"> | 147 | <text type="string" length="1" name="title_not_worn"> |
149 | [DESC]: λ§λͺ¨λμ§ μμ΅λλ€ | 148 | [DESC]: μ°©μ© μ ν¨ |
150 | </text> | 149 | </text> |
151 | <text type="string" length="1" name="path"> | 150 | <text type="string" length="1" name="path"> |
152 | [PATH]μ μμΉ | 151 | [PATH]μ μμΉν¨ |
153 | </text> | 152 | </text> |
154 | <text type="string" length="1" name="not worn instructions"> | 153 | <text type="string" length="1" name="not worn instructions"> |
155 | 보κ΄ν¨ μΌλ‘λΆν° μλ‘μ΄ λννλ₯Όμ λλκ·Ένμ¬ μλ°νμ λμ μ μ©ν΄ 보μμμ€. λλ μ€ν¬λ«μΉμμ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | 154 | μΈλ²€ν 리λ‘λΆν° μ λμ λλκ·Ένμ¬ |
155 | μλ°νμ μ μ©ν΄ 보μμμ€.λλ, | ||
156 | μ‘°μ μ¬λΌμ΄λλ‘ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | ||
156 | </text> | 157 | </text> |
157 | <text type="string" length="1" name="no modify instructions"> | 158 | <text type="string" length="1" name="no modify instructions"> |
158 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. | 159 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. |
159 | </text> | 160 | </text> |
160 | <texture_picker label="νμ±" name="Iris" tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 161 | <texture_picker label="λλμ" name="Iris" |
162 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
163 | <button label="무μμ" label_selected="무μμ" name="Randomize" /> | ||
164 | <button label="μ λ λ§λ€κΈ°" label_selected="μ λ λ§λ€κΈ°" name="Create New" /> | ||
165 | <button label="λ²κΈ°" label_selected="λ²κΈ°" name="Take Off" /> | ||
166 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | ||
167 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" | ||
168 | name="Save As" /> | ||
169 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> | ||
161 | </panel> | 170 | </panel> |
162 | <panel label="μλ₯" /> | 171 | <panel label="μμ" /> |
163 | <panel label="μ μΈ " name="Shirt"> | 172 | <panel label="μ μΈ " name="Shirt"> |
164 | <button label="μ μ μΈ μμ±" label_selected="μ μ μΈ μμ±" name="Create New" /> | 173 | <texture_picker label="μ·κ°" name="Fabric" |
165 | <button label="μ΄λ₯" label_selected="μ΄λ₯" name="Take Off" /> | 174 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> |
175 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" | ||
176 | tool_tip="μ κ΄λ¦¬κΈ°λ₯Ό μ΄λ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
177 | <button label="μ μ μΈ λ§λ€κΈ°" label_selected="μ μ μΈ λ§λ€κΈ°" | ||
178 | name="Create New" /> | ||
179 | <button label="λ²κΈ°" label_selected="λ²κΈ°" name="Take Off" /> | ||
166 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | 180 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> |
167 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" | 181 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" |
168 | name="Save As" /> | 182 | name="Save As" /> |
@@ -171,30 +185,33 @@ | |||
171 | [DESC] | 185 | [DESC] |
172 | </text> | 186 | </text> |
173 | <text type="string" length="1" name="title_no_modify"> | 187 | <text type="string" length="1" name="title_no_modify"> |
174 | [DESC]: μμ ν μ μμ΅λλ€ | 188 | [DESC]: μμ λΆκ° |
175 | </text> | 189 | </text> |
176 | <text type="string" length="1" name="title_loading"> | 190 | <text type="string" length="1" name="title_loading"> |
177 | [DESC]: λ‘λ©μ€... | 191 | [DESC]: λ‘λ μ€... |
178 | </text> | 192 | </text> |
179 | <text type="string" length="1" name="title_not_worn"> | 193 | <text type="string" length="1" name="title_not_worn"> |
180 | [DESC]: λ§λͺ¨λμ§ μμ΅λλ€ | 194 | [DESC]: μ°©μ© μ ν¨ |
181 | </text> | 195 | </text> |
182 | <text type="string" length="1" name="path"> | 196 | <text type="string" length="1" name="path"> |
183 | [PATH]μ μμΉ | 197 | [PATH]μ μμΉν¨ |
184 | </text> | 198 | </text> |
185 | <text type="string" length="1" name="not worn instructions"> | 199 | <text type="string" length="1" name="not worn instructions"> |
186 | 보κ΄ν¨μμ μλ‘μ΄ μ μΈ λ₯Ό λλκ·Ένμ¬ μλ°νμκ² μ¬μ©ν΄ 보μμμ€. λλ μ€ν¬λ«μΉμμ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | 200 | μΈλ²€ν 리λ‘λΆν° μ μ μΈ λ₯Ό λλκ·Ένμ¬ μλ°νμ μ μ©ν΄ 보μμμ€.λλ, |
201 | μ‘°μ μ¬λΌμ΄λλ‘ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | ||
187 | </text> | 202 | </text> |
188 | <text type="string" length="1" name="no modify instructions"> | 203 | <text type="string" length="1" name="no modify instructions"> |
189 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. | 204 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. |
190 | </text> | 205 | </text> |
191 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" | ||
192 | tool_tip="ν΄λ¦ν΄ μ νΌμ»€λ₯Ό μ¬μμμ€" /> | ||
193 | <texture_picker label="μ·κ°" name="Fabric" tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | ||
194 | </panel> | 206 | </panel> |
195 | <panel label="λ°μ§" name="Pants"> | 207 | <panel label="λ°μ§" name="Pants"> |
196 | <button label="μ λ°μ§ μμ±" label_selected="μ λ°μ§ μμ±" name="Create New" /> | 208 | <texture_picker label="μ·κ°" name="Fabric" |
197 | <button label="μ΄λ₯" label_selected="μ΄λ₯" name="Take Off" /> | 209 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> |
210 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" | ||
211 | tool_tip="μ κ΄λ¦¬κΈ°λ₯Ό μ΄λ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
212 | <button label="μ λ°μ§ λ§λ€κΈ°" label_selected="μ λ°μ§ λ§λ€κΈ°" | ||
213 | name="Create New" /> | ||
214 | <button label="λ²κΈ°" label_selected="λ²κΈ°" name="Take Off" /> | ||
198 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | 215 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> |
199 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" | 216 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" |
200 | name="Save As" /> | 217 | name="Save As" /> |
@@ -203,259 +220,280 @@ | |||
203 | [DESC] | 220 | [DESC] |
204 | </text> | 221 | </text> |
205 | <text type="string" length="1" name="title_no_modify"> | 222 | <text type="string" length="1" name="title_no_modify"> |
206 | [DESC]: μμ ν μ μμ΅λλ€ | 223 | [DESC]: μμ λΆκ° |
207 | </text> | 224 | </text> |
208 | <text type="string" length="1" name="title_loading"> | 225 | <text type="string" length="1" name="title_loading"> |
209 | [DESC]: λ‘λ©μ€... | 226 | [DESC]: λ‘λ μ€... |
210 | </text> | 227 | </text> |
211 | <text type="string" length="1" name="title_not_worn"> | 228 | <text type="string" length="1" name="title_not_worn"> |
212 | [DESC]: λ§λͺ¨λμ§ μμ΅λλ€ | 229 | [DESC]: μ°©μ© μ ν¨ |
213 | </text> | 230 | </text> |
214 | <text type="string" length="1" name="path"> | 231 | <text type="string" length="1" name="path"> |
215 | [PATH]μ μμΉ | 232 | [PATH]μ μμΉν¨ |
216 | </text> | 233 | </text> |
217 | <text type="string" length="1" name="not worn instructions"> | 234 | <text type="string" length="1" name="not worn instructions"> |
218 | 보κ΄ν¨ μΌλ‘λΆν° μλ‘μ΄ λ°μ§λ₯Ό λλκ·Ένμ¬ μλ°νμκ² μ μ©ν΄ 보μμμ€. λλ μ€ν¬λ«μΉμμ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | 235 | μΈλ²€ν 리λ‘λΆν° μ λ°μ§λ₯Ό λλκ·Ένμ¬ |
236 | μλ°νμ μ μ©ν΄ 보μμμ€.λλ, | ||
237 | μ‘°μ μ¬λΌμ΄λλ‘ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | ||
219 | </text> | 238 | </text> |
220 | <text type="string" length="1" name="no modify instructions"> | 239 | <text type="string" length="1" name="no modify instructions"> |
221 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. | 240 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. |
222 | </text> | 241 | </text> |
223 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" | ||
224 | tool_tip="ν΄λ¦ν΄ μ νΌμ»€λ₯Ό μ¬μμμ€" /> | ||
225 | <texture_picker label="μ·κ°" name="Fabric" tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | ||
226 | </panel> | 242 | </panel> |
227 | <panel label="μ λ°" name="Shoes"> | 243 | <panel label="μ λ°" name="Shoes"> |
228 | <button label="μ μ λ° μμ±" label_selected="μ μ λ° μμ±" name="Create New" /> | ||
229 | <button label="μ΄λ₯" label_selected="μ΄λ₯" name="Take Off" /> | ||
230 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | ||
231 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" | ||
232 | name="Save As" /> | ||
233 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> | ||
234 | <text type="string" length="1" name="title"> | 244 | <text type="string" length="1" name="title"> |
235 | [DESC] | 245 | [DESC] |
236 | </text> | 246 | </text> |
237 | <text type="string" length="1" name="title_no_modify"> | 247 | <text type="string" length="1" name="title_no_modify"> |
238 | [DESC]: μμ ν μ μμ΅λλ€ | 248 | [DESC]: μμ λΆκ° |
239 | </text> | 249 | </text> |
240 | <text type="string" length="1" name="title_loading"> | 250 | <text type="string" length="1" name="title_loading"> |
241 | [DESC]: λ‘λ©μ€... | 251 | [DESC]: λ‘λ μ€... |
242 | </text> | 252 | </text> |
243 | <text type="string" length="1" name="title_not_worn"> | 253 | <text type="string" length="1" name="title_not_worn"> |
244 | [DESC]: λ§λͺ¨λμ§ μμ΅λλ€ | 254 | [DESC]: μ°©μ© μ ν¨ |
245 | </text> | 255 | </text> |
246 | <text type="string" length="1" name="path"> | 256 | <text type="string" length="1" name="path"> |
247 | [PATH]μ μμΉ | 257 | [PATH]μ μμΉν¨ |
248 | </text> | 258 | </text> |
249 | <text type="string" length="1" name="not worn instructions"> | 259 | <text type="string" length="1" name="not worn instructions"> |
250 | 보κ΄ν¨μμ μλ‘μ΄ μ λ°μ λλκ·Ένμ¬ μλ°νμκ² μ¬μ©ν΄ 보μμμ€. λλ μ€ν¬λ«μΉμμ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | 260 | μΈλ²€ν 리λ‘λΆν° μ μ λ°μ λλκ·Ένμ¬ μλ°νμ μ μ©ν΄ 보μμμ€. λλ, |
261 | μ‘°μ μ¬λΌμ΄λλ‘ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | ||
251 | </text> | 262 | </text> |
252 | <text type="string" length="1" name="no modify instructions"> | 263 | <text type="string" length="1" name="no modify instructions"> |
253 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. | 264 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. |
254 | </text> | 265 | </text> |
266 | <texture_picker label="μ·κ°" name="Fabric" | ||
267 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
255 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" | 268 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" |
256 | tool_tip="ν΄λ¦ν΄ μ νΌμ»€λ₯Ό μ¬μμμ€" /> | 269 | tool_tip="μ κ΄λ¦¬κΈ°λ₯Ό μ΄λ €λ©΄ ν΄λ¦ νμμμ€." /> |
257 | <texture_picker label="μ·κ°" name="Fabric" tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 270 | <button label="μ μ λ° λ§λ€κΈ°" label_selected="μ μ λ° λ§λ€κΈ°" |
258 | </panel> | 271 | name="Create New" /> |
259 | <panel label="μλ§" name="Socks"> | 272 | <button label="λ²κΈ°" label_selected="λ²κΈ°" name="Take Off" /> |
260 | <button label="μ μλ§ μμ±" label_selected="μ μλ§ μμ±" name="Create New" /> | ||
261 | <button label="μ΄λ₯" label_selected="μ΄λ₯" name="Take Off" /> | ||
262 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | 273 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> |
263 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" | 274 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" |
264 | name="Save As" /> | 275 | name="Save As" /> |
265 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> | 276 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> |
277 | </panel> | ||
278 | <panel label="μλ§" name="Socks"> | ||
266 | <text type="string" length="1" name="title"> | 279 | <text type="string" length="1" name="title"> |
267 | [DESC] | 280 | [DESC] |
268 | </text> | 281 | </text> |
269 | <text type="string" length="1" name="title_no_modify"> | 282 | <text type="string" length="1" name="title_no_modify"> |
270 | [DESC]: μμ ν μ μμ΅λλ€ | 283 | [DESC]: μμ λΆκ° |
271 | </text> | 284 | </text> |
272 | <text type="string" length="1" name="title_loading"> | 285 | <text type="string" length="1" name="title_loading"> |
273 | [DESC]: λ‘λ©μ€... | 286 | [DESC]: λ‘λ μ€... |
274 | </text> | 287 | </text> |
275 | <text type="string" length="1" name="title_not_worn"> | 288 | <text type="string" length="1" name="title_not_worn"> |
276 | [DESC]: λ§λͺ¨λμ§ μμ΅λλ€ | 289 | [DESC]: μ°©μ© μ ν¨ |
277 | </text> | 290 | </text> |
278 | <text type="string" length="1" name="path"> | 291 | <text type="string" length="1" name="path"> |
279 | [PATH]μ μμΉ | 292 | [PATH]μ μμΉν¨ |
280 | </text> | 293 | </text> |
281 | <text type="string" length="1" name="not worn instructions"> | 294 | <text type="string" length="1" name="not worn instructions"> |
282 | 보κ΄ν¨μμ μλ‘μ΄ μλ§μ λλκ·Ένμ¬ μλ°νμκ² μ¬μ©ν΄ 보μμμ€. λλ μ€ν¬λ«μΉμμ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | 295 | μΈλ²€ν 리λ‘λΆν° μ μλ§μ λλκ·Ένμ¬ |
296 | μλ°νμ μ μ©ν΄ 보μμμ€.λλ, | ||
297 | μ‘°μ μ¬λΌμ΄λλ‘ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | ||
283 | </text> | 298 | </text> |
284 | <text type="string" length="1" name="no modify instructions"> | 299 | <text type="string" length="1" name="no modify instructions"> |
285 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. | 300 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. |
286 | </text> | 301 | </text> |
302 | <texture_picker label="μ·κ°" name="Fabric" | ||
303 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
287 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" | 304 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" |
288 | tool_tip="ν΄λ¦ν΄ μ νΌμ»€λ₯Ό μ¬μμμ€" /> | 305 | tool_tip="μ κ΄λ¦¬κΈ°λ₯Ό μ΄λ €λ©΄ ν΄λ¦ νμμμ€." /> |
289 | <texture_picker label="μ·κ°" name="Fabric" tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 306 | <button label="μ μλ§ λ§λ€κΈ°" label_selected="μ μλ§ λ§λ€κΈ°" |
290 | </panel> | 307 | name="Create New" /> |
291 | <panel label="μ¬ν·" name="Jacket"> | 308 | <button label="λ²κΈ°" label_selected="λ²κΈ°" name="Take Off" /> |
292 | <button label="μ μ¬ν· μμ±" label_selected="μ μ¬ν· μμ±" name="Create New" /> | ||
293 | <button label="μ΄λ₯" label_selected="μ΄λ₯" name="Take Off" /> | ||
294 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | 309 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> |
295 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" | 310 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" |
296 | name="Save As" /> | 311 | name="Save As" /> |
297 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> | 312 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> |
313 | </panel> | ||
314 | <panel label="μ¬ν·" name="Jacket"> | ||
298 | <text type="string" length="1" name="title"> | 315 | <text type="string" length="1" name="title"> |
299 | [DESC] | 316 | [DESC] |
300 | </text> | 317 | </text> |
301 | <text type="string" length="1" name="title_no_modify"> | 318 | <text type="string" length="1" name="title_no_modify"> |
302 | [DESC]: μμ ν μ μμ΅λλ€ | 319 | [DESC]: μμ λΆκ° |
303 | </text> | 320 | </text> |
304 | <text type="string" length="1" name="title_loading"> | 321 | <text type="string" length="1" name="title_loading"> |
305 | [DESC]: λ‘λ©μ€... | 322 | [DESC]: λ‘λ μ€... |
306 | </text> | 323 | </text> |
307 | <text type="string" length="1" name="title_not_worn"> | 324 | <text type="string" length="1" name="title_not_worn"> |
308 | [DESC]: λ§λͺ¨λμ§ μμ΅λλ€ | 325 | [DESC]: μ°©μ© μ ν¨ |
309 | </text> | 326 | </text> |
310 | <text type="string" length="1" name="path"> | 327 | <text type="string" length="1" name="path"> |
311 | [PATH]μ μμΉ | 328 | [PATH]μ μμΉν¨ |
312 | </text> | 329 | </text> |
313 | <text type="string" length="1" name="not worn instructions"> | 330 | <text type="string" length="1" name="not worn instructions"> |
314 | 보κ΄ν¨ μΌλ‘λΆν° μλ‘μ΄ μ¬ν·μ λλκ·Ένμ¬ μλ°νμκ² μ μ©ν΄ 보μμμ€. λλ μ€ν¬λ«μΉμμ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | 331 | μΈλ²€ν 리λ‘λΆν° μ μ¬ν·μ λλκ·Ένμ¬ |
332 | μλ°νμ μ μ©ν΄ 보μμμ€.λλ, | ||
333 | μ‘°μ μ¬λΌμ΄λλ‘ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | ||
315 | </text> | 334 | </text> |
316 | <text type="string" length="1" name="no modify instructions"> | 335 | <text type="string" length="1" name="no modify instructions"> |
317 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. | 336 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. |
318 | </text> | 337 | </text> |
338 | <texture_picker label="μλ°μ μ·κ°" name="Upper Fabric" | ||
339 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
340 | <texture_picker label="νλ¨ μ·κ°" name="Lower Fabric" | ||
341 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
319 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" | 342 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" |
320 | tool_tip="ν΄λ¦ν΄ μ νΌμ»€λ₯Ό μ¬μμμ€" /> | 343 | tool_tip="μ κ΄λ¦¬κΈ°λ₯Ό μ΄λ €λ©΄ ν΄λ¦ νμμμ€." /> |
321 | <texture_picker label="μ·κ° μ¬λ¦¬κΈ°" name="Upper Fabric" | 344 | <button label="μ μ¬ν· λ§λ€κΈ°" label_selected="μ μ¬ν· λ§λ€κΈ°" |
322 | tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 345 | name="Create New" /> |
323 | <texture_picker label="μ·κ° λμΆκΈ°" name="Lower Fabric" | 346 | <button label="λ²κΈ°" label_selected="λ²κΈ°" name="Take Off" /> |
324 | tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | ||
325 | </panel> | ||
326 | <panel label="μ₯κ°" name="Gloves"> | ||
327 | <button label="μ μ₯κ° μμ±" label_selected="μ μ₯κ° μμ±" name="Create New" /> | ||
328 | <button label="μ΄λ₯" label_selected="μ΄λ₯" name="Take Off" /> | ||
329 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | 347 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> |
330 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" | 348 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" |
331 | name="Save As" /> | 349 | name="Save As" /> |
332 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> | 350 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> |
351 | </panel> | ||
352 | <panel label="μ₯κ°" name="Gloves"> | ||
333 | <text type="string" length="1" name="title"> | 353 | <text type="string" length="1" name="title"> |
334 | [DESC] | 354 | [DESC] |
335 | </text> | 355 | </text> |
336 | <text type="string" length="1" name="title_no_modify"> | 356 | <text type="string" length="1" name="title_no_modify"> |
337 | [DESC]: μμ ν μ μμ΅λλ€ | 357 | [DESC]: μμ λΆκ° |
338 | </text> | 358 | </text> |
339 | <text type="string" length="1" name="title_loading"> | 359 | <text type="string" length="1" name="title_loading"> |
340 | [DESC]: λ‘λ©μ€... | 360 | [DESC]: λ‘λ μ€... |
341 | </text> | 361 | </text> |
342 | <text type="string" length="1" name="title_not_worn"> | 362 | <text type="string" length="1" name="title_not_worn"> |
343 | [DESC]: λ§λͺ¨λμ§ μμ΅λλ€ | 363 | [DESC]: μ°©μ© μ ν¨ |
344 | </text> | 364 | </text> |
345 | <text type="string" length="1" name="path"> | 365 | <text type="string" length="1" name="path"> |
346 | [PATH]μ μμΉ | 366 | [PATH]μ μμΉν¨ |
347 | </text> | 367 | </text> |
348 | <text type="string" length="1" name="not worn instructions"> | 368 | <text type="string" length="1" name="not worn instructions"> |
349 | 보κ΄ν¨ μΌλ‘λΆν° μλ‘μ΄ μ₯κ°μ λλκ·Ένμ¬ μλ°νμκ² μ μ©ν΄ 보μμμ€. λλ μ€ν¬λ«μΉμμ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | 369 | μΈλ²€ν 리λ‘λΆν° μ μ₯κ°μ λλκ·Ένμ¬ μλ°νμ μ μ©ν΄ 보μμμ€.λλ, |
370 | μ‘°μ μ¬λΌμ΄λλ‘ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | ||
350 | </text> | 371 | </text> |
351 | <text type="string" length="1" name="no modify instructions"> | 372 | <text type="string" length="1" name="no modify instructions"> |
352 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. | 373 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. |
353 | </text> | 374 | </text> |
375 | <texture_picker label="μ·κ°" name="Fabric" | ||
376 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
354 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" | 377 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" |
355 | tool_tip="ν΄λ¦ν΄ μ νΌμ»€λ₯Ό μ¬μμμ€" /> | 378 | tool_tip="μ κ΄λ¦¬κΈ°λ₯Ό μ΄λ €λ©΄ ν΄λ¦ νμμμ€." /> |
356 | <texture_picker label="μ·κ°" name="Fabric" tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 379 | <button label="μ μ₯κ° λ§λ€κΈ°" label_selected="μ μ₯κ° λ§λ€κΈ°" |
357 | </panel> | ||
358 | <panel label="μμ μΈ " name="Undershirt"> | ||
359 | <button label="μ μμ μΈ μμ±" label_selected="μ μμ μΈ μμ±" | ||
360 | name="Create New" /> | 380 | name="Create New" /> |
361 | <button label="μ΄λ₯" label_selected="μ΄λ₯" name="Take Off" /> | 381 | <button label="λ²κΈ°" label_selected="λ²κΈ°" name="Take Off" /> |
362 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | 382 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> |
363 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" | 383 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" |
364 | name="Save As" /> | 384 | name="Save As" /> |
365 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> | 385 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> |
386 | </panel> | ||
387 | <panel label="λ΄μ(μ)" name="Undershirt"> | ||
366 | <text type="string" length="1" name="title"> | 388 | <text type="string" length="1" name="title"> |
367 | [DESC] | 389 | [DESC] |
368 | </text> | 390 | </text> |
369 | <text type="string" length="1" name="title_no_modify"> | 391 | <text type="string" length="1" name="title_no_modify"> |
370 | [DESC]: μμ ν μ μμ΅λλ€ | 392 | [DESC]: μμ λΆκ° |
371 | </text> | 393 | </text> |
372 | <text type="string" length="1" name="title_loading"> | 394 | <text type="string" length="1" name="title_loading"> |
373 | [DESC]: λ‘λ©μ€... | 395 | [DESC]: λ‘λ μ€... |
374 | </text> | 396 | </text> |
375 | <text type="string" length="1" name="title_not_worn"> | 397 | <text type="string" length="1" name="title_not_worn"> |
376 | [DESC]: λ§λͺ¨λμ§ μμ΅λλ€ | 398 | [DESC]: μ°©μ© μ ν¨ |
377 | </text> | 399 | </text> |
378 | <text type="string" length="1" name="path"> | 400 | <text type="string" length="1" name="path"> |
379 | [PATH]μ μμΉ | 401 | [PATH]μ μμΉν¨ |
380 | </text> | 402 | </text> |
381 | <text type="string" length="1" name="not worn instructions"> | 403 | <text type="string" length="1" name="not worn instructions"> |
382 | μ μ₯κ³ μμ μλ‘μ΄ μμ μΈ λ₯Ό λλκ·Ένμ¬ μλ°νμκ² μ¬μ©ν΄ 보μμμ€. λλ μ€ν¬λ«μΉμμ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€ | 404 | μΈλ²€ν 리λ‘λΆν° μ λ΄μ(μ)μ λλκ·Ένμ¬ |
405 | μλ°νμ μ μ©ν΄ 보μμμ€.λλ, | ||
406 | μ‘°μ μ¬λΌμ΄λλ‘ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | ||
383 | </text> | 407 | </text> |
384 | <text type="string" length="1" name="no modify instructions"> | 408 | <text type="string" length="1" name="no modify instructions"> |
385 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. | 409 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. |
386 | </text> | 410 | </text> |
411 | <texture_picker label="μ·κ°" name="Fabric" | ||
412 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
387 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" | 413 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" |
388 | tool_tip="ν΄λ¦ν΄ μ νΌμ»€λ₯Ό μ¬μμμ€" /> | 414 | tool_tip="μ κ΄λ¦¬κΈ°λ₯Ό μ΄λ €λ©΄ ν΄λ¦ νμμμ€." /> |
389 | <texture_picker label="μ·κ°" name="Fabric" tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 415 | <button label="μ λ΄μ(μ) λ§λ€κΈ°" label_selected="μ λ΄μ(μ) λ§λ€κΈ°" |
390 | </panel> | ||
391 | <panel label="μλ°μ§" name="Underpants"> | ||
392 | <button label="μ μλ°μ§ μμ±" label_selected="μ μλ°μ§ μμ±" | ||
393 | name="Create New" /> | 416 | name="Create New" /> |
394 | <button label="μ΄λ₯" label_selected="μ΄λ₯" name="Take Off" /> | 417 | <button label="λ²κΈ°" label_selected="λ²κΈ°" name="Take Off" /> |
395 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | 418 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> |
396 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" | 419 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" |
397 | name="Save As" /> | 420 | name="Save As" /> |
398 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> | 421 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> |
422 | </panel> | ||
423 | <panel label="λ΄μ(ν)" name="Underpants"> | ||
399 | <text type="string" length="1" name="title"> | 424 | <text type="string" length="1" name="title"> |
400 | [DESC] | 425 | [DESC] |
401 | </text> | 426 | </text> |
402 | <text type="string" length="1" name="title_no_modify"> | 427 | <text type="string" length="1" name="title_no_modify"> |
403 | [DESC]: μμ ν μ μμ΅λλ€ | 428 | [DESC]: μμ λΆκ° |
404 | </text> | 429 | </text> |
405 | <text type="string" length="1" name="title_loading"> | 430 | <text type="string" length="1" name="title_loading"> |
406 | [DESC]: λ‘λ©μ€... | 431 | [DESC]: λ‘λ μ€... |
407 | </text> | 432 | </text> |
408 | <text type="string" length="1" name="title_not_worn"> | 433 | <text type="string" length="1" name="title_not_worn"> |
409 | [DESC]: λ§λͺ¨λμ§ μμ΅λλ€ | 434 | [DESC]: μ°©μ© μ ν¨ |
410 | </text> | 435 | </text> |
411 | <text type="string" length="1" name="path"> | 436 | <text type="string" length="1" name="path"> |
412 | [PATH]μ μμΉ | 437 | [PATH]μ μμΉν¨ |
413 | </text> | 438 | </text> |
414 | <text type="string" length="1" name="not worn instructions"> | 439 | <text type="string" length="1" name="not worn instructions"> |
415 | 보κ΄ν¨μμ μλ‘μ΄ μλ°μ§λ₯Ό λλκ·Ένμ¬ μλ°νμκ² μ¬μ©ν΄ 보μμμ€. λλ μ€ν¬λ«μΉμμ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | 440 | μΈλ²€ν 리λ‘λΆν° μ λ΄μ(ν)μ λλκ·Ένμ¬ |
441 | μλ°νμ μ μ©ν΄ 보μμμ€.λλ, | ||
442 | μ‘°μ μ¬λΌμ΄λλ‘ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | ||
416 | </text> | 443 | </text> |
417 | <text type="string" length="1" name="no modify instructions"> | 444 | <text type="string" length="1" name="no modify instructions"> |
418 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. | 445 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. |
419 | </text> | 446 | </text> |
447 | <texture_picker label="μ·κ°" name="Fabric" | ||
448 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
420 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" | 449 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" |
421 | tool_tip="ν΄λ¦ν΄ μ νΌμ»€λ₯Ό μ¬μμμ€" /> | 450 | tool_tip="μ κ΄λ¦¬κΈ°λ₯Ό μ΄λ €λ©΄ ν΄λ¦ νμμμ€." /> |
422 | <texture_picker label="μ·κ°" name="Fabric" tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 451 | <button label="μ λ΄μ(ν) λ§λ€κΈ°" label_selected="μ λ΄μ(ν) λ§λ€κΈ°" |
423 | </panel> | ||
424 | <panel label="μΉλ§" name="Skirt"> | ||
425 | <button label="μ μ€μ»€νΈ μμ±" label_selected="μ μ€μ»€νΈ μμ±" | ||
426 | name="Create New" /> | 452 | name="Create New" /> |
427 | <button label="μ΄λ₯" label_selected="μ΄λ₯" name="Take Off" /> | 453 | <button label="λ²κΈ°" label_selected="λ²κΈ°" name="Take Off" /> |
428 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | 454 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> |
429 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" | 455 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" |
430 | name="Save As" /> | 456 | name="Save As" /> |
431 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> | 457 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> |
458 | </panel> | ||
459 | <panel label="μΉλ§" name="Skirt"> | ||
432 | <text type="string" length="1" name="title"> | 460 | <text type="string" length="1" name="title"> |
433 | [DESC] | 461 | [DESC] |
434 | </text> | 462 | </text> |
435 | <text type="string" length="1" name="title_no_modify"> | 463 | <text type="string" length="1" name="title_no_modify"> |
436 | [DESC]: μμ ν μ μμ΅λλ€ | 464 | [DESC]: μμ λΆκ° |
437 | </text> | 465 | </text> |
438 | <text type="string" length="1" name="title_loading"> | 466 | <text type="string" length="1" name="title_loading"> |
439 | [DESC]: λ‘λ©μ€... | 467 | [DESC]: λ‘λ μ€... |
440 | </text> | 468 | </text> |
441 | <text type="string" length="1" name="title_not_worn"> | 469 | <text type="string" length="1" name="title_not_worn"> |
442 | [DESC]: λ§λͺ¨λμ§ μμ΅λλ€ | 470 | [DESC]: μ°©μ© μ ν¨ |
443 | </text> | 471 | </text> |
444 | <text type="string" length="1" name="path"> | 472 | <text type="string" length="1" name="path"> |
445 | [PATH]μ μμΉ | 473 | [PATH]μ μμΉν¨ |
446 | </text> | 474 | </text> |
447 | <text type="string" length="1" name="not worn instructions"> | 475 | <text type="string" length="1" name="not worn instructions"> |
448 | 보κ΄ν¨μμ μλ‘μ΄ μ€μ»€νΈλ₯Ό λλκ·Ένμ¬ μλ°νμκ² μ¬μ©ν΄ 보μμμ€. λλ μ€ν¬λ«μΉμμ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ | 476 | μΈλ²€ν 리λ‘λΆν° μ μ€μ»€νΈλ₯Ό λλκ·Ένμ¬ |
477 | μλ°νμ μ μ©ν΄ 보μμμ€.λλ, | ||
478 | μ‘°μ μ¬λΌμ΄λλ‘ μλ‘μ΄ ννλ₯Ό λ§λ€μ΄ μ¬μ©ν μλ μμ΅λλ€. | ||
449 | </text> | 479 | </text> |
450 | <text type="string" length="1" name="no modify instructions"> | 480 | <text type="string" length="1" name="no modify instructions"> |
451 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. | 481 | μ΄ μ°©μ©λ¬Όμ μμ ν κΆνμ΄ μμ΅λλ€. |
452 | </text> | 482 | </text> |
483 | <texture_picker label="μ·κ°" name="Fabric" | ||
484 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
453 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" | 485 | <color_swatch label="μμ/μμ‘°" name="Color/Tint" |
454 | tool_tip="ν΄λ¦ν΄ μ νΌμ»€λ₯Ό μ¬μμμ€" /> | 486 | tool_tip="μ κ΄λ¦¬κΈ°λ₯Ό μ΄λ €λ©΄ ν΄λ¦ νμμμ€." /> |
455 | <texture_picker label="μ·κ°" name="Fabric" tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 487 | <button label="μ μΉλ§ λ§λ€κΈ°" label_selected="μ μΉλ§ λ§λ€κΈ°" |
488 | name="Create New" /> | ||
489 | <button label="λ²κΈ°" label_selected="λ²κΈ°" name="Take Off" /> | ||
490 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | ||
491 | <button label="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" label_selected="λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" | ||
492 | name="Save As" /> | ||
493 | <button label="λλ리기" label_selected="λλ리기" name="Revert" /> | ||
456 | </panel> | 494 | </panel> |
457 | </tab_container> | 495 | </tab_container> |
458 | <button label="볡μ₯ λ§λ€κΈ°" label_selected="볡μ₯ λ§λ€κΈ°" name="Make Outfit" /> | 496 | <button label="볡μ₯ λ§λ€κΈ°" label_selected="볡μ₯ λ§λ€κΈ°" name="Make Outfit" /> |
459 | <button label="μ 체 μ μ₯" label_selected="μ 체 μ μ₯" name="Save All" /> | 497 | <button label="λͺ¨λ μ μ₯" label_selected="λͺ¨λ μ μ₯" name="Save All" /> |
460 | <button label="λ«κΈ°" label_selected="λ«κΈ°" name="Close" /> | 498 | <button label="λ«κΈ°" label_selected="λ«κΈ°" name="Close" /> |
461 | </floater> | 499 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_directory.xml b/linden/indra/newview/skins/xui/ko/floater_directory.xml index 08902e9..4bc5b3e 100644 --- a/linden/indra/newview/skins/xui/ko/floater_directory.xml +++ b/linden/indra/newview/skins/xui/ko/floater_directory.xml | |||
@@ -1,12 +1,19 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="directory" title="κ²μ"> | 2 | <floater name="directory" title="κ²μ"> |
3 | <tab_container name="Directory Tabs"> | 3 | <tab_container name="Directory Tabs"> |
4 | <panel label="μ 체" name="all_panel"> | 4 | <panel label="λͺ¨λ" name="all_panel"> |
5 | <button label="< μ΄μ " label_selected="< μ΄μ " name="< Prev" /> | ||
6 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> | ||
7 | <text name="find"> | ||
8 | μ°ΎκΈ°: | ||
9 | </text> | ||
10 | <button label="κ²μ" label_selected="κ²μ" name="Search" /> | ||
11 | <check_box label="μ±μΈμ© 컨ν μΈ ν¬ν¨" name="incmature" /> | ||
5 | <scroll_list name="results"> | 12 | <scroll_list name="results"> |
6 | <column label="" name="icon" /> | 13 | <column label="" name="icon" /> |
7 | <column label="Name" name="name" /> | 14 | <column label="Name" name="name" /> |
8 | <column label="Price" name="price" /> | 15 | <column label="Price" name="price" /> |
9 | <column label="Time (PDT)" name="date" /> | 16 | <column label="Time (PT)" name="date" /> |
10 | <column label="Time" name="time" /> | 17 | <column label="Time" name="time" /> |
11 | <column label="Traffic" name="dwell" /> | 18 | <column label="Traffic" name="dwell" /> |
12 | <column label="Area" name="area" /> | 19 | <column label="Area" name="area" /> |
@@ -14,27 +21,14 @@ | |||
14 | <column label="Online" name="online" /> | 21 | <column label="Online" name="online" /> |
15 | <column label="Members" name="members" /> | 22 | <column label="Members" name="members" /> |
16 | </scroll_list> | 23 | </scroll_list> |
17 | <button label="< μμΌλ‘" label_selected="< μμΌλ‘" name="< Prev" /> | ||
18 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> | ||
19 | <text name="find"> | ||
20 | μ°ΎκΈ°: | ||
21 | </text> | ||
22 | <button label="κ²μ" label_selected="κ²μ" name="Search" /> | ||
23 | <check_box label="μ±μΈμ© λ΄μ© ν¬ν¨" name="incmature" /> | ||
24 | </panel> | 24 | </panel> |
25 | <panel label="κ΄κ³ " name="classified_panel"> | 25 | <panel label="κ΄κ³ " name="classified_panel"> |
26 | <scroll_list name="results"> | 26 | <button label="< μ΄μ " label_selected="< μ΄μ " name="< Prev" /> |
27 | <column label="" name="icon" /> | ||
28 | <column label="" name="type" /> | ||
29 | <column label="Name" name="name" /> | ||
30 | <column label="Price" name="price" /> | ||
31 | </scroll_list> | ||
32 | <button label="< μμΌλ‘" label_selected="< μμΌλ‘" name="< Prev" /> | ||
33 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> | 27 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> |
34 | <text name="find"> | 28 | <text name="find"> |
35 | μ°ΎκΈ°: | 29 | μ°ΎκΈ°: |
36 | </text> | 30 | </text> |
37 | <check_box label="μ±μΈμ© λ΄μ© ν¬ν¨" name="incmature" /> | 31 | <check_box label="μ±μΈμ© 컨ν μΈ ν¬ν¨" name="incmature" /> |
38 | <combo_box name="Category"> | 32 | <combo_box name="Category"> |
39 | <combo_item name="AnyCategory"> | 33 | <combo_item name="AnyCategory"> |
40 | λͺ¨λ μΉ΄ν κ³ λ¦¬ | 34 | λͺ¨λ μΉ΄ν κ³ λ¦¬ |
@@ -46,57 +40,53 @@ | |||
46 | ν μ§ μλ | 40 | ν μ§ μλ |
47 | </combo_item> | 41 | </combo_item> |
48 | <combo_item name="PropertyRental"> | 42 | <combo_item name="PropertyRental"> |
49 | λΆλμ° μλ | 43 | μμ λ¬Ό μλ |
50 | </combo_item> | 44 | </combo_item> |
51 | <combo_item name="SpecialAttraction"> | 45 | <combo_item name="SpecialAttraction"> |
52 | λͺ μ | 46 | λͺ λ¬Ό |
53 | </combo_item> | 47 | </combo_item> |
54 | <combo_item name="NewProducts"> | 48 | <combo_item name="NewProducts"> |
55 | μ μ ν | 49 | μ μ ν |
56 | </combo_item> | 50 | </combo_item> |
57 | <combo_item name="Employment"> | 51 | <combo_item name="Employment"> |
58 | μ·¨μ | 52 | μΌμ리 |
59 | </combo_item> | 53 | </combo_item> |
60 | <combo_item name="Wanted"> | 54 | <combo_item name="Wanted"> |
61 | κ΅¬ν¨ | 55 | λͺ¨μ§ |
62 | </combo_item> | 56 | </combo_item> |
63 | <combo_item name="Service"> | 57 | <combo_item name="Service"> |
64 | μλΉμ€ | 58 | μλΉμ€ |
65 | </combo_item> | 59 | </combo_item> |
66 | <combo_item name="Personal"> | 60 | <combo_item name="Personal"> |
67 | μ¬μ | 61 | κ°μΈ |
68 | </combo_item> | 62 | </combo_item> |
69 | </combo_box> | 63 | </combo_box> |
70 | <button label="κ²μ" label_selected="κ²μ" name="Search" /> | 64 | <button label="κ²μ" label_selected="κ²μ" name="Search" /> |
71 | <button label="κ΄κ³ λ΄κΈ°..." label_selected="κ΄κ³ λ΄κΈ°..." | 65 | <button label="κ΄κ³ λ΄κΈ°β¦" label_selected="κ΄κ³ λ΄κΈ°β¦" |
72 | name="Place an Ad..." /> | 66 | name="Place an Ad..." /> |
73 | <button label="μμ " label_selected="μμ " name="Delete" /> | 67 | <button label="μμ " label_selected="μμ " name="Delete" /> |
74 | </panel> | ||
75 | <panel label="μ΄λ²€νΈ" name="events_panel"> | ||
76 | <scroll_list name="results"> | 68 | <scroll_list name="results"> |
77 | <column label="" name="icon" /> | 69 | <column label="" name="icon" /> |
78 | <column label="" name="type" /> | 70 | <column label="" name="type" /> |
79 | <column label="Name" name="name" /> | 71 | <column label="Name" name="name" /> |
80 | <column label="Time (PDT)" name="date" /> | 72 | <column label="Price" name="price" /> |
81 | <column label="" name="event_id" /> | ||
82 | <column label="Time" name="time" /> | ||
83 | </scroll_list> | 73 | </scroll_list> |
84 | <button label="< μμΌλ‘" label_selected="< μμΌλ‘" name="< Prev" /> | 74 | </panel> |
85 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> | 75 | <panel label="μ΄λ²€νΈ" name="events_panel"> |
86 | <radio_group name="date_mode"> | 76 | <radio_group name="date_mode"> |
87 | <radio_item name="current"> | 77 | <radio_item name="current"> |
88 | μμ μ§νκ³Ό λ€μκ³Όμ | 78 | μμ μ§νκ³Ό λ€μκ³Όμ |
89 | </radio_item> | 79 | </radio_item> |
90 | <radio_item name="date"> | 80 | <radio_item name="date"> |
91 | λ μ§ | 81 | λ μ§ |
92 | </radio_item> | 82 | </radio_item> |
93 | </radio_group> | 83 | </radio_group> |
94 | <button label="<<" label_selected="<<" name="<<" | 84 | <button label="<<Β " label_selected="<<Β " name="<<" |
95 | tool_tip="ν루λ₯Ό κ±°μ¬λ¬ κ°λλ€" /> | 85 | tool_tip="ν루λ₯Ό κ±°μ¬λ¬ κ°λλ€" /> |
96 | <text name="date_text"> | 86 | <text name="date_text"> |
97 | 6/6 | 87 | 6/6 |
98 | </text> | 88 | </text> |
99 | <button label=">>" label_selected=">>" name=">>" | 89 | <button label=">>Β " label_selected=">>Β " name=">>" |
100 | tool_tip="ν루λ₯Ό μμ κ°λλ€" /> | 90 | tool_tip="ν루λ₯Ό μμ κ°λλ€" /> |
101 | <button label="μ€λ" label_selected="μ€λ" name="Today" | 91 | <button label="μ€λ" label_selected="μ€λ" name="Today" |
102 | tool_tip="μ€λμ μ΄λ²€νΈ νμ" /> | 92 | tool_tip="μ€λμ μ΄λ²€νΈ νμ" /> |
@@ -108,7 +98,7 @@ | |||
108 | </text> | 98 | </text> |
109 | <combo_box name="category combo"> | 99 | <combo_box name="category combo"> |
110 | <combo_item name="All"> | 100 | <combo_item name="All"> |
111 | μ 체 | 101 | λͺ¨λ |
112 | </combo_item> | 102 | </combo_item> |
113 | <combo_item name="Discussion"> | 103 | <combo_item name="Discussion"> |
114 | ν μ | 104 | ν μ |
@@ -123,58 +113,59 @@ | |||
123 | μμ | 113 | μμ |
124 | </combo_item> | 114 | </combo_item> |
125 | <combo_item name="Nightlife/Entertainment"> | 115 | <combo_item name="Nightlife/Entertainment"> |
126 | μ¬ν₯/μν°ν μΈλ¨ΌνΈ | 116 | μ ν₯/μν°ν μΈλ¨ΌνΈ |
127 | </combo_item> | 117 | </combo_item> |
128 | <combo_item name="Games/Contests"> | 118 | <combo_item name="Games/Contests"> |
129 | κ²μ/κ²½μ°λν | 119 | κ²μ/κ²½μ°λν |
130 | </combo_item> | 120 | </combo_item> |
131 | <combo_item name="Pageants"> | 121 | <combo_item name="Pageants"> |
132 | νμ¬ | 122 | μ μν |
133 | </combo_item> | 123 | </combo_item> |
134 | <combo_item name="Education"> | 124 | <combo_item name="Education"> |
135 | κ΅μ‘ | 125 | κ΅μ‘ |
136 | </combo_item> | 126 | </combo_item> |
137 | <combo_item name="ArtsandCulture"> | 127 | <combo_item name="ArtsandCulture"> |
138 | μμ κ³Ό λ¬Έν | 128 | μμ / λ¬Έν |
139 | </combo_item> | 129 | </combo_item> |
140 | <combo_item name="Charity/SupportGroups"> | 130 | <combo_item name="Charity/SupportGroups"> |
141 | μμ /μ§μ λ¨μ²΄ | 131 | μμ /μ§μλ¨μ²΄ |
142 | </combo_item> | 132 | </combo_item> |
143 | <combo_item name="Miscellaneous"> | 133 | <combo_item name="Miscellaneous"> |
144 | κΈ°ν | 134 | λ€λͺ©μ |
145 | </combo_item> | 135 | </combo_item> |
146 | </combo_box> | 136 | </combo_box> |
147 | <check_box label="μ±μΈμ© νμνκΈ°" name="incmature" /> | 137 | <check_box label="μ±μΈμ© ν¬ν¨" name="incmature" /> |
148 | <button label="κ²μ" label_selected="κ²μ" name="Search" tool_tip="κ²μ" /> | 138 | <button label="κ²μ" label_selected="κ²μ" name="Search" tool_tip="κ²μ" /> |
149 | <button label="μμ " label_selected="μμ " name="Delete" /> | 139 | <button label="μμ " label_selected="μμ " name="Delete" /> |
150 | </panel> | ||
151 | <panel label="μΈκΈ° μ₯μ" name="popular_panel"> | ||
152 | <scroll_list name="results"> | 140 | <scroll_list name="results"> |
153 | <column label="" name="icon" /> | 141 | <column label="" name="icon" /> |
154 | <column label="" name="type" /> | 142 | <column label="" name="type" /> |
155 | <column label="Name" name="name" /> | 143 | <column label="Name" name="name" /> |
156 | <column label="Traffic" name="dwell" /> | 144 | <column label="Time (PT)" name="date" /> |
145 | <column label="" name="event_id" /> | ||
146 | <column label="Time" name="time" /> | ||
157 | </scroll_list> | 147 | </scroll_list> |
158 | <button label="< μμΌλ‘" label_selected="< μμΌλ‘" name="< Prev" /> | 148 | <button label="< μ΄μ " label_selected="< μ΄μ " name="< Prev" /> |
149 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> | ||
150 | </panel> | ||
151 | <panel label="μΈκΈ° μ₯μ" name="popular_panel"> | ||
152 | <button label="< μ΄μ " label_selected="< μ΄μ " name="< Prev" /> | ||
159 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> | 153 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> |
160 | <check_box label="κ·Έλ¦Όμλ μ₯μλ§ λ³΄κΈ°" name="incpictures" /> | 154 | <check_box label="μ¬μ§μ΄ μλ μ₯μλ§ λ³΄κΈ°" name="incpictures" /> |
161 | <check_box label="μ±μΈμ© μ§μ μ₯μ ν¬ν¨" name="incmature" /> | 155 | <check_box label="μ±μΈμ© 컨ν μΈ κ΅¬ν ν¬ν¨" name="incmature" /> |
162 | <text | 156 | <text |
163 | name="These are the most popular places in the world, as measured by traffic, the amount of time people spend there."> | 157 | name="These are the most popular places in the world, as measured by traffic, the amount of time people spend there."> |
164 | ν΅νλ, μ¦ μ¬λλ€μ΄ ν΄λΉ μ₯μμμ 보λ΄λ μκ°μ κΈ°μ€μΌλ‘ | 158 | λ³Έ μ₯μλ€μ ν΅νλ(μ¬λλ€μ΄ ν΄λΉ μ₯μμμ 보λ΄λ μκ°μ κΈ°μ€)μ λ°λ₯Έ κ°μ₯ μΈκΈ° μλ μ₯μλ€μ λλ€. |
165 | μΈμμμ κ°μ₯ μΈκΈ°μλ μ₯μλ€μ λλ€. | ||
166 | </text> | 159 | </text> |
167 | </panel> | ||
168 | <panel label="ν μ§ν맀" name="land_sales_panel"> | ||
169 | <scroll_list name="results"> | 160 | <scroll_list name="results"> |
170 | <column label="" name="icon" /> | 161 | <column label="" name="icon" /> |
171 | <column label="" name="type" /> | 162 | <column label="" name="type" /> |
172 | <column label="Name" name="name" /> | 163 | <column label="Name" name="name" /> |
173 | <column label="L$ Price" name="price" /> | 164 | <column label="Traffic" name="dwell" /> |
174 | <column label="Area" name="area" /> | ||
175 | <column label="L$/sq.m" name="per_meter" /> | ||
176 | </scroll_list> | 165 | </scroll_list> |
177 | <button label="< μμΌλ‘" label_selected="< μμΌλ‘" name="< Prev" /> | 166 | </panel> |
167 | <panel label="ν μ§ λ§€λ¬Ό" name="land_sales_panel"> | ||
168 | <button label="< μ΄μ " label_selected="< μ΄μ " name="< Prev" /> | ||
178 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> | 169 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> |
179 | <combo_box name="type"> | 170 | <combo_box name="type"> |
180 | <combo_item name="AllTypes"> | 171 | <combo_item name="AllTypes"> |
@@ -183,54 +174,56 @@ | |||
183 | <combo_item name="Auction"> | 174 | <combo_item name="Auction"> |
184 | 경맀 | 175 | 경맀 |
185 | </combo_item> | 176 | </combo_item> |
186 | <combo_item name="ForSale"> | 177 | <combo_item name="MainlandSales"> |
187 | 맀물 | 178 | λ©μΈλλ 맀물 |
188 | </combo_item> | 179 | </combo_item> |
189 | <combo_item name="FirstLand"> | 180 | <combo_item name="EstateSales"> |
190 | 첫 ν μ§ | 181 | μ¬μ μ§ λ§€λ¬Ό |
191 | </combo_item> | 182 | </combo_item> |
192 | </combo_box> | 183 | </combo_box> |
193 | <combo_box name="rating"> | 184 | <combo_box name="rating"> |
194 | <combo_item name="PG&Mature"> | 185 | <combo_item name="PG&Mature"> |
195 | PG(보νΈμ μ§λ νμ) & μ±μΈμ© | 186 | λ―Έμ±μΈ & μ±μΈ |
196 | </combo_item> | 187 | </combo_item> |
197 | <combo_item name="PGonly"> | 188 | <combo_item name="PGonly"> |
198 | λ°λμ 보νΈμ μ§λ νμ | 189 | λ―Έμ±μΈ μ μ© |
199 | </combo_item> | 190 | </combo_item> |
200 | <combo_item name="Matureonly"> | 191 | <combo_item name="Matureonly"> |
201 | λ―Έμ±λ μ λΆκ° | 192 | μ±μΈ μ μ© |
202 | </combo_item> | 193 | </combo_item> |
203 | </combo_box> | 194 | </combo_box> |
204 | <check_box label="κ°κ²© <= L$" name="pricecheck" /> | 195 | <check_box label="κ°κ²©<=L$" name="pricecheck" /> |
205 | <check_box label="λ©΄μ >= sq.m.(νλ°© λ―Έν°)" name="areacheck" /> | 196 | <check_box label="λ©΄μ >=sq.m." name="areacheck" /> |
206 | <button label="κ²μ" label_selected="κ²μ" name="Search" /> | 197 | <button label="κ²μ" label_selected="κ²μ" name="Search" /> |
207 | <text name="land"> | 198 | <text name="land"> |
208 | ν μ§λ λ¦°λ λ¬λ¬(L$)λ₯Ό μ§λΆνκ³ μ§μ 맀μ νκ±°λ, L$ λλ λ―Έκ΅ λ¬λ¬(US$)λ₯Ό μ§λΆνκ³ κ²½λ§€λ₯Ό ν΅ν΄ 맀μ ν μ μμ΅λλ€. | 199 | ν μ§λ λ¦°λ λ¬λ¬(L$)λ‘ μ§μ ꡬ맀, λλ λ¦°λ λ¬λ¬(L$)λ US$λ‘ κ²½λ§€νμ¬ κ΅¬λ§€ν μ μμ΅λλ€. |
209 | μ§μ ꡬ맀νμλ €λ©΄, ν΄λΉ ν μ§λ‘ κ°μ μ λͺ© λ°μ μλ μ₯μλͺ μ ν΄λ¦νμμμ€. | 200 | μ§μ ꡬ맀νλ €λ©΄, ν μ§λ₯Ό λ°©λ¬Ένμ¬ νμ΄ν λ°μ μλ μ₯μ μ΄λ¦μ ν΄λ¦ νμμμ€! |
210 | </text> | 201 | </text> |
211 | </panel> | ||
212 | <panel label="μ₯μ" name="places_panel"> | ||
213 | <scroll_list name="results"> | 202 | <scroll_list name="results"> |
214 | <column label="" name="icon" /> | 203 | <column label="" name="icon" /> |
215 | <column label="" name="type" /> | 204 | <column label="" name="type" /> |
216 | <column label="Name" name="name" /> | 205 | <column label="Name" name="name" /> |
217 | <column label="Traffic" name="dwell" /> | 206 | <column label="L$ Price" name="price" /> |
207 | <column label="Area" name="area" /> | ||
208 | <column label="L$/sq.m" name="per_meter" /> | ||
218 | </scroll_list> | 209 | </scroll_list> |
219 | <button label="< μμΌλ‘" label_selected="< μμΌλ‘" name="< Prev" /> | 210 | </panel> |
211 | <panel label="μ₯μ" name="places_panel"> | ||
212 | <button label="< μ΄μ " label_selected="< μ΄μ " name="< Prev" /> | ||
220 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> | 213 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> |
221 | <text name="find"> | 214 | <text name="find"> |
222 | μ°ΎκΈ°: | 215 | μ°ΎκΈ°: |
223 | </text> | 216 | </text> |
224 | <check_box label="μ±μΈμ© μ§μ μ₯μ ν¬ν¨" name="incmature" /> | 217 | <check_box label="μ±μΈμ© 컨ν μΈ κ΅¬ν ν¬ν¨" name="incmature" /> |
225 | <combo_box name="Category"> | 218 | <combo_box name="Category"> |
226 | <combo_item name="AnyCategory"> | 219 | <combo_item name="AnyCategory"> |
227 | λͺ¨λ μΉ΄ν κ³ λ¦¬ | 220 | λͺ¨λ μΉ΄ν κ³ λ¦¬ |
228 | </combo_item> | 221 | </combo_item> |
229 | <combo_item name="LindenLocation"> | 222 | <combo_item name="LindenLocation"> |
230 | λ¦°λ μμΉ | 223 | λ¦°λ λ© κ΄λ ¨ |
231 | </combo_item> | 224 | </combo_item> |
232 | <combo_item name="Adult"> | 225 | <combo_item name="Adult"> |
233 | μ±μΈμ© | 226 | μ±μΈ μ μ© |
234 | </combo_item> | 227 | </combo_item> |
235 | <combo_item name="Arts&Culture"> | 228 | <combo_item name="Arts&Culture"> |
236 | μμ & λ¬Έν | 229 | μμ & λ¬Έν |
@@ -242,13 +235,13 @@ | |||
242 | κ΅μ‘μ© | 235 | κ΅μ‘μ© |
243 | </combo_item> | 236 | </combo_item> |
244 | <combo_item name="Gaming"> | 237 | <combo_item name="Gaming"> |
245 | κ²μ΄λ° | 238 | κ²μ |
246 | </combo_item> | 239 | </combo_item> |
247 | <combo_item name="Hangout"> | 240 | <combo_item name="Hangout"> |
248 | μμ£Ό κ°λ κ³³ | 241 | μ§ν©μ |
249 | </combo_item> | 242 | </combo_item> |
250 | <combo_item name="NewcomerFriendly"> | 243 | <combo_item name="NewcomerFriendly"> |
251 | μ μ°Έμμ μ°νΈμ | 244 | μ΄λ³΄μμ© |
252 | </combo_item> | 245 | </combo_item> |
253 | <combo_item name="Parks&Nature"> | 246 | <combo_item name="Parks&Nature"> |
254 | 곡μ λ° μμ° | 247 | 곡μ λ° μμ° |
@@ -264,35 +257,41 @@ | |||
264 | </combo_item> | 257 | </combo_item> |
265 | </combo_box> | 258 | </combo_box> |
266 | <button label="κ²μ" label_selected="κ²μ" name="Search" /> | 259 | <button label="κ²μ" label_selected="κ²μ" name="Search" /> |
267 | </panel> | ||
268 | <panel label="μ¬λ" name="people_panel"> | ||
269 | <scroll_list name="results"> | 260 | <scroll_list name="results"> |
270 | <column label="" name="icon" /> | 261 | <column label="" name="icon" /> |
271 | <column label="" name="type" /> | 262 | <column label="" name="type" /> |
272 | <column label="Name" name="name" /> | 263 | <column label="Name" name="name" /> |
273 | <column label="Online" name="online" /> | 264 | <column label="Traffic" name="dwell" /> |
274 | </scroll_list> | 265 | </scroll_list> |
275 | <button label="< μμΌλ‘" label_selected="< μμΌλ‘" name="< Prev" /> | 266 | </panel> |
267 | <panel label="μ¬λ" name="people_panel"> | ||
268 | <button label="< μ΄μ " label_selected="< μ΄μ " name="< Prev" /> | ||
276 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> | 269 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> |
277 | <text name="find"> | 270 | <text name="find"> |
278 | μ°ΎκΈ°: | 271 | μ°ΎκΈ°: |
279 | </text> | 272 | </text> |
280 | <check_box label="μ¨λΌμΈ" name="online check" /> | ||
281 | <button label="κ²μ" label_selected="κ²μ" name="Search" /> | 273 | <button label="κ²μ" label_selected="κ²μ" name="Search" /> |
282 | </panel> | ||
283 | <panel label="κ·Έλ£Ή" name="groups_panel"> | ||
284 | <scroll_list name="results"> | 274 | <scroll_list name="results"> |
285 | <column label="" name="icon" /> | 275 | <column label="" name="icon" /> |
286 | <column label="" name="type" /> | 276 | <column label="" name="type" /> |
287 | <column label="Name" name="name" /> | 277 | <column label="Name" name="name" /> |
288 | <column label="Members" name="members" /> | ||
289 | </scroll_list> | 278 | </scroll_list> |
290 | <button label="< μμΌλ‘" label_selected="< μμΌλ‘" name="< Prev" /> | 279 | </panel> |
280 | <panel label="κ·Έλ£Ή" name="groups_panel"> | ||
281 | <button label="< μ΄μ " label_selected="< μ΄μ " name="< Prev" /> | ||
291 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> | 282 | <button label="λ€μ >" label_selected="λ€μ >" name="Next >" /> |
292 | <text name="find"> | 283 | <text name="find"> |
293 | μ°ΎκΈ°: | 284 | μ°ΎκΈ°: |
294 | </text> | 285 | </text> |
295 | <button label="κ²μ" label_selected="κ²μ" name="Search" /> | 286 | <button label="κ²μ" label_selected="κ²μ" name="Search" /> |
287 | <check_box label="μ±μΈ κ·Έλ£Ή ν¬ν¨" name="incmature" /> | ||
288 | <scroll_list name="results"> | ||
289 | <column label="" name="icon" /> | ||
290 | <column label="" name="type" /> | ||
291 | <column label="Name" name="name" /> | ||
292 | <column label="Members" name="members" /> | ||
293 | <column label="" name="score" /> | ||
294 | </scroll_list> | ||
296 | </panel> | 295 | </panel> |
297 | </tab_container> | 296 | </tab_container> |
298 | </floater> | 297 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_friends.xml b/linden/indra/newview/skins/xui/ko/floater_friends.xml index ccce2f9..64ccf19 100644 --- a/linden/indra/newview/skins/xui/ko/floater_friends.xml +++ b/linden/indra/newview/skins/xui/ko/floater_friends.xml | |||
@@ -1,17 +1,33 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="friends" title="μΉκ΅¬λ€"> | 2 | <floater name="friends" title="μΉκ΅¬"> |
3 | <button label="νλ‘ν..." name="profile_btn" | 3 | <scroll_list name="friend_list" |
4 | tool_tip="κ·Έλ¦Ό, κ·Έλ£Ή λ° κΈ°ν μ 보 νμ" /> | 4 | tool_tip="Hold shift or control while clicking to select multiple friends"> |
5 | <button label="ν 리ν¬νΈ μ 곡..." name="offer_teleport_btn" | 5 | <column label="Name" name="friend_name" /> |
6 | tool_tip="μ΄ μΉκ΅¬μκ² κ·νμ νμ¬ μμΉλ‘ ν 리ν¬ν μ μ 곡" /> | 6 | </scroll_list> |
7 | <panel name="rights_container"> | ||
8 | <text name="friend_name_label"> | ||
9 | μΉκ΅¬λ₯Ό μ ννμ¬ κΆν λ³κ²½β¦ | ||
10 | </text> | ||
11 | <check_box label="λ΄ μ¨λΌμΈ μνλ₯Ό νμΈν μ μμ΅λλ€." | ||
12 | name="online_status_cb" | ||
13 | tool_tip="μ΄ μΉκ΅¬κ° μΉκ΅¬ λͺ©λ‘μ΄λ ν΅ν μΉ΄λμμ λ΄ μ¨λΌμΈ μνλ₯Ό νμΈ κ°λ₯νμ§ μ¬λΆλ₯Ό μ€μ ν©λλ€." /> | ||
14 | <check_box label="μ§λμμ λ΄ μμΉλ₯Ό νμΈν μ μμ΅λλ€." | ||
15 | name="map_status_cb" | ||
16 | tool_tip="μ΄ μΉκ΅¬κ° μ§λμμ λ΄ μμΉλ₯Ό νμΈ κ°λ₯νμ§ μ¬λΆλ₯Ό μ€μ ν©λλ€." /> | ||
17 | <check_box label="λ΄ μ€λΈμ νΈλ₯Ό μμ ν μ μμ΅λλ€." name="modify_status_cb" | ||
18 | tool_tip="μ΄ μΉκ΅¬κ° λ΄ μ€λΈμ νΈλ₯Ό μμ ν μ μλμ§ μ¬λΆλ₯Ό μ€μ ν©λλ€." /> | ||
19 | <text name="process_rights_label"> | ||
20 | κΆν λ³κ²½ μ€β¦ | ||
21 | </text> | ||
22 | </panel> | ||
23 | <button label="λ©μ μ " name="im_btn" tool_tip="λ©μ μ μΈμ μ΄κΈ°" /> | ||
24 | <button label="ν 리ν¬νΈ..." name="offer_teleport_btn" | ||
25 | tool_tip="μ΄ μΉκ΅¬μκ² λ΄ νμ¬ μμΉλ‘ ν 리ν¬νΈλ₯Ό μ 곡ν¨" /> | ||
7 | <button label="μΆκ°..." name="add_btn" tool_tip="μ£Όλ―Όμκ² μ°μ μ 곡" /> | 26 | <button label="μΆκ°..." name="add_btn" tool_tip="μ£Όλ―Όμκ² μ°μ μ 곡" /> |
8 | <button label="μ§λΆ..." name="pay_btn" | 27 | <button label="νλ‘ν" name="profile_btn" |
9 | tool_tip="λ¦°λ λ¬λ¬(L$)λ₯Ό μ΄ μΉκ΅¬μκ² μ€λλ€" /> | 28 | tool_tip="κ·Έλ¦Ό, κ·Έλ£Ή λ° κΈ°ν μ 보 νμ" /> |
10 | <button label="μ κ±°..." name="remove_btn" | 29 | <button label="μ§λΆβ¦" name="pay_btn" |
30 | tool_tip="μ΄ μΉκ΅¬μκ² λ¦°λ λ¬λ¬(L$) μ£ΌκΈ°" /> | ||
31 | <button label="μ κ±°β¦" name="remove_btn" | ||
11 | tool_tip="μ΄ μ¬λμ λ΄ μΉκ΅¬ λͺ©λ‘μμ μμ " /> | 32 | tool_tip="μ΄ μ¬λμ λ΄ μΉκ΅¬ λͺ©λ‘μμ μμ " /> |
12 | <button label="λ©μ μ ..." name="im_btn" tool_tip="λ©μ μ μΈμ μ΄κΈ°" /> | ||
13 | <button label="μμ κΆν λΆμ¬..." name="grant_btn" | ||
14 | tool_tip="μ΄ μ¬μ©μκ° λ΄ μ¬λ¬Όμ μμ νλλ‘ νμ©" /> | ||
15 | <button label="μμ κΆλ¦¬ μ·¨μ..." name="revoke_btn" | ||
16 | tool_tip="μ΄ μ¬μ©μκ° λ΄ μ¬λ¬Όμ μμ νλλ‘ νμ©" /> | ||
17 | </floater> | 33 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_gesture.xml b/linden/indra/newview/skins/xui/ko/floater_gesture.xml index e3dd52b..85e2272 100644 --- a/linden/indra/newview/skins/xui/ko/floater_gesture.xml +++ b/linden/indra/newview/skins/xui/ko/floater_gesture.xml | |||
@@ -1,8 +1,8 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="gestures" title="νμ± μν μ μ€μ²"> | 2 | <floater name="gestures" title="μ¬μ©μ€μΈ μ μ€μ²"> |
3 | <text name="help_label"> | 3 | <text name="help_label"> |
4 | μ±ν μμ μ λ° μ΄κ΅¬λ₯Ό μ¬μ©νκ±°λ νΉμ ν€λ₯Ό λλ₯΄λ©΄ | 4 | μ±ν μ°½μ λ°λ‘κ°κΈ° 문ꡬλ₯Ό μ λ ₯νκ±°λ ν€λ₯Ό λλ¬ μ λλ©μ΄μ λ° |
5 | μ λλ©μ΄μ κ³Ό μ¬μ΄λκ° μ¬μλ©λλ€. | 5 | μ¬μ΄λλ₯Ό μ¬μν©λλ€. |
6 | </text> | 6 | </text> |
7 | <scroll_list name="gesture_list"> | 7 | <scroll_list name="gesture_list"> |
8 | <column label="Trigger" name="trigger" /> | 8 | <column label="Trigger" name="trigger" /> |
@@ -11,8 +11,8 @@ | |||
11 | <column label="Name" name="name" /> | 11 | <column label="Name" name="name" /> |
12 | </scroll_list> | 12 | </scroll_list> |
13 | <button label="μ κ·" name="new_gesture_btn" /> | 13 | <button label="μ κ·" name="new_gesture_btn" /> |
14 | <button label="μ μ₯κ³ " name="inventory_btn" /> | 14 | <button label="μΈλ²€ν 리" name="inventory_btn" /> |
15 | <button label="νΈμ§" name="edit_btn" /> | 15 | <button label="νΈμ§" name="edit_btn" /> |
16 | <button label="νλ μ΄" name="play_btn" /> | 16 | <button label="μ¬μ" name="play_btn" /> |
17 | <button label="μ€μ§" name="stop_btn" /> | 17 | <button label="μ€μ§" name="stop_btn" /> |
18 | </floater> | 18 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_god_tools.xml b/linden/indra/newview/skins/xui/ko/floater_god_tools.xml index 804f8f3..5cd358b 100644 --- a/linden/indra/newview/skins/xui/ko/floater_god_tools.xml +++ b/linden/indra/newview/skins/xui/ko/floater_god_tools.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="godtools floater" title="무μ λꡬ"> | 2 | <floater name="godtools floater" title="μ λ μ΅μ "> |
3 | <tab_container name="GodTools Tabs"> | 3 | <tab_container name="GodTools Tabs"> |
4 | <panel label="그리λ" name="grid"> | 4 | <panel label="그리λ" name="grid"> |
5 | <button label="λͺ¨λ μ¬μ©μ μ«μλ΄κΈ°" | 5 | <button label="λͺ¨λ μ¬μ©μ μΆλ°©νκΈ°" |
6 | label_selected="λͺ¨λ μ¬μ©μ μ«μλ΄κΈ°" name="Kick all users" /> | 6 | label_selected="λͺ¨λ μ¬μ©μ μΆλ°©νκΈ°" name="Kick all users" /> |
7 | <button label="μ΄ μ§μμ μ§λ νμ μΊμ μμ " | 7 | <button label="μ΄ μ§μμ μ§λ νμ μΊμ μμ " |
8 | label_selected="μ΄ μ§μμ μ§λ νμ μΊμ μμ " | 8 | label_selected="μ΄ μ§μμ μ§λ νμ μΊμ μμ " |
9 | name="Flush This Region's Map Visibility Caches" /> | 9 | name="Flush This Region's Map Visibility Caches" /> |
@@ -14,20 +14,19 @@ | |||
14 | </text> | 14 | </text> |
15 | <check_box label="머리λ§" name="check prelude" | 15 | <check_box label="머리λ§" name="check prelude" |
16 | tool_tip="μ΄ μ§μμ 머리λ§λ‘ μ€μ ν©λλ€." /> | 16 | tool_tip="μ΄ μ§μμ 머리λ§λ‘ μ€μ ν©λλ€." /> |
17 | <check_box label="κ³ μ νμ" name="check fixed sun" | 17 | <check_box label="νμ κ³ μ " name="check fixed sun" tool_tip="νμ μμΉ μμ " /> |
18 | tool_tip="νμμ μμΉ κ³ μ (μ§μ/μμ μ§ > μ§ν." /> | 18 | <check_box label="νμΌλ‘ ν λ ν¬ν μ΄κΈ°ν" name="check reset home" |
19 | <check_box label="ν λ ν¬ν μμ μ§ μ¬μ€μ " name="check reset home" | 19 | tool_tip="μ£Όλ―Ό ν λ ν¬νΈκ° κ³ μ₯λ¬μ λ νμ λͺ©μ μ§ μμΉλ‘ μ¬μ€μ ν©λλ€." /> |
20 | tool_tip="μ£Όλ―Ό ν λ ν¬ν μ΄ κ³ μ₯λ¬μ λ μ§μ λͺ©μ μ§ μμΉλ‘ μ¬μ€μ ν©λλ€." /> | ||
21 | <check_box label="νμλ¨" name="check visible" | 20 | <check_box label="νμλ¨" name="check visible" |
22 | tool_tip="μ΄ μ§μμ μΌλ°μΈμκ² λ³΄μ΄λλ‘ μ€μ ν©λλ€." /> | 21 | tool_tip="μ΄ μ§μμ μΌλ°μΈμκ² λ³΄μ΄λλ‘ μ€μ ν©λλ€." /> |
23 | <check_box label="μμ€" name="check damage" | 22 | <check_box label="λ°λ―Έμ§" name="check damage" |
24 | tool_tip="μ΄ μ§μμ μμμ νμ±ννλλ‘ μ€μ ν©λλ€." /> | 23 | tool_tip="μ΄ μ§μμ λ°λ―Έμ§λ₯Ό νμ±ννλλ‘ μ€μ ν©λλ€." /> |
25 | <check_box label="ν΅νλ μΆμ κΈμ§" name="block dwell" | 24 | <check_box label="ν΅νλ μΆμ κΈμ§" name="block dwell" |
26 | tool_tip="μ΄ μ§μμ νΈλν½ κ³μ°μ νμ§ μλλ‘ μ€μ ν©λλ€." /> | 25 | tool_tip="μ΄ μ§μμ νΈλν½ κ³μ°μ νμ§ μλλ‘ μ€μ ν©λλ€." /> |
27 | <check_box label="ν λΌνΌ κΈμ§" name="block terraform" | 26 | <check_box label="μ§ν λ³κ²½ κΈμ§" name="block terraform" |
28 | tool_tip="μ¬λλ€μ΄ μμ μ ν μ§λ₯Ό ν λΌνΌν μ μλλ‘ μ€μ ν©λλ€" /> | 27 | tool_tip="μ¬λλ€μ΄ μμ μ ν μ§μ μ§νμ λ³κ²½ν μ μλλ‘ μ€μ ν©λλ€." /> |
29 | <check_box label="Sandbox" name="is sandbox" | 28 | <check_box label="μλλ°μ€" name="is sandbox" |
30 | tool_tip="μ΄κ³³μ΄ sandbox μ§μμΈμ§λ₯Ό ν κΈν©λλ€." /> | 29 | tool_tip="μ΄κ³³μ΄ μμ¦λ°μ€ μ§μμΈμ§ μ¬λΆλ₯Ό νμν©λλ€." /> |
31 | <button label="μ§ν μ μ₯" label_selected="μ§ν μ μ₯" name="Bake Terrain" | 30 | <button label="μ§ν μ μ₯" label_selected="μ§ν μ μ₯" name="Bake Terrain" |
32 | tool_tip="νμ¬ μ§νμ κΈ°λ³Έ μ€μ μΌλ‘ μ μ₯ν©λλ€." /> | 31 | tool_tip="νμ¬ μ§νμ κΈ°λ³Έ μ€μ μΌλ‘ μ μ₯ν©λλ€." /> |
33 | <button label="μ§ν λλ리기" label_selected="μ§ν λλ리기" | 32 | <button label="μ§ν λλ리기" label_selected="μ§ν λλ리기" |
@@ -36,13 +35,13 @@ | |||
36 | <button label="μ§ν λ°κΎΈκΈ°" label_selected="μ§ν λ°κΎΈκΈ°" name="Swap Terrain" | 35 | <button label="μ§ν λ°κΎΈκΈ°" label_selected="μ§ν λ°κΎΈκΈ°" name="Swap Terrain" |
37 | tool_tip="κΈ°λ³Έ μ€μ μΌλ‘ νμ¬ μ§νμ λ°κΏλλ€." /> | 36 | tool_tip="κΈ°λ³Έ μ€μ μΌλ‘ νμ¬ μ§νμ λ°κΏλλ€." /> |
38 | <text name="estate id"> | 37 | <text name="estate id"> |
39 | μμ μ§ ID: | 38 | μ¬μ μ§ ID: |
40 | </text> | 39 | </text> |
41 | <text name="parent id"> | 40 | <text name="parent id"> |
42 | λΆλͺ¨ ID: | 41 | λΆλͺ¨ ID: |
43 | </text> | 42 | </text> |
44 | <line_editor name="parentestate" | 43 | <line_editor name="parentestate" |
45 | tool_tip="μ΄κ²μ ν΄λΉ μ§μμ λΆλͺ¨ μμ μ§μ λλ€" /> | 44 | tool_tip="μ΄κ²μ ν΄λΉ μ§μμ λΆλͺ¨ μ¬μ μ§ μ λλ€" /> |
46 | <text name="Grid Pos: "> | 45 | <text name="Grid Pos: "> |
47 | 그리λ Pos: | 46 | 그리λ Pos: |
48 | </text> | 47 | </text> |
@@ -57,61 +56,61 @@ | |||
57 | μ²κ΅¬ κ°λ₯ μμΈ: | 56 | μ²κ΅¬ κ°λ₯ μμΈ: |
58 | </text> | 57 | </text> |
59 | <text name="land cost text"> | 58 | <text name="land cost text"> |
60 | νλ°© λ―Έν°λΉ L$: | 59 | μ κ³± λ―Έν°λΉ L$: |
61 | </text> | 60 | </text> |
62 | <button label="μλ‘ κ³ μΉ¨" label_selected="μλ‘ κ³ μΉ¨" name="Refresh" | 61 | <button label="μλ‘ κ³ μΉ¨" label_selected="μλ‘ κ³ μΉ¨" name="Refresh" |
63 | tool_tip="μμ μ 보λ₯Ό μλ‘ κ³ μΉλ €λ©΄ μ¬κΈ°λ₯Ό ν΄λ¦νμμμ€." /> | 62 | tool_tip="μμ μ 보λ₯Ό μλ‘ κ³ μΉλ €λ©΄ μ¬κΈ°λ₯Ό ν΄λ¦ νμμμ€." /> |
64 | <button label="μ μ©" label_selected="μ μ©" name="Apply" | 63 | <button label="μ μ©" label_selected="μ μ©" name="Apply" |
65 | tool_tip="μμ λ³κ²½ μ¬νμ μ μ© νλ €λ©΄ μ¬κΈ°λ₯Ό ν΄λ¦νμμμ€." /> | 64 | tool_tip="μ¬κΈ°λ₯Ό ν΄λ¦νμ¬ μμ λ³κ²½ μ¬νμ μ μ©νμμμ€." /> |
66 | <button label="μ§μ μ ν" label_selected="μ§μ μ ν" name="Select Region" | 65 | <button label="μ§μ μ ν" label_selected="μ§μ μ ν" name="Select Region" |
67 | tool_tip="ν μ§ λκ΅¬λ‘ μ 체 μ§μμ μ νν©λλ€." /> | 66 | tool_tip="ν μ§ λκ΅¬λ‘ μ 체 μ§μμ μ νν©λλ€." /> |
68 | <button label="μ§κΈ μλ μ μ₯" label_selected="μ§κΈ μλ μ μ₯" | 67 | <button label="μ§κΈ μλ μ μ₯" label_selected="μ§κΈ μλ μ μ₯" |
69 | name="Autosave now" | 68 | name="Autosave now" |
70 | tool_tip="λλ ν 리λ₯Ό μλ μ μ₯νλ €λ©΄ gzipped μνλ₯Ό μ μ₯ν©λλ€." /> | 69 | tool_tip="λλ ν 리λ₯Ό μλ μ μ₯νλ €λ©΄ gzipped μνλ₯Ό μ μ₯ν©λλ€." /> |
71 | </panel> | 70 | </panel> |
72 | <panel label="μ¬λ¬Ό" name="objects"> | 71 | <panel label="μ€λΈμ νΈ" name="objects"> |
73 | <text name="Sim Name:"> | 72 | <text name="Sim Name:"> |
74 | μλ¬λ μ΄μ μ΄λ¦: | 73 | μλ¬λ μ΄μ μ΄λ¦: |
75 | </text> | 74 | </text> |
76 | <text name="region name"> | 75 | <text name="region name"> |
77 | μ¨μΌμ€μ΄ | 76 | μ¨μΌμ€μ΄(Welsh)-λ² ν |
78 | </text> | 77 | </text> |
79 | <check_box label="μ€ν¬λ¦½νΈ λκΈ°" name="disable scripts" | 78 | <check_box label="μ€ν¬λ¦½νΈ λκΈ°" name="disable scripts" |
80 | tool_tip="μ΄ μ§μλ΄ λͺ¨λ μ€ν¬λ¦½νΈλ₯Ό λΉνμ±ν νλλ‘ μ€μ ν©λλ€" /> | 79 | tool_tip="μ΄ μ§μ λ΄ λͺ¨λ μ€ν¬λ¦½νΈλ₯Ό λΉνμ±ννλλ‘ μ€μ ν©λλ€." /> |
81 | <check_box label="μΆ©λ λκΈ°" name="disable collisions" | 80 | <check_box label="μΆ©λ λκΈ°" name="disable collisions" |
82 | tool_tip="μ΄ μ§μλ΄ λΉμμ΄μ νΈ μΆ©λμ λΉνμ±ν νλλ‘ μ€μ ν©λλ€" /> | 81 | tool_tip="μ΄ μ§μ λ΄ λΉμμ΄μ νΈ μΆ©λμ λΉνμ±ννλλ‘ μ€μ ν©λλ€." /> |
83 | <check_box label="물리 λκΈ°" name="disable physics" | 82 | <check_box label="물리μμ§ λκΈ°" name="disable physics" |
84 | tool_tip="μ΄ μ§μλ΄ λͺ¨λ 물리μ νμμ μ€μ ν©λλ€" /> | 83 | tool_tip="μ΄ μ§μ λ΄ λͺ¨λ 물리μ νμμ μ€μ ν©λλ€." /> |
85 | <button label="μ μ©" label_selected="μ μ©" name="Apply" | 84 | <button label="μ μ©" label_selected="μ μ©" name="Apply" |
86 | tool_tip="μμ λ³κ²½ μ¬νμ μ μ© νλ €λ©΄ μ¬κΈ°λ₯Ό ν΄λ¦νμμμ€." /> | 85 | tool_tip="μ¬κΈ°λ₯Ό ν΄λ¦νμ¬ μμ λ³κ²½ μ¬νμ μ μ©νμμμ€." /> |
87 | <button label="λμ μ€μ " label_selected="λμ μ€μ " name="Set Target" | 86 | <button label="λμ μ€μ " label_selected="λμ μ€μ " name="Set Target" |
88 | tool_tip="λμ μλ°νλ₯Ό μμ μ¬λ¬Όλ‘ μ€μ ν©λλ€." /> | 87 | tool_tip="λμ μλ°νλ₯Ό μμ μ€λΈμ νΈλ‘ μ€μ ν©λλ€." /> |
89 | <text name="target_avatar_name"> | 88 | <text name="target_avatar_name"> |
90 | (λμ μμ) | 89 | (λμ μμ) |
91 | </text> | 90 | </text> |
92 | <button label="λ€λ₯Έ ν μ§μμ μλ λμμ μ€ν¬λ¦½νΈλ μμ΄ν μμ " | 91 | <button label="λ€λ₯Έ ν μ§μ μλ λμμ μ€ν¬λ¦½νΈ μ€λΈμ νΈ μμ " |
93 | label_selected="λ€λ₯Έ ν μ§μμ μλ λμμ μ€ν¬λ¦½νΈλ μμ΄ν μμ " | 92 | label_selected="λ€λ₯Έ ν μ§μ μλ λμμ μ€ν¬λ¦½νΈ μ€λΈμ νΈ μμ " |
94 | name="Delete Target's Scripted Objects On Others Land" | 93 | name="Delete Target's Scripted Objects On Others Land" |
95 | tool_tip="μ΄ λμμ΄ μλ ν μ§μ λμμ΄ μμ ν λͺ¨λ μ€ν¬λ¦½νΈ μμ΄ν μ μμ ν©λλ€. (무볡μ¬) μμ΄ν μ λ°νλ©λλ€." /> | 94 | tool_tip="λμμ μμ κ° μλ ν μ§μ λμμ΄ μμ ν λͺ¨λ μ€ν¬λ¦½νΈ μ€λΈμ νΈλ₯Ό μμ ν©λλ€. (no copy) μ€λΈμ νΈλ λ°νλ©λλ€." /> |
96 | <button label="*λͺ¨λ * ν μ§μμ μλ λμμ μ€ν¬λ¦½νΈλ μμ΄ν μμ " | 95 | <button label="*λͺ¨λ * ν μ§μ μλ λμμ μ€ν¬λ¦½νΈ μ€λΈμ νΈ μμ " |
97 | label_selected="*λͺ¨λ * ν μ§μμ μλ λμμ μ€ν¬λ¦½νΈλ μμ΄ν μμ " | 96 | label_selected="*λͺ¨λ * ν μ§μ μλ λμμ μ€ν¬λ¦½νΈ μ€λΈμ νΈ μμ " |
98 | name="Delete Target's Scripted Objects On *Any* Land" | 97 | name="Delete Target's Scripted Objects On *Any* Land" |
99 | tool_tip="μ΄ μ§μμμ λμμ΄ μμ ν λͺ¨λ μ€ν¬λ¦½νΈ μμ΄ν μ μμ ν©λλ€. (무볡μ¬) μμ΄ν μ λ°νλ©λλ€." /> | 98 | tool_tip="μ΄ μ§μμμ λμμ΄ μμ ν λͺ¨λ μ€ν¬λ¦½νΈ μ€λΈμ νΈλ₯Ό μμ ν©λλ€. (no copy) μ€λΈμ νΈλ λ°νλ©λλ€." /> |
100 | <button label="λμμ *λͺ¨λ * μ¬λ¬Ό μμ " | 99 | <button label="λμμ *λͺ¨λ * μ€λΈμ νΈ μμ " |
101 | label_selected="λμμ *λͺ¨λ * μ¬λ¬Ό μμ " | 100 | label_selected="λμμ *λͺ¨λ * μ€λΈμ νΈ μμ " |
102 | name="Delete *ALL* Of Target's Objects" | 101 | name="Delete *ALL* Of Target's Objects" |
103 | tool_tip="μ΄ μ§μμμ λμμ΄ μμ ν λͺ¨λ μμ΄ν μ μμ ν©λλ€. (무볡μ¬) μμ΄ν μ λ°νλ©λλ€." /> | 102 | tool_tip="μ΄ μ§μμμ λμμ΄ μμ ν λͺ¨λ μ€λΈμ νΈλ₯Ό μμ ν©λλ€. (no copy) μ€λΈμ νΈλ λ°νλ©λλ€." /> |
104 | <button label="ν 컬λΌμ΄λ κ°μ Έμ€κΈ°" | 103 | <button label="λμ©λ μ½λΌμ΄λ 보기" |
105 | label_selected="ν 컬λΌμ΄λ κ°μ Έμ€κΈ°" name="Get Top Colliders" | 104 | label_selected="λμ©λ μ½λΌμ΄λ 보기" name="Get Top Colliders" |
106 | tool_tip="νΈμΆμ΄ κ°μ₯ μ¦μ μμ΄ν μ λͺ©λ‘μ κ°μ Έμ΅λλ€" /> | 105 | tool_tip="νΈμΆμ΄ κ°μ₯ μ¦μ μ€λΈμ νΈμ λͺ©λ‘μ κ°μ Έμ΅λλ€" /> |
107 | <button label="ν μ€ν¬λ¦½νΈ κ°μ Έμ€κΈ°" | 106 | <button label="λμ©λ μ€ν¬λ¦½νΈ 보기" |
108 | label_selected="ν μ€ν¬λ¦½νΈ κ°μ Έμ€κΈ°" name="Get Top Scripts" | 107 | label_selected="λμ©λ μ€ν¬λ¦½νΈ 보기" name="Get Top Scripts" |
109 | tool_tip="μ€ν¬λ¦½νΈ μ€νμ κ°μ₯ λ§μ μκ°μ μλͺ¨νλ μμ΄ν μ λͺ©λ‘μ κ°μ Έμ΅λλ€." /> | 108 | tool_tip="μ€ν¬λ¦½νΈ μ€νμ κ°μ₯ λ§μ μκ°μ μλͺ¨νλ μ€λΈμ νΈμ λͺ©λ‘μ κ°μ Έμ΅λλ€." /> |
110 | <button label="μ€ν¬λ¦½νΈ λ€μ΄μ μ€νΈ" | 109 | <button label="μ€ν¬λ¦½νΈ λ€μ΄μ μ€νΈ" |
111 | label_selected="μ€ν¬λ¦½νΈ λ€μ΄μ μ€νΈ" name="Scripts digest" | 110 | label_selected="μ€ν¬λ¦½νΈ λ€μ΄μ μ€νΈ" name="Scripts digest" |
112 | tool_tip="λͺ¨λ μ€ν¬λ¦½νΈ λͺ©λ‘ λ° κ° λ°μ μλ₯Ό κ°μ Έμ΅λλ€." /> | 111 | tool_tip="λͺ¨λ μ€ν¬λ¦½νΈ λͺ©λ‘ λ° κ° λ°μ μλ₯Ό κ°μ Έμ΅λλ€." /> |
113 | </panel> | 112 | </panel> |
114 | <panel label="μꡬνκΈ°" name="request"> | 113 | <panel label="μμ²" name="request"> |
115 | <text name="Destination:"> | 114 | <text name="Destination:"> |
116 | λͺ©μ μ§: | 115 | λͺ©μ μ§: |
117 | </text> | 116 | </text> |
@@ -124,20 +123,20 @@ | |||
124 | </combo_item> | 123 | </combo_item> |
125 | </combo_box> | 124 | </combo_box> |
126 | <text name="Request:"> | 125 | <text name="Request:"> |
127 | μμ² | 126 | μμ²: |
128 | </text> | 127 | </text> |
129 | <combo_box name="request"> | 128 | <combo_box name="request"> |
130 | <combo_item name="colliders<steps>"> | 129 | <combo_item name="colliders<steps>"> |
131 | μΆ©λν κ°μκΈ° <μ€ν > | 130 | μ½λΌμ΄λ <λ¨κ³> |
132 | </combo_item> | 131 | </combo_item> |
133 | <combo_item name="scripts<count>,<optionalpattern>"> | 132 | <combo_item name="scripts<count>,<optionalpattern>"> |
134 | μ€ν¬λ¦½νΈ <κ°μ>,<μ ν ν¨ν΄> | 133 | μ€ν¬λ¦½νΈ <count>,<optional pattern> |
135 | </combo_item> | 134 | </combo_item> |
136 | <combo_item name="objects<pattern>"> | 135 | <combo_item name="objects<pattern>"> |
137 | μ¬λ¬Ό <ν¨ν΄> | 136 | μ€λΈμ νΈ <pattern> |
138 | </combo_item> | 137 | </combo_item> |
139 | <combo_item name="rez<asset_id>"> | 138 | <combo_item name="rez<asset_id>"> |
140 | rez <asset_id> | 139 | λ μ― <asset_id> |
141 | </combo_item> | 140 | </combo_item> |
142 | </combo_box> | 141 | </combo_box> |
143 | <text name="Parameter:"> | 142 | <text name="Parameter:"> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_group_info.xml b/linden/indra/newview/skins/xui/ko/floater_group_info.xml index 3a9d149..658dc7e 100644 --- a/linden/indra/newview/skins/xui/ko/floater_group_info.xml +++ b/linden/indra/newview/skins/xui/ko/floater_group_info.xml | |||
@@ -1,24 +1,24 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="groupinfo" title="λ λ¦°λ μ¦ - κ·Έλ£Ή μ 보"> | 2 | <floater name="groupinfo" title="λ λ¦°λ μ¦ - κ·Έλ£Ή μ 보"> |
3 | <tab_container name="tab"> | 3 | <tab_container name="tab"> |
4 | <panel label="μΌλ°μ¬ν" name="gen"> | 4 | <panel label="μΌλ°" name="gen"> |
5 | <text name="title_box"> | 5 | <text name="title_box"> |
6 | κ·Έλ£Ή μ 보 | 6 | κ·Έλ£Ή μ 보 |
7 | </text> | 7 | </text> |
8 | <text name="txt"> | 8 | <text name="txt"> |
9 | κ·Έλ£Ήμ ν΅ν΄ μΉκ΅¬λ€κ³Ό μ¦κ²κ² νλ ₯ν μ μμ΅λλ€. | 9 | κ·Έλ£Ήμ μΉκ΅¬μ νλ ₯νκΈ° μν μ¬λ―Έμλ λ°©λ²μ λλ€. |
10 | </text> | 10 | </text> |
11 | <text name="txt2"> | 11 | <text name="txt2"> |
12 | κ·Έλ£Ήμ μμλλ©΄ μ§μ± λ° νμ₯μ λΆμ¬λ°κ³ μ κ±°μ μ°Έμ¬ν©λλ€. | 12 | κ·Έλ£Ήμ λ΄κ° νμ΄ν, λ‘κ³ λ₯Ό κ°κ³ ν¬νλ₯Ό ν μ μκ² ν©λλ€. |
13 | </text> | 13 | </text> |
14 | <text name="txt3"> | 14 | <text name="txt3"> |
15 | λꡬλ κ·Έλ£Ήμ μμ±ν μ μμ΅λλ€. κ° κ°μΈμ μ΅λ 15κ° κ·Έλ£Ήμ κ°μ ν μ μμ΅λλ€. | 15 | λꡬλ μ§ κ·Έλ£Ήμ λ§λ€ μ μμ΅λλ€. κ° κ°μΈμ μ΅λ 15κ° κ·Έλ£Ήμ μν μ μμ΅λλ€. |
16 | </text> | 16 | </text> |
17 | <text name="txt4"> | 17 | <text name="txt4"> |
18 | κ·Έλ£Ήμ μ΅μ 3λͺ μ λ©€λ²λ‘ ꡬμ±λμ΄μΌ νλμ΄ κ°λ₯ν©λλ€. | 18 | κ·Έλ£Ήμ μ΅μ νμμ 3λͺ μ λλ€. |
19 | </text> | 19 | </text> |
20 | <text name="group_create_text"> | 20 | <text name="group_create_text"> |
21 | κ·Έλ£Ή μμ± λΉμ©μ L$100μ λλ€. | 21 | κ·Έλ£Ήμ μμ±νλ €λ©΄ L$100κ° λλλ€. |
22 | </text> | 22 | </text> |
23 | <text name="lbl"> | 23 | <text name="lbl"> |
24 | μ΄λ¦: | 24 | μ΄λ¦: |
@@ -30,88 +30,88 @@ | |||
30 | μ€λ¦½ μ‘°ν: | 30 | μ€λ¦½ μ‘°ν: |
31 | </text> | 31 | </text> |
32 | <check_box label="κ·Έλ£Ή λͺ©λ‘μ νμνκΈ°" name="sho" /> | 32 | <check_box label="κ·Έλ£Ή λͺ©λ‘μ νμνκΈ°" name="sho" /> |
33 | <check_box label="κ·Έλ£Ή λͺ©λ‘μ λ©€λ² νμνκΈ°" name="sho_mem" /> | 33 | <check_box label="κ·Έλ£Ή λͺ©λ‘μ νμ νμνκΈ°" name="sho_mem" /> |
34 | <check_box label="μΉμ κ²μν©λλ€." name="allow_publish" | 34 | <check_box label="μΉμ κ²μ" name="allow_publish" |
35 | tool_tip="λ΄ νλ‘ν μ 보λ₯Ό μΉμ κ²μ." /> | 35 | tool_tip="λ΄ νλ‘ν μ 보λ₯Ό μΉμ κ²μ." /> |
36 | <button label="?" label_selected="?" name="publish_help_btn" /> | 36 | <button label="?" label_selected="?" name="publish_help_btn" /> |
37 | <check_box label="μ±μΈμ©" name="mature" | 37 | <check_box label="μ±μΈμ©" name="mature" |
38 | tool_tip="λ³ΈμΈμ νλ‘ν μ 보λ μ±μΈμ©μΌλ‘ κ°μ£Ό λ©λλ€." /> | 38 | tool_tip="μ¬μ©μμ νλ‘ν μ 보λ μ±μΈ μ μ©μΌλ‘ κ°μ£Όλ©λλ€." /> |
39 | </panel> | 39 | </panel> |
40 | <panel label="νμ΄ν" name="tit"> | 40 | <panel label="νμ΄ν" name="tit"> |
41 | <text name="txt"> | 41 | <text name="txt"> |
42 | κ·Έλ£Ή νμ΄ν | 42 | κ·Έλ£Ή νμ΄ν |
43 | </text> | 43 | </text> |
44 | <text name="txt2"> | 44 | <text name="txt2"> |
45 | κ·Έλ£Ήμ κ°λΆμ λ©€λ²λ‘ ꡬμ±λλ©°, κ°λΆμ λ©€λ² λͺ¨λ νΉλ³ μ§μ± μ κ°μ§ μ μμ΅λλ€. | 45 | κ·Έλ£Ήμλ μ΄μμ§λ€κ³Ό νμλ€μ΄ μκ³ , λͺ¨λ νΉμ νμ΄νμ κ°μ§ μ μμ΅λλ€. |
46 | </text> | 46 | </text> |
47 | <text name="txt3"> | 47 | <text name="txt3"> |
48 | μ΄ μ λͺ©μ μΈμ, μ±ν , λ©μ μ μμ μ΄λ¦ μμ νμλ©λλ€. | 48 | μ΄λ¬ν νμ΄νμ μ±ν λ° λ©μ μ μμ μ¬μ©λλ μ΄λ¦ μμ λνλ©λλ€. |
49 | </text> | 49 | </text> |
50 | <text name="lbl"> | 50 | <text name="lbl"> |
51 | κ°λΆ νμ΄ν: | 51 | μ΄μμ§ νμ΄ν: |
52 | </text> | 52 | </text> |
53 | <text name="lbl2"> | 53 | <text name="lbl2"> |
54 | λ©€λ² νμ΄ν: | 54 | νμ νμ΄ν: |
55 | </text> | 55 | </text> |
56 | <text name="lbl3"> | 56 | <text name="lbl3"> |
57 | μ μ₯κ³ μμ ν μ€μ²λ₯Ό λλκ·Έν΄ κ·Έλ£Ήμ νμ₯μ μ€μ νμμμ€. | 57 | μμ μ μΈλ²€ν 리μμ ν μ€μ²λ₯Ό λμ΄ κ·Έλ£Ήμ λ‘κ³ λ₯Ό μ€μ ν©λλ€. |
58 | </text> | 58 | </text> |
59 | <texture_picker name="insig" tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 59 | <texture_picker name="insig" tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> |
60 | </panel> | 60 | </panel> |
61 | <panel label="맴λ²" name="mem"> | 61 | <panel label="νμ" name="mem"> |
62 | <text name="txt"> | 62 | <text name="txt"> |
63 | κ·Έλ£Ή λ©€λ² | 63 | κ·Έλ£Ή νμ |
64 | </text> | 64 | </text> |
65 | <text name="txt2"> | 65 | <text name="txt2"> |
66 | νμ¬ κ·Έλ£Ή κ°λΆ λ° λ©€λ². | 66 | νμ¬ κ·Έλ£Ήμ μ΄μμ§ λ° νμμ λλ€. |
67 | </text> | 67 | </text> |
68 | <text name="txt3"> | 68 | <text name="txt3"> |
69 | μ΄λ¦μ ν΄λ¦νλ©΄ λ©€λ² νλ‘νμ λ³΄μ€ μ μμ΅λλ€. | 69 | νμμ νλ‘νμ λ³΄λ €λ©΄ μ΄λ¦μ ν΄λ¦νμμμ€. |
70 | </text> | 70 | </text> |
71 | <text name="lbl"> | 71 | <text name="lbl"> |
72 | κ°λΆ: | 72 | μ΄μμ§: |
73 | </text> | 73 | </text> |
74 | <text name="members_label"> | 74 | <text name="members_label"> |
75 | λ©€λ²: | 75 | νμ: |
76 | </text> | 76 | </text> |
77 | <button label="λ©€λ² μΆμΆ" label_selected="λ©€λ² μΆμΆ" name="eject_member_btn" /> | 77 | <button label="νμ κ°ν΄" label_selected="νμ κ°ν΄" name="eject_member_btn" /> |
78 | </panel> | 78 | </panel> |
79 | <panel label="ν¬ν" name="voting"> | 79 | <panel label="ν¬ν" name="voting"> |
80 | <tab_container name="tab"> | 80 | <tab_container name="tab"> |
81 | <panel label="μΆμ²" name="recall"> | 81 | <panel label="μ κ±°" name="recall"> |
82 | <text name="txt"> | 82 | <text name="txt"> |
83 | κ·Έλ£Ή μ κ±° | 83 | κ·Έλ£Ή μ κ±° |
84 | </text> | 84 | </text> |
85 | <text name="instructions"> | 85 | <text name="instructions"> |
86 | μ κ±° μμ λ²νΌμ ν΄λ¦νμλ©΄ μ μ κ±°κ° μμλ©λλ€. | 86 | ν¬ν μμ λ²νΌμ λλ¬ μ ν¬νλ₯Ό μμν©λλ€. |
87 | ν보μμλ λͺ¨λ λΉκ°λΆ κ·Έλ£Ή λ©€λ²κ° ν¬ν¨λ©λλ€. | 87 | ν보μλ λͺ¨λ λΉμ΄μμ§ κ·Έλ£Ή νμμ ν¬ν¨ν©λλ€. |
88 | </text> | 88 | </text> |
89 | <text name="lbl"> | 89 | <text name="lbl"> |
90 | ν보: | 90 | μ§μμ: |
91 | </text> | 91 | </text> |
92 | <button label="ν¬ν" label_selected="ν¬ν" name="btn_vote" /> | 92 | <button label="ν¬ν" label_selected="ν¬ν" name="btn_vote" /> |
93 | <button label="κΈ°κΆ" label_selected="κΈ°κΆ" name="btn_abstain" /> | 93 | <button label="κΈ°κΆ" label_selected="κΈ°κΆ" name="btn_abstain" /> |
94 | <button label="μ κ±° μμ" label_selected="μ κ±° μμ" name="btn_start_election" /> | 94 | <button label="ν¬ν μμ" label_selected="ν¬ν μμ" name="btn_start_election" /> |
95 | <text name="lbl2"> | 95 | <text name="lbl2"> |
96 | μ μ‘±μ: | 96 | μ μ‘±μ: |
97 | </text> | 97 | </text> |
98 | <spinner name="quorum" | 98 | <spinner name="quorum" |
99 | tool_tip="μ κ±° κ²°κ³Όκ° ν¨λ ₯μ λ°ννλ €λ©΄ μ΄ #λͺ μ ν¬ν μΈμμ΄ νμν©λλ€." /> | 99 | tool_tip="μ κ±° κ²°κ³Όκ° ν¨λ ₯μ λ°ννλ €λ©΄ μ΄ #λͺ μ ν¬ν μΈμμ΄ νμν©λλ€." /> |
100 | <text name="quorum_text"> | 100 | <text name="quorum_text"> |
101 | μ΄ κ·Έλ£Ή λ©€λ² 111λͺ μ€. | 101 | μ΄ κ·Έλ£Ή νμ 111λͺ μ€. |
102 | </text> | 102 | </text> |
103 | <text name="lbl3"> | 103 | <text name="lbl3"> |
104 | κ³Όλ°μ: | 104 | λλΆλΆ: |
105 | </text> | 105 | </text> |
106 | <radio_group name="majority" tool_tip="Majority of total votes needed to win."> | 106 | <radio_group name="majority" tool_tip="Majority of total votes needed to win."> |
107 | <radio_item name="radio"> | 107 | <radio_item name="radio"> |
108 | κ°λ¨ν λ§€μ‘°λ¦¬ν° | 108 | λ¨μ κ³Όλ°μ |
109 | </radio_item> | 109 | </radio_item> |
110 | <radio_item name="radio2"> | 110 | <radio_item name="radio2"> |
111 | 2/3 λ§€μ‘°λ¦¬ν° | 111 | 2/3 λν |
112 | </radio_item> | 112 | </radio_item> |
113 | <radio_item name="radio3"> | 113 | <radio_item name="radio3"> |
114 | μΌμΉν | 114 | λ§μ₯μΌμΉ |
115 | </radio_item> | 115 | </radio_item> |
116 | </radio_group> | 116 | </radio_group> |
117 | <text name="duration_lbl"> | 117 | <text name="duration_lbl"> |
@@ -128,23 +128,23 @@ | |||
128 | μ κ±° μ’ λ£: | 128 | μ κ±° μ’ λ£: |
129 | </text> | 129 | </text> |
130 | </panel> | 130 | </panel> |
131 | <panel label="νλ‘ν¬μ " name="panel_group_proposals"> | 131 | <panel label="μ μ" name="panel_group_proposals"> |
132 | <text name="txt"> | 132 | <text name="txt"> |
133 | κ·Έλ£Ή μ μμ | 133 | κ·Έλ£Ή μ μ |
134 | </text> | 134 | </text> |
135 | <text name="instructions"> | 135 | <text name="instructions"> |
136 | νμ¬ μ§νμ€μΈ μ μμ΄ μμ΅λλ€. μ μ μμ μμ±νμλ €λ©΄ μ μ μμ± | 136 | νμ± μ μμ΄ μμ΅λλ€. μλ‘μ΄ μ μμ μμ±νλ €λ©΄ μ μ μμ± |
137 | λ²νΌμ λλ₯΄μμμ€. | 137 | λ²νΌμ λλ₯΄μμμ€. |
138 | </text> | 138 | </text> |
139 | <text name="proposal_lbl"> | 139 | <text name="proposal_lbl"> |
140 | μ μμ: | 140 | μ μ: |
141 | </text> | 141 | </text> |
142 | <button label="μ" label_selected="μ" name="btn_yes" /> | 142 | <button label="μ" label_selected="μ" name="btn_yes" /> |
143 | <button label="μλμ€" label_selected="μλμ€" name="btn_no" /> | 143 | <button label="μλμ€" label_selected="μλμ€" name="btn_no" /> |
144 | <button label="κΈ°κΆ" label_selected="κΈ°κΆ" name="btn_abstain" /> | 144 | <button label="κΈ°κΆ" label_selected="κΈ°κΆ" name="btn_abstain" /> |
145 | <button label="λͺ©λ‘ 보기" label_selected="λͺ©λ‘ 보기" name="btn_view_list" /> | 145 | <button label="λͺ©λ‘ 보기" label_selected="λͺ©λ‘ 보기" name="btn_view_list" /> |
146 | <button label="μμ΄ν 보기" label_selected="μμ΄ν 보기" name="btn_view_item" /> | 146 | <button label="μμ΄ν 보기" label_selected="μμ΄ν 보기" name="btn_view_item" /> |
147 | <button label="μ μ μμ±" label_selected="μ μ μμ±" name="btn_proposal" /> | 147 | <button label="μ μ λ§λ€κΈ°" label_selected="μ μ λ§λ€κΈ°" name="btn_proposal" /> |
148 | <button label="μ μΆ" label_selected="μ μΆ" name="btn_submit" /> | 148 | <button label="μ μΆ" label_selected="μ μΆ" name="btn_submit" /> |
149 | <text name="quorum_lbl"> | 149 | <text name="quorum_lbl"> |
150 | μ μ‘±μ: | 150 | μ μ‘±μ: |
@@ -152,20 +152,20 @@ | |||
152 | <spinner name="quorum" | 152 | <spinner name="quorum" |
153 | tool_tip="μ κ±° κ²°κ³Όκ° ν¨λ ₯μ λ°ννλ €λ©΄ μ΄ #λͺ μ ν¬ν μΈμμ΄ νμν©λλ€." /> | 153 | tool_tip="μ κ±° κ²°κ³Όκ° ν¨λ ₯μ λ°ννλ €λ©΄ μ΄ #λͺ μ ν¬ν μΈμμ΄ νμν©λλ€." /> |
154 | <text name="quorum_text"> | 154 | <text name="quorum_text"> |
155 | μ΄ κ·Έλ£Ή λ©€λ² 111λͺ μ€. | 155 | μ΄ κ·Έλ£Ή νμ 111λͺ μ€. |
156 | </text> | 156 | </text> |
157 | <text name="majority_lbl"> | 157 | <text name="majority_lbl"> |
158 | κ³Όλ°μ: | 158 | λλΆλΆ: |
159 | </text> | 159 | </text> |
160 | <radio_group name="majority" tool_tip="Majority of total votes needed to win."> | 160 | <radio_group name="majority" tool_tip="Majority of total votes needed to win."> |
161 | <radio_item name="radio"> | 161 | <radio_item name="radio"> |
162 | κ°λ¨ν λ§€μ‘°λ¦¬ν° | 162 | λ¨μ κ³Όλ°μ |
163 | </radio_item> | 163 | </radio_item> |
164 | <radio_item name="radio2"> | 164 | <radio_item name="radio2"> |
165 | 2/3 λ§€μ‘°λ¦¬ν° | 165 | 2/3 λν |
166 | </radio_item> | 166 | </radio_item> |
167 | <radio_item name="radio3"> | 167 | <radio_item name="radio3"> |
168 | μΌμΉν | 168 | λ§μ₯μΌμΉ |
169 | </radio_item> | 169 | </radio_item> |
170 | </radio_group> | 170 | </radio_group> |
171 | <text name="duration_lbl"> | 171 | <text name="duration_lbl"> |
@@ -176,10 +176,10 @@ | |||
176 | μΌ | 176 | μΌ |
177 | </text> | 177 | </text> |
178 | <text name="start_lbl"> | 178 | <text name="start_lbl"> |
179 | ν¬ν μμ: | 179 | ν¬ν μμμΌ: |
180 | </text> | 180 | </text> |
181 | <text name="end_lbl"> | 181 | <text name="end_lbl"> |
182 | ν¬ν μ’ λ£: | 182 | ν¬ν μ’ λ£μΌ: |
183 | </text> | 183 | </text> |
184 | </panel> | 184 | </panel> |
185 | <panel label="κΈ°λ‘" name="History"> | 185 | <panel label="κΈ°λ‘" name="History"> |
@@ -187,13 +187,13 @@ | |||
187 | κ·Έλ£Ή ν¬ν κΈ°λ‘ | 187 | κ·Έλ£Ή ν¬ν κΈ°λ‘ |
188 | </text> | 188 | </text> |
189 | <text name="instructions"> | 189 | <text name="instructions"> |
190 | ν¬νμ λ€μμ μ ννμλ©΄ κ³Όκ±° κ·Έλ£Ή ν¬ν κ²°κ³Όλ₯Ό λ³΄μ€ μ μμ΅λλ€ | 190 | ν¬νλ₯Ό μ ννμ¬ κ³Όκ±° κ·Έλ£Ήμ ν¬ν κ²°κ³Όλ₯Ό νμΈν μ μμ΅λλ€. |
191 | </text> | 191 | </text> |
192 | <text name="instructions2"> | 192 | <text name="instructions2"> |
193 | μμ΄ν 보기 ν΄λ¦. | 193 | 보기 νλͺ© λλ¦. |
194 | </text> | 194 | </text> |
195 | <text name="history_list_lbl"> | 195 | <text name="history_list_lbl"> |
196 | κ³Όκ±° ν¬ν: | 196 | μ§λ ν¬ν: |
197 | </text> | 197 | </text> |
198 | <text name="vote_text_lbl"> | 198 | <text name="vote_text_lbl"> |
199 | ν¬ν κ²°κ³Ό: | 199 | ν¬ν κ²°κ³Ό: |
@@ -208,63 +208,62 @@ | |||
208 | κ·Έλ£Ή μ΄μ² | 208 | κ·Έλ£Ή μ΄μ² |
209 | </text> | 209 | </text> |
210 | <text name="txt2"> | 210 | <text name="txt2"> |
211 | μ΄μ²μ λ©μ μ λ₯Ό ν΅ν΄ μ μ‘λ©λλ€. | 211 | μ΄λμ₯μ΄ λ©μ μ λ₯Ό ν΅ν΄ 보λ΄μ§λλ€. |
212 | </text> | 212 | </text> |
213 | <text name="txt3"> | 213 | <text name="txt3"> |
214 | μΆκ° λ²νΌμ ν΄λ¦νλ©΄ λͺ©λ‘μ μ¬μ©μλ₯Ό μΆκ°νμ€ μ μμ΅λλ€. | 214 | μ¬μ©μλ₯Ό λͺ©λ‘μ μΆκ°νλ €λ©΄ μΆκ° λ²νΌμ ν΄λ¦ νμμμ€. |
215 | </text> | 215 | </text> |
216 | <text name="lbl"> | 216 | <text name="lbl"> |
217 | κ°λΆ: | 217 | μ΄μμ§: |
218 | </text> | 218 | </text> |
219 | <button label="κ°λΆ μΆκ°..." label_selected="κ°λΆ μΆκ°..." | 219 | <button label="μ΄μμ§ μΆκ°..." label_selected="μ΄μμ§ μΆκ°..." |
220 | name="add_officer_btn" /> | 220 | name="add_officer_btn" /> |
221 | <button label="μ ν νλͺ© μ κ±°" label_selected="μ ν νλͺ© μ κ±°" | 221 | <button label="μ κ±° μ νν¨" label_selected="μ κ±° μ νν¨" |
222 | name="remove_officer_btn" /> | 222 | name="remove_officer_btn" /> |
223 | <text name="lbl2"> | 223 | <text name="lbl2"> |
224 | λ©€λ²: | 224 | νμ: |
225 | </text> | 225 | </text> |
226 | <button label="λ©€λ² μΆκ°..." label_selected="λ©€λ² μΆκ°..." | 226 | <button label="νμ μΆκ°..." label_selected="νμ μΆκ°..." |
227 | name="add_member_btn" /> | 227 | name="add_member_btn" /> |
228 | <button label="μ ν νλͺ© μ κ±°" label_selected="μ ν νλͺ© μ κ±°" | 228 | <button label="μ κ±° μ νν¨" label_selected="μ κ±° μ νν¨" |
229 | name="remove_member_btn" /> | 229 | name="remove_member_btn" /> |
230 | <text name="lbl3"> | 230 | <text name="lbl3"> |
231 | κ°μ μμλ£: | 231 | κ°μ μμλ£: |
232 | </text> | 232 | </text> |
233 | <check_box label="μμ μ μ²(μ΄μ² λΆνμ)" name="open" /> | 233 | <check_box label="μμ κ°μ (μ΄λ λΆνμ)" name="open" /> |
234 | </panel> | 234 | </panel> |
235 | <panel label="ν μ§" name="land"> | 235 | <panel label="ν μ§" name="land"> |
236 | <text name="txt"> | 236 | <text name="txt"> |
237 | κ·Έλ£Ή μμ ν μ§ | 237 | κ·Έλ£Ή μμ ν μ§ |
238 | </text> | 238 | </text> |
239 | <text name="lbl"> | 239 | <text name="lbl"> |
240 | μ΄ κΈ°λΆ ν μ§: | 240 | μ 체 κΈ°λΆλ ν μ§: |
241 | </text> | 241 | </text> |
242 | <button label="μ§λ..." label_selected="μ§λ..." name="map_btn" /> | 242 | <button label="μ§λβ¦" label_selected="μ§λβ¦" name="map_btn" /> |
243 | <text name="lbl2"> | 243 | <text name="lbl2"> |
244 | μ¬μ©μ€μΈ μ΄ ν μ§: | 244 | μ¬μ© μ€μΈ ν μ§: |
245 | </text> | 245 | </text> |
246 | <text name="lbl3"> | 246 | <text name="lbl3"> |
247 | κ°μ© ν μ§: | 247 | λ―Έμ¬μ©μ€μΈ ν μ§: |
248 | </text> | 248 | </text> |
249 | <button label="κΈ°μ¬κΈ μ€μ " label_selected="κΈ°μ¬κΈ μ€μ " | 249 | <button label="κΈ°λΆ μ€μ " label_selected="κΈ°λΆ μ€μ " name="set_contrib_btn" /> |
250 | name="set_contrib_btn" /> | ||
251 | <text name="warning_label"> | 250 | <text name="warning_label"> |
252 | κ²½κ³ : κ·Έλ£Ή 보μ ν μ§κ° μ§λμΉκ² λ§μ΅λλ€. κ·Έλ£Ή λ©€λ²λ€μ κΈ°λΆλ₯Ό λλ €μΌ ν©λλ€. | 251 | κ²½κ³ : κ·Έλ£Ήμ΄ λ무 λ§μ ν μ§λ₯Ό κ΄λ¦¬νκ³ μμ΅λλ€. κ·Έλ£Ή νμμ΄ λ λ§μ ν μ§ μ μ©μ κΈ°μ¬ν΄μΌ ν©λλ€. |
253 | </text> | 252 | </text> |
254 | </panel> | 253 | </panel> |
255 | <panel label="λ" name="mon"> | 254 | <panel label="λ" name="mon"> |
256 | <tab_container name="group money history tab"> | 255 | <tab_container name="group money history tab"> |
257 | <panel label="Planning" name="money panel" /> | 256 | <panel label="λ³΄κ³ μ" name="money panel" /> |
258 | <panel label="μΈλΆμ¬ν" name="money panel2"> | 257 | <panel label="μΈλΆμ¬ν" name="money panel2"> |
259 | <button label="< μ΄μ " label_selected="< μ΄μ " name="< Earlier" | 258 | <button label="< μ΄μ " label_selected="< μ΄μ " name="< Earlier" |
260 | tool_tip="μκ°μ κ±°μ¬λ¬ κ°λλ€" /> | 259 | tool_tip="μκ°μ κ±°μ¬λ¬ κ°λλ€" /> |
261 | <button label="λμ€μ >" label_selected="λμ€μ >" name="Later >" | 260 | <button label="λμ€μ>" label_selected="λμ€μ>" name="Later >" |
262 | tool_tip="μκ°μ μμ κ°λλ€" /> | 261 | tool_tip="μκ°μ μμ κ°λλ€" /> |
263 | </panel> | 262 | </panel> |
264 | <panel label="ν맀" name="money panel3"> | 263 | <panel label="ν맀λ΄μ" name="money panel3"> |
265 | <button label="< μ΄μ " label_selected="< μ΄μ " name="< Earlier" | 264 | <button label="< μ΄μ " label_selected="< μ΄μ " name="< Earlier" |
266 | tool_tip="μκ°μ κ±°μ¬λ¬ κ°λλ€" /> | 265 | tool_tip="μκ°μ κ±°μ¬λ¬ κ°λλ€" /> |
267 | <button label="λμ€μ >" label_selected="λμ€μ >" name="Later >" | 266 | <button label="λμ€μ>" label_selected="λμ€μ>" name="Later >" |
268 | tool_tip="μκ°μ μμ κ°λλ€" /> | 267 | tool_tip="μκ°μ μμ κ°λλ€" /> |
269 | </panel> | 268 | </panel> |
270 | </tab_container> | 269 | </tab_container> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_groups.xml b/linden/indra/newview/skins/xui/ko/floater_groups.xml index ce1d6d1..4e3b247 100644 --- a/linden/indra/newview/skins/xui/ko/floater_groups.xml +++ b/linden/indra/newview/skins/xui/ko/floater_groups.xml | |||
@@ -1,15 +1,15 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="groups" title="κ·Έλ£Ή"> | 2 | <floater name="groups" title="κ·Έλ£Ή"> |
3 | <text name="groupdesc"> | 3 | <text name="groupdesc"> |
4 | κ·νκ° νμ¬ νλμ€μΈ κ·Έλ£Ήμ κ΅΅μ κΈμ¨λ‘ νμλ©λλ€. | 4 | νμ¬ νλ μ€μΈ κ·Έλ£Ήμ κ΅΅μ κΈμ¨λ‘ νμλ©λλ€. |
5 | </text> | 5 | </text> |
6 | <text name="groupcount"> | 6 | <text name="groupcount"> |
7 | κ·νλ [COUNT] κ·Έλ£Ή(μ΅λ [MAX])μ μν΄ μμ΅λλ€ | 7 | [COUNT] κ·Έλ£Ή(μ΅λ [MAX])μ μν΄ μμ΅λλ€. |
8 | </text> | 8 | </text> |
9 | <button label="νμ±ν" label_selected="νμ±ν" name="Activate" /> | 9 | <button label="νμ±ν" label_selected="νμ±ν" name="Activate" /> |
10 | <button label="μ 보" label_selected="μ 보" name="Info" /> | 10 | <button label="μ 보" label_selected="μ 보" name="Info" /> |
11 | <button label="λ λκΈ°" label_selected="λ λκΈ°" name="Leave" /> | 11 | <button label="νν΄" label_selected="νν΄" name="Leave" /> |
12 | <button label="λ§λ€κΈ°" label_selected="λ§λ€κΈ°" name="Create" /> | 12 | <button label="λ§λ€κΈ°" label_selected="λ§λ€κΈ°" name="Create" /> |
13 | <button label="κ²μ..." label_selected="κ²μ..." name="Search..." /> | 13 | <button label="κ²μβ¦" label_selected="κ²μβ¦" name="Search..." /> |
14 | <button label="λ«κΈ°" label_selected="λ«κΈ°" name="Close" /> | 14 | <button label="λ«κΈ°" label_selected="λ«κΈ°" name="Close" /> |
15 | </floater> | 15 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_html.xml b/linden/indra/newview/skins/xui/ko/floater_html.xml index fd20f0d..5807828 100644 --- a/linden/indra/newview/skins/xui/ko/floater_html.xml +++ b/linden/indra/newview/skins/xui/ko/floater_html.xml | |||
@@ -1,12 +1,16 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="html" title="μΉ λΈλΌμ°μ "> | 2 | <floater name="htmlfloater" title=""> |
3 | <button label="λ€λ‘" name="back_btn" /> | 3 | <button label="λ«κΈ°" name="close_btn" /> |
4 | <button label="μμΌλ‘" name="forward_btn" /> | 4 | <text name="in-world_help_title"> |
5 | <button label="μ¬λ‘λ©" name="reload_btn" /> | 5 | μΈμλ λμλ§ |
6 | <button label="μ€μ§" name="stop_btn" /> | 6 | </text> |
7 | <button label="μ§" name="home_btn" /> | 7 | <text name="in-world_help_url"> |
8 | <button label="μ΄λ" name="go_btn" /> | 8 | http://www.secondlife.com/app/support/inworld.html |
9 | <text name="status_text"> | 9 | </text> |
10 | μ§ν ν μ€νΈ μμΉ | 10 | <text name="additional_help_title"> |
11 | μΆκ° λμλ§ | ||
12 | </text> | ||
13 | <text name="additional_help_url"> | ||
14 | http://www.secondlife.com/app/support/support.html | ||
11 | </text> | 15 | </text> |
12 | </floater> | 16 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_html_help.xml b/linden/indra/newview/skins/xui/ko/floater_html_help.xml index 1fe3412..2258112 100644 --- a/linden/indra/newview/skins/xui/ko/floater_html_help.xml +++ b/linden/indra/newview/skins/xui/ko/floater_html_help.xml | |||
@@ -1,7 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="htmlhelp" title="Second Life λμλ§"> | 2 | <floater name="htmlhelp" title="μΈμ»¨λλΌμ΄ν λμλ§"> |
3 | <button label="λ€λ‘" name="back_btn" /> | 3 | <button label="λ€λ‘" name="back_btn" /> |
4 | <button label="μ§" name="home_btn" /> | 4 | <button label="ν" name="home_btn" /> |
5 | <button label="μμΌλ‘" name="forward_btn" /> | 5 | <button label="μμΌλ‘" name="forward_btn" /> |
6 | <button label="λ«κΈ°" name="close_btn" /> | 6 | <button label="λ«κΈ°" name="close_btn" /> |
7 | <text name="status_text"> | 7 | <text name="status_text"> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_im.xml b/linden/indra/newview/skins/xui/ko/floater_im.xml index 9241ee3..60ff087 100644 --- a/linden/indra/newview/skins/xui/ko/floater_im.xml +++ b/linden/indra/newview/skins/xui/ko/floater_im.xml | |||
@@ -1,9 +1,30 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <multi_floater name="im_floater" title="λ©μ μ "> | 2 | <multi_floater name="im_floater" title="λ©μ μ "> |
3 | <text name="only_user_message"> | 3 | <text name="only_user_message"> |
4 | κ·νλ μ΄ μΈμ μ μ μΌν μ¬μ©μμ λλ€. | 4 | μ΄ μΈμ μ μ μΌν μ¬μ©μμ λλ€. |
5 | </text> | 5 | </text> |
6 | <text name="offline_message"> | 6 | <text name="offline_message"> |
7 | [LAST] [FIRST]μ΄(κ°) μ€νλΌμΈμ λλ€. | 7 | [FIRST] [LAST]λμ μ€νλΌμΈμ λλ€. |
8 | </text> | ||
9 | <text name="generic_request_error"> | ||
10 | μ€λ₯ λ³΄κ³ μμ±μ μμ²νμΌλ―λ‘ λμ€μ λ€μ μλνμμμ€. | ||
11 | </text> | ||
12 | <text name="insufficient_perms_error"> | ||
13 | μΆ©λΆν κΆνμ΄ μμ΅λλ€. | ||
14 | </text> | ||
15 | <text name="user_no_help"> | ||
16 | μμ²λ μ¬μ©μλ λ μ΄μ λμλ§ μΈμ μ μμ§ μμ΅λλ€. | ||
17 | </text> | ||
18 | <text name="add_session_event"> | ||
19 | μ±ν μΈμ μ μμ΄μ νΈ μΆκ° | ||
20 | </text> | ||
21 | <text name="message_session_event"> | ||
22 | μ±ν νκΈ° | ||
23 | </text> | ||
24 | <text name="teleport_session_event"> | ||
25 | μμ±μλ‘ ν 리ν¬νΈ | ||
26 | </text> | ||
27 | <text name="removed_from_group"> | ||
28 | κ·Έλ£Ήμμ μ κ±°λμμ΅λλ€. | ||
8 | </text> | 29 | </text> |
9 | </multi_floater> | 30 | </multi_floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_image_preview.xml b/linden/indra/newview/skins/xui/ko/floater_image_preview.xml index b7a72b7..8cfa403 100644 --- a/linden/indra/newview/skins/xui/ko/floater_image_preview.xml +++ b/linden/indra/newview/skins/xui/ko/floater_image_preview.xml | |||
@@ -7,14 +7,14 @@ | |||
7 | μ€λͺ : | 7 | μ€λͺ : |
8 | </text> | 8 | </text> |
9 | <text name="preview_label"> | 9 | <text name="preview_label"> |
10 | μ΄λ―Έμ§ 미리보기 νμ: | 10 | μ΄λ―Έμ§ 미리보기: |
11 | </text> | 11 | </text> |
12 | <combo_box label="볡μ₯ μ ν" name="clothing_type_combo"> | 12 | <combo_box label="μμ μ ν" name="clothing_type_combo"> |
13 | <combo_item name="Image"> | 13 | <combo_item name="Image"> |
14 | μ΄λ―Έμ§ | 14 | μ΄λ―Έμ§ |
15 | </combo_item> | 15 | </combo_item> |
16 | <combo_item name="Hair"> | 16 | <combo_item name="Hair"> |
17 | ν€μ΄μ€νμΌ | 17 | ν€μ΄ |
18 | </combo_item> | 18 | </combo_item> |
19 | <combo_item name="FemaleHead"> | 19 | <combo_item name="FemaleHead"> |
20 | μ¬μ± 머리 | 20 | μ¬μ± 머리 |
@@ -37,11 +37,14 @@ | |||
37 | <combo_item name="Skirt"> | 37 | <combo_item name="Skirt"> |
38 | μΉλ§ | 38 | μΉλ§ |
39 | </combo_item> | 39 | </combo_item> |
40 | <combo_item name="SculptedPrim"> | ||
41 | μ‘°κ° νλ¦Ό | ||
42 | </combo_item> | ||
40 | </combo_box> | 43 | </combo_box> |
41 | <text name="bad_image_text"> | 44 | <text name="bad_image_text"> |
42 | μ΄λ―Έμ§λ₯Ό μ½μ μ μμ΅λλ€. | 45 | μ΄λ―Έμ§ νμΌμ μ½μ μ μμ΅λλ€. |
43 | 46 | ||
44 | μ΄λ―Έμ§λ₯Ό 24 λΉνΈ Targa(.tga)λ‘ μ μ₯ν΄ λ³΄μμμ€. | 47 | μ΄λ―Έμ§λ₯Ό 24λΉνΈ Targa(.tga)λ‘ μ μ₯ν΄λ³΄μμμ€. |
45 | </text> | 48 | </text> |
46 | <button label="μ·¨μ" name="cancel_btn" /> | 49 | <button label="μ·¨μ" name="cancel_btn" /> |
47 | <button label="μ λ‘λ(L$[AMOUNT])" name="ok_btn" /> | 50 | <button label="μ λ‘λ(L$[AMOUNT])" name="ok_btn" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_import.xml b/linden/indra/newview/skins/xui/ko/floater_import.xml index bb86ca4..44aa94b 100644 --- a/linden/indra/newview/skins/xui/ko/floater_import.xml +++ b/linden/indra/newview/skins/xui/ko/floater_import.xml | |||
@@ -7,7 +7,7 @@ | |||
7 | μ€λͺ : | 7 | μ€λͺ : |
8 | </text> | 8 | </text> |
9 | <text name="preview_label"> | 9 | <text name="preview_label"> |
10 | μ λ‘λ λμ νμΌ: | 10 | μ λ‘λν νμΌ: |
11 | </text> | 11 | </text> |
12 | <button label="μ·¨μ" name="cancel_btn" /> | 12 | <button label="μ·¨μ" name="cancel_btn" /> |
13 | <button label="μ λ‘λ(L$10)" name="ok_btn" /> | 13 | <button label="μ λ‘λ(L$10)" name="ok_btn" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_inspect.xml b/linden/indra/newview/skins/xui/ko/floater_inspect.xml new file mode 100644 index 0000000..064dee7 --- /dev/null +++ b/linden/indra/newview/skins/xui/ko/floater_inspect.xml | |||
@@ -0,0 +1,14 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="inspect" title="μ€λΈμ νΈ κ²μ¬"> | ||
3 | <scroll_list name="object_list" | ||
4 | tool_tip="Select an object from this list to highlight it in-world"> | ||
5 | <column label="Object Name" name="object_name" /> | ||
6 | <column label="Owner Name" name="owner_name" /> | ||
7 | <column label="Creator Name" name="creator_name" /> | ||
8 | <column label="Creation Date" name="creation_date" /> | ||
9 | </scroll_list> | ||
10 | <button label="μμ μ νλ‘ν μ°Έμ‘°β¦" label_selected="" name="button owner" | ||
11 | tool_tip="κ°μ‘° νμλ μ€λΈμ νΈμ μμ μ νλ‘ν μ°Έμ‘°" /> | ||
12 | <button label="μμ±μ νλ‘ν μ°Έμ‘°β¦" label_selected="" name="button creator" | ||
13 | tool_tip="κ°μ‘° νμλ μ€λΈμ νΈμ μ΅μ΄ μμ±μ νλ‘ν μ°Έμ‘°" /> | ||
14 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ko/floater_instant_message.xml b/linden/indra/newview/skins/xui/ko/floater_instant_message.xml index a0cb5fd..c5973ee 100644 --- a/linden/indra/newview/skins/xui/ko/floater_instant_message.xml +++ b/linden/indra/newview/skins/xui/ko/floater_instant_message.xml | |||
@@ -1,18 +1,23 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater label="(μλ €μ§μ§ μμ)" name="im_floater" title="(μλ €μ§μ§ μμ)"> | 2 | <floater label="(μ μ μμ)" name="im_floater" title="(μ μ μμ)"> |
3 | <button label="νλ‘ν..." label_selected="νλ‘ν..." name="profile_btn" /> | 3 | <line_editor label="λ©μ μ λ₯Ό μ¬μ©νλ €λ©΄ μ¬κΈ°λ₯Ό ν΄λ¦νμμμ€." |
4 | name="chat_editor" /> | ||
5 | <button label="ν 리ν¬νΈ" label_selected="ν 리ν¬νΈ" name="teleport_btn" /> | ||
6 | <button label="νλ‘νβ¦" label_selected="νλ‘νβ¦" name="profile_btn" /> | ||
4 | <button label="λ«κΈ°" label_selected="λ«κΈ°" name="close_btn" /> | 7 | <button label="λ«κΈ°" label_selected="λ«κΈ°" name="close_btn" /> |
5 | <text name="live_help_dialog"> | 8 | <text name="live_help_dialog"> |
6 | ***Second Lifeμ ν¨κ» μμ λ΄μ¬μκ° λλ£ μ£Όλ―Όμ λμμ£Όλ λΌμ΄λΈ λμλ§μ μ€μ κ²μ νμν©λλ€! *** | 9 | *** λμλ§ μμ²μ λλ€ *** |
7 | F1μ λλ¬ SL λμλ§ νμ΄μ§λ₯Ό μ°μ νμΈνμμμ€. | 10 | λ¨Όμ , F1μ λλ₯΄κ±°λ μ§μμ°½κ³ (http://secondlife.com/knowledgebase/)μμ SL λμλ§ νμ΄μ§λ₯Ό νμΈνμμμ€. |
8 | λ΅λ³μ μ°Ύμ μ μλ κ²½μ°, μ§λ¬Έμ μ λ ₯νκ³ μμνλ©΄ μλ΅ κ°λ₯ν λ΄μ¬μκ° κ³§ μλ΅ν κ²μ λλ€. | 11 | λ΅λ³μ μ°Ύμ μ μλ κ²½μ°, μ§λ¬Έμ μ λ ₯νκ³ μμνλ©΄ μλ΅ κ°λ₯ν λ΄μ¬μκ° κ³§ μλ΅ν κ²μ λλ€. |
9 | μμ μ μλ£ν λκΉμ§ λΌμ΄λΈ λμλ§μ λ«μ§ λ§μμμ€. μλ΅μ΄ μμκ²½μ° μ°¨ν μΈμ λ μ§ λ€μ μλν μ μμ΅λλ€. | 12 | -=-=- λ°μ μκ°λμλ μλ΅ μκ°μ μ°¨μ΄κ° μμ μ μμ΅λλ€.-=-=- |
10 | μ°Έκ³ : λΌμ΄λΈ λμλ§ λ΄μ¬μλ λ¦°λ μ μ§μμ΄ μλλ―λ‘ μλ΅μμ μ±μ΄ 'Linden'μ΄ μλλΌλ©΄ λ΅λ³μ λΉκ³΅μμ μΈ κ²μΌλ‘ κ°μ£Όλ©λλ€. | ||
11 | </text> | 13 | </text> |
12 | <text name="title_string"> | 14 | <text name="title_string"> |
13 | Instant Message with [NAME] | 15 | [NAME](μ)κ³Ό λ©μ μ νκΈ° |
14 | </text> | 16 | </text> |
15 | <text name="typing_start_string"> | 17 | <text name="typing_start_string"> |
16 | [NAME] is typing... | 18 | [NAME]λ μ λ ₯ μ€... |
19 | </text> | ||
20 | <text name="session_start_string"> | ||
21 | [NAME](μΌ)λ‘ λ μΈμ μ μμνλ μ€μ λλ€. μ μλ§ κΈ°λ€λ¦¬μμμ€. | ||
17 | </text> | 22 | </text> |
18 | </floater> | 23 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_inventory.xml b/linden/indra/newview/skins/xui/ko/floater_inventory.xml index d9d3bd3..16f0125 100644 --- a/linden/indra/newview/skins/xui/ko/floater_inventory.xml +++ b/linden/indra/newview/skins/xui/ko/floater_inventory.xml | |||
@@ -1,12 +1,11 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="Inventory" title="μ μ₯κ³ "> | 2 | <floater name="Inventory" title="μΈλ²€ν 리"> |
3 | <tab_container name="inventory filter tabs"> | 3 | <tab_container name="inventory filter tabs"> |
4 | <inventory_panel label="All Items" name="All Items" /> | 4 | <inventory_panel label="All Items" name="All Items" /> |
5 | <inventory_panel label="Recent Items" name="Recent Items" /> | 5 | <inventory_panel label="Recent Items" name="Recent Items" /> |
6 | </tab_container> | 6 | </tab_container> |
7 | <menu_bar name="Inventory Menu"> | 7 | <menu_bar name="Inventory Menu"> |
8 | <menu label="νμΌ" name="File"> | 8 | <menu label="νμΌ" name="File"> |
9 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | ||
10 | <menu_item_call label="μ΄κΈ°" name="Open" /> | 9 | <menu_item_call label="μ΄κΈ°" name="Open" /> |
11 | <menu_item_call label="μ μ°½" name="New Window" /> | 10 | <menu_item_call label="μ μ°½" name="New Window" /> |
12 | <menu_item_call label="νν° νμ" name="Show Filters" /> | 11 | <menu_item_call label="νν° νμ" name="Show Filters" /> |
@@ -14,10 +13,9 @@ | |||
14 | <menu_item_call label="ν΄μ§ν΅ λΉμ°κΈ°" name="Empty Trash" /> | 13 | <menu_item_call label="ν΄μ§ν΅ λΉμ°κΈ°" name="Empty Trash" /> |
15 | </menu> | 14 | </menu> |
16 | <menu label="λ§λ€κΈ°" name="Create"> | 15 | <menu label="λ§λ€κΈ°" name="Create"> |
17 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | ||
18 | <menu_item_call label="μ ν΄λ" name="New Folder" /> | 16 | <menu_item_call label="μ ν΄λ" name="New Folder" /> |
19 | <menu_item_call label="μ μ€ν¬λ¦½νΈ" name="New Script" /> | 17 | <menu_item_call label="μ μ€ν¬λ¦½νΈ" name="New Script" /> |
20 | <menu_item_call label="μ μ°Έκ³ " name="New Note" /> | 18 | <menu_item_call label="μ λ©λͺ¨" name="New Note" /> |
21 | <menu_item_call label="μ μ μ€μ²" name="New Gesture" /> | 19 | <menu_item_call label="μ μ μ€μ²" name="New Gesture" /> |
22 | <menu name="New Clothes"> | 20 | <menu name="New Clothes"> |
23 | <menu_item_call label="μ μ μΈ " name="New Shirt" /> | 21 | <menu_item_call label="μ μ μΈ " name="New Shirt" /> |
@@ -27,26 +25,25 @@ | |||
27 | <menu_item_call label="μ μ¬ν·" name="New Jacket" /> | 25 | <menu_item_call label="μ μ¬ν·" name="New Jacket" /> |
28 | <menu_item_call label="μ μ€μ»€νΈ" name="New Skirt" /> | 26 | <menu_item_call label="μ μ€μ»€νΈ" name="New Skirt" /> |
29 | <menu_item_call label="μ μ₯κ°" name="New Gloves" /> | 27 | <menu_item_call label="μ μ₯κ°" name="New Gloves" /> |
30 | <menu_item_call label="μ μμ μΈ " name="New Undershirt" /> | 28 | <menu_item_call label="μ λ΄μ(μ)" name="New Undershirt" /> |
31 | <menu_item_call label="μ μλ°μ§" name="New Underpants" /> | 29 | <menu_item_call label="μ λ΄μ(ν)" name="New Underpants" /> |
32 | </menu> | 30 | </menu> |
33 | <menu name="New Body Parts"> | 31 | <menu name="New Body Parts"> |
34 | <menu_item_call label="μ λͺ¨μ΅" name="New Shape" /> | 32 | <menu_item_call label="μ λͺ¨μ΅" name="New Shape" /> |
35 | <menu_item_call label="μ νΌλΆ" name="New Skin" /> | 33 | <menu_item_call label="μ νΌλΆ" name="New Skin" /> |
36 | <menu_item_call label="μ ν€μ΄μ€νμΌ" name="New Hair" /> | 34 | <menu_item_call label="μ ν€μ΄" name="New Hair" /> |
37 | <menu_item_call label="μ λ" name="New Eyes" /> | 35 | <menu_item_call label="μ λ" name="New Eyes" /> |
38 | </menu> | 36 | </menu> |
39 | </menu> | 37 | </menu> |
40 | <menu label="Sort" name="Sort"> | 38 | <menu label="λΆλ₯" name="Sort"> |
41 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | 39 | <menu_item_check label="μ΄λ¦ μμΌλ‘" name="By Name" /> |
42 | <menu_item_check label="μ΄λ¦λ³" name="By Name" /> | 40 | <menu_item_check label="λ μ§ μμΌλ‘" name="By Date" /> |
43 | <menu_item_check label="λ μ§λ³" name="By Date" /> | 41 | <menu_item_check label="νμ μ΄λ¦μμΌλ‘ ν΄λ μ λ ¬" name="Folders Always By Name" /> |
44 | <menu_item_check label="νμ μ΄λ¦λ³λ‘ μ λ ¬ν ν΄λ" name="Folders Always By Name" /> | 42 | <menu_item_check label="μμ€ν ν΄λλ μλ‘" name="System Folders To Top" /> |
45 | </menu> | 43 | </menu> |
46 | <menu label="Filters" name="Filters"> | 44 | <menu label="νν°" name="Filters"> |
47 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | 45 | <menu_item_check label="μμ νκΈ°" name="Modify Current" /> |
48 | <menu_item_check label="νμ¬ μν μμ " name="Modify Current" /> | 46 | <menu_item_call label="μ΄κΈ°ννκΈ°" name="Reset Current" /> |
49 | <menu_item_call label="νμ¬ μ¬μ€μ " name="Reset Current" /> | ||
50 | </menu> | 47 | </menu> |
51 | </menu_bar> | 48 | </menu_bar> |
52 | </floater> | 49 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_inventory_item_properties.xml b/linden/indra/newview/skins/xui/ko/floater_inventory_item_properties.xml index 50cee90..3e9a636 100644 --- a/linden/indra/newview/skins/xui/ko/floater_inventory_item_properties.xml +++ b/linden/indra/newview/skins/xui/ko/floater_inventory_item_properties.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="item properties" title="μ μ₯κ³ μμ΄ν νΉμ±"> | 2 | <floater name="item properties" title="μΈλ²€ν 리 μμ±"> |
3 | <text name="LabelItemNameTitle"> | 3 | <text name="LabelItemNameTitle"> |
4 | μ΄λ¦: | 4 | μ΄λ¦: |
5 | </text> | 5 | </text> |
@@ -7,36 +7,36 @@ | |||
7 | μ€λͺ : | 7 | μ€λͺ : |
8 | </text> | 8 | </text> |
9 | <text name="LabelCreatorTitle"> | 9 | <text name="LabelCreatorTitle"> |
10 | μμ±μ: | 10 | λ§λ μ΄: |
11 | </text> | 11 | </text> |
12 | <text name="LabelCreatorName"> | 12 | <text name="LabelCreatorName"> |
13 | λμ½ λ¦°λ | 13 | Nicole Linden |
14 | </text> | 14 | </text> |
15 | <button label="νλ‘ν..." label_selected="" name="BtnCreator" /> | 15 | <button label="νλ‘νβ¦" label_selected="" name="BtnCreator" /> |
16 | <text name="LabelOwnerTitle"> | 16 | <text name="LabelOwnerTitle"> |
17 | μμ μ£Ό: | 17 | μμ μ: |
18 | </text> | 18 | </text> |
19 | <text name="LabelOwnerName"> | 19 | <text name="LabelOwnerName"> |
20 | μ€λμ€ λ¦°λ | 20 | Thrax Linden |
21 | </text> | 21 | </text> |
22 | <button label="νλ‘ν..." label_selected="" name="BtnOwner" /> | 22 | <button label="νλ‘νβ¦" label_selected="" name="BtnOwner" /> |
23 | <text name="LabelAcquiredTitle"> | 23 | <text name="LabelAcquiredTitle"> |
24 | μ·¨λ λμ: | 24 | κ°μ Έμ¨ νλͺ©: |
25 | </text> | 25 | </text> |
26 | <text name="LabelAcquiredDate"> | 26 | <text name="LabelAcquiredDate"> |
27 | 2006λ 5μ 24μΌ μμμΌ 12:50:46 | 27 | 2006λ 5μ 24μΌ μμμΌ 12:50:46 |
28 | </text> | 28 | </text> |
29 | <text name="OwnerLabel"> | 29 | <text name="OwnerLabel"> |
30 | κ·νλ: | 30 | λ€μκ³Ό κ°μ μμ μ μνν μ μμ΅λλ€: |
31 | </text> | 31 | </text> |
32 | <check_box label="μμ " name="CheckOwnerModify" /> | 32 | <check_box label="μμ " name="CheckOwnerModify" /> |
33 | <check_box label="볡μ¬" name="CheckOwnerCopy" /> | 33 | <check_box label="볡μ¬" name="CheckOwnerCopy" /> |
34 | <check_box label="μ¬ν맀/λ¬΄λ£ λ°°ν¬" name="CheckOwnerTransfer" /> | 34 | <check_box label="μ¬ν맀/μ£ΌκΈ°" name="CheckOwnerTransfer" /> |
35 | <text name="BaseMaskDebug"> | 35 | <text name="BaseMaskDebug"> |
36 | B: | 36 | B: |
37 | </text> | 37 | </text> |
38 | <text name="OwnerMaskDebug"> | 38 | <text name="OwnerMaskDebug"> |
39 | O: | 39 | O; |
40 | </text> | 40 | </text> |
41 | <text name="GroupMaskDebug"> | 41 | <text name="GroupMaskDebug"> |
42 | G: | 42 | G: |
@@ -50,18 +50,18 @@ | |||
50 | <check_box label="κ·Έλ£Ήκ³Ό 곡μ " name="CheckShareWithGroup" /> | 50 | <check_box label="κ·Έλ£Ήκ³Ό 곡μ " name="CheckShareWithGroup" /> |
51 | <check_box label="μ무λ λ³΅μ¬ νμ©" name="CheckEveryoneCopy" /> | 51 | <check_box label="μ무λ λ³΅μ¬ νμ©" name="CheckEveryoneCopy" /> |
52 | <text name="NextOwnerLabel"> | 52 | <text name="NextOwnerLabel"> |
53 | λ€μ μμ μ£Όλ: | 53 | λ€μ μμ μ κΆν: |
54 | </text> | 54 | </text> |
55 | <check_box label="μμ " name="CheckNextOwnerModify" /> | 55 | <check_box label="μμ " name="CheckNextOwnerModify" /> |
56 | <check_box label="볡μ¬" name="CheckNextOwnerCopy" /> | 56 | <check_box label="볡μ¬" name="CheckNextOwnerCopy" /> |
57 | <check_box label="μ¬ν맀/λ¬΄λ£ λ°°ν¬" name="CheckNextOwnerTransfer" /> | 57 | <check_box label="μ¬ν맀/μ£ΌκΈ°" name="CheckNextOwnerTransfer" /> |
58 | <text name="SaleLabel"> | 58 | <text name="SaleLabel"> |
59 | μμ΄ν νμ: | 59 | μμ΄ν νμ: |
60 | </text> | 60 | </text> |
61 | <check_box label="맀물" name="CheckPurchase" /> | 61 | <check_box label="ν맀 μ¬λΆ" name="CheckPurchase" /> |
62 | <radio_group name="RadioSaleType"> | 62 | <radio_group name="RadioSaleType"> |
63 | <radio_item name="radio"> | 63 | <radio_item name="radio"> |
64 | λ μ°½μ μ | 64 | μλ³Έ |
65 | </radio_item> | 65 | </radio_item> |
66 | <radio_item name="radio2"> | 66 | <radio_item name="radio2"> |
67 | λ³΅μ¬ | 67 | λ³΅μ¬ |
diff --git a/linden/indra/newview/skins/xui/ko/floater_inventory_view_finder.xml b/linden/indra/newview/skins/xui/ko/floater_inventory_view_finder.xml index aa00c83..9f762ac 100644 --- a/linden/indra/newview/skins/xui/ko/floater_inventory_view_finder.xml +++ b/linden/indra/newview/skins/xui/ko/floater_inventory_view_finder.xml | |||
@@ -1,17 +1,17 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="Inventory Finder" title="inventory_recent_items"> | 2 | <floater name="Inventory Finder" title="μΈλ²€ν 리_μ΅μ _μμ΄ν "> |
3 | <check_box label="μ λλ©μ΄μ " name="check_animation" /> | 3 | <check_box label="μ λλ©μ΄μ " name="check_animation" /> |
4 | <check_box label="λͺ ν¨" name="check_calling_card" /> | 4 | <check_box label="νλ‘ν" name="check_calling_card" /> |
5 | <check_box label="μλ₯" name="check_clothing" /> | 5 | <check_box label="μ·" name="check_clothing" /> |
6 | <check_box label="μ μ€μ²" name="check_gesture" /> | 6 | <check_box label="μ μ€μ²" name="check_gesture" /> |
7 | <check_box label="κ²½κ³ νμ" name="check_landmark" /> | 7 | <check_box label="λλλ§ν¬ λ§λ€κΈ°" name="check_landmark" /> |
8 | <check_box label="λ ΈνΈμΉ΄λ" name="check_notecard" /> | 8 | <check_box label="λ ΈνΈμΉ΄λ" name="check_notecard" /> |
9 | <check_box label="μ¬λ¬Ό" name="check_object" /> | 9 | <check_box label="μ€λΈμ νΈ" name="check_object" /> |
10 | <check_box label="μ€ν¬λ¦½νΈ" name="check_script" /> | 10 | <check_box label="μ€ν¬λ¦½νΈ" name="check_script" /> |
11 | <check_box label="μ¬μ΄λ" name="check_sound" /> | 11 | <check_box label="μ¬μ΄λ" name="check_sound" /> |
12 | <check_box label="ν μ€μ²" name="check_texture" /> | 12 | <check_box label="ν μ€μ²" name="check_texture" /> |
13 | <check_box label="μ€λ μ·" name="check_snapshot" /> | 13 | <check_box label="μ€λ μ·" name="check_snapshot" /> |
14 | <button label="μ 체" label_selected="μ 체" name="All" /> | 14 | <button label="λͺ¨λ" label_selected="λͺ¨λ" name="All" /> |
15 | <button label="μμ" label_selected="μμ" name="None" /> | 15 | <button label="μμ" label_selected="μμ" name="None" /> |
16 | <check_box label="νμ ν΄λ νμ" name="check_show_empty" /> | 16 | <check_box label="νμ ν΄λ νμ" name="check_show_empty" /> |
17 | <check_box label="λ‘κ·Έμ€ν ν κ²½κ³Ό μκ°" name="check_since_logoff" /> | 17 | <check_box label="λ‘κ·Έμ€ν ν κ²½κ³Ό μκ°" name="check_since_logoff" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_joystick.xml b/linden/indra/newview/skins/xui/ko/floater_joystick.xml new file mode 100644 index 0000000..8eb521f --- /dev/null +++ b/linden/indra/newview/skins/xui/ko/floater_joystick.xml | |||
@@ -0,0 +1,55 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="build options floater" title="Flycam μ΅μ "> | ||
3 | <text> | ||
4 | XμΆ | ||
5 | </text> | ||
6 | <text> | ||
7 | YμΆ | ||
8 | </text> | ||
9 | <text> | ||
10 | ZμΆ | ||
11 | </text> | ||
12 | <spinner label="맀ν" /> | ||
13 | <spinner label="맀ν" /> | ||
14 | <spinner label="맀ν" /> | ||
15 | <spinner label="ν¬κΈ°" /> | ||
16 | <spinner label="ν¬κΈ°" /> | ||
17 | <spinner label="ν¬κΈ°" /> | ||
18 | <spinner label="μ¬κ°μ§λ" /> | ||
19 | <spinner label="μ¬κ°μ§λ" /> | ||
20 | <spinner label="μ¬κ°μ§λ" /> | ||
21 | <text> | ||
22 | μ | ||
23 | </text> | ||
24 | <text> | ||
25 | νΌμΉ | ||
26 | </text> | ||
27 | <text> | ||
28 | μν | ||
29 | </text> | ||
30 | <spinner label="맀ν" /> | ||
31 | <spinner label="맀ν" /> | ||
32 | <spinner label="맀ν" /> | ||
33 | <spinner label="ν¬κΈ°" /> | ||
34 | <spinner label="ν¬κΈ°" /> | ||
35 | <spinner label="ν¬κΈ°" /> | ||
36 | <spinner label="μ¬κ°μ§λ" /> | ||
37 | <spinner label="μ¬κ°μ§λ" /> | ||
38 | <spinner label="μ¬κ°μ§λ" /> | ||
39 | <text name="ZoomLabel"> | ||
40 | νλ/μΆμ | ||
41 | </text> | ||
42 | <spinner label="맀ν" /> | ||
43 | <spinner label="ν¬κΈ°" /> | ||
44 | <spinner label="μ¬κ°μ§λ" /> | ||
45 | <check_box label="μ§μ νλ/μΆμ" /> | ||
46 | <slider label="κΉνΈ ν¨κ³Ό" name="FlycamFeathering" /> | ||
47 | <check_box label="λ 벨 μλ μμ " /> | ||
48 | <check_box label="3D 컀μ" /> | ||
49 | <text name="JoystickMonitor"> | ||
50 | μ‘°μ΄μ€ν± κ²μ¬ | ||
51 | </text> | ||
52 | <text name="Axis"> | ||
53 | μΆ [NUM] | ||
54 | </text> | ||
55 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ko/floater_land_holdings.xml b/linden/indra/newview/skins/xui/ko/floater_land_holdings.xml index 839302c..9779e39 100644 --- a/linden/indra/newview/skins/xui/ko/floater_land_holdings.xml +++ b/linden/indra/newview/skins/xui/ko/floater_land_holdings.xml | |||
@@ -7,32 +7,32 @@ | |||
7 | <column label="" name="hidden" /> | 7 | <column label="" name="hidden" /> |
8 | </scroll_list> | 8 | </scroll_list> |
9 | <button label="ν 리ν¬νΈ" label_selected="ν 리ν¬νΈ" name="Teleport" | 9 | <button label="ν 리ν¬νΈ" label_selected="ν 리ν¬νΈ" name="Teleport" |
10 | tool_tip="μ΄ ν μ§μ μ€μ¬μΌλ‘ ν 리ν¬ν ." /> | 10 | tool_tip="μ΄ ν μ§μ μ€μ¬μΌλ‘ ν 리ν¬νΈ." /> |
11 | <button label="μ§λμ νμνκΈ°" label_selected="μ§λμ νμνκΈ°" | 11 | <button label="μ§λμ νμ" label_selected="μ§λμ νμ" name="Show on Map" |
12 | name="Show on Map" tool_tip="μ΄ ν μ§λ₯Ό μΈκ³ μ§λμ νμ." /> | 12 | tool_tip="μ΄ ν μ§λ₯Ό μλ μ§λμ νμ." /> |
13 | <text name="contrib_label"> | 13 | <text name="contrib_label"> |
14 | μμ κ·Έλ£Ήμ λν κΈ°λΆ: | 14 | κ·νμ κ·Έλ£Ήμ λν κΈ°λΆ: |
15 | </text> | 15 | </text> |
16 | <scroll_list name="grant list"> | 16 | <scroll_list name="grant list"> |
17 | <column label="Group" name="group" /> | 17 | <column label="Group" name="group" /> |
18 | <column label="Area" name="area" /> | 18 | <column label="Area" name="area" /> |
19 | </scroll_list> | 19 | </scroll_list> |
20 | <text name="allowed_label"> | 20 | <text name="allowed_label"> |
21 | νμ¬ μ§λΆ νλμμ νμ©λ ν μ§ μμ λ΄μ: | 21 | νμ¬ κ²°μ μλ¨μΌλ‘ νμ©λλ ν μ§ λ³΄μ λ: |
22 | </text> | 22 | </text> |
23 | <text name="allowed_text"> | 23 | <text name="allowed_text"> |
24 | 0 νλ°© λ―Έν° | 24 | 0 μ κ³±λ―Έν° |
25 | </text> | 25 | </text> |
26 | <text name="current_label"> | 26 | <text name="current_label"> |
27 | νμ¬ ν μ§ μμ λ΄μ: | 27 | νμ¬ ν μ§ λ³΄μ λ: |
28 | </text> | 28 | </text> |
29 | <text name="current_text"> | 29 | <text name="current_text"> |
30 | 0 νλ°© λ―Έν° | 30 | 0 μ κ³±λ―Έν° |
31 | </text> | 31 | </text> |
32 | <text name="available_label"> | 32 | <text name="available_label"> |
33 | ν μ§ λ§€μ κ°λ₯: | 33 | ν μ§ κ΅¬λ§€μ μ¬μ© κ°λ₯: |
34 | </text> | 34 | </text> |
35 | <text name="available_text"> | 35 | <text name="available_text"> |
36 | 0 νλ°© λ―Έν° | 36 | 0 μ κ³±λ―Έν° |
37 | </text> | 37 | </text> |
38 | </floater> | 38 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_live_lsleditor.xml b/linden/indra/newview/skins/xui/ko/floater_live_lsleditor.xml index 683062c..066ab32 100644 --- a/linden/indra/newview/skins/xui/ko/floater_live_lsleditor.xml +++ b/linden/indra/newview/skins/xui/ko/floater_live_lsleditor.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="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 | </floater> | 5 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_lsl_guide.xml b/linden/indra/newview/skins/xui/ko/floater_lsl_guide.xml new file mode 100644 index 0000000..17089ea --- /dev/null +++ b/linden/indra/newview/skins/xui/ko/floater_lsl_guide.xml | |||
@@ -0,0 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="script ed float" title="λμ λμλ§"> | ||
3 | <check_box label="컀μ λ°λΌκ°κΈ°" name="lock_check" /> | ||
4 | <combo_box label="μ κΈ" name="history_combo" /> | ||
5 | <button label="λ€λ‘" name="back_btn" /> | ||
6 | <button label="μμΌλ‘" name="fwd_btn" /> | ||
7 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ko/floater_mute.xml b/linden/indra/newview/skins/xui/ko/floater_mute.xml index f00a49e..eddcef8 100644 --- a/linden/indra/newview/skins/xui/ko/floater_mute.xml +++ b/linden/indra/newview/skins/xui/ko/floater_mute.xml | |||
@@ -1,11 +1,10 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="mute floater" title="μ£Όλ―Ό μμκ±° λ° μμ΄ν "> | 2 | <floater name="mute floater" title="μ£Όλ―Ό λ° μ€λΈμ νΈ μ°¨λ¨"> |
3 | <scroll_list name="mutes" tool_tip="List of currently muted residents" /> | 3 | <scroll_list name="mutes" tool_tip="List of currently muted residents" /> |
4 | <button label="μ£Όλ―Ό μμκ±°..." label_selected="μ£Όλ―Ό μμκ±°..." | 4 | <button label="μ°¨λ¨ν μ£Όλ―Ό" label_selected="μ°¨λ¨ν μ£Όλ―Ό" |
5 | name="Mute resident..." tool_tip="μμκ±°ν μ£Όλ―Ό μ ν" /> | 5 | name="Mute resident..." tool_tip="μ°¨λ¨ν μ£Όλ―Ό μ ν" /> |
6 | <button label="μ΄λ¦λ³ μμκ±° κ°μ²΄..." | 6 | <button label="μ°¨λ¨ν μ€λΈμ νΈ" label_selected="μ°¨λ¨ν μ€λΈμ νΈ" |
7 | label_selected="μ΄λ¦λ³ μμκ±° κ°μ²΄..." | ||
8 | name="Mute object by name..." /> | 7 | name="Mute object by name..." /> |
9 | <button label="μμκ±° ν΄μ " label_selected="μμκ±° ν΄μ " name="Unmute" | 8 | <button label="μ°¨λ¨ ν΄μ " label_selected="μ°¨λ¨ ν΄μ " name="Unmute" |
10 | tool_tip="μ£Όλ―Ό λλ μμ΄ν μ μμκ±° λͺ©λ‘μμ μμ " /> | 9 | tool_tip="μ£Όλ―Ό λλ μ€λΈμ νΈλ₯Ό μ°¨λ¨ λͺ©λ‘μμ μμ " /> |
11 | </floater> | 10 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_new_im.xml b/linden/indra/newview/skins/xui/ko/floater_new_im.xml index 267d83d..325746a 100644 --- a/linden/indra/newview/skins/xui/ko/floater_new_im.xml +++ b/linden/indra/newview/skins/xui/ko/floater_new_im.xml | |||
@@ -3,7 +3,7 @@ | |||
3 | <button label="μμ" label_selected="μμ" name="start_btn" /> | 3 | <button label="μμ" label_selected="μμ" name="start_btn" /> |
4 | <button label="λ«κΈ°" label_selected="λ«κΈ°" name="close_btn" /> | 4 | <button label="λ«κΈ°" label_selected="λ«κΈ°" name="close_btn" /> |
5 | <text name="name_format"> | 5 | <text name="name_format"> |
6 | [LAST] [FIRST] | 6 | [FIRST] [LAST] |
7 | </text> | 7 | </text> |
8 | <text name="online_descriptor"> | 8 | <text name="online_descriptor"> |
9 | (μ¨λΌμΈ) | 9 | (μ¨λΌμΈ) |
diff --git a/linden/indra/newview/skins/xui/ko/floater_new_outfit_dialog.xml b/linden/indra/newview/skins/xui/ko/floater_new_outfit_dialog.xml index 60c846f..79da40b 100644 --- a/linden/indra/newview/skins/xui/ko/floater_new_outfit_dialog.xml +++ b/linden/indra/newview/skins/xui/ko/floater_new_outfit_dialog.xml | |||
@@ -4,19 +4,19 @@ | |||
4 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Cancel" /> | 4 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Cancel" /> |
5 | <check_box label="μΈν" name="checkbox_Shape" /> | 5 | <check_box label="μΈν" name="checkbox_Shape" /> |
6 | <check_box label="νΌλΆ" name="checkbox_Skin" /> | 6 | <check_box label="νΌλΆ" name="checkbox_Skin" /> |
7 | <check_box label="ν€μ΄μ€νμΌ" name="checkbox_Hair" /> | 7 | <check_box label="ν€μ΄" name="checkbox_Hair" /> |
8 | <check_box label="λ" name="checkbox_Eyes" /> | 8 | <check_box label="λ" name="checkbox_Eyes" /> |
9 | <check_box label="ν΄λ μ΄λ¦μΌλ‘ μλ₯ μ΄λ¦ λ³κ²½" name="rename" /> | 9 | <check_box label="ν΄λ μ΄λ¦μΌλ‘ μμ μ΄λ¦ λ³κ²½" name="rename" /> |
10 | <check_box label="μ μΈ " name="checkbox_Shirt" /> | 10 | <check_box label="μ μΈ " name="checkbox_Shirt" /> |
11 | <check_box label="λ°μ§" name="checkbox_Pants" /> | 11 | <check_box label="λ°μ§" name="checkbox_Pants" /> |
12 | <check_box label="μ λ°" name="checkbox_Shoes" /> | 12 | <check_box label="μ λ°" name="checkbox_Shoes" /> |
13 | <check_box label="μλ§" name="checkbox_Socks" /> | 13 | <check_box label="μλ§" name="checkbox_Socks" /> |
14 | <check_box label="μ¬ν·" name="checkbox_Jacket" /> | 14 | <check_box label="μ¬ν·" name="checkbox_Jacket" /> |
15 | <check_box label="μ₯κ°" name="checkbox_Gloves" /> | 15 | <check_box label="μ₯κ°" name="checkbox_Gloves" /> |
16 | <check_box label="μμ μΈ " name="checkbox_Undershirt" /> | 16 | <check_box label="λ΄μ(μ)" name="checkbox_Undershirt" /> |
17 | <check_box label="μλ°μ§" name="checkbox_Underpants" /> | 17 | <check_box label="λ΄μ(ν)" name="checkbox_Underpants" /> |
18 | <check_box label="μΉλ§" name="checkbox_Skirt" /> | 18 | <check_box label="μΉλ§" name="checkbox_Skirt" /> |
19 | <check_box label="νλΆ" name="checkbox_Chest" /> | 19 | <check_box label="κ°μ΄" name="checkbox_Chest" /> |
20 | <check_box label="ν΄κ³¨" name="checkbox_Skull" /> | 20 | <check_box label="ν΄κ³¨" name="checkbox_Skull" /> |
21 | <check_box label="μΌμͺ½ μ΄κΉ¨" name="checkbox_Left Shoulder" /> | 21 | <check_box label="μΌμͺ½ μ΄κΉ¨" name="checkbox_Left Shoulder" /> |
22 | <check_box label="μ€λ₯Έμͺ½ μ΄κΉ¨" name="checkbox_Right Shoulder" /> | 22 | <check_box label="μ€λ₯Έμͺ½ μ΄κΉ¨" name="checkbox_Right Shoulder" /> |
@@ -33,9 +33,9 @@ | |||
33 | <check_box label="μΌμͺ½ μꡬ" name="checkbox_Left Eyeball" /> | 33 | <check_box label="μΌμͺ½ μꡬ" name="checkbox_Left Eyeball" /> |
34 | <check_box label="μ€λ₯Έμͺ½ μꡬ" name="checkbox_Right Eyeball" /> | 34 | <check_box label="μ€λ₯Έμͺ½ μꡬ" name="checkbox_Right Eyeball" /> |
35 | <check_box label="μ½" name="checkbox_Nose" /> | 35 | <check_box label="μ½" name="checkbox_Nose" /> |
36 | <check_box label="μ€λ₯Έμͺ½ νμ£½μ§" name="checkbox_R Upper Arm" /> | 36 | <check_box label="μ€λ₯Έμͺ½ μλ°" name="checkbox_R Upper Arm" /> |
37 | <check_box label="μ€λ₯Έμͺ½ νλ" name="checkbox_R Forearm" /> | 37 | <check_box label="μ€λ₯Έμͺ½ νλ" name="checkbox_R Forearm" /> |
38 | <check_box label="μΌμͺ½ νμ£½μ§" name="checkbox_L Upper Arm" /> | 38 | <check_box label="μΌμͺ½ μλ°" name="checkbox_L Upper Arm" /> |
39 | <check_box label="μΌμͺ½ νλ" name="checkbox_L Forearm" /> | 39 | <check_box label="μΌμͺ½ νλ" name="checkbox_L Forearm" /> |
40 | <check_box label="μ€λ₯Έμͺ½ μλ©μ΄" name="checkbox_Right Hip" /> | 40 | <check_box label="μ€λ₯Έμͺ½ μλ©μ΄" name="checkbox_Right Hip" /> |
41 | <check_box label="μ€λ₯Έμͺ½ νλ² μ§" name="checkbox_R Upper Leg" /> | 41 | <check_box label="μ€λ₯Έμͺ½ νλ² μ§" name="checkbox_R Upper Leg" /> |
@@ -48,7 +48,7 @@ | |||
48 | <check_box label="μ€λ₯Έμͺ½ κ°μ΄ κ·Όμ‘" name="checkbox_Right Pec" /> | 48 | <check_box label="μ€λ₯Έμͺ½ κ°μ΄ κ·Όμ‘" name="checkbox_Right Pec" /> |
49 | <check_box label="μ€μ 2" name="checkbox_Center 2" /> | 49 | <check_box label="μ€μ 2" name="checkbox_Center 2" /> |
50 | <check_box label="μ€λ₯Έμͺ½ μλ¨" name="checkbox_Top Right" /> | 50 | <check_box label="μ€λ₯Έμͺ½ μλ¨" name="checkbox_Top Right" /> |
51 | <check_box label="맨 μ" name="checkbox_Top" /> | 51 | <check_box label="μλ¨" name="checkbox_Top" /> |
52 | <check_box label="μΌμͺ½ μλ¨" name="checkbox_Top Left" /> | 52 | <check_box label="μΌμͺ½ μλ¨" name="checkbox_Top Left" /> |
53 | <check_box label="μ€μ" name="checkbox_Center" /> | 53 | <check_box label="μ€μ" name="checkbox_Center" /> |
54 | <check_box label="μΌμͺ½ νλ¨" name="checkbox_Bottom Left" /> | 54 | <check_box label="μΌμͺ½ νλ¨" name="checkbox_Bottom Left" /> |
@@ -62,8 +62,7 @@ | |||
62 | 볡μ₯μ μ볡과 μ 체 λΆλΆμ΄ ν¬ν¨λ ν΄λμ λλ€. | 62 | 볡μ₯μ μ볡과 μ 체 λΆλΆμ΄ ν¬ν¨λ ν΄λμ λλ€. |
63 | 볡μ₯ ν΄λλ₯Ό λμ΄ μ΄λ₯Ό μ νλ €λ μλ°νμ λμΌμμμ€. | 63 | 볡μ₯ ν΄λλ₯Ό λμ΄ μ΄λ₯Ό μ νλ €λ μλ°νμ λμΌμμμ€. |
64 | 64 | ||
65 | "μ 볡μ₯ λ§λ€κΈ°"λ μλ‘μ΄ ν΄λλ₯Ό λ§λ€μ΄ μ§κΈ μ κ³ μλ μμ΄ν μ | 65 | "μ 볡μ₯ λ§λ€κΈ°"λ μλ‘μ΄ ν΄λλ₯Ό λ§λ€μ΄ μ§κΈ μ κ³ μλ μμ΄ν μ μ¬λ³Έμ μ μ₯ν©λλ€. |
66 | μ¬λ³Έμ μ μ₯ν©λλ€. | ||
67 | </text> | 66 | </text> |
68 | <text type="string" length="1" name="Folder name:"> | 67 | <text type="string" length="1" name="Folder name:"> |
69 | ν΄λ μ΄λ¦: | 68 | ν΄λ μ΄λ¦: |
@@ -72,10 +71,10 @@ | |||
72 | 볡μ₯μ ν¬ν¨μν¬ μμ΄ν : | 71 | 볡μ₯μ ν¬ν¨μν¬ μμ΄ν : |
73 | </text> | 72 | </text> |
74 | <text type="string" length="1" name="Body Parts:"> | 73 | <text type="string" length="1" name="Body Parts:"> |
75 | μ 체 λΆλΆ: | 74 | μ 체 λΆμ: |
76 | </text> | 75 | </text> |
77 | <text type="string" length="1" name="Clothes:"> | 76 | <text type="string" length="1" name="Clothes:"> |
78 | μλ₯: | 77 | μμ: |
79 | </text> | 78 | </text> |
80 | <text type="string" length="1" name="Attachments:"> | 79 | <text type="string" length="1" name="Attachments:"> |
81 | λΆμ°©λ¬Ό: | 80 | λΆμ°©λ¬Ό: |
diff --git a/linden/indra/newview/skins/xui/ko/floater_openobject.xml b/linden/indra/newview/skins/xui/ko/floater_openobject.xml index 47cc047..cad165e 100644 --- a/linden/indra/newview/skins/xui/ko/floater_openobject.xml +++ b/linden/indra/newview/skins/xui/ko/floater_openobject.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="objectcontents" title="μμ΄ν 컨ν μΈ "> | 2 | <floater name="objectcontents" title="μ€λΈμ νΈ μ»¨ν μΈ "> |
3 | <text type="string" length="1" name="object_name"> | 3 | <text type="string" length="1" name="object_name"> |
4 | [DESC]: | 4 | [DESC]: |
5 | </text> | 5 | </text> |
6 | <button label="보κ΄ν¨μ 볡μ¬" label_selected="보κ΄ν¨μ 볡μ¬" | 6 | <button label="μΈλ²€ν 리μ 볡μ¬" label_selected="μΈλ²€ν 리μ 볡μ¬" |
7 | name="copy_to_inventory_button" /> | 7 | name="copy_to_inventory_button" /> |
8 | <button label="λ³΅μ¬ λ° μ°©μ©" label_selected="λ³΅μ¬ λ° μ°©μ©" | 8 | <button label="λ³΅μ¬ λ° μ°©μ©" label_selected="λ³΅μ¬ λ° μ°©μ©" |
9 | name="copy_and_wear_button" /> | 9 | name="copy_and_wear_button" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_pay.xml b/linden/indra/newview/skins/xui/ko/floater_pay.xml index 12b363f..a76640b 100644 --- a/linden/indra/newview/skins/xui/ko/floater_pay.xml +++ b/linden/indra/newview/skins/xui/ko/floater_pay.xml | |||
@@ -7,10 +7,10 @@ | |||
7 | <button label="μ§λΆ" label_selected="μ§λΆ" name="pay btn" /> | 7 | <button label="μ§λΆ" label_selected="μ§λΆ" name="pay btn" /> |
8 | <button label="μ·¨μ" label_selected="μ·¨μ" name="cancel btn" /> | 8 | <button label="μ·¨μ" label_selected="μ·¨μ" name="cancel btn" /> |
9 | <text type="string" length="1" name="payee_label"> | 9 | <text type="string" length="1" name="payee_label"> |
10 | μ§λΆ μ£Όλ―Ό: | 10 | μ£Όλ―Ό μ§λΆ: |
11 | </text> | 11 | </text> |
12 | <text type="string" length="1" name="payee_name"> | 12 | <text type="string" length="1" name="payee_name"> |
13 | [LAST] [FIRST] | 13 | [FIRST] [LAST] |
14 | </text> | 14 | </text> |
15 | <text type="string" length="1" name="fastpay text"> | 15 | <text type="string" length="1" name="fastpay text"> |
16 | λΉ λ₯Έ μ§λΆ: | 16 | λΉ λ₯Έ μ§λΆ: |
diff --git a/linden/indra/newview/skins/xui/ko/floater_pay_object.xml b/linden/indra/newview/skins/xui/ko/floater_pay_object.xml index 6f30e20..8fa6dff 100644 --- a/linden/indra/newview/skins/xui/ko/floater_pay_object.xml +++ b/linden/indra/newview/skins/xui/ko/floater_pay_object.xml | |||
@@ -1,16 +1,16 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="Give Money" title=""> | 2 | <floater name="Give Money" title=""> |
3 | <text type="string" length="1" name="payee_group"> | 3 | <text type="string" length="1" name="payee_group"> |
4 | μ§λΆ κ·Έλ£Ή: | 4 | κ·Έλ£Ή μ§λΆ: |
5 | </text> | 5 | </text> |
6 | <text type="string" length="1" name="payee_resident"> | 6 | <text type="string" length="1" name="payee_resident"> |
7 | μ§λΆ μ£Όλ―Ό: | 7 | μ£Όλ―Ό μ§λΆ: |
8 | </text> | 8 | </text> |
9 | <text type="string" length="1" name="payee_name"> | 9 | <text type="string" length="1" name="payee_name"> |
10 | [LAST] [FIRST] | 10 | [FIRST] [LAST] |
11 | </text> | 11 | </text> |
12 | <text type="string" length="1" name="object_name_label"> | 12 | <text type="string" length="1" name="object_name_label"> |
13 | λ§€κ° μμ΄ν : | 13 | λ§€κ° μ€λΈμ νΈ: |
14 | </text> | 14 | </text> |
15 | <text type="string" length="1" name="object_name_text"> | 15 | <text type="string" length="1" name="object_name_text"> |
16 | ... | 16 | ... |
diff --git a/linden/indra/newview/skins/xui/ko/floater_postcard.xml b/linden/indra/newview/skins/xui/ko/floater_postcard.xml index 5675e64..2d35b83 100644 --- a/linden/indra/newview/skins/xui/ko/floater_postcard.xml +++ b/linden/indra/newview/skins/xui/ko/floater_postcard.xml | |||
@@ -1,27 +1,27 @@ | |||
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 | <text name="from_label"> | 6 | <text name="from_label"> |
7 | κ·νμ μ΄λ©μΌ: | 7 | μ΄λ©μΌ: |
8 | </text> | 8 | </text> |
9 | <text name="name_label"> | 9 | <text name="name_label"> |
10 | κ·νμ μ΄λ¦: | 10 | μ΄λ¦: |
11 | </text> | 11 | </text> |
12 | <text name="subject_label"> | 12 | <text name="subject_label"> |
13 | μ£Όμ : | 13 | μ λͺ©: |
14 | </text> | 14 | </text> |
15 | <text name="msg_label"> | 15 | <text name="msg_label"> |
16 | λ©μμ§: | 16 | λ©μμ§: |
17 | </text> | 17 | </text> |
18 | <check_box label="μΉμ κ²μ" name="allow_publish_check" | 18 | <check_box label="μΉμ κ²μ" name="allow_publish_check" |
19 | tool_tip="μ΄ postcardλ₯Ό μΉμ κ²μ." /> | 19 | tool_tip="μ΄ μ½μλ₯Ό μΉμ κ²μ." /> |
20 | <check_box label="μ±μΈμ© 컨ν μΈ " name="mature_check" | 20 | <check_box label="μ±μΈμ© 컨ν μΈ " name="mature_check" |
21 | tool_tip="μ΄ μ½μμλ μ±μΈμ© λ΄μ©μ΄ ν¬ν¨λμ΄ μμ΅λλ€." /> | 21 | tool_tip="μ΄ μ½μμλ μ±μΈ μ μ© μ»¨ν μΈ κ° ν¬ν¨λμ΄ μμ΅λλ€." /> |
22 | <button label="?" name="publish_help_btn" /> | 22 | <button label="?" name="publish_help_btn" /> |
23 | <text name="fine_print"> | 23 | <text name="fine_print"> |
24 | κ·νμ μ½μ μμ μκ° SecondLifeμ κ°μ ν κ²½μ°, κ·νλ μΆμ² 보λμ€λ₯Ό λ°κ²λ©λλ€. | 24 | μ½μ μλ ΉμΈμ΄ μΈμ»¨λλΌμ΄νμ κ°μ ν κ²½μ° μΆμ² 보λμ€λ₯Ό μ»κ² λ©λλ€. |
25 | </text> | 25 | </text> |
26 | <button label="μ·¨μ" name="cancel_btn" /> | 26 | <button label="μ·¨μ" name="cancel_btn" /> |
27 | <button label="보λ΄κΈ°" name="send_btn" /> | 27 | <button label="보λ΄κΈ°" name="send_btn" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_preferences.xml b/linden/indra/newview/skins/xui/ko/floater_preferences.xml index 4882524..2da29b4 100644 --- a/linden/indra/newview/skins/xui/ko/floater_preferences.xml +++ b/linden/indra/newview/skins/xui/ko/floater_preferences.xml | |||
@@ -1,7 +1,8 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="Preferences" title="νκ²½ μ€μ "> | 2 | <floater name="Preferences" title="νκ²½ μ€μ "> |
3 | <button label="μκ°β¦" label_selected="μκ°β¦" name="About..." /> | ||
4 | <button label="νμΈ" label_selected="νμΈ" name="OK" /> | 3 | <button label="νμΈ" label_selected="νμΈ" name="OK" /> |
5 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Cancel" /> | 4 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Cancel" /> |
6 | <button label="μ μ©" label_selected="μ μ©" name="Apply" /> | 5 | <button label="μ μ©" label_selected="μ μ©" name="Apply" /> |
6 | <button label="μ 보..." label_selected="μ 보..." name="About..." /> | ||
7 | <button label="λμλ§" label_selected="λμλ§" name="Help" /> | ||
7 | </floater> | 8 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_preview_animation.xml b/linden/indra/newview/skins/xui/ko/floater_preview_animation.xml index 769218f..4a0159f 100644 --- a/linden/indra/newview/skins/xui/ko/floater_preview_animation.xml +++ b/linden/indra/newview/skins/xui/ko/floater_preview_animation.xml | |||
@@ -1,10 +1,10 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="preview anim" title="μ λλ©μ΄μ : latin salsa19"> | 2 | <floater name="preview_anim"> |
3 | <text type="string" length="1" name="desc txt"> | 3 | <text type="string" length="1" name="desc txt"> |
4 | μ€λͺ : | 4 | μ€λͺ : |
5 | </text> | 5 | </text> |
6 | <button label="μΈκ³μμ νλ μ΄" label_selected="μ€μ§" name="Anim play btn" | 6 | <button label="μλμμ μ¬μ" label_selected="μ€μ§" name="Anim play btn" |
7 | tool_tip="μ΄ μ λλ©μ΄μ μ λ€λ₯Έ μ¬λλ€μ΄ λ³Ό μ μλλ‘ μ¬μ." /> | 7 | tool_tip="μ΄ μ λλ©μ΄μ μ λ€λ₯Έ μ¬λλ€μ΄ λ³Ό μ μλλ‘ μ¬μ." /> |
8 | <button label="λ‘컬μμ νλ μ΄" label_selected="μ€μ§" name="Anim audition btn" | 8 | <button label="λ‘컬 μ¬μ" label_selected="μ€μ§" name="Anim audition btn" |
9 | tool_tip="μ΄ μ λλ©μ΄μ μ λ΄κ° λ³Ό μ μλλ‘ μ¬μ." /> | 9 | tool_tip="μ΄ μ λλ©μ΄μ μ λ΄κ° λ³Ό μ μλλ‘ μ¬μ." /> |
10 | </floater> | 10 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_preview_embedded_texture.xml b/linden/indra/newview/skins/xui/ko/floater_preview_embedded_texture.xml index 54e3832..42a0548 100644 --- a/linden/indra/newview/skins/xui/ko/floater_preview_embedded_texture.xml +++ b/linden/indra/newview/skins/xui/ko/floater_preview_embedded_texture.xml | |||
@@ -1,8 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="preview texture" title="νμμΌ"> | 2 | <floater name="preview_texture"> |
3 | <button label="보κ΄ν¨μ 볡μ¬" label_selected="보κ΄ν¨μ 볡μ¬" | 3 | <button label="μΈλ²€ν 리μ 볡μ¬" name="Copy To Inventory" /> |
4 | name="Copy To Inventory" /> | ||
5 | <text type="string" length="1" name="dimensions"> | 4 | <text type="string" length="1" name="dimensions"> |
6 | ν¬κΈ°: [ν] x [λμ΄] | 5 | ν¬κΈ°: [WIDTH]x[HEIGHT] |
7 | </text> | 6 | </text> |
8 | </floater> | 7 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_preview_existing_landmark.xml b/linden/indra/newview/skins/xui/ko/floater_preview_existing_landmark.xml index 7c963ba..2ff0664 100644 --- a/linden/indra/newview/skins/xui/ko/floater_preview_existing_landmark.xml +++ b/linden/indra/newview/skins/xui/ko/floater_preview_existing_landmark.xml | |||
@@ -1,9 +1,8 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="Linden Land, Da Boom (154, 135, 35)" | 2 | <floater name="existing_landmark_preview"> |
3 | title=" Linden Land, Da Boom (154, 135, 35)"> | ||
4 | <text type="string" length="1" name="desc txt"> | 3 | <text type="string" length="1" name="desc txt"> |
5 | μ€λͺ : | 4 | μ€λͺ : |
6 | </text> | 5 | </text> |
7 | <button label="ν 리ν¬νΈ" label_selected="" name="Teleport btn" /> | 6 | <button label="ν 리ν¬νΈ" label_selected="" name="Teleport btn" /> |
8 | <button label="μ§λμ νμνκΈ°" label_selected="" name="Show on Map btn" /> | 7 | <button label="μ§λμ νμ" label_selected="" name="Show on Map btn" /> |
9 | </floater> | 8 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_preview_gesture.xml b/linden/indra/newview/skins/xui/ko/floater_preview_gesture.xml index 2233809..67b792d 100644 --- a/linden/indra/newview/skins/xui/ko/floater_preview_gesture.xml +++ b/linden/indra/newview/skins/xui/ko/floater_preview_gesture.xml | |||
@@ -1,24 +1,24 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="gesture" title="μ μ€μ²"> | 2 | <floater name="gesture_preview"> |
3 | <text name="desc_label"> | 3 | <text name="desc_label"> |
4 | μ€λͺ : | 4 | μ€λͺ : |
5 | </text> | 5 | </text> |
6 | <text name="trigger_label"> | 6 | <text name="trigger_label"> |
7 | λ°©μμ : | 7 | λ°λ‘κ°κΈ°: |
8 | </text> | 8 | </text> |
9 | <text name="replace_text" | 9 | <text name="replace_text" |
10 | tool_tip="trigger λ¨μ΄λ₯Ό μ΄λ¬ν λ¨μ΄λ‘ κ΅μ²΄νκΈ°. μ: trigger 'hello' λ'howdy'λ‘ κ΅μ²΄νλ©΄ μ΄κ²μ μ³ν μ 'I wanted to say hello' λ₯Ό 'I wanted to say howdy' λΌκ³ λ°κΎΈκ² λ¨"> | 10 | tool_tip="μ΄λ¬ν λ§λ€λ‘ μμ λ§μ λ체ν©λλ€. μλ₯Ό λ€μ΄, μμ λ§μ βhelloβμμ βhowdy(How do you do)βλ‘ λ체νλ©΄ μ±ν μ μ μ€μ² μ¬μκ³Ό ν¨κ» 'I wanted to say hello'βμμ 'I wanted to say howdy'λ‘ λ°λλλ€."> |
11 | λ체 λμ: | 11 | λ체: |
12 | </text> | 12 | </text> |
13 | <line_editor name="replace_editor" | 13 | <line_editor name="replace_editor" |
14 | tool_tip="trigger λ¨μ΄λ₯Ό μ΄λ¬ν λ¨μ΄λ‘ κ΅μ²΄νκΈ°. μ: trigger 'hello' λ'howdy'λ‘ κ΅μ²΄νλ©΄ μ΄κ²μ μ³ν μ 'I wanted to say hello' λ₯Ό 'I wanted to say howdy' λΌκ³ λ°κΎΈκ² λ¨" /> | 14 | tool_tip="μ΄λ¬ν λ§λ€λ‘ μμ λ§μ λ체ν©λλ€. μλ₯Ό λ€μ΄, μμ λ§μ βhelloβμμ βhowdy(How do you do)βλ‘ λ체νλ©΄ μ±ν μ μ μ€μ² μ¬μκ³Ό ν¨κ» 'I wanted to say hello'βμμ 'I wanted to say howdy'λ‘ λ°λλλ€." /> |
15 | <text name="key_label"> | 15 | <text name="key_label"> |
16 | λ¨μΆν€: | 16 | λ¨μΆν€: |
17 | </text> | 17 | </text> |
18 | <combo_box label="μμ" name="modifier_combo" /> | 18 | <combo_box label="μμ" name="modifier_combo" /> |
19 | <combo_box label="μμ" name="key_combo" /> | 19 | <combo_box label="μμ" name="key_combo" /> |
20 | <text> | 20 | <text> |
21 | λμκ΄: | 21 | λΌμ΄λΈλ¬λ¦¬: |
22 | </text> | 22 | </text> |
23 | <text> | 23 | <text> |
24 | λ¨κ³: | 24 | λ¨κ³: |
@@ -28,8 +28,8 @@ | |||
28 | <button label="μλλ‘ μ΄λ" name="down_btn" /> | 28 | <button label="μλλ‘ μ΄λ" name="down_btn" /> |
29 | <button label="μ κ±°" name="delete_btn" /> | 29 | <button label="μ κ±°" name="delete_btn" /> |
30 | <text name="help_label"> | 30 | <text name="help_label"> |
31 | λκΈ° κ³Όμ μ μΆκ°νμ§ μμ κ²½μ° | 31 | μ¬μ©μκ° λκΈ° λ¨κ³λ₯Ό μΆκ°νμ§ μλ ν |
32 | λͺ¨λ κ³Όμ μ λμμ μ€νλ©λλ€. | 32 | λͺ¨λ λ¨κ³λ λμμ λ°μν©λλ€. |
33 | </text> | 33 | </text> |
34 | <radio_group name="animation_trigger_type"> | 34 | <radio_group name="animation_trigger_type"> |
35 | <radio_item> | 35 | <radio_item> |
@@ -42,7 +42,7 @@ | |||
42 | <check_box label="μ λλ©μ΄μ μλ£ μκΉμ§" name="wait_anim_check" /> | 42 | <check_box label="μ λλ©μ΄μ μλ£ μκΉμ§" name="wait_anim_check" /> |
43 | <check_box label="μ΄ λ¨μ μκ°" name="wait_time_check" /> | 43 | <check_box label="μ΄ λ¨μ μκ°" name="wait_time_check" /> |
44 | <check_box label="νμ±" name="active_check" | 44 | <check_box label="νμ±" name="active_check" |
45 | tool_tip="μ³ν μ€μ μ‘ν°λΈν μ μ€μΆ°λ νΉμ ꡬ문μ΄λ λ¨μΆν€μ μν΄ μ€ν λ©λλ€. λ¨μΆν€κ° μλ‘ κ°μλ κ²½μ° μ μ€μΆ°λ μ€νλμ§ μμ΅λλ€." /> | 45 | tool_tip="μ±ν μ°½μ λ°λ‘κ°κΈ° 문ꡬλ₯Ό μ λ ₯νκ±°λ ν«ν€λ₯Ό λλ¬ μ¬μ©μ€μΈ μ μ€μ²λ₯Ό νμν μ μμ΅λλ€. μΌλ°μ μΌλ‘ ν€ μ‘°ν© μΆ©λμ΄ μλ κ²½μ° μ μ€μ²λ λΉνμ±νλ©λλ€." /> |
46 | <button label="미리보기" name="preview_btn" /> | 46 | <button label="미리보기" name="preview_btn" /> |
47 | <button label="μ μ₯" name="save_btn" /> | 47 | <button label="μ μ₯" name="save_btn" /> |
48 | </floater> | 48 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_preview_new_landmark.xml b/linden/indra/newview/skins/xui/ko/floater_preview_new_landmark.xml index ad6f4bc..5256ce7 100644 --- a/linden/indra/newview/skins/xui/ko/floater_preview_new_landmark.xml +++ b/linden/indra/newview/skins/xui/ko/floater_preview_new_landmark.xml | |||
@@ -1,9 +1,8 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="Linden Land, Da Boom (155, 136, 35)" | 2 | <floater name="landmark_preview"> |
3 | title=" Linden Land, Da Boom (155, 136, 35)"> | ||
4 | <button label="ν 리ν¬νΈ" label_selected="" name="Teleport btn" /> | 3 | <button label="ν 리ν¬νΈ" label_selected="" name="Teleport btn" /> |
5 | <button label="μ§λμ νμνκΈ°" label_selected="" name="Show on Map btn" /> | 4 | <button label="μ§λμ νμ" label_selected="" name="Show on Map btn" /> |
6 | <button label="λ²λ¦¬κΈ°" label_selected="" name="Discard btn" /> | 5 | <button label="μ·¨μ" label_selected="" name="Discard btn" /> |
7 | <text type="string" length="1" name="desc txt"> | 6 | <text type="string" length="1" name="desc txt"> |
8 | μ€λͺ : | 7 | μ€λͺ : |
9 | </text> | 8 | </text> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_preview_notecard.xml b/linden/indra/newview/skins/xui/ko/floater_preview_notecard.xml index a7ffbd8..275c8e7 100644 --- a/linden/indra/newview/skins/xui/ko/floater_preview_notecard.xml +++ b/linden/indra/newview/skins/xui/ko/floater_preview_notecard.xml | |||
@@ -5,6 +5,6 @@ | |||
5 | μ€λͺ : | 5 | μ€λͺ : |
6 | </text> | 6 | </text> |
7 | <text_editor type="string" length="1" name="Notecard Editor"> | 7 | <text_editor type="string" length="1" name="Notecard Editor"> |
8 | λ‘λ©μ€... | 8 | λ‘λ© μ€β¦ |
9 | </text_editor> | 9 | </text_editor> |
10 | </floater> | 10 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_preview_notecard_keep_discard.xml b/linden/indra/newview/skins/xui/ko/floater_preview_notecard_keep_discard.xml index 159e20a..967e06d 100644 --- a/linden/indra/newview/skins/xui/ko/floater_preview_notecard_keep_discard.xml +++ b/linden/indra/newview/skins/xui/ko/floater_preview_notecard_keep_discard.xml | |||
@@ -1,11 +1,11 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="preview notecard" title="μ°Έκ³ : μΈν λ³κ²½, Part 2"> | 2 | <floater name="preview_notecard"> |
3 | <text_editor type="string" length="1" name="Notecard Editor"> | 3 | <text_editor type="string" length="1" name="Notecard Editor"> |
4 | λ‘λ©μ€... | 4 | λ‘λ© μ€β¦ |
5 | </text_editor> | 5 | </text_editor> |
6 | <text type="string" length="1" name="desc txt"> | 6 | <text type="string" length="1" name="desc txt"> |
7 | μ€λͺ : | 7 | μ€λͺ : |
8 | </text> | 8 | </text> |
9 | <button label="μ μ§" label_selected="μ μ§" name="Keep" /> | 9 | <button label="μ μ§" label_selected="μ μ§" name="Keep" /> |
10 | <button label="λ²λ¦¬κΈ°" label_selected="λ²λ¦¬κΈ°" name="Discard" /> | 10 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Discard" /> |
11 | </floater> | 11 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_preview_sound.xml b/linden/indra/newview/skins/xui/ko/floater_preview_sound.xml index bd73f6c..38ff533 100644 --- a/linden/indra/newview/skins/xui/ko/floater_preview_sound.xml +++ b/linden/indra/newview/skins/xui/ko/floater_preview_sound.xml | |||
@@ -1,12 +1,11 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="preview sound" title="μ리: λ©μ§ μ¬μ± 2"> | 2 | <floater name="preview_sound"> |
3 | <text type="string" length="1" name="desc txt"> | 3 | <text type="string" length="1" name="desc txt"> |
4 | μ€λͺ : | 4 | μ€λͺ : |
5 | </text> | 5 | </text> |
6 | <button label="μΈκ³μμ νλ μ΄" label_selected="μΈκ³μμ νλ μ΄" | 6 | <button label="μλμμ μ¬μ" label_selected="μλμμ μ¬μ" |
7 | name="Sound play btn" | 7 | name="Sound play btn" |
8 | tool_tip="μ΄ μ¬μ΄λλ₯Ό λ€λ₯Έ μ¬λλ€μ΄ λ€μ μ μλλ‘ μ¬μ." /> | 8 | tool_tip="μ΄ μ¬μ΄λλ₯Ό λ€λ₯Έ μ¬λλ€μ΄ λ€μ μ μλλ‘ μ¬μ." /> |
9 | <button label="λ‘컬μμ νλ μ΄" label_selected="λ‘컬μμ νλ μ΄" | 9 | <button label="λ‘컬 μ¬μ" label_selected="λ‘컬 μ¬μ" name="Sound audition btn" |
10 | name="Sound audition btn" | ||
11 | tool_tip="μ΄ μ¬μ΄λλ₯Ό λ΄κ° λ€μ μ μλλ‘ μ¬μ." /> | 10 | tool_tip="μ΄ μ¬μ΄λλ₯Ό λ΄κ° λ€μ μ μλλ‘ μ¬μ." /> |
12 | </floater> | 11 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_preview_texture.xml b/linden/indra/newview/skins/xui/ko/floater_preview_texture.xml index 400695e..2281061 100644 --- a/linden/indra/newview/skins/xui/ko/floater_preview_texture.xml +++ b/linden/indra/newview/skins/xui/ko/floater_preview_texture.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="preview texture" title="ν μ€μ²: νμ κΈμ μ€ν¬λ«μΉ"> | 2 | <floater name="preview_texture"> |
3 | <text type="string" length="1" name="desc txt"> | 3 | <text type="string" length="1" name="desc txt"> |
4 | μ€λͺ : | 4 | μ€λͺ : |
5 | </text> | 5 | </text> |
6 | <text type="string" length="1" name="dimensions"> | 6 | <text type="string" length="1" name="dimensions"> |
7 | ν¬κΈ°: [ν] x [λμ΄] | 7 | ν¬κΈ°: [WIDTH]x[HEIGHT] |
8 | </text> | 8 | </text> |
9 | </floater> | 9 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_preview_texture_keep_discard.xml b/linden/indra/newview/skins/xui/ko/floater_preview_texture_keep_discard.xml index fc610d2..616b0b6 100644 --- a/linden/indra/newview/skins/xui/ko/floater_preview_texture_keep_discard.xml +++ b/linden/indra/newview/skins/xui/ko/floater_preview_texture_keep_discard.xml | |||
@@ -1,11 +1,11 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="preview texture" title="ν μ€μ²: slhand"> | 2 | <floater name="preview_texture"> |
3 | <text type="string" length="1" name="desc txt"> | 3 | <text type="string" length="1" name="desc txt"> |
4 | μ€λͺ : | 4 | μ€λͺ : |
5 | </text> | 5 | </text> |
6 | <button label="μ μ§" label_selected="μ μ§" name="Keep" /> | 6 | <button label="μ μ§" label_selected="μ μ§" name="Keep" /> |
7 | <button label="λ²λ¦¬κΈ°" label_selected="λ²λ¦¬κΈ°" name="Discard" /> | 7 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Discard" /> |
8 | <text type="string" length="1" name="dimensions"> | 8 | <text type="string" length="1" name="dimensions"> |
9 | ν¬κΈ°: [ν] x [λμ΄] | 9 | ν¬κΈ°: [WIDTH]x[HEIGHT] |
10 | </text> | 10 | </text> |
11 | </floater> | 11 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_price_for_listing.xml b/linden/indra/newview/skins/xui/ko/floater_price_for_listing.xml index 3f32abb..ccf2e4d 100644 --- a/linden/indra/newview/skins/xui/ko/floater_price_for_listing.xml +++ b/linden/indra/newview/skins/xui/ko/floater_price_for_listing.xml | |||
@@ -1,16 +1,16 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="price_for_listing" title="κ΄κ³ κ²μ"> | 2 | <floater name="price_for_listing" title="κ΄κ³ κ²μ"> |
3 | <text name="explanation_text"> | 3 | <text name="explanation_text"> |
4 | κ·νμ κ΄κ³ λ 첫 κ²μμΌλ‘λΆν° μΌμ£ΌμΌκ° | 4 | κ·νμ κ΄κ³ λ κ²μν λ μ§λΆν° μΌμ£ΌμΌ λμ |
5 | κ²μ¬λ©λλ€. | 5 | κ²μ¬λ©λλ€. |
6 | 6 | ||
7 | κ΄κ³ λͺ©λ‘μμ κ·ν κ΄κ³ μ μμΉλ μ§λΆνμλ | 7 | κ΄κ³ λͺ©λ‘μμ κ·νμ κ΄κ³ μμΉλ |
8 | μ‘μμ λ°λΌ κ²°μ λ©λλ€. | 8 | κ·νκ° κ²°μ ν κΈμ‘μ λ°λΌ κ²°μ λ©λλ€. |
9 | κ°μ₯ λμ κ°κ²©μ μ§λΆν κ΄κ³ κ° λͺ©λ‘μ κ°μ₯ μμ | 9 | μ΅κ³ κΈμ‘μ κ²°μ ν κ²½μ° λͺ©λ‘ 맨 μμ κ²μλκ³ |
10 | κ²μ¬λκ³ κ²μ κ²°κ³Όμμ κ°μ₯ λ¨Όμ νμλ©λλ€. | 10 | κ²μ μ λ λμ μμλ‘ λνλ©λλ€. |
11 | </text> | 11 | </text> |
12 | <text name="price_text"> | 12 | <text name="price_text"> |
13 | κ΄κ³ κ°κ²©(L$): | 13 | κ΄κ³ λΉμ©(L$): |
14 | </text> | 14 | </text> |
15 | <button label="κ°κ²© μ€μ " name="set_price_btn" /> | 15 | <button label="κ°κ²© μ€μ " name="set_price_btn" /> |
16 | <button label="μ·¨μ" name="cancel_btn" /> | 16 | <button label="μ·¨μ" name="cancel_btn" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_rate.xml b/linden/indra/newview/skins/xui/ko/floater_rate.xml index f34d8cb..39aebc5 100644 --- a/linden/indra/newview/skins/xui/ko/floater_rate.xml +++ b/linden/indra/newview/skins/xui/ko/floater_rate.xml | |||
@@ -2,26 +2,26 @@ | |||
2 | <floater name="rate" title="Jeska Lindenμ μμ"> | 2 | <floater name="rate" title="Jeska Lindenμ μμ"> |
3 | <radio_group name="behavior"> | 3 | <radio_group name="behavior"> |
4 | <radio_item type="string" length="1" name="Positive"> | 4 | <radio_item type="string" length="1" name="Positive"> |
5 | λΆλͺ ν¨ | 5 | μμ |
6 | </radio_item> | 6 | </radio_item> |
7 | <radio_item type="string" length="1" name="No Rating"> | 7 | <radio_item type="string" length="1" name="No Rating"> |
8 | 무 νμ | 8 | λ±κΈ μμ |
9 | </radio_item> | 9 | </radio_item> |
10 | </radio_group> | 10 | </radio_group> |
11 | <radio_group name="appearance"> | 11 | <radio_group name="appearance"> |
12 | <radio_item type="string" length="1" name="Positive"> | 12 | <radio_item type="string" length="1" name="Positive"> |
13 | λΆλͺ ν¨ | 13 | μμ |
14 | </radio_item> | 14 | </radio_item> |
15 | <radio_item type="string" length="1" name="No Rating"> | 15 | <radio_item type="string" length="1" name="No Rating"> |
16 | 무 νμ | 16 | λ±κΈ μμ |
17 | </radio_item> | 17 | </radio_item> |
18 | </radio_group> | 18 | </radio_group> |
19 | <radio_group name="building"> | 19 | <radio_group name="building"> |
20 | <radio_item type="string" length="1" name="Positive"> | 20 | <radio_item type="string" length="1" name="Positive"> |
21 | λΆλͺ ν¨ | 21 | μμ |
22 | </radio_item> | 22 | </radio_item> |
23 | <radio_item type="string" length="1" name="No Rating"> | 23 | <radio_item type="string" length="1" name="No Rating"> |
24 | 무 νμ | 24 | λ±κΈ μμ |
25 | </radio_item> | 25 | </radio_item> |
26 | </radio_group> | 26 | </radio_group> |
27 | <button label="νμΈ" label_selected="νμΈ" name="OK" /> | 27 | <button label="νμΈ" label_selected="νμΈ" name="OK" /> |
@@ -30,7 +30,7 @@ | |||
30 | μ 체μ νλ: | 30 | μ 체μ νλ: |
31 | </text> | 31 | </text> |
32 | <text type="string" length="1" name="Skill at appearance (clothing and attachments):"> | 32 | <text type="string" length="1" name="Skill at appearance (clothing and attachments):"> |
33 | κΎΈλ―ΈκΈ°λ₯Ό μ ν¨(μ볡 λ° λΆμ°©λ¬Ό): | 33 | κΎΈλ―ΈκΈ°λ₯Ό μ ν¨(μ볡 λ° μ°©μ©λ¬Ό): |
34 | </text> | 34 | </text> |
35 | <text type="string" length="1" name="Skill at building:"> | 35 | <text type="string" length="1" name="Skill at building:"> |
36 | 건μΆμ μ ν¨: | 36 | 건μΆμ μ ν¨: |
@@ -39,6 +39,6 @@ | |||
39 | λ©μμ§: | 39 | λ©μμ§: |
40 | </text> | 40 | </text> |
41 | <text type="string" length="1" name="cost"> | 41 | <text type="string" length="1" name="cost"> |
42 | λΉμ©: κ° λ±μ λ³κ²½νλ λΉμ© L$[λΉμ©]. μ΄ λΉμ©: L$[TOTAL]. | 42 | λΉμ©: λ±κΈ λ³κ²½ λΉμ©μ L$[COST]μ λλ€. μ΄ λΉμ©: L$[TOTAL]μ λλ€. |
43 | </text> | 43 | </text> |
44 | </floater> | 44 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_report_abuse.xml b/linden/indra/newview/skins/xui/ko/floater_report_abuse.xml index fe3cad5..4aa7cea 100644 --- a/linden/indra/newview/skins/xui/ko/floater_report_abuse.xml +++ b/linden/indra/newview/skins/xui/ko/floater_report_abuse.xml | |||
@@ -1,16 +1,27 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="floater_report_abuse" title="μ μ© μ κ³ "> | 2 | <floater name="floater_report_abuse" title="μ κ³ νκΈ°"> |
3 | <text name="reporter_title"> | 3 | <text name="reporter_title"> |
4 | μ κ³ μΈ: | 4 | μ κ³ μ: |
5 | </text> | 5 | </text> |
6 | <text name="sim_title"> | 6 | <text name="sim_title"> |
7 | μλ¬λ μ΄ν°: | 7 | μ§μ: |
8 | </text> | 8 | </text> |
9 | <text name="pos_title"> | 9 | <text name="pos_title"> |
10 | μμΉ: | 10 | μμΉ: |
11 | </text> | 11 | </text> |
12 | <texture_picker label="μμ ..." name="screenshot" /> | 12 | <texture_picker label="μμ μ€..." name="screenshot" /> |
13 | <check_box label="μ€ν¬λ¦°μ· ν¬ν¨" name="screen_check" /> | 13 | <check_box label="μ€ν¬λ¦°μ· ν¬ν¨" name="screen_check" /> |
14 | <button label="" label_selected="" name="pick_btn" | ||
15 | tool_tip="μ€λΈμ νΈ νΌμ»€ - μ€λΈμ νΈλ₯Ό λ³Έ λ³΄κ³ μμ μ£Όμ λ‘ μλ³ν¨" /> | ||
16 | <text name="select_object_label"> | ||
17 | λ²νΌμ ν΄λ¦ν ν μ€λΈμ νΈλ₯Ό ν΄λ¦ νμμμ€: | ||
18 | </text> | ||
19 | <text name="object_name_label"> | ||
20 | μ΄λ¦: | ||
21 | </text> | ||
22 | <text name="owner_name_label"> | ||
23 | μμ μ: | ||
24 | </text> | ||
14 | <combo_box name="category_combo" | 25 | <combo_box name="category_combo" |
15 | tool_tip="Category -- select the category that best describes this report"> | 26 | tool_tip="Category -- select the category that best describes this report"> |
16 | <combo_item name="Selectcategory"> | 27 | <combo_item name="Selectcategory"> |
@@ -41,38 +52,27 @@ | |||
41 | κΈ°ν | 52 | κΈ°ν |
42 | </combo_item> | 53 | </combo_item> |
43 | </combo_box> | 54 | </combo_box> |
44 | <button label="" label_selected="" name="pick_btn" | ||
45 | tool_tip="μμ΄ν νΌμ»€ - μμ΄ν μ λ³Έ λ³΄κ³ μμ μ£Όμ λ‘ μλ³ν©λλ€" /> | ||
46 | <text name="select_object_label"> | ||
47 | λ²νΌμ ν΄λ¦ν ν μμ΄ν μ ν΄λ¦νμμμ€: | ||
48 | </text> | ||
49 | <text name="object_name_label"> | ||
50 | μ΄λ¦: | ||
51 | </text> | ||
52 | <text name="owner_name_label"> | ||
53 | μμ μ£Ό: | ||
54 | </text> | ||
55 | <text name="abuser_name_title"> | 55 | <text name="abuser_name_title"> |
56 | μ μ©μ μ΄λ¦: | 56 | μ μ©μ μ΄λ¦: |
57 | </text> | 57 | </text> |
58 | <button label="μ ν" label_selected="" name="select_abuser" | 58 | <button label="μ ν" label_selected="" name="select_abuser" |
59 | tool_tip="μ μ©μμ μ΄λ¦μ λͺ©λ‘μμ μ νν©λλ€" /> | 59 | tool_tip="μ μ©μμ μ΄λ¦μ λͺ©λ‘μμ μ ν" /> |
60 | <text name="abuser_name_title2"> | 60 | <text name="abuser_name_title2"> |
61 | μ μ© μ₯μ: | 61 | μ μ© μμΉ: |
62 | </text> | 62 | </text> |
63 | <text name="sum_title"> | 63 | <text name="sum_title"> |
64 | μμ½: | 64 | μμ½: |
65 | </text> | 65 | </text> |
66 | <text name="dscr_title"> | 66 | <text name="dscr_title"> |
67 | μμΈ λ΄μ: | 67 | μΈλΆμ¬ν: |
68 | </text> | 68 | </text> |
69 | <text name="bug_aviso"> | 69 | <text name="bug_aviso"> |
70 | λ μ§, μ₯μ, μ μ© μ’ λ₯, κ΄λ ¨ μ±ν /IM ν μ€νΈ λ±μ λν΄ | 70 | λ μ§, μμΉ, μ μ© μ’ λ₯, κ΄λ ¨ μ±ν /λ©μ μ ν μ€νΈ λ±μ λν΄ |
71 | μμΈν μ κ³ κ°λ₯νλ€λ©΄ μμ΄ν μ μ ννμμμ€. | 71 | μμΈν μ κ³ κ°λ₯νλ€λ©΄ μ€λΈμ νΈλ₯Ό μ ννμμμ€. |
72 | </text> | 72 | </text> |
73 | <text name="incomplete_title"> | 73 | <text name="incomplete_title"> |
74 | μ°Έκ³ : μμ νμ§ μμ λ³΄κ³ μλ μ‘°μ¬λμ§ μμ΅λλ€ | 74 | μ°Έκ³ : λΆμμ ν λ³΄κ³ μλ μ‘°μ¬ λμμμ μ μΈλ¨ |
75 | </text> | 75 | </text> |
76 | <button label="μ μ© μ κ³ " label_selected="μ μ© μ κ³ " name="send_btn" /> | 76 | <button label="μ κ³ νκΈ°" label_selected="μ κ³ νκΈ°" name="send_btn" /> |
77 | <button label="μ·¨μ" label_selected="μ·¨μ" name="cancel_btn" /> | 77 | <button label="μ·¨μ" label_selected="μ·¨μ" name="cancel_btn" /> |
78 | </floater> | 78 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_report_bug.xml b/linden/indra/newview/skins/xui/ko/floater_report_bug.xml index 5207167..ec9779e 100644 --- a/linden/indra/newview/skins/xui/ko/floater_report_bug.xml +++ b/linden/indra/newview/skins/xui/ko/floater_report_bug.xml | |||
@@ -1,7 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="bug_reporter" title="λ²κ·Έ μ κ³ "> | 2 | <floater name="bug_reporter" title="λ²κ·Έ μ κ³ "> |
3 | <text name="reporter_title"> | 3 | <text name="reporter_title"> |
4 | μ κ³ μΈ: | 4 | μ κ³ μ: |
5 | </text> | 5 | </text> |
6 | <text name="sim_title"> | 6 | <text name="sim_title"> |
7 | μλ¬λ μ΄ν°: | 7 | μλ¬λ μ΄ν°: |
@@ -10,18 +10,18 @@ | |||
10 | μμΉ: | 10 | μμΉ: |
11 | </text> | 11 | </text> |
12 | <text name="select_object_label"> | 12 | <text name="select_object_label"> |
13 | λ²νΌμ ν΄λ¦νκ³ μ νν μμ΄ν μ ν΄λ¦νμμμ€. | 13 | λ²νΌ λ° μ νν μ€λΈμ νΈλ₯Ό μ°¨λ‘λ‘ ν΄λ¦νμμμ€: |
14 | </text> | 14 | </text> |
15 | <button label="" label_selected="" name="pick_btn" | 15 | <button label="" label_selected="" name="pick_btn" |
16 | tool_tip="μμ΄ν νΌμ»€ - μμ΄ν μ λ³Έ λ³΄κ³ μμ μ£Όμ λ‘ μλ³ν©λλ€" /> | 16 | tool_tip="μ€λΈμ νΈ νΌμ»€ - μ€λΈμ νΈλ₯Ό λ³Έ λ³΄κ³ μμ μ£Όμ λ‘ μλ³ν¨" /> |
17 | <text name="object_name_label"> | 17 | <text name="object_name_label"> |
18 | μ΄λ¦: | 18 | μ΄λ¦: |
19 | </text> | 19 | </text> |
20 | <text name="owner_name_label"> | 20 | <text name="owner_name_label"> |
21 | μμ μ£Ό: | 21 | μμ μ: |
22 | </text> | 22 | </text> |
23 | <check_box label="μ€ν¬λ¦°μ· ν¬ν¨" name="screen_check" /> | 23 | <check_box label="μ€ν¬λ¦°μ· ν¬ν¨" name="screen_check" /> |
24 | <texture_picker label="μμ ..." name="screenshot" /> | 24 | <texture_picker label="μμ μ€..." name="screenshot" /> |
25 | <text name="category_label"> | 25 | <text name="category_label"> |
26 | μΉ΄ν κ³ λ¦¬: | 26 | μΉ΄ν κ³ λ¦¬: |
27 | </text> | 27 | </text> |
@@ -31,7 +31,7 @@ | |||
31 | μΉ΄ν κ³ λ¦¬ μ ν | 31 | μΉ΄ν κ³ λ¦¬ μ ν |
32 | </combo_item> | 32 | </combo_item> |
33 | <combo_item name="Building"> | 33 | <combo_item name="Building"> |
34 | 건물 | 34 | μ μνκΈ° |
35 | </combo_item> | 35 | </combo_item> |
36 | <combo_item name="Character"> | 36 | <combo_item name="Character"> |
37 | μΊλ¦ν° | 37 | μΊλ¦ν° |
@@ -49,22 +49,22 @@ | |||
49 | κ·Έλν½ | 49 | κ·Έλν½ |
50 | </combo_item> | 50 | </combo_item> |
51 | <combo_item name="Inventory"> | 51 | <combo_item name="Inventory"> |
52 | μ μ₯κ³ | 52 | μΈλ²€ν 리 |
53 | </combo_item> | 53 | </combo_item> |
54 | <combo_item name="Lag"> | 54 | <combo_item name="Lag"> |
55 | λ€μ³μ§λ€ | 55 | λ |
56 | </combo_item> | 56 | </combo_item> |
57 | <combo_item name="MissingContent"> | 57 | <combo_item name="MissingContent"> |
58 | λΉ μ§ λ΄μ© | 58 | μ μ€ μ»¨ν μΈ |
59 | </combo_item> | 59 | </combo_item> |
60 | <combo_item name="LindenDollars(L$)"> | 60 | <combo_item name="LindenDollars(L$)"> |
61 | λ¦°λ λ¬λ¬ (L$) | 61 | λ¦°λ λ¬λ¬(L$) |
62 | </combo_item> | 62 | </combo_item> |
63 | <combo_item name="Permissions"> | 63 | <combo_item name="Permissions"> |
64 | νκ° | 64 | κΆν |
65 | </combo_item> | 65 | </combo_item> |
66 | <combo_item name="Physics"> | 66 | <combo_item name="Physics"> |
67 | 물리 | 67 | 물리 μμ§ |
68 | </combo_item> | 68 | </combo_item> |
69 | <combo_item name="Script"> | 69 | <combo_item name="Script"> |
70 | μ€ν¬λ¦½νΈ | 70 | μ€ν¬λ¦½νΈ |
@@ -79,14 +79,14 @@ | |||
79 | μ¬μ©μ μΈν°νμ΄μ€ | 79 | μ¬μ©μ μΈν°νμ΄μ€ |
80 | </combo_item> | 80 | </combo_item> |
81 | <combo_item name="Miscellaneous"> | 81 | <combo_item name="Miscellaneous"> |
82 | κΈ°ν | 82 | λ€λͺ©μ |
83 | </combo_item> | 83 | </combo_item> |
84 | </combo_box> | 84 | </combo_box> |
85 | <text name="sum_title"> | 85 | <text name="sum_title"> |
86 | μμ½: | 86 | μμ½: |
87 | </text> | 87 | </text> |
88 | <text name="dscr_title"> | 88 | <text name="dscr_title"> |
89 | μμΈ λ΄μ: | 89 | μΈλΆμ¬ν: (κ°λ₯ν ν λ§μ μ 보λ₯Ό μ 곡 νμμμ€.) |
90 | </text> | 90 | </text> |
91 | <text_editor name="details_edit"> | 91 | <text_editor name="details_edit"> |
92 | λ²κ·Έ μ¬μ λ°©λ²: | 92 | λ²κ·Έ μ¬μ λ°©λ²: |
@@ -96,9 +96,10 @@ | |||
96 | μμ κ²°κ³Ό: | 96 | μμ κ²°κ³Ό: |
97 | </text_editor> | 97 | </text_editor> |
98 | <text name="bug_aviso"> | 98 | <text name="bug_aviso"> |
99 | If this bug allows you to do something you should not be able | 99 | μ°Έκ³ : λΆμμ ν λ³΄κ³ μλ μ‘°μ¬ λμμμ μ μΈλ¨ |
100 | to do, especially if it impacts performance or security, please | 100 | μ΄ λ²κ·Έλ‘ μΈν΄ κΆν λ°μ μΌμ΄ κ°λ₯νκ² λλ©΄, |
101 | select the 'Exploit' category. Thank you! | 101 | νΉν μ€νμ΄λ 보μμ μν₯μ μ€ κ²½μ°, |
102 | βκ°μ²β μΉ΄ν κ³ λ¦¬λ₯Ό μ ννμμμ€. κ°μ¬ν©λλ€! | ||
102 | </text> | 103 | </text> |
103 | <button label="λ²κ·Έ μ κ³ " label_selected="λ²κ·Έ μ κ³ " name="send_btn" /> | 104 | <button label="λ²κ·Έ μ κ³ " label_selected="λ²κ·Έ μ κ³ " name="send_btn" /> |
104 | <button label="μ·¨μ" label_selected="μ·¨μ" name="cancel_btn" /> | 105 | <button label="μ·¨μ" label_selected="μ·¨μ" name="cancel_btn" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_script_debug.xml b/linden/indra/newview/skins/xui/ko/floater_script_debug.xml index aa59d93..86eb10c 100644 --- a/linden/indra/newview/skins/xui/ko/floater_script_debug.xml +++ b/linden/indra/newview/skins/xui/ko/floater_script_debug.xml | |||
@@ -1,6 +1,6 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <multi_floater name="script debug floater" title="μ€ν¬λ¦½νΈ μ€λ₯/κ²½κ³ "> | 2 | <multi_floater name="script debug floater" title="μ€ν¬λ¦½νΈ μ€λ₯/κ²½κ³ "> |
3 | <tab_container name="Preview Tabs"> | 3 | <tab_container name="Preview Tabs"> |
4 | <floater label="μ€ν¬λ¦½νΈ" name="all_scripts" title="[μ 체 μ€ν¬λ¦½νΈ]" /> | 4 | <floater label="μ€ν¬λ¦½νΈ" name="all_scripts" title="[All scripts]" /> |
5 | </tab_container> | 5 | </tab_container> |
6 | </multi_floater> | 6 | </multi_floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_script_ed_panel.xml b/linden/indra/newview/skins/xui/ko/floater_script_ed_panel.xml index e1e79c9..9d9c471 100644 --- a/linden/indra/newview/skins/xui/ko/floater_script_ed_panel.xml +++ b/linden/indra/newview/skins/xui/ko/floater_script_ed_panel.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 | <panel name="script panel"> | 2 | <panel name="script panel"> |
3 | <button label="μ μ₯" label_selected="μ μ₯" name="Save_btn" /> | ||
4 | <text_editor type="string" length="1" name="Script Editor"> | 3 | <text_editor type="string" length="1" name="Script Editor"> |
5 | λ‘λ©μ€... | 4 | λ‘λ© μ€β¦ |
6 | </text_editor> | 5 | </text_editor> |
6 | <button label="μ μ₯" label_selected="μ μ₯" name="Save_btn" /> | ||
7 | <menu_bar name="script_menu"> | 7 | <menu_bar name="script_menu"> |
8 | <menu name="File"> | 8 | <menu name="File"> |
9 | <menu_item_call label="μ μ₯" name="Save" /> | 9 | <menu_item_call label="μ μ₯" name="Save" /> |
@@ -11,19 +11,20 @@ | |||
11 | </menu> | 11 | </menu> |
12 | <menu name="Edit"> | 12 | <menu name="Edit"> |
13 | <menu_item_call label="μ·¨μ" name="Undo" /> | 13 | <menu_item_call label="μ·¨μ" name="Undo" /> |
14 | <menu_item_call label="λ€μ μ€ν" name="Redo" /> | 14 | <menu_item_call label="λ°λ³΅" name="Redo" /> |
15 | <menu_item_separator label="-----------" name="separator" /> | 15 | <menu_item_separator label="-----------" name="separator" /> |
16 | <menu_item_call label="μλΌλ΄κΈ°" name="Cut" /> | 16 | <menu_item_call label="μλΌλ΄κΈ°" name="Cut" /> |
17 | <menu_item_call label="볡μ¬" name="Copy" /> | 17 | <menu_item_call label="볡μ¬" name="Copy" /> |
18 | <menu_item_call label="λΆμ¬λ£κΈ°" name="Paste" /> | 18 | <menu_item_call label="λΆμ¬λ£κΈ°" name="Paste" /> |
19 | <menu_item_separator label="-----------" name="separator2" /> | 19 | <menu_item_separator label="-----------" name="separator2" /> |
20 | <menu_item_call label="λͺ¨λ μ ν" name="Select All" /> | 20 | <menu_item_call label="λͺ¨λ μ ν" name="Select All" /> |
21 | <menu_item_call label="μ ν ν΄μ " name="Deselect" /> | 21 | <menu_item_call label="μ ν μ·¨μ" name="Deselect" /> |
22 | <menu_item_separator label="-----------" name="separator3" /> | 22 | <menu_item_separator label="-----------" name="separator3" /> |
23 | <menu_item_call label="κ²μ / λ체..." name="Search / Replace..." /> | 23 | <menu_item_call label="κ²μ / λ체β¦" name="Search / Replace..." /> |
24 | </menu> | 24 | </menu> |
25 | <menu name="Help"> | 25 | <menu name="Help"> |
26 | <menu_item_call label="λμλ§..." name="Help..." /> | 26 | <menu_item_call label="λμλ§β¦" name="Help..." /> |
27 | <menu_item_call label="LSL μν€ λμλ§β¦" name="LSL Wiki Help..." /> | ||
27 | </menu> | 28 | </menu> |
28 | </menu_bar> | 29 | </menu_bar> |
29 | </panel> | 30 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_script_queue.xml b/linden/indra/newview/skins/xui/ko/floater_script_queue.xml index 1cc9fd9..5391244 100644 --- a/linden/indra/newview/skins/xui/ko/floater_script_queue.xml +++ b/linden/indra/newview/skins/xui/ko/floater_script_queue.xml | |||
@@ -1,4 +1,4 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="queue" title="μ§ν μν© μ¬μ€μ "> | 2 | <floater name="queue" title="μ§ν μν© μ΄κΈ°ν"> |
3 | <button label="λ«κΈ°" label_selected="λ«κΈ°" name="close" /> | 3 | <button label="λ«κΈ°" label_selected="λ«κΈ°" name="close" /> |
4 | </floater> | 4 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_script_search.xml b/linden/indra/newview/skins/xui/ko/floater_script_search.xml index 90b2a97..614523a 100644 --- a/linden/indra/newview/skins/xui/ko/floater_script_search.xml +++ b/linden/indra/newview/skins/xui/ko/floater_script_search.xml | |||
@@ -1,6 +1,6 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="script search" title="μ€ν¬λ¦½νΈ κ²μ"> | 2 | <floater name="script search" title="μ€ν¬λ¦½νΈ κ²μ"> |
3 | <check_box label="μλ¬Έ λμλ¬Έμ κ΅¬λΆ μν¨" name="case_text" /> | 3 | <check_box label="μλ¬Έ λμλ¬Έμ κ΅¬λΆ μ ν¨" name="case_text" /> |
4 | <button label="κ²μ" label_selected="κ²μ" name="search_btn" /> | 4 | <button label="κ²μ" label_selected="κ²μ" name="search_btn" /> |
5 | <button label="λ체" label_selected="λ체" name="replace_btn" /> | 5 | <button label="λ체" label_selected="λ체" name="replace_btn" /> |
6 | <button label="λͺ¨λ λ체" label_selected="λͺ¨λ λ체" name="replace_all_btn" /> | 6 | <button label="λͺ¨λ λ체" label_selected="λͺ¨λ λ체" name="replace_all_btn" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_sell_land.xml b/linden/indra/newview/skins/xui/ko/floater_sell_land.xml index e04b09d..2844424 100644 --- a/linden/indra/newview/skins/xui/ko/floater_sell_land.xml +++ b/linden/indra/newview/skins/xui/ko/floater_sell_land.xml | |||
@@ -7,10 +7,10 @@ | |||
7 | ꡬν μ΄λ¦ | 7 | ꡬν μ΄λ¦ |
8 | </text> | 8 | </text> |
9 | <text name="info_size_label"> | 9 | <text name="info_size_label"> |
10 | ν¬κΈ° : | 10 | ν¬κΈ°: |
11 | </text> | 11 | </text> |
12 | <text name="info_size"> | 12 | <text name="info_size"> |
13 | [AREA] νλ°© λ―Έν° | 13 | [AREA]μ κ³±λ―Έν° |
14 | </text> | 14 | </text> |
15 | <text name="info_action"> | 15 | <text name="info_action"> |
16 | μ΄ κ΅¬νμ ν맀νλ €λ©΄: | 16 | μ΄ κ΅¬νμ ν맀νλ €λ©΄: |
@@ -19,19 +19,19 @@ | |||
19 | κ°κ²© μ€μ : | 19 | κ°κ²© μ€μ : |
20 | </text> | 20 | </text> |
21 | <text name="price_text"> | 21 | <text name="price_text"> |
22 | μ΄ ν μ§μ λν μ μ ν κ°κ²©μ μ ννμμμ€. | 22 | μ΄ ν μ§μ λν μ μ ν κ°κ²©μ μ ν νμμμ€. |
23 | </text> | 23 | </text> |
24 | <text name="price_ld"> | 24 | <text name="price_ld"> |
25 | L$" | 25 | L$ |
26 | </text> | 26 | </text> |
27 | <text name="price_per_m"> | 27 | <text name="price_per_m"> |
28 | (νλ°© λ―Έν°λΉ L$[PER_METER]) | 28 | (L$ [PER_METER]μ κ³±λ―Έν°λΉ) |
29 | </text> | 29 | </text> |
30 | <text name="sell_to_label"> | 30 | <text name="sell_to_label"> |
31 | ν μ§ ν맀 λμ: | 31 | ν μ§ ν맀 λμ: |
32 | </text> | 32 | </text> |
33 | <text name="sell_to_text"> | 33 | <text name="sell_to_text"> |
34 | λ€λ₯Έ μ¬λ λλ νΉμ ꡬ맀μμκ² ν맀μ¬λΆλ₯Ό μ ννμμμ€. | 34 | λ€λ₯Έ μ¬λ λλ νΉμ ꡬ맀μμκ² ν맀ν μ§ μ¬λΆλ₯Ό μ ννμμμ€. |
35 | </text> | 35 | </text> |
36 | <combo_box name="sell_to"> | 36 | <combo_box name="sell_to"> |
37 | <combo_item name="--selectone--"> | 37 | <combo_item name="--selectone--"> |
@@ -44,24 +44,24 @@ | |||
44 | νΉμ μ¬μ©μ: | 44 | νΉμ μ¬μ©μ: |
45 | </combo_item> | 45 | </combo_item> |
46 | </combo_box> | 46 | </combo_box> |
47 | <button label="μ ν..." name="sell_to_select_agent" /> | 47 | <button label="μ νβ¦" name="sell_to_select_agent" /> |
48 | <text name="sell_objects_label"> | 48 | <text name="sell_objects_label"> |
49 | ν μ§μ ν¨κ» μμ΄ν μ ν맀νμκ² μ΅λκΉ? | 49 | ν μ§μ ν¨κ» μ€λΈμ νΈλ₯Ό ν맀νκ² μ΅λκΉ? |
50 | </text> | 50 | </text> |
51 | <text name="sell_objects_text"> | 51 | <text name="sell_objects_text"> |
52 | Parcelμ ν μ§μμ μμ νμ κ°λ₯ν μμ΄ν μ μμ κΆμ΄ λ°λ κ²μ λλ€. | 52 | ν μ§ μμ μ£Όμ μλ κ°λ₯ν μ€λΈμ νΈ μμ κΆμ λ³κ²½ν©λλ€. |
53 | </text> | 53 | </text> |
54 | <radio_group name="sell_objects"> | 54 | <radio_group name="sell_objects"> |
55 | <radio_item name="no"> | 55 | <radio_item name="no"> |
56 | μλμ€, μμ΄ν μ μμ κΆ μ μ§ | 56 | μλμ€, μ€λΈμ νΈ μμ κΆμ μ μ§ν©λλ€. |
57 | </radio_item> | 57 | </radio_item> |
58 | <radio_item name="yes"> | 58 | <radio_item name="yes"> |
59 | μ, μμ΄ν κ³Ό ν μ§ ν맀 | 59 | μ, ν μ§μ ν¨κ» μ€λΈμ νΈλ₯Ό ν맀ν©λλ€. |
60 | </radio_item> | 60 | </radio_item> |
61 | </radio_group> | 61 | </radio_group> |
62 | <button label="μ¬λ¬Ό νμ" name="show_objects" /> | 62 | <button label="μ€λΈμ νΈ νμ" name="show_objects" /> |
63 | <text name="nag_message_label"> | 63 | <text name="nag_message_label"> |
64 | μμ§ λ§μμμ€: λͺ¨λ 맀맀λ νλΆμ΄ λμ§ μμ΅λλ€. | 64 | μμ§ λ§ κ²: λͺ¨λ 맀맀λ νλΆ λμ§ μμ. |
65 | </text> | 65 | </text> |
66 | <button label="ν μ§ λ§€λ¬Ό μ€μ " name="sell_btn" /> | 66 | <button label="ν μ§ λ§€λ¬Ό μ€μ " name="sell_btn" /> |
67 | <button label="μ·¨μ" name="cancel_btn" /> | 67 | <button label="μ·¨μ" name="cancel_btn" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_settings_debug.xml b/linden/indra/newview/skins/xui/ko/floater_settings_debug.xml index bcf69ac..e63c4d3 100644 --- a/linden/indra/newview/skins/xui/ko/floater_settings_debug.xml +++ b/linden/indra/newview/skins/xui/ko/floater_settings_debug.xml | |||
@@ -1,5 +1,5 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="settings_debug" title="λ²κ·Έ μμ μ€μ "> | 2 | <floater name="settings_debug" title="λλ²κ·Έ μ€μ "> |
3 | <combo_box name="boolean_combo"> | 3 | <combo_box name="boolean_combo"> |
4 | <combo_item name="TRUE"> | 4 | <combo_item name="TRUE"> |
5 | μ°Έ | 5 | μ°Έ |
@@ -8,8 +8,10 @@ | |||
8 | κ±°μ§ | 8 | κ±°μ§ |
9 | </combo_item> | 9 | </combo_item> |
10 | </combo_box> | 10 | </combo_box> |
11 | <color_swatch label="μ" name="color_swatch" /> | ||
11 | <spinner label="x" name="val_spinner_1" /> | 12 | <spinner label="x" name="val_spinner_1" /> |
12 | <spinner label="x" name="val_spinner_2" /> | 13 | <spinner label="x" name="val_spinner_2" /> |
13 | <spinner label="x" name="val_spinner_3" /> | 14 | <spinner label="x" name="val_spinner_3" /> |
14 | <spinner label="x" name="val_spinner_4" /> | 15 | <spinner label="x" name="val_spinner_4" /> |
16 | <button label="κΈ°λ³Έ μ€μ μΌλ‘ μ΄κΈ°ν" name="default_btn" /> | ||
15 | </floater> | 17 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_snapshot.xml b/linden/indra/newview/skins/xui/ko/floater_snapshot.xml index 75313ee..e4702da 100644 --- a/linden/indra/newview/skins/xui/ko/floater_snapshot.xml +++ b/linden/indra/newview/skins/xui/ko/floater_snapshot.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="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 | μ€λ μ· μ λ‘λ |
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 | <text name="type_label2"> | 17 | <text name="type_label2"> |
18 | μ΄λ€ ν¬κΈ°μ μ΄λ―Έμ§κ° νμνμλκΉ? | 18 | μ΄λ―Έμ§ ν¬κΈ° |
19 | </text> | 19 | </text> |
20 | <combo_box label="ν΄μλ" name="postcard_size_combo"> | 20 | <combo_box label="ν΄μλ" name="postcard_size_combo"> |
21 | <combo_item name="640x480"> | 21 | <combo_item name="640x480"> |
@@ -31,7 +31,7 @@ | |||
31 | νμ¬ μ°½ | 31 | νμ¬ μ°½ |
32 | </combo_item> | 32 | </combo_item> |
33 | <combo_item name="Custom"> | 33 | <combo_item name="Custom"> |
34 | λ§μΆ€ | 34 | μ¬μ©μ ν¬κΈ° |
35 | </combo_item> | 35 | </combo_item> |
36 | </combo_box> | 36 | </combo_box> |
37 | <combo_box label="ν΄μλ" name="texture_size_combo"> | 37 | <combo_box label="ν΄μλ" name="texture_size_combo"> |
@@ -42,13 +42,13 @@ | |||
42 | μ(128x128) | 42 | μ(128x128) |
43 | </combo_item> | 43 | </combo_item> |
44 | <combo_item name="Medium(256x256)"> | 44 | <combo_item name="Medium(256x256)"> |
45 | μ€(256x256) | 45 | μ€ (256 x256) |
46 | </combo_item> | 46 | </combo_item> |
47 | <combo_item name="Large(512x512)"> | 47 | <combo_item name="Large(512x512)"> |
48 | λ(512x512) | 48 | λ (512x512) |
49 | </combo_item> | 49 | </combo_item> |
50 | <combo_item name="Custom"> | 50 | <combo_item name="Custom"> |
51 | λ§μΆ€ | 51 | μ¬μ©μ ν¬κΈ° |
52 | </combo_item> | 52 | </combo_item> |
53 | </combo_box> | 53 | </combo_box> |
54 | <combo_box label="ν΄μλ" name="local_size_combo"> | 54 | <combo_box label="ν΄μλ" name="local_size_combo"> |
@@ -74,38 +74,38 @@ | |||
74 | 1600x1200 | 74 | 1600x1200 |
75 | </combo_item> | 75 | </combo_item> |
76 | <combo_item name="Custom"> | 76 | <combo_item name="Custom"> |
77 | λ§μΆ€ | 77 | μ¬μ©μ ν¬κΈ° |
78 | </combo_item> | 78 | </combo_item> |
79 | </combo_box> | 79 | </combo_box> |
80 | <spinner label="ν" name="snapshot_width" /> | 80 | <spinner label="ν" name="snapshot_width" /> |
81 | <spinner label="λμ΄" name="snapshot_height" /> | 81 | <spinner label="λμ΄" name="snapshot_height" /> |
82 | <slider label="μ΄λ―Έμ§ νμ§" name="image_quality_slider" /> | 82 | <slider label="μ΄λ―Έμ§ ν΄μλ" name="image_quality_slider" /> |
83 | <text name="layer_type_label"> | 83 | <text name="layer_type_label"> |
84 | μΊ‘μ²: | 84 | μ€νμΌ: |
85 | </text> | 85 | </text> |
86 | <combo_box label="μ΄λ―Έμ§ λ μ΄μ΄" name="layer_types"> | 86 | <combo_box label="μ΄λ―Έμ§ λ μ΄μ΄" name="layer_types"> |
87 | <combo_item name="Colors"> | 87 | <combo_item name="Colors"> |
88 | μ | 88 | μ |
89 | </combo_item> | 89 | </combo_item> |
90 | <combo_item name="Depth"> | 90 | <combo_item name="Depth"> |
91 | κΉμ΄ | 91 | μ€λ£¨μ£ |
92 | </combo_item> | 92 | </combo_item> |
93 | <combo_item name="ObjectMattes"> | 93 | <combo_item name="ObjectMattes"> |
94 | μμ΄ν λ§€νΈ | 94 | μ€λΈμ νΈ |
95 | </combo_item> | 95 | </combo_item> |
96 | </combo_box> | 96 | </combo_box> |
97 | <text name="file_size_label"> | 97 | <text name="file_size_label"> |
98 | νμΌ ν¬κΈ°: [SIZE] | 98 | νμΌ ν¬κΈ°: [SIZE] |
99 | </text> | 99 | </text> |
100 | <check_box label="μ€λ μ·μΌλ‘ μΈν°νμ΄μ€ νμνκΈ°" name="ui_check" /> | 100 | <check_box label="λ©λ΄ 보μ΄κΈ°" name="ui_check" /> |
101 | <check_box label="HUD μ¬λ¬Ό μ€λ μ·μΌλ‘ 보기" name="hud_check" /> | 101 | <check_box label="HUD 보μ΄κΈ°" name="hud_check" /> |
102 | <check_box label="μ μ₯ νμλ μ΄μ΄λκΈ°" name="keep_open_check" /> | 102 | <check_box label="μ μ₯ν μ΄μ΄λκΈ°" name="keep_open_check" /> |
103 | <check_box label="μ ν΄μ§ νμλΉ μ μ§" name="keep_aspect_check" /> | 103 | <check_box label="νμλΉ μ μ§νκΈ°" name="keep_aspect_check" /> |
104 | <check_box label="ν λ리 κ³ μ (μ 체 νλ©΄ 미리보기)" name="freeze_frame_check" /> | 104 | <check_box label="μ 체 νλ©΄μΌλ‘ 미리보기" name="freeze_frame_check" /> |
105 | <button label="μ μ€λ μ·" name="new_snapshot_btn" /> | 105 | <button label="μ μ€λ μ·" name="new_snapshot_btn" /> |
106 | <check_box label="μλ μ€λ μ·" name="auto_snapshot_check" /> | 106 | <check_box label="μλ μ€λ μ·" name="auto_snapshot_check" /> |
107 | <button label="μ λ‘λ(L$10)" name="upload_btn" /> | 107 | <button label="μ λ‘λ(L$10)" name="upload_btn" /> |
108 | <button label="보λ΄κΈ°" name="send_btn" /> | 108 | <button label="보λ΄κΈ°" name="send_btn" /> |
109 | <button label="μ μ₯" name="save_btn" /> | 109 | <button label="μ μ₯" name="save_btn" /> |
110 | <button label="λ²λ¦¬κΈ°" name="discard_btn" /> | 110 | <button label="μ·¨μ" name="discard_btn" /> |
111 | </floater> | 111 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_telehub.xml b/linden/indra/newview/skins/xui/ko/floater_telehub.xml index bec649d..439018e 100644 --- a/linden/indra/newview/skins/xui/ko/floater_telehub.xml +++ b/linden/indra/newview/skins/xui/ko/floater_telehub.xml | |||
@@ -1,28 +1,28 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="telehub" title="ν 리νλΈ"> | 2 | <floater name="telehub" title="ν λ νλΈ"> |
3 | <text name="status_text_connected"> | 3 | <text name="status_text_connected"> |
4 | μ¬λ¬Ό[OBJECT]μ μ°κ²°λ ν 리νλΈ | 4 | [OBJECT] μ€λΈμ νΈμ μ°κ²°λ ν λ νλΈ |
5 | </text> | 5 | </text> |
6 | <text name="status_text_not_connected"> | 6 | <text name="status_text_not_connected"> |
7 | ν 리νλΈκ° μ°κ²°λμ§ μμμ΅λλ€. | 7 | ν λ νλΈκ° μ°κ²°λμ§ μμ. |
8 | </text> | 8 | </text> |
9 | <text name="help_text_connected"> | 9 | <text name="help_text_connected"> |
10 | μμ νλ €λ©΄ μ°κ²° ν΄μ λ₯Ό ν΄λ¦ν©λλ€. | 10 | μμ νλ €λ©΄ 'μ°κ²° ν΄μ 'λ₯Ό ν΄λ¦ν©λλ€. |
11 | </text> | 11 | </text> |
12 | <text name="help_text_not_connected"> | 12 | <text name="help_text_not_connected"> |
13 | μμ΄ν μ μ νν ν ν 리νλΈ μ°κ²°μ ν΄λ¦νμμμ€. | 13 | μ€λΈμ νΈλ₯Ό μ ννκ³ ν 리νλΈ μ°κ²°μ ν΄λ¦νμμμ€. |
14 | </text> | 14 | </text> |
15 | <button label="ν 리νλΈ μ°κ²°" name="connect_btn" /> | 15 | <button label="ν λ νλΈ μ°κ²°" name="connect_btn" /> |
16 | <button label="μ°κ²° ν΄μ " name="disconnect_btn" /> | 16 | <button label="μ°κ²° ν΄μ " name="disconnect_btn" /> |
17 | <text name="spawn_points_text"> | 17 | <text name="spawn_points_text"> |
18 | μ€ν° μ§μ (μ¬λ¬Όμ΄ μλλΌ μμΉ): | 18 | μμ μ§μ (μ€λΈμ νΈκ° μλ μμΉμ): |
19 | </text> | 19 | </text> |
20 | <button label="μ€ν° μΆκ°" name="add_spawn_point_btn" /> | 20 | <button label="μμ μΆκ°" name="add_spawn_point_btn" /> |
21 | <button label="μ€ν° μ κ±°" name="remove_spawn_point_btn" /> | 21 | <button label="μ€ν° μ κ±°" name="remove_spawn_point_btn" /> |
22 | <text name="spawn_point_help"> | 22 | <text name="spawn_point_help"> |
23 | μ¬λ¬Όμ μ νν ν μΆκ°λ₯Ό ν΄λ¦ν΄ μμΉλ₯Ό μ€μ νμμμ€. | 23 | μ€λΈμ νΈλ₯Ό μ ννκ³ μΆκ°λ₯Ό ν΄λ¦νμ¬ μμΉλ₯Ό μ ν©λλ€. |
24 | κ·Έλ° λ€μ μ¬λ¬Όμ μ΄λ λλ μμ νμ€ μ μμ΅λλ€. | 24 | κ·Έλ° λ€μ, μ€λΈμ νΈλ₯Ό μ΄λ, μμ ν μ μμ΅λλ€. |
25 | μμΉμ κΈ°μ€μ ν 리νλΈ μ€μ¬μ λλ€. | 25 | μμΉλ ν 리νλΈ μΌν°μ λ°λΌ μλμ μ λλ€. |
26 | λͺ©λ‘μμ μμ΄ν μ μ ννμλ©΄ μΈκ³μμμ μμΉκ° νμλ©λλ€. | 26 | μλ μμΉλ₯Ό νμνκΈ° μν΄ λͺ©λ‘μ νλͺ©μ μ νν©λλ€. |
27 | </text> | 27 | </text> |
28 | </floater> | 28 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_texture_ctrl.xml b/linden/indra/newview/skins/xui/ko/floater_texture_ctrl.xml index 9c5ff01..6b464ca 100644 --- a/linden/indra/newview/skins/xui/ko/floater_texture_ctrl.xml +++ b/linden/indra/newview/skins/xui/ko/floater_texture_ctrl.xml | |||
@@ -1,16 +1,16 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="texture picker" title="μ ν: ν μ€μ²"> | 2 | <floater name="texture picker" title="μ ν: ν μ€μ²"> |
3 | <text type="string" length="1" name="Multiple"> | 3 | <text type="string" length="1" name="Multiple"> |
4 | λ€μ€ | 4 | λ€λͺ©μ |
5 | </text> | 5 | </text> |
6 | <text type="string" length="1" name="unknown"> | 6 | <text type="string" length="1" name="unknown"> |
7 | ν¬κΈ°: 512 x 512 | 7 | ν¬κΈ°: 512x512 |
8 | </text> | 8 | </text> |
9 | <button label="κΈ°λ³Έ μ€μ " label_selected="κΈ°λ³Έ μ€μ " name="Default" /> | 9 | <button label="κΈ°λ³Έ μ€μ " label_selected="κΈ°λ³Έ μ€μ " name="Default" /> |
10 | <button label="μμ" label_selected="μμ" name="None" /> | 10 | <button label="μμ" label_selected="μμ" name="None" /> |
11 | <button label="곡백" label_selected="곡백" name="Blank" /> | 11 | <button label="곡백" label_selected="곡백" name="Blank" /> |
12 | <check_box label="ν΄λ νμ" name="show_folders_check" /> | 12 | <check_box label="ν΄λ νμ" name="show_folders_check" /> |
13 | <check_box label="μ¦μ μ μ©" name="apply_immediate_check" /> | 13 | <check_box label="μ§κΈ μ μ©" name="apply_immediate_check" /> |
14 | <button label="" label_selected="" name="Pipette" /> | 14 | <button label="" label_selected="" name="Pipette" /> |
15 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Cancel" /> | 15 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Cancel" /> |
16 | <button label="μ ν" label_selected="μ ν" name="Select" /> | 16 | <button label="μ ν" label_selected="μ ν" name="Select" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_tools.xml b/linden/indra/newview/skins/xui/ko/floater_tools.xml index 2d67e05..7baaef6 100644 --- a/linden/indra/newview/skins/xui/ko/floater_tools.xml +++ b/linden/indra/newview/skins/xui/ko/floater_tools.xml | |||
@@ -2,7 +2,7 @@ | |||
2 | <floater name="toolbox floater" title=""> | 2 | <floater name="toolbox floater" title=""> |
3 | <button label="" label_selected="" name="button focus" /> | 3 | <button label="" label_selected="" name="button focus" /> |
4 | <text name="tool label"> | 4 | <text name="tool label"> |
5 | μ΄μ | 5 | 보기 |
6 | </text> | 6 | </text> |
7 | <button label="" label_selected="" name="button move" /> | 7 | <button label="" label_selected="" name="button move" /> |
8 | <text name="tool label2"> | 8 | <text name="tool label2"> |
@@ -20,30 +20,30 @@ | |||
20 | <text name="tool label5"> | 20 | <text name="tool label5"> |
21 | ν μ§ | 21 | ν μ§ |
22 | </text> | 22 | </text> |
23 | <check_box label="μ€" name="radio zoom" /> | 23 | <check_box label="νλ/μΆμ" name="radio zoom" /> |
24 | <check_box label="κΆ€λνμ (Ctrl)" name="radio orbit" /> | 24 | <check_box label="κΆ€λνμ (Ctrl)" name="radio orbit" /> |
25 | <check_box label="ν¬(Ctrl-Shift)" name="radio pan" /> | 25 | <check_box label="ν¬(Ctrl-Shift)" name="radio pan" /> |
26 | <check_box label="μ΄λ" name="radio move" /> | 26 | <check_box label="μ΄λ" name="radio move" /> |
27 | <check_box label="μ¬λ¦¬κΈ°(Ctrl)" name="radio lift" /> | 27 | <check_box label="λ€κΈ°(Ctrl)" name="radio lift" /> |
28 | <check_box label="μ€ν(Ctrl-Shift)" name="radio spin" /> | 28 | <check_box label="λ리기(Ctrl-Shift)" name="radio spin" /> |
29 | <check_box label="μμΉ" name="radio position" /> | 29 | <check_box label="μμΉ" name="radio position" /> |
30 | <check_box label="νμ (Ctrl)" name="radio rotate" /> | 30 | <check_box label="νμ (Ctrl)" name="radio rotate" /> |
31 | <check_box label="λ리기(Ctrl-Shift)" name="radio stretch" /> | 31 | <check_box label="λ리기(Ctrl-Shift)" name="radio stretch" /> |
32 | <check_box label="ν μ€μ² μ ν" name="radio select face" /> | 32 | <check_box label="ν μ€μ² μ ν" name="radio select face" /> |
33 | <check_box label="μ°κ²° λΆλΆ νΈμ§" name="checkbox edit linked parts" /> | 33 | <check_box label="μ°κ²°λ μ€λΈμ νΈ νΈμ§" name="checkbox edit linked parts" /> |
34 | <check_box label="그리λ μ¬μ©" name="checkbox snap to grid" /> | 34 | <check_box label="그리λ μ¬μ©" name="checkbox snap to grid" /> |
35 | <button label="μ΅μ ..." label_selected="μ΅μ ..." name="Options..." /> | 35 | <button label="μ΅μ β¦" label_selected="μ΅μ β¦" name="Options..." /> |
36 | <check_box label="μμͺ½ λͺ¨λ λ리기" name="checkbox uniform" /> | 36 | <check_box label="μμͺ½ λͺ¨λ λ리기" name="checkbox uniform" /> |
37 | <check_box label="ν μ€μ² λ리기" name="checkbox stretch textures" /> | 37 | <check_box label="ν μ€μ² λ리기" name="checkbox stretch textures" /> |
38 | <text name="text ruler mode"> | 38 | <text name="text ruler mode"> |
39 | μ§λμ λͺ¨λ: | 39 | λκΈμ μ€μ : |
40 | </text> | 40 | </text> |
41 | <text name="text status"> | 41 | <text name="text status"> |
42 | μ΄λμ λλκ·Έ, 볡μ¬λ Shift ν€-λλκ·Ένμμμ€ | 42 | μ΄λμ λκΈ°, 볡μ¬λ Shift ν€-λκΈ°νμμμ€. |
43 | </text> | 43 | </text> |
44 | <combo_box name="combobox grid mode"> | 44 | <combo_box name="combobox grid mode"> |
45 | <combo_item name="World"> | 45 | <combo_item name="World"> |
46 | μΈκ³ | 46 | μλ |
47 | </combo_item> | 47 | </combo_item> |
48 | <combo_item name="Local"> | 48 | <combo_item name="Local"> |
49 | λ‘컬 | 49 | λ‘컬 |
@@ -62,7 +62,7 @@ | |||
62 | <button label="" label_selected="" name="ToolHemiCone" /> | 62 | <button label="" label_selected="" name="ToolHemiCone" /> |
63 | <button label="" label_selected="" name="ToolSphere" /> | 63 | <button label="" label_selected="" name="ToolSphere" /> |
64 | <button label="" label_selected="" name="ToolHemiSphere" /> | 64 | <button label="" label_selected="" name="ToolHemiSphere" /> |
65 | <check_box label="λ³΅μ¬ μ ν" name="checkbox copy selection" /> | 65 | <check_box label="μ ν νλͺ© 볡μ¬" name="checkbox copy selection" /> |
66 | <button label="" label_selected="" name="ToolTorus" /> | 66 | <button label="" label_selected="" name="ToolTorus" /> |
67 | <button label="" label_selected="" name="ToolTube" /> | 67 | <button label="" label_selected="" name="ToolTube" /> |
68 | <button label="" label_selected="" name="ToolRing" /> | 68 | <button label="" label_selected="" name="ToolRing" /> |
@@ -74,8 +74,8 @@ | |||
74 | <check_box label="ν μ§ μ ν" name="radio select land" /> | 74 | <check_box label="ν μ§ μ ν" name="radio select land" /> |
75 | <check_box label="ν μ§ ννν" name="radio flatten" /> | 75 | <check_box label="ν μ§ ννν" name="radio flatten" /> |
76 | <check_box label="ν μ§ μ¬λ¦¬κΈ°" name="radio raise" /> | 76 | <check_box label="ν μ§ μ¬λ¦¬κΈ°" name="radio raise" /> |
77 | <check_box label="ν μ§ λμΆκΈ°" name="radio lower" /> | 77 | <check_box label="λμ ν μ§" name="radio lower" /> |
78 | <check_box label="ν μ§ λΆλλ½κ² νκΈ°" name="radio smooth" /> | 78 | <check_box label="ν μ§ κ³ λ₯΄κΈ°" name="radio smooth" /> |
79 | <check_box label="ν μ§ κ±°μΉ κ² λ§λ€κΈ°" name="radio noise" /> | 79 | <check_box label="ν μ§ κ±°μΉ κ² λ§λ€κΈ°" name="radio noise" /> |
80 | <check_box label="ν μ§ λλ리기" name="radio revert" /> | 80 | <check_box label="ν μ§ λλ리기" name="radio revert" /> |
81 | <combo_box name="combobox brush size"> | 81 | <combo_box name="combobox brush size"> |
@@ -92,10 +92,10 @@ | |||
92 | <button label="μ ν μ¬νμ μ μ©" label_selected="μ ν μ¬νμ μ μ©" | 92 | <button label="μ ν μ¬νμ μ μ©" label_selected="μ ν μ¬νμ μ μ©" |
93 | name="button apply to selection" tool_tip="μ νν ν μ§ μμ " /> | 93 | name="button apply to selection" tool_tip="μ νν ν μ§ μμ " /> |
94 | <check_box label="μμ μ£Ό νμ" name="checkbox show owners" /> | 94 | <check_box label="μμ μ£Ό νμ" name="checkbox show owners" /> |
95 | <button label="μΆκ° >>" name="button more" tool_tip="κ³ κΈ μ΅μ " /> | 95 | <button label="λ 보기 >>" name="button more" tool_tip="κ³ κΈ μ΅μ " /> |
96 | <button label="<< μ κ²" name="button less" tool_tip="κ³ κΈ μ΅μ " /> | 96 | <button label="<< λ«κΈ°" name="button less" tool_tip="κ³ κΈ μ΅μ " /> |
97 | <tab_container name="Object Info Tabs"> | 97 | <tab_container name="Object Info Tabs"> |
98 | <panel label="μΌλ°μ¬ν" name="General"> | 98 | <panel label="μΌλ°" name="General"> |
99 | <text name="Name:"> | 99 | <text name="Name:"> |
100 | μ΄λ¦: | 100 | μ΄λ¦: |
101 | </text> | 101 | </text> |
@@ -103,38 +103,38 @@ | |||
103 | μ€λͺ : | 103 | μ€λͺ : |
104 | </text> | 104 | </text> |
105 | <text name="Creator:"> | 105 | <text name="Creator:"> |
106 | μμ±μ: | 106 | λ§λ μ΄: |
107 | </text> | 107 | </text> |
108 | <text name="Creator Name"> | 108 | <text name="Creator Name"> |
109 | μ€λμ€ λ¦°λ | 109 | Thrax Linden |
110 | </text> | 110 | </text> |
111 | <button label="νλ‘ν..." label_selected="νλ‘ν..." | 111 | <button label="νλ‘νβ¦" label_selected="νλ‘νβ¦" |
112 | name="button creator profile" /> | 112 | name="button creator profile" /> |
113 | <text name="Owner:"> | 113 | <text name="Owner:"> |
114 | μμ μ£Ό: | 114 | μμ μ: |
115 | </text> | 115 | </text> |
116 | <text name="Owner Name"> | 116 | <text name="Owner Name"> |
117 | μ€λμ€ λ¦°λ | 117 | Thrax Linden |
118 | </text> | 118 | </text> |
119 | <button label="νλ‘ν..." label_selected="νλ‘ν..." name="button owner profile" /> | 119 | <button label="νλ‘νβ¦" label_selected="νλ‘νβ¦" name="button owner profile" /> |
120 | <text name="Group:"> | 120 | <text name="Group:"> |
121 | κ·Έλ£Ή: | 121 | κ·Έλ£Ή: |
122 | </text> | 122 | </text> |
123 | <text name="Group Name Proxy"> | 123 | <text name="Group Name Proxy"> |
124 | λ λ¦°λ μ¦ | 124 | λ λ¦°λ μ¦ |
125 | </text> | 125 | </text> |
126 | <button label="μ€μ ..." label_selected="μ€μ ..." name="button set group" /> | 126 | <button label="μ€μ β¦" label_selected="μ€μ β¦" name="button set group" /> |
127 | <text name="prim info"> | 127 | <text name="prim info"> |
128 | μμ΄ν 1κ°, ν리미ν°λΈ 1κ° | 128 | μ€λΈμ νΈ 1κ°, νλ¦Ό 1κ° |
129 | </text> | 129 | </text> |
130 | <text name="Permissions:"> | 130 | <text name="Permissions:"> |
131 | κΆν: | 131 | κΆν: |
132 | </text> | 132 | </text> |
133 | <text name="perm_modify"> | 133 | <text name="perm_modify"> |
134 | μ΄ μμ΄ν μ μμ ν μ μμ΅λλ€ | 134 | μ΄ μ€λΈμ νΈλ μμ ν μ μμ΅λλ€. |
135 | </text> | 135 | </text> |
136 | <check_box label="κ·Έλ£Ήκ³Ό 곡μ " name="checkbox share with group" | 136 | <check_box label="κ·Έλ£Ήκ³Ό 곡μ " name="checkbox share with group" |
137 | tool_tip="κ·Έλ£Ή λ©€λ²μκ² μ΄λ, μμ , 볡μ¬, μμ νμ©." /> | 137 | tool_tip="κ·Έλ£Ή νμμκ² μ΄λ, μμ , λ³΅μ¬ λ° μμ λ₯Ό νμ©ν©λλ€." /> |
138 | <text name="text deed continued"> | 138 | <text name="text deed continued"> |
139 | μλ... | 139 | μλ... |
140 | </text> | 140 | </text> |
@@ -142,30 +142,30 @@ | |||
142 | μλ | 142 | μλ |
143 | </text> | 143 | </text> |
144 | <button label="μλ..." label_selected="μλ..." name="button deed" | 144 | <button label="μλ..." label_selected="μλ..." name="button deed" |
145 | tool_tip="κ·Έλ£Ή 곡μ μ¬λ¬Όμ κ·Έλ£Ή κ°λΆκ° μλν μ μμ΅λλ€." /> | 145 | tool_tip="κ·Έλ£Ή 곡μ μ€λΈμ νΈλ κ·Έλ£Ή μ΄μμ§μ΄ μλν μ μμ΅λλ€." /> |
146 | <check_box label="μ무λ μ΄λ νμ©" name="checkbox allow everyone move" /> | 146 | <check_box label="μ무λ μ΄λ νμ©" name="checkbox allow everyone move" /> |
147 | <check_box label="μ무λ λ³΅μ¬ νμ©" name="checkbox allow everyone copy" /> | 147 | <check_box label="μ무λ λ³΅μ¬ νμ©" name="checkbox allow everyone copy" /> |
148 | <check_box label="맀물" name="checkbox for sale" /> | 148 | <check_box label="ν맀 μ¬λΆ" name="checkbox for sale" /> |
149 | <text name="Price: L$"> | 149 | <text name="Price: L$"> |
150 | κ°κ²©: L$ | 150 | κ°κ²©: L$ |
151 | </text> | 151 | </text> |
152 | <radio_group name="sale type"> | 152 | <radio_group name="sale type"> |
153 | <radio_item name="Original"> | 153 | <radio_item name="Original"> |
154 | λ μ°½μ μ | 154 | μλ³Έ |
155 | </radio_item> | 155 | </radio_item> |
156 | <radio_item name="Copy"> | 156 | <radio_item name="Copy"> |
157 | λ³΅μ¬ | 157 | λ³΅μ¬ |
158 | </radio_item> | 158 | </radio_item> |
159 | <radio_item name="Contents"> | 159 | <radio_item name="Contents"> |
160 | λ΄μ© | 160 | 컨ν μΈ |
161 | </radio_item> | 161 | </radio_item> |
162 | </radio_group> | 162 | </radio_group> |
163 | <text name="Next owner can:"> | 163 | <text name="Next owner can:"> |
164 | λ€μ μμ μ£Όλ: | 164 | λ€μ μμ μ κΆν: |
165 | </text> | 165 | </text> |
166 | <check_box label="μμ " name="checkbox next owner can modify" /> | 166 | <check_box label="μμ " name="checkbox next owner can modify" /> |
167 | <check_box label="볡μ¬" name="checkbox next owner can copy" /> | 167 | <check_box label="볡μ¬" name="checkbox next owner can copy" /> |
168 | <check_box label="μ¬ν맀/λ¬΄λ£ λ°°ν¬" name="checkbox next owner can transfer" /> | 168 | <check_box label="μ¬ν맀/μ£ΌκΈ°" name="checkbox next owner can transfer" /> |
169 | <text name="label click action"> | 169 | <text name="label click action"> |
170 | μΌμͺ½ ν΄λ¦νμ λ: | 170 | μΌμͺ½ ν΄λ¦νμ λ: |
171 | </text> | 171 | </text> |
@@ -174,13 +174,13 @@ | |||
174 | λ§μ§κΈ°/μ‘κΈ°(κΈ°λ³Έ μ€μ ) | 174 | λ§μ§κΈ°/μ‘κΈ°(κΈ°λ³Έ μ€μ ) |
175 | </combo_item> | 175 | </combo_item> |
176 | <combo_item name="Sitonobject"> | 176 | <combo_item name="Sitonobject"> |
177 | μ¬λ¬Όμ μκΈ° | 177 | μ€λΈμ νΈμ μκΈ° |
178 | </combo_item> | 178 | </combo_item> |
179 | <combo_item name="Buyobject"> | 179 | <combo_item name="Buyobject"> |
180 | μμ΄ν ꡬ맀 | 180 | μ€λΈμ νΈ κ΅¬λ§€ |
181 | </combo_item> | 181 | </combo_item> |
182 | <combo_item name="Payobject"> | 182 | <combo_item name="Payobject"> |
183 | μμ΄ν μΌλ‘ μ§λΆ | 183 | μ€λΈμ νΈλ‘ μ§λΆ |
184 | </combo_item> | 184 | </combo_item> |
185 | <combo_item name="Open"> | 185 | <combo_item name="Open"> |
186 | μ΄κΈ° | 186 | μ΄κΈ° |
@@ -205,36 +205,36 @@ | |||
205 | F: | 205 | F: |
206 | </text> | 206 | </text> |
207 | <text name="text modify info 1"> | 207 | <text name="text modify info 1"> |
208 | μ΄ μμ΄ν μ μμ ν μ μμ΅λλ€ | 208 | μ΄ μ€λΈμ νΈλ μμ ν μ μμ΅λλ€. |
209 | </text> | 209 | </text> |
210 | <text name="text modify info 2"> | 210 | <text name="text modify info 2"> |
211 | μ΄ μμ΄ν λ€μ μμ ν μ μμ΅λλ€. | 211 | μ΄λ¬ν μ€λΈμ νΈλ₯Ό μμ ν μ μμ΅λλ€. |
212 | </text> | 212 | </text> |
213 | <text name="text modify info 3"> | 213 | <text name="text modify info 3"> |
214 | μ΄ μμ΄ν μ μμ ν μ μμ΅λλ€. | 214 | μ΄ μ€λΈμ νΈλ μμ ν μ μμ΅λλ€. |
215 | </text> | 215 | </text> |
216 | <text name="text modify info 4"> | 216 | <text name="text modify info 4"> |
217 | μ΄ μμ΄ν μ μμ ν μ μμ΅λλ€. | 217 | μ΄ μ€λΈμ νΈλ μμ ν μ μμ΅λλ€. |
218 | </text> | 218 | </text> |
219 | <text name="text modify warning"> | 219 | <text name="text modify warning"> |
220 | κΆνμ μ€μ νλ €λ©΄ μ 체 μμ΄ν μ μ ννμ μΌ ν©λλ€. | 220 | κΆνμ μ€μ νλ €λ©΄ μ 체 μ€λΈμ νΈλ₯Ό μ νν΄μΌ ν©λλ€. |
221 | </text> | 221 | </text> |
222 | </panel> | 222 | </panel> |
223 | <panel label="μ¬λ¬Ό" name="Object"> | 223 | <panel label="μ€λΈμ νΈ" name="Object"> |
224 | <text name="select_single"> | 224 | <text name="select_single"> |
225 | 맀κ°λ³μλ₯Ό νΈμ§ν ν리미ν°λΈλ₯Ό νλλ§ μ ννμμμ€. | 225 | 맀κ°λ³μλ₯Ό νΈμ§ν νλ¦Όμ νλλ§ μ ννμμμ€. |
226 | </text> | 226 | </text> |
227 | <text name="edit_object"> | 227 | <text name="edit_object"> |
228 | μμ΄ν 맀κ°λ³μ νΈμ§: | 228 | μ€λΈμ νΈ λ§€κ°λ³μ νΈμ§: |
229 | </text> | 229 | </text> |
230 | <check_box label="μ κΈ" name="checkbox locked" | 230 | <check_box label="μ κΈ" name="checkbox locked" |
231 | tool_tip="μμ΄ν μ΄ μ΄λ-μμ λλ κ²μ κΈμ§ν©λλ€. κ±΄μΆ μ€ μλνμ§ μμ λ³κ²½μ λ§λ λ° μ μ©ν©λλ€." /> | 231 | tool_tip="μ€λΈμ νΈκ° μ΄λ-μμ λλ κ²μ κΈμ§ν©λλ€. κ±΄μΆ μ€ μλνμ§ μμ λ³κ²½μ λ°©μ§μ μ μ©ν©λλ€." /> |
232 | <check_box label="물리μ " name="Physical Checkbox Ctrl" | 232 | <check_box label="물리 μμ§" name="Physical Checkbox Ctrl" |
233 | tool_tip="μ¬λ¬Όμ΄ μ€λ ₯μ μν΄ λ°λ¦¬κ³ μν₯λ°λλ‘ νμ©" /> | 233 | tool_tip="μ€λΈμ νΈκ° μ€λ ₯μ μν΄ λ°λ¦¬κ³ μν₯λ°λλ‘ νμ©" /> |
234 | <check_box label="μμ" name="Temporary Checkbox Ctrl" | 234 | <check_box label="μμ" name="Temporary Checkbox Ctrl" |
235 | tool_tip="μμ± ν 1λΆ νμ μμ΄ν μ΄ μμ λλλ‘ ν©λλ€." /> | 235 | tool_tip="μμ±νμ§ 1λΆ νμ μ€λΈμ νΈκ° μμ λλλ‘ ν©λλ€." /> |
236 | <check_box label="μ λ Ή" name="Phantom Checkbox Ctrl" | 236 | <check_box label="ν¬ν " name="Phantom Checkbox Ctrl" |
237 | tool_tip="μμ΄ν μ΄ λ€λ₯Έ μμ΄ν λλ μλ°νμ μΆ©λνμ§ μλλ‘ ν©λλ€" /> | 237 | tool_tip="μ€λΈμ νΈκ° λ€λ₯Έ μ€λΈμ νΈ λλ μλ°νμ μΆ©λνμ§ μλλ‘ ν©λλ€." /> |
238 | <text name="label position"> | 238 | <text name="label position"> |
239 | μμΉ(λ―Έν°) | 239 | μμΉ(λ―Έν°) |
240 | </text> | 240 | </text> |
@@ -280,7 +280,7 @@ | |||
280 | </combo_item> | 280 | </combo_item> |
281 | </combo_box> | 281 | </combo_box> |
282 | <text name="label basetype"> | 282 | <text name="label basetype"> |
283 | 건μΆμ© λΈλ‘ μ ν | 283 | λΈλ‘ μ ν |
284 | </text> | 284 | </text> |
285 | <combo_box name="comboBaseType"> | 285 | <combo_box name="comboBaseType"> |
286 | <combo_item name="Box"> | 286 | <combo_item name="Box"> |
@@ -302,7 +302,10 @@ | |||
302 | κ΄ | 302 | κ΄ |
303 | </combo_item> | 303 | </combo_item> |
304 | <combo_item name="Ring"> | 304 | <combo_item name="Ring"> |
305 | λ°μ§ | 305 | λ§ |
306 | </combo_item> | ||
307 | <combo_item name="Sculpted"> | ||
308 | μ‘°κ° | ||
306 | </combo_item> | 309 | </combo_item> |
307 | </combo_box> | 310 | </combo_box> |
308 | <text name="text cut"> | 311 | <text name="text cut"> |
@@ -334,7 +337,7 @@ | |||
334 | </combo_item> | 337 | </combo_item> |
335 | </combo_box> | 338 | </combo_box> |
336 | <text name="text twist"> | 339 | <text name="text twist"> |
337 | λμ κΌ¬μ μμ κ³Ό μ’ λ£ | 340 | λμ κΌ¬μ μμκ³Ό μ’ λ£ |
338 | </text> | 341 | </text> |
339 | <spinner label="B" name="Twist Begin" /> | 342 | <spinner label="B" name="Twist Begin" /> |
340 | <spinner label="E" name="Twist End" /> | 343 | <spinner label="E" name="Twist End" /> |
@@ -370,16 +373,17 @@ | |||
370 | <text name="text revolutions"> | 373 | <text name="text revolutions"> |
371 | νμ | 374 | νμ |
372 | </text> | 375 | </text> |
376 | <texture_picker label="ν μ€μ²" name="sculpt texture control" tool_tip="μ΄λ―Έμ§ μ ν" /> | ||
373 | </panel> | 377 | </panel> |
374 | <panel label="νΉμ§" name="Features"> | 378 | <panel label="νΉμ§" name="Features"> |
375 | <text name="select_single"> | 379 | <text name="select_single"> |
376 | νΉμ§μ νΈμ§ν ν리미ν°λΈλ₯Ό νλλ§ μ ννμμμ€ | 380 | νΉμ§μ νΈμ§ν νλ¦Όμ νλλ§ μ ννμμμ€. |
377 | </text> | 381 | </text> |
378 | <text name="edit_object"> | 382 | <text name="edit_object"> |
379 | μμ΄ν νΉμ± νΈμ§: | 383 | μ€λΈμ νΈ νΉμ± νΈμ§: |
380 | </text> | 384 | </text> |
381 | <check_box label="μ μΆ κ²½λ‘" name="Flexible1D Checkbox Ctrl" | 385 | <check_box label="μ μΆ κ²½λ‘" name="Flexible1D Checkbox Ctrl" |
382 | tool_tip="μ¬λ¬Όμ΄ Z μΆμ μ€μ¬μΌλ‘ ꡬλΆλ¬μ§λλ‘ νμ©. (ν΄λΌμ΄μΈνΈμΈ‘λ§ ν΄λΉ)" /> | 386 | tool_tip="μ€λΈμ νΈκ° Z μΆμ μ€μ¬μΌλ‘ ꡬλΆλ¬μ§λλ‘ νμ©. (ν΄λΌμ΄μΈνΈμΈ‘λ§ ν΄λΉ)" /> |
383 | <spinner label="λΆλλ¬μ" name="FlexNumSections" /> | 387 | <spinner label="λΆλλ¬μ" name="FlexNumSections" /> |
384 | <spinner label="μ€λ ₯" name="FlexGravity" /> | 388 | <spinner label="μ€λ ₯" name="FlexGravity" /> |
385 | <spinner label="λκΈ°" name="FlexFriction" /> | 389 | <spinner label="λκΈ°" name="FlexFriction" /> |
@@ -389,19 +393,21 @@ | |||
389 | <spinner label="ν¬μ€ Y" name="FlexForceY" /> | 393 | <spinner label="ν¬μ€ Y" name="FlexForceY" /> |
390 | <spinner label="ν¬μ€ Z" name="FlexForceZ" /> | 394 | <spinner label="ν¬μ€ Z" name="FlexForceZ" /> |
391 | <check_box label="λΉ" name="Light Checkbox Ctrl" | 395 | <check_box label="λΉ" name="Light Checkbox Ctrl" |
392 | tool_tip="μμ΄ν μ΄ λΉμ λ°νκ² ν©λλ€" /> | 396 | tool_tip="μ€λΈμ νΈκ° λΉμ λ°νκ² ν©λλ€." /> |
393 | <text name="label color"> | 397 | <text name="label color"> |
394 | μ | 398 | μ |
395 | </text> | 399 | </text> |
396 | <color_swatch label="" name="colorswatch" tool_tip="ν΄λ¦ν΄ μ νΌμ»€λ₯Ό μ¬μμμ€" /> | 400 | <color_swatch label="" name="colorswatch" |
401 | tool_tip="μ κ΄λ¦¬κΈ°λ₯Ό μ΄λ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
397 | <spinner label="κ°λ" name="Light Intensity" /> | 402 | <spinner label="κ°λ" name="Light Intensity" /> |
398 | <spinner label="λ°μ§λ¦" name="Light Radius" /> | 403 | <spinner label="λ°μ§λ¦" name="Light Radius" /> |
399 | <spinner label="νλ½" name="Light Falloff" /> | 404 | <spinner label="νλ½" name="Light Falloff" /> |
400 | </panel> | 405 | </panel> |
401 | <panel label="ν μ€μ²" name="Texture"> | 406 | <panel label="ν μ€μ²" name="Texture"> |
402 | <texture_picker label="ν μ€μ²" name="texture control" | 407 | <texture_picker label="ν μ€μ²" name="texture control" |
403 | tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 408 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> |
404 | <color_swatch label="μ" name="colorswatch" tool_tip="ν΄λ¦ν΄ μ νΌμ»€λ₯Ό μ¬μμμ€" /> | 409 | <color_swatch label="μ" name="colorswatch" |
410 | tool_tip="μ κ΄λ¦¬κΈ°λ₯Ό μ΄λ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
405 | <text name="color trans"> | 411 | <text name="color trans"> |
406 | ν¬λͺ λ % | 412 | ν¬λͺ λ % |
407 | </text> | 413 | </text> |
@@ -418,7 +424,7 @@ | |||
418 | </combo_item> | 424 | </combo_item> |
419 | </combo_box> | 425 | </combo_box> |
420 | <text name="label shininess"> | 426 | <text name="label shininess"> |
421 | κ΄μ± | 427 | κ΄ν |
422 | </text> | 428 | </text> |
423 | <combo_box name="combobox shininess"> | 429 | <combo_box name="combobox shininess"> |
424 | <combo_item name="None"> | 430 | <combo_item name="None"> |
@@ -435,14 +441,14 @@ | |||
435 | </combo_item> | 441 | </combo_item> |
436 | </combo_box> | 442 | </combo_box> |
437 | <text name="label bumpiness"> | 443 | <text name="label bumpiness"> |
438 | μΈνλΆνν¨ | 444 | μ§κ° |
439 | </text> | 445 | </text> |
440 | <combo_box name="combobox bumpiness"> | 446 | <combo_box name="combobox bumpiness"> |
441 | <combo_item name="None"> | 447 | <combo_item name="None"> |
442 | μμ | 448 | μμ |
443 | </combo_item> | 449 | </combo_item> |
444 | <combo_item name="Brightness"> | 450 | <combo_item name="Brightness"> |
445 | λ°μ | 451 | λ°κΈ° |
446 | </combo_item> | 452 | </combo_item> |
447 | <combo_item name="Darkness"> | 453 | <combo_item name="Darkness"> |
448 | μ΄λμ | 454 | μ΄λμ |
@@ -457,25 +463,25 @@ | |||
457 | λ²½λ | 463 | λ²½λ |
458 | </combo_item> | 464 | </combo_item> |
459 | <combo_item name="checker"> | 465 | <combo_item name="checker"> |
460 | 체컀 | 466 | κ²μ¬κΈ° |
461 | </combo_item> | 467 | </combo_item> |
462 | <combo_item name="concrete"> | 468 | <combo_item name="concrete"> |
463 | μ½ν¬λ¦¬νΈ | 469 | μ½ν¬λ¦¬νΈ |
464 | </combo_item> | 470 | </combo_item> |
465 | <combo_item name="crustytile"> | 471 | <combo_item name="crustytile"> |
466 | ν¬λ¬μ€ν°νμΌ | 472 | κ±°μΉ νμΌ |
467 | </combo_item> | 473 | </combo_item> |
468 | <combo_item name="cutstone"> | 474 | <combo_item name="cutstone"> |
469 | λ€λ¬λ | 475 | λ€λ¬λ |
470 | </combo_item> | 476 | </combo_item> |
471 | <combo_item name="discs"> | 477 | <combo_item name="discs"> |
472 | μν | 478 | λμ€ν¬ |
473 | </combo_item> | 479 | </combo_item> |
474 | <combo_item name="gravel"> | 480 | <combo_item name="gravel"> |
475 | μκ° | 481 | μκ° |
476 | </combo_item> | 482 | </combo_item> |
477 | <combo_item name="petridish"> | 483 | <combo_item name="petridish"> |
478 | ννΈλ¦¬ μ μ | 484 | ννΈλ¦¬λμ¬ |
479 | </combo_item> | 485 | </combo_item> |
480 | <combo_item name="siding"> | 486 | <combo_item name="siding"> |
481 | λ²½ | 487 | λ²½ |
@@ -490,11 +496,11 @@ | |||
490 | ν‘μΈ | 496 | ν‘μΈ |
491 | </combo_item> | 497 | </combo_item> |
492 | <combo_item name="weave"> | 498 | <combo_item name="weave"> |
493 | μ§κΈ° | 499 | 쑰립 |
494 | </combo_item> | 500 | </combo_item> |
495 | </combo_box> | 501 | </combo_box> |
496 | <text name="tex scale"> | 502 | <text name="tex scale"> |
497 | λ©΄λ³ λ°λ³΅ | 503 | λ©΄ λ¨μ λ°λ³΅ |
498 | </text> | 504 | </text> |
499 | <spinner label="μν(U)" name="TexScaleU" /> | 505 | <spinner label="μν(U)" name="TexScaleU" /> |
500 | <check_box label="λ€μ§κΈ°" name="checkbox flip s" /> | 506 | <check_box label="λ€μ§κΈ°" name="checkbox flip s" /> |
@@ -507,20 +513,20 @@ | |||
507 | λ―Έν°λΉ λ°λ³΅ | 513 | λ―Έν°λΉ λ°λ³΅ |
508 | </text> | 514 | </text> |
509 | <text name="string repeats per face"> | 515 | <text name="string repeats per face"> |
510 | λ©΄λ³ λ°λ³΅ | 516 | λ©΄ λ¨μ λ°λ³΅ |
511 | </text> | 517 | </text> |
512 | <text name="rpt"> | 518 | <text name="rpt"> |
513 | λ―Έν°λΉ λ°λ³΅ | 519 | λ―Έν°λΉ λ°λ³΅ |
514 | </text> | 520 | </text> |
515 | <button label="μ μ©" label_selected="μ μ©" name="button apply" /> | 521 | <button label="μ μ©" label_selected="μ μ©" name="button apply" /> |
516 | <text name="tex offset"> | 522 | <text name="tex offset"> |
517 | μμ | 523 | μ€νμ |
518 | </text> | 524 | </text> |
519 | <spinner label="μν(U)" name="TexOffsetU" /> | 525 | <spinner label="μν(U)" name="TexOffsetU" /> |
520 | <spinner label="μμ§(V)" name="TexOffsetV" /> | 526 | <spinner label="μμ§(V)" name="TexOffsetV" /> |
521 | <text name="textbox autofix"> | 527 | <text name="textbox autofix"> |
522 | λ―Έλμ΄ ν μ€μ² μ λ ¬ | 528 | λ―Έλμ΄ ν μ€μ² μ λ ¬ |
523 | (λ¨Όμ λ‘λ© νμ) | 529 | (λ¨Όμ λ‘λ νμ) |
524 | </text> | 530 | </text> |
525 | <button label="μ λ ¬" label_selected="μ λ ¬" name="button align" /> | 531 | <button label="μ λ ¬" label_selected="μ λ ¬" name="button align" /> |
526 | </panel> | 532 | </panel> |
@@ -531,17 +537,17 @@ | |||
531 | </tab_container> | 537 | </tab_container> |
532 | <panel name="land info panel"> | 538 | <panel name="land info panel"> |
533 | <text name="label_area_price"> | 539 | <text name="label_area_price"> |
534 | κ°κ²©: [AREA] νλ°© λ―Έν°μ λν΄ L$[PRICE] | 540 | κ°κ²©: [AREA] μ κ³± λ―Έν° λΉ L$[PRICE] |
535 | </text> | 541 | </text> |
536 | <text name="label_area"> | 542 | <text name="label_area"> |
537 | μμ: [AREA] νλ°© λ―Έν° | 543 | λ©΄μ : [AREA]sq. m. |
538 | </text> | 544 | </text> |
539 | <button label="ν μ§ κ΅¬λ§€νκΈ°..." label_selected="ν μ§ κ΅¬λ§€νκΈ°..." | 545 | <button label="ν μ§ κ΅¬λ§€νκΈ°..." label_selected="ν μ§ κ΅¬λ§€νκΈ°..." |
540 | name="button buy land" /> | 546 | name="button buy land" /> |
541 | <button label="ν μ§ ν¬κΈ°..." label_selected="ν μ§ ν¬κΈ°..." | 547 | <button label="ν μ§ λ²λ¦¬κΈ°..." label_selected="ν μ§ λ²λ¦¬κΈ°..." |
542 | name="button abandon land" /> | 548 | name="button abandon land" /> |
543 | <button label="μΈλΆ..." label_selected="μΈλΆ..." name="button subdivide land" /> | 549 | <button label="μΈλΆ..." label_selected="μΈλΆ..." name="button subdivide land" /> |
544 | <button label="κ²°ν©..." label_selected="κ²°ν©..." name="button join land" /> | 550 | <button label="κ°μ β¦" label_selected="κ°μ β¦" name="button join land" /> |
545 | <button label="ν μ§ μκ°..." label_selected="ν μ§ μκ°..." | 551 | <button label="ν μ§ μκ°..." label_selected="ν μ§ μκ°..." |
546 | name="button about land" /> | 552 | name="button about land" /> |
547 | </panel> | 553 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_top_objects.xml b/linden/indra/newview/skins/xui/ko/floater_top_objects.xml index 5c13072..22c9f38 100644 --- a/linden/indra/newview/skins/xui/ko/floater_top_objects.xml +++ b/linden/indra/newview/skins/xui/ko/floater_top_objects.xml | |||
@@ -1,7 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="top_objects" title="λ‘λ©μ€..."> | 2 | <floater name="top_objects" title="λ‘λ© μ€β¦"> |
3 | <text name="title_text"> | 3 | <text name="title_text"> |
4 | λ‘λ©μ€... | 4 | λ‘λ© μ€β¦ |
5 | </text> | 5 | </text> |
6 | <scroll_list name="objects_list"> | 6 | <scroll_list name="objects_list"> |
7 | <column label="Score" name="score" /> | 7 | <column label="Score" name="score" /> |
@@ -10,41 +10,41 @@ | |||
10 | <column label="Location" name="location" /> | 10 | <column label="Location" name="location" /> |
11 | </scroll_list> | 11 | </scroll_list> |
12 | <text name="id_text"> | 12 | <text name="id_text"> |
13 | μ¬λ¬Ό ID: | 13 | μ€λΈμ νΈ ID: |
14 | </text> | 14 | </text> |
15 | <button label="νμ§ νμνκΈ°" name="show_beacon_btn" /> | 15 | <button label="νμ νμ" name="show_beacon_btn" /> |
16 | <text name="obj_name_text"> | 16 | <text name="obj_name_text"> |
17 | μμ΄ν μ΄λ¦: | 17 | μ€λΈμ νΈ μ΄λ¦: |
18 | </text> | 18 | </text> |
19 | <button label="νν°" name="filter_object_btn" /> | 19 | <button label="νν°" name="filter_object_btn" /> |
20 | <text name="owner_name_text"> | 20 | <text name="owner_name_text"> |
21 | μμ μ£Ό μ΄λ¦: | 21 | μμ μ μ΄λ¦: |
22 | </text> | 22 | </text> |
23 | <button label="νν°" name="filter_owner_btn" /> | 23 | <button label="νν°" name="filter_owner_btn" /> |
24 | <button label="μ ν νλͺ© λ°ν" name="return_selected_btn" /> | 24 | <button label="λ°ν μ νν¨" name="return_selected_btn" /> |
25 | <button label="μ 체 λ°ν" name="return_all_btn" /> | 25 | <button label="μ λΆ λ°ν" name="return_all_btn" /> |
26 | <button label="μ ν νλͺ© λκΈ°" name="disable_selected_btn" /> | 26 | <button label="μ ν νλͺ© λκΈ°" name="disable_selected_btn" /> |
27 | <button label="μ 체 λκΈ°" name="disable_all_btn" /> | 27 | <button label="λͺ¨λ λΉνμ±" name="disable_all_btn" /> |
28 | <button label="μλ‘ κ³ μΉ¨" name="refresh_btn" /> | 28 | <button label="μλ‘ κ³ μΉ¨" name="refresh_btn" /> |
29 | <text name="top_scripts_title"> | 29 | <text name="top_scripts_title"> |
30 | ν μ€ν¬λ¦½νΈ | 30 | λμ©λ μ€ν¬λ¦½νΈ |
31 | </text> | 31 | </text> |
32 | <text name="top_scripts_text"> | 32 | <text name="top_scripts_text"> |
33 | [COUNT] μ€ν¬λ¦½νΈκ° μ΄ [TIME]msλ₯Ό μ¬μ©νκ³ μμ΅λλ€ | 33 | [COUNT]κ°μ μ€ν¬λ¦½νΈμ μ΄ [TIME]λ°λ¦¬μ΄ μμ |
34 | </text> | 34 | </text> |
35 | <text name="scripts_score_label"> | 35 | <text name="scripts_score_label"> |
36 | μκ° | 36 | μκ° |
37 | </text> | 37 | </text> |
38 | <text name="top_colliders_title"> | 38 | <text name="top_colliders_title"> |
39 | ν 컬λΌμ΄λ | 39 | λμ©λ μ½λΌμ΄λ |
40 | </text> | 40 | </text> |
41 | <text name="top_colliders_text"> | 41 | <text name="top_colliders_text"> |
42 | λ€μν μΆ©λ κ°λ₯μ±μ κ²½ννλ μ΅μ [COUNT] μμ΄ν | 42 | μΆ©λ κ°λ₯ν μ΅μμ [COUNT]κ° μ€λΈμ νΈ |
43 | </text> | 43 | </text> |
44 | <text name="colliders_score_label"> | 44 | <text name="colliders_score_label"> |
45 | μ μ | 45 | μ μ |
46 | </text> | 46 | </text> |
47 | <text name="none_descriptor"> | 47 | <text name="none_descriptor"> |
48 | μ°Ύμ κ²μ΄ μμ΅λλ€. | 48 | λ°κ²¬λμ§ μμ. |
49 | </text> | 49 | </text> |
50 | </floater> | 50 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_tos.xml b/linden/indra/newview/skins/xui/ko/floater_tos.xml index 302e98d..a5d0a47 100644 --- a/linden/indra/newview/skins/xui/ko/floater_tos.xml +++ b/linden/indra/newview/skins/xui/ko/floater_tos.xml | |||
@@ -4,18 +4,18 @@ | |||
4 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Cancel" /> | 4 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Cancel" /> |
5 | <radio_group name="tos_agreement"> | 5 | <radio_group name="tos_agreement"> |
6 | <radio_item name="radio_disagree"> | 6 | <radio_item name="radio_disagree"> |
7 | μ΄μ©μ½κ΄μ λμ νμ§ μμ΅λλ€ | 7 | μ΄μ© μ½κ΄μ λμ μν©λλ€. |
8 | </radio_item> | 8 | </radio_item> |
9 | <radio_item name="radio_agree"> | 9 | <radio_item name="radio_agree"> |
10 | μ΄μ©μ½κ΄μ λμ ν©λλ€. | 10 | μ΄μ© μ½κ΄μ λμν©λλ€. |
11 | </radio_item> | 11 | </radio_item> |
12 | </radio_group> | 12 | </radio_group> |
13 | <text name="tos_title"> | 13 | <text name="tos_title"> |
14 | μλΉμ€ κ³μ½ μ‘°ν | 14 | μλΉμ€ μ½κ΄ |
15 | </text> | 15 | </text> |
16 | <text name="tos_heading"> | 16 | <text name="tos_heading"> |
17 | μλ μλΉμ€ κ³μ½ λ΄μ©μ μ£Όμ μμΈν μ½μΌμμμ€. Second Lifeμ κ³μ λ‘κ·ΈμΈνμλ €λ©΄, | 17 | λ€μ μλΉμ€ μ½κ΄μ μ μ½μΌμΈμ. μΈμ»¨λλΌμ΄νμμ κ³μνμ¬ λ‘κ·ΈμΈμ νλ €λ©΄, |
18 | κ³μ½μμ λμνμ μΌ ν©λλ€. | 18 | μ¬μ© 쑰건 λμλ₯Ό μλ½ν΄μΌ ν©λλ€. |
19 | </text> | 19 | </text> |
20 | <text_editor name="tos_text"> | 20 | <text_editor name="tos_text"> |
21 | TOS_TEXT | 21 | TOS_TEXT |
diff --git a/linden/indra/newview/skins/xui/ko/floater_wearable_save_as.xml b/linden/indra/newview/skins/xui/ko/floater_wearable_save_as.xml index 8d94910..554b1bd 100644 --- a/linden/indra/newview/skins/xui/ko/floater_wearable_save_as.xml +++ b/linden/indra/newview/skins/xui/ko/floater_wearable_save_as.xml | |||
@@ -3,9 +3,9 @@ | |||
3 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> | 3 | <button label="μ μ₯" label_selected="μ μ₯" name="Save" /> |
4 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Cancel" /> | 4 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Cancel" /> |
5 | <text type="string" length="1" name="Save item as:"> | 5 | <text type="string" length="1" name="Save item as:"> |
6 | νλͺ©μ λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯ : | 6 | νλͺ©μ λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯: |
7 | </text> | 7 | </text> |
8 | <line_editor name="name ed"> | 8 | <line_editor name="name ed"> |
9 | μ [DESC] | 9 | μ κ· [DESC] |
10 | </line_editor> | 10 | </line_editor> |
11 | </floater> | 11 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_world_map.xml b/linden/indra/newview/skins/xui/ko/floater_world_map.xml index 903363a..abe0e3f 100644 --- a/linden/indra/newview/skins/xui/ko/floater_world_map.xml +++ b/linden/indra/newview/skins/xui/ko/floater_world_map.xml | |||
@@ -1,7 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="worldmap" title="μΈκ³ μ§λ"> | 2 | <floater name="worldmap" title="μλ μ§λ"> |
3 | <tab_container name="maptab"> | 3 | <tab_container name="maptab"> |
4 | <panel label="μ¬λ¬Ό" name="objects_mapview" /> | 4 | <panel label="μ€λΈμ νΈ" name="objects_mapview" /> |
5 | <panel label="μ§ν" name="terrain_mapview" /> | 5 | <panel label="μ§ν" name="terrain_mapview" /> |
6 | </tab_container> | 6 | </tab_container> |
7 | <text name="land_for_sale_label"> | 7 | <text name="land_for_sale_label"> |
@@ -11,31 +11,31 @@ | |||
11 | 경맀 | 11 | 경맀 |
12 | </text> | 12 | </text> |
13 | <text name="you_label"> | 13 | <text name="you_label"> |
14 | κ·ν | 14 | λ |
15 | </text> | 15 | </text> |
16 | <text name="home_label"> | 16 | <text name="home_label"> |
17 | μ§ | 17 | ν |
18 | </text> | 18 | </text> |
19 | <button label="μ§μΌλ‘ μ΄λ" label_selected="μ§μΌλ‘ μ΄λ" name="Go Home" | 19 | <button label="νμΌλ‘ μ΄λ" label_selected="νμΌλ‘ μ΄λ" name="Go Home" |
20 | tool_tip="μ°λ¦¬ μ§μΌλ‘ ν 리ν¬ν " /> | 20 | tool_tip="νμΌλ‘ ν 리ν¬νΈ" /> |
21 | <text name="classifieds_label"> | 21 | <text name="classifieds_label"> |
22 | κ΄κ³ | 22 | κ΄κ³ |
23 | </text> | 23 | </text> |
24 | <check_box label=" " name="class_chk" /> | 24 | <check_box label=" " name="class_chk" /> |
25 | <text name="person_label"> | 25 | <text name="person_label"> |
26 | κ°μΈ | 26 | μλ°ν |
27 | </text> | 27 | </text> |
28 | <check_box label=" " name="people_chk" /> | 28 | <check_box label=" " name="people_chk" /> |
29 | <text name="infohub_label"> | 29 | <text name="infohub_label"> |
30 | μ 보 νλΈ | 30 | μΈν¬νλΈ |
31 | </text> | 31 | </text> |
32 | <check_box label=" " name="infohub_chk" /> | 32 | <check_box label=" " name="infohub_chk" /> |
33 | <text name="telehub_label"> | 33 | <text name="telehub_label"> |
34 | ν 리νλΈ | 34 | ν λ νλΈ |
35 | </text> | 35 | </text> |
36 | <check_box label=" " name="telehubchk" /> | 36 | <check_box label=" " name="telehubchk" /> |
37 | <text name="popular_label"> | 37 | <text name="popular_label"> |
38 | μΈκΈ° | 38 | μΈκΈ°μ₯μ |
39 | </text> | 39 | </text> |
40 | <check_box label=" " name="popular_chk" /> | 40 | <check_box label=" " name="popular_chk" /> |
41 | <text name="land_for_sale_label2"> | 41 | <text name="land_for_sale_label2"> |
@@ -47,7 +47,7 @@ | |||
47 | </text> | 47 | </text> |
48 | <check_box label=" " name="event_chk" /> | 48 | <check_box label=" " name="event_chk" /> |
49 | <text name="events_mature_label"> | 49 | <text name="events_mature_label"> |
50 | μ΄λ²€νΈ(M) | 50 | μ΄λ²€νΈ(μ±μΈ) |
51 | </text> | 51 | </text> |
52 | <check_box label=" " name="event_mature_chk" /> | 52 | <check_box label=" " name="event_mature_chk" /> |
53 | <combo_box label="λ΄ μΉκ΅¬λ€" name="friend combo" tool_tip="Friend to Show on Map"> | 53 | <combo_box label="λ΄ μΉκ΅¬λ€" name="friend combo" tool_tip="Friend to Show on Map"> |
@@ -55,16 +55,14 @@ | |||
55 | λ΄ μΉκ΅¬λ€ | 55 | λ΄ μΉκ΅¬λ€ |
56 | </combo_item> | 56 | </combo_item> |
57 | </combo_box> | 57 | </combo_box> |
58 | <combo_box label="λ΄ κ²½κ³ νμ§" name="landmark combo" | 58 | <combo_box label="λ΄ λλλ§ν¬" name="landmark combo" |
59 | tool_tip="Landmark to Show on Map"> | 59 | tool_tip="Landmark to Show on Map"> |
60 | <combo_item name="none_selected"> | 60 | <combo_item name="none_selected"> |
61 | λ΄ κ²½κ³ νμ§ | 61 | λ΄ λλλ§ν¬ |
62 | </combo_item> | 62 | </combo_item> |
63 | </combo_box> | 63 | </combo_box> |
64 | <line_editor name="location" tool_tip="μ§μ μ΄λ¦ μ λ ₯"> | 64 | <line_editor label="μ§μλͺ μΌλ‘ κ²μ" name="location" tool_tip="μ§μ μ΄λ¦ μ λ ₯" /> |
65 | μ§μλͺ μΌλ‘ κ²μ | 65 | <button label="κ²μ" name="DoSearch" tool_tip="μ§μ κ²μ" /> |
66 | </line_editor> | ||
67 | <button label="κ²μ" label_selected=">" name="DoSearch" tool_tip="μ§μ κ²μ" /> | ||
68 | <text name="search_label"> | 66 | <text name="search_label"> |
69 | κ²μ κ²°κ³Ό: | 67 | κ²μ κ²°κ³Ό: |
70 | </text> | 68 | </text> |
@@ -73,20 +71,21 @@ | |||
73 | <column label="" name="sim_name" /> | 71 | <column label="" name="sim_name" /> |
74 | </scroll_list> | 72 | </scroll_list> |
75 | <text name="location_label"> | 73 | <text name="location_label"> |
76 | μ₯μ: | 74 | μμΉ: |
77 | </text> | 75 | </text> |
78 | <spinner name="spin x" tool_tip="ν μμΉμ X μ’ν λ₯Όμ§λμ νμ" /> | 76 | <spinner name="spin x" tool_tip="ν μμΉμ X μ’νλ₯Ό μ§λμ νμ" /> |
79 | <spinner name="spin y" tool_tip="ν μμΉμ Y μ’ν λ₯Όμ§λμ νμ" /> | 77 | <spinner name="spin y" tool_tip="ν μμΉμ Y μ’νλ₯Ό μ§λμ νμ" /> |
80 | <spinner name="spin z" tool_tip="ν μμΉμ Z μ’ν λ₯Ό μ§λμ νμ" /> | 78 | <spinner name="spin z" tool_tip="ν μμΉμ Z μ’νλ₯Ό μ§λμ νμ" /> |
81 | <button label="ν 리ν¬νΈ" label_selected="ν 리ν¬νΈ" name="Teleport" | 79 | <button label="ν 리ν¬νΈ" label_selected="ν 리ν¬νΈ" name="Teleport" |
82 | tool_tip="μ ν μ§μ μΌλ‘ ν 리ν¬ν " /> | 80 | tool_tip="μ ν μ§μ μΌλ‘ ν 리ν¬νΈ" /> |
83 | <button label="λͺ©μ μ§ νμνκΈ°" label_selected="λͺ©μ μ§ νμνκΈ°" | 81 | <button label="λͺ©μ μ§ νμνκΈ°" label_selected="λͺ©μ μ§ νμνκΈ°" |
84 | name="Show Destination" | 82 | name="Show Destination" |
85 | tool_tip="μ νν μμΉμ μ§λμ μ€μ¬μ μμΉμν΅λλ€" /> | 83 | tool_tip="μ νν μμΉμ μ§λμ μ€μ¬μ μμΉμν΅λλ€." /> |
86 | <button label="λΉμ°κΈ°" label_selected="λΉμ°κΈ°" name="Clear" | 84 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Clear" tool_tip="μΆμ μ€μ§" /> |
87 | tool_tip="μΆμ μ€μ§" /> | ||
88 | <button label="λ΄ μμΉ νμνκΈ°" label_selected="λ΄ μμΉ νμνκΈ°" | 85 | <button label="λ΄ μμΉ νμνκΈ°" label_selected="λ΄ μμΉ νμνκΈ°" |
89 | name="Show My Location" | 86 | name="Show My Location" |
90 | tool_tip="μλ°νμ μμΉμ μ§λμ μ€μ¬μ μμΉμν΅λλ€" /> | 87 | tool_tip="μλ°νμ μμΉμ μ§λμ μ€μ¬μ μμΉμν΅λλ€." /> |
91 | <slider label="μ€" name="zoom slider" /> | 88 | <button label="ν΄λ¦½λ³΄λλ‘ SLURL 볡μ¬νκΈ°" name="copy_slurl" |
89 | tool_tip="νμ¬ μμΉλ₯Ό μΉμμ μ¬μ©ν μ μλλ‘ SLURLλ‘ λ³΅μ¬ν©λλ€." /> | ||
90 | <slider label="νλ/μΆμ" name="zoom slider" /> | ||
92 | </floater> | 91 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/menu_inventory.xml b/linden/indra/newview/skins/xui/ko/menu_inventory.xml index 795275f..dcf71d2 100644 --- a/linden/indra/newview/skins/xui/ko/menu_inventory.xml +++ b/linden/indra/newview/skins/xui/ko/menu_inventory.xml | |||
@@ -2,14 +2,15 @@ | |||
2 | <menu name="Popup"> | 2 | <menu name="Popup"> |
3 | <menu_item_call label="ꡬ맀" name="Task Buy" /> | 3 | <menu_item_call label="ꡬ맀" name="Task Buy" /> |
4 | <menu_item_call label="μ΄κΈ°" name="Task Open" /> | 4 | <menu_item_call label="μ΄κΈ°" name="Task Open" /> |
5 | <menu_item_call label="νλ μ΄" name="Task Play" /> | 5 | <menu_item_call label="μ¬μ" name="Task Play" /> |
6 | <menu_item_call label="νΉμ±" name="Task Properties" /> | 6 | <menu_item_call label="μμ λ¬Ό" name="Task Properties" /> |
7 | <menu_item_call label="μ΄λ¦ λ³κ²½" name="Task Rename" /> | 7 | <menu_item_call label="μ΄λ¦ λ³κ²½" name="Task Rename" /> |
8 | <menu_item_call label="μμ " name="Task Remove" /> | 8 | <menu_item_call label="μμ " name="Task Remove" /> |
9 | <menu_item_call label="ν΄μ§ν΅ λΉμ°κΈ°" name="Empty Trash" /> | 9 | <menu_item_call label="ν΄μ§ν΅ λΉμ°κΈ°" name="Empty Trash" /> |
10 | <menu_item_call label="λΆμ€ λ° λ°κ²¬ ν΄λ λΉμ°κΈ°" name="Empty Lost And Found" /> | ||
10 | <menu_item_call label="μ ν΄λ" name="New Folder" /> | 11 | <menu_item_call label="μ ν΄λ" name="New Folder" /> |
11 | <menu_item_call label="μ μ€ν¬λ¦½νΈ" name="New Script" /> | 12 | <menu_item_call label="μ μ€ν¬λ¦½νΈ" name="New Script" /> |
12 | <menu_item_call label="μ μ°Έκ³ " name="New Note" /> | 13 | <menu_item_call label="μ λ©λͺ¨" name="New Note" /> |
13 | <menu_item_call label="μ μ μ€μ²" name="New Gesture" /> | 14 | <menu_item_call label="μ μ μ€μ²" name="New Gesture" /> |
14 | <menu name="New Clothes"> | 15 | <menu name="New Clothes"> |
15 | <menu_item_call label="μ μ μΈ " name="New Shirt" /> | 16 | <menu_item_call label="μ μ μΈ " name="New Shirt" /> |
@@ -19,22 +20,22 @@ | |||
19 | <menu_item_call label="μ μ¬ν·" name="New Jacket" /> | 20 | <menu_item_call label="μ μ¬ν·" name="New Jacket" /> |
20 | <menu_item_call label="μ μ€μ»€νΈ" name="New Skirt" /> | 21 | <menu_item_call label="μ μ€μ»€νΈ" name="New Skirt" /> |
21 | <menu_item_call label="μ μ₯κ°" name="New Gloves" /> | 22 | <menu_item_call label="μ μ₯κ°" name="New Gloves" /> |
22 | <menu_item_call label="μ μμ μΈ " name="New Undershirt" /> | 23 | <menu_item_call label="μ λ΄μ(μ)" name="New Undershirt" /> |
23 | <menu_item_call label="μ μλ°μ§" name="New Underpants" /> | 24 | <menu_item_call label="μ λ΄μ(ν)" name="New Underpants" /> |
24 | </menu> | 25 | </menu> |
25 | <menu name="New Body Parts"> | 26 | <menu name="New Body Parts"> |
26 | <menu_item_call label="μ λͺ¨μ΅" name="New Shape" /> | 27 | <menu_item_call label="μ λͺ¨μ΅" name="New Shape" /> |
27 | <menu_item_call label="μ νΌλΆ" name="New Skin" /> | 28 | <menu_item_call label="μ νΌλΆ" name="New Skin" /> |
28 | <menu_item_call label="μ ν€μ΄μ€νμΌ" name="New Hair" /> | 29 | <menu_item_call label="μ ν€μ΄" name="New Hair" /> |
29 | <menu_item_call label="μ λ" name="New Eyes" /> | 30 | <menu_item_call label="μ λ" name="New Eyes" /> |
30 | </menu> | 31 | </menu> |
31 | <menu_item_call label="μ΄κΈ°" name="Landmark Open" /> | 32 | <menu_item_call label="μ΄κΈ°" name="Landmark Open" /> |
32 | <menu_item_call label="μ΄κΈ°" name="Animation Open" /> | 33 | <menu_item_call label="μ΄κΈ°" name="Animation Open" /> |
33 | <menu_item_call label="μ΄κΈ°" name="Sound Open" /> | 34 | <menu_item_call label="μ΄κΈ°" name="Sound Open" /> |
34 | <menu_item_call label="μμ΄ν μμ " name="Purge Item" /> | 35 | <menu_item_call label="μ€λΈμ νΈ μμ " name="Purge Item" /> |
35 | <menu_item_call label="μμ΄ν 볡μ" name="Restore Item" /> | 36 | <menu_item_call label="μ€λΈμ νΈ λ³΅μ" name="Restore Item" /> |
36 | <menu_item_call label="μ΄κΈ°" name="Open" /> | 37 | <menu_item_call label="μ΄κΈ°" name="Open" /> |
37 | <menu_item_call label="νΉμ±" name="Properties" /> | 38 | <menu_item_call label="μμ λ¬Ό" name="Properties" /> |
38 | <menu_item_call label="μ΄λ¦ λ³κ²½" name="Rename" /> | 39 | <menu_item_call label="μ΄λ¦ λ³κ²½" name="Rename" /> |
39 | <menu_item_call label="μμ° UUID 볡μ¬" name="Copy Asset UUID" /> | 40 | <menu_item_call label="μμ° UUID 볡μ¬" name="Copy Asset UUID" /> |
40 | <menu_item_call label="볡μ¬" name="Copy" /> | 41 | <menu_item_call label="볡μ¬" name="Copy" /> |
@@ -42,23 +43,23 @@ | |||
42 | <menu_item_call label="μμ " name="Delete" /> | 43 | <menu_item_call label="μμ " name="Delete" /> |
43 | <menu_item_call label="볡μ₯μ μΆκ°" name="Add To Outfit" /> | 44 | <menu_item_call label="볡μ₯μ μΆκ°" name="Add To Outfit" /> |
44 | <menu_item_call label="볡μ₯ λ체" name="Replace Outfit" /> | 45 | <menu_item_call label="볡μ₯ λ체" name="Replace Outfit" /> |
45 | <menu_item_call label="μ΄λ₯ μμ΄ν " name="Take Off Items" /> | 46 | <menu_item_call label="μμ΄ν λ²κΈ°" name="Take Off Items" /> |
46 | <menu_item_call label="IM ν΄λμ μ¨λΌμΈ μ°λ½μ²" name="IM Online Contacts In Folder" /> | 47 | <menu_item_call label="νμ μ±ν μμ" name="Conference Chat Folder" /> |
47 | <menu_item_call label="IM ν΄λμ λͺ¨λ μ°λ½μ²" name="IM All Contacts In Folder" /> | 48 | <menu_item_call label="μ¬μ" name="Sound Play" /> |
48 | <menu_item_call label="νλ μ΄" name="Sound Play" /> | 49 | <menu_item_call label="λλλ§ν¬λ‘ ν 리ν¬νΈ" name="Teleport To Landmark" /> |
49 | <menu_item_call label="μ§μ νμλ‘ ν λ ν¬ν " name="Teleport To Landmark" /> | 50 | <menu_item_call label="μλμμ μ¬μ" name="Animation Play" /> |
50 | <menu_item_call label="μΈκ³μμ νλ μ΄" name="Animation Play" /> | 51 | <menu_item_call label="λ‘컬 μ¬μ" name="Animation Audition" /> |
51 | <menu_item_call label="λ‘컬μμ νλ μ΄" name="Animation Audition" /> | ||
52 | <menu_item_call label="λ©μ μ μ μ‘" name="Send Instant Message" /> | 52 | <menu_item_call label="λ©μ μ μ μ‘" name="Send Instant Message" /> |
53 | <menu_item_call label="ν 리ν¬νΈ μ 곡..." name="Offer Teleport..." /> | 53 | <menu_item_call label="ν λ ν¬νΈ μ 곡.." name="Offer Teleport..." /> |
54 | <menu_item_call label="νμ μ±ν μμ" name="Conference Chat" /> | ||
54 | <menu_item_call label="νμ±ν" name="Activate" /> | 55 | <menu_item_call label="νμ±ν" name="Activate" /> |
55 | <menu_item_call label="μ¬μ© μν¨" name="Deactivate" /> | 56 | <menu_item_call label="λΉνμ±ν" name="Deactivate" /> |
56 | <menu_item_call label="μμ μμ λΆλ¦¬" name="Detach From Yourself" /> | 57 | <menu_item_call label="μμ μμ λΆλ¦¬" name="Detach From Yourself" /> |
57 | <menu_item_call label="μ°©μ©" name="Object Wear" /> | 58 | <menu_item_call label="μ°©μ©" name="Object Wear" /> |
58 | <menu label="λΆμ°© λμ" name="Attach To" /> | 59 | <menu label="μ°©μ© λμ" name="Attach To" /> |
59 | <menu label="HUDμ λΆμ°©" name="Attach To HUD" /> | 60 | <menu label="HUDμ μ°©μ©" name="Attach To HUD" /> |
60 | <menu_item_call label="μ°©μ©" name="Wearable Wear" /> | 61 | <menu_item_call label="μ°©μ©" name="Wearable Wear" /> |
61 | <menu_item_call label="νΈμ§" name="Wearable Edit" /> | 62 | <menu_item_call label="νΈμ§" name="Wearable Edit" /> |
62 | <menu_item_call label="μ΄λ₯" name="Take Off" /> | 63 | <menu_item_call label="λ²κΈ°" name="Take Off" /> |
63 | <menu_item_call label="--μ΅μ μμ--" name="--no options--" /> | 64 | <menu_item_call label="--μ΅μ μμ--" name="--no options--" /> |
64 | </menu> | 65 | </menu> |
diff --git a/linden/indra/newview/skins/xui/ko/menu_pie_avatar.xml b/linden/indra/newview/skins/xui/ko/menu_pie_avatar.xml index dc3bffd..70d2e66 100644 --- a/linden/indra/newview/skins/xui/ko/menu_pie_avatar.xml +++ b/linden/indra/newview/skins/xui/ko/menu_pie_avatar.xml | |||
@@ -1,15 +1,17 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <pie_menu name="Avatar Pie"> | 2 | <pie_menu name="Avatar Pie"> |
3 | <menu_item_call label="νλ‘ν..." name="Profile..." /> | 3 | <menu_item_call label="νλ‘νβ¦" name="Profile..." /> |
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="Add Friend" /> | 7 | <menu_item_call label="μΉκ΅¬ μΆκ°" name="Add Friend" /> |
7 | <menu_item_call label="μ§λΆ..." name="Pay..." /> | 8 | <menu_item_call label="μ§λΆβ¦" name="Pay..." /> |
8 | <pie_menu label="μΆκ° >" name="More >"> | 9 | <pie_menu label="λ 보기>" name="More >"> |
9 | <menu_item_call label="κ³ μ β¦" name="Freeze..." /> | 10 | <menu_item_call label="λκ²°" name="Freeze..." /> |
10 | <menu_item_call label="μΉ΄λ μ 곡" name="Give Card" /> | 11 | <menu_item_call label="μΉ΄λ μ£ΌκΈ°" name="Give Card" /> |
11 | <menu_item_call label="μΆμΆβ¦" name="Eject..." /> | 12 | <menu_item_call label="μΆμΆβ¦" name="Eject..." /> |
12 | <menu_item_call label="Debug..." name="Debug..." /> | 13 | <menu_item_call label="λλ²κ·Έ..." name="Debug..." /> |
14 | <menu_item_call label="κ²μ¬" name="Object Inspect" /> | ||
13 | </pie_menu> | 15 | </pie_menu> |
14 | <menu_item_call label="IM μ μ‘..." name="Send IM..." /> | 16 | <menu_item_call label="μͺ½μ§ μ μ‘β¦" name="Send IM..." /> |
15 | </pie_menu> | 17 | </pie_menu> |
diff --git a/linden/indra/newview/skins/xui/ko/menu_pie_object.xml b/linden/indra/newview/skins/xui/ko/menu_pie_object.xml index bd115bd..e7e165e 100644 --- a/linden/indra/newview/skins/xui/ko/menu_pie_object.xml +++ b/linden/indra/newview/skins/xui/ko/menu_pie_object.xml | |||
@@ -4,20 +4,23 @@ | |||
4 | <menu_item_call label="λ§λ€κΈ°" name="Create" /> | 4 | <menu_item_call label="λ§λ€κΈ°" name="Create" /> |
5 | <menu_item_call label="λ§μ§κΈ°" name="Object Touch" /> | 5 | <menu_item_call label="λ§μ§κΈ°" name="Object Touch" /> |
6 | <menu_item_call label="μκΈ°" name="Object Sit" /> | 6 | <menu_item_call label="μκΈ°" name="Object Sit" /> |
7 | <menu_item_call label="μ¬μ©νκΈ°" name="Pie Object Take" /> | 7 | <menu_item_call label="κ°μ§κΈ°" name="Pie Object Take" /> |
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="Delete" /> | 10 | <menu_item_call label="μμ " name="Delete" /> |
11 | <menu_item_call label="μ°©μ©" name="Wear" /> | 11 | <menu_item_call label="μ°©μ©" name="Wear" /> |
12 | <menu_item_call label="볡μ¬νκΈ°" name="Take Copy" /> | 12 | <menu_item_call label="볡μ¬νκΈ°" name="Take Copy" /> |
13 | <pie_menu label="HUD λΆμ°© >" name="Object Attach HUD" /> | 13 | <pie_menu label="HUD μ°©μ© >" name="Object Attach HUD" /> |
14 | <pie_menu label="λΆμ°© >" name="Object Attach" /> | 14 | <pie_menu label="μ°©μ© >" name="Object Attach" /> |
15 | <menu_item_call label="λ°ν..." name="Return..." /> | 15 | <menu_item_call label="λ°νβ¦" name="Return..." /> |
16 | <pie_menu label="μΆκ° >" name="Rate Menu"> | 16 | <pie_menu label="λ 보기>" name="Rate Menu"> |
17 | <menu_item_call label="μ μ© μ κ³ ..." name="Report Abuse..." /> | 17 | <menu_item_call label="μμ μ£Ό νκ°β¦" name="Rate Owner..." /> |
18 | <menu_item_call label="μμκ±°" name="Object Mute" /> | 18 | <menu_item_call label="μ κ³ νκΈ°β¦" name="Report Abuse..." /> |
19 | <menu_item_call label="μμ±μ νκ°β¦" name="Rate Creator..." /> | ||
20 | <menu_item_call label="μ°¨λ¨" name="Object Mute" /> | ||
21 | <menu_item_call label="κ²μ¬" name="Object Inspect" /> | ||
19 | </pie_menu> | 22 | </pie_menu> |
20 | <menu_item_call label="ꡬ맀..." name="Buy..." /> | 23 | <menu_item_call label="ꡬ맀..." name="Buy..." /> |
21 | </pie_menu> | 24 | </pie_menu> |
22 | <menu_item_call label="νΈμ§β¦" name="Edit..." /> | 25 | <menu_item_call label="νΈμ§..." name="Edit..." /> |
23 | </pie_menu> | 26 | </pie_menu> |
diff --git a/linden/indra/newview/skins/xui/ko/menu_pie_self.xml b/linden/indra/newview/skins/xui/ko/menu_pie_self.xml index bce2a60..8c09290 100644 --- a/linden/indra/newview/skins/xui/ko/menu_pie_self.xml +++ b/linden/indra/newview/skins/xui/ko/menu_pie_self.xml | |||
@@ -1,23 +1,23 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <pie_menu name="Self Pie"> | 2 | <pie_menu name="Self Pie"> |
3 | <menu_item_call label="νλ‘ν..." name="Profile..." /> | 3 | <menu_item_call label="νλ‘νβ¦" name="Profile..." /> |
4 | <menu_item_call label="κ·Έλ£Ή..." name="Groups..." /> | 4 | <menu_item_call label="κ·Έλ£Ήβ¦" name="Groups..." /> |
5 | <menu_item_call label="μ΄λ..." name="Go..." /> | 5 | <menu_item_call label="μ΄λ‘¦" name="Go..." /> |
6 | <menu_item_call label="μκΈ°" name="Stand Up" /> | 6 | <menu_item_call label="μκΈ°" name="Stand Up" /> |
7 | <menu_item_call label="μΉκ΅¬λ€β¦" name="Friends..." /> | 7 | <menu_item_call label="μΉκ΅¬" name="Friends..." /> |
8 | <menu_item_call label="μ μ€μ²β¦" name="Gestures..." /> | 8 | <menu_item_call label="μ μ€μ²β¦" name="Gestures..." /> |
9 | <pie_menu label="μ΄λ₯ >" name="Take Off >"> | 9 | <pie_menu label="λ²κΈ° >" name="Take Off >"> |
10 | <pie_menu label="μλ₯ >" name="Clothes >"> | 10 | <pie_menu label="μμ >" name="Clothes >"> |
11 | <menu_item_call label="μ μΈ " name="Shirt" /> | 11 | <menu_item_call label="μ μΈ " name="Shirt" /> |
12 | <menu_item_call label="λ°μ§" name="Pants" /> | 12 | <menu_item_call label="λ°μ§" name="Pants" /> |
13 | <menu_item_call label="μ λ°" name="Shoes" /> | 13 | <menu_item_call label="μ λ°" name="Shoes" /> |
14 | <menu_item_call label="μλ§" name="Socks" /> | 14 | <menu_item_call label="μλ§" name="Socks" /> |
15 | <menu_item_call label="μ¬ν·" name="Jacket" /> | 15 | <menu_item_call label="μ¬ν·" name="Jacket" /> |
16 | <menu_item_call label="μ₯κ°" name="Gloves" /> | 16 | <menu_item_call label="μ₯κ°" name="Gloves" /> |
17 | <pie_menu label="μΆκ° >" name="More >"> | 17 | <pie_menu label="λ 보기>" name="More >"> |
18 | <menu_item_call label="μμ μΈ " name="Self Undershirt" /> | 18 | <menu_item_call label="λ΄μ(μ)" name="Self Undershirt" /> |
19 | <menu_item_call label="λͺ¨λ μλ₯" name="All Clothes" /> | 19 | <menu_item_call label="λͺ¨λ μμ" name="All Clothes" /> |
20 | <menu_item_call label="μλ°μ§" name="Self Underpants" /> | 20 | <menu_item_call label="λ΄μ(ν)" name="Self Underpants" /> |
21 | </pie_menu> | 21 | </pie_menu> |
22 | <menu_item_call label="μΉλ§" name="Skirt" /> | 22 | <menu_item_call label="μΉλ§" name="Skirt" /> |
23 | </pie_menu> | 23 | </pie_menu> |
@@ -25,5 +25,5 @@ | |||
25 | <pie_menu label="λΆλ¦¬ >" name="Object Detach" /> | 25 | <pie_menu label="λΆλ¦¬ >" name="Object Detach" /> |
26 | <menu_item_call label="λͺ¨λ λΆλ¦¬" name="Detach All" /> | 26 | <menu_item_call label="λͺ¨λ λΆλ¦¬" name="Detach All" /> |
27 | </pie_menu> | 27 | </pie_menu> |
28 | <menu_item_call label="μΈμ..." name="Appearance..." /> | 28 | <menu_item_call label="λ΄ λͺ¨μ΅..." name="Appearance..." /> |
29 | </pie_menu> | 29 | </pie_menu> |
diff --git a/linden/indra/newview/skins/xui/ko/menu_viewer.xml b/linden/indra/newview/skins/xui/ko/menu_viewer.xml index 7e91b73..b82118d 100644 --- a/linden/indra/newview/skins/xui/ko/menu_viewer.xml +++ b/linden/indra/newview/skins/xui/ko/menu_viewer.xml | |||
@@ -2,21 +2,20 @@ | |||
2 | <menu_bar name="Main Menu"> | 2 | <menu_bar name="Main Menu"> |
3 | <menu label="νμΌ" name="File"> | 3 | <menu label="νμΌ" name="File"> |
4 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | 4 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> |
5 | <menu_item_call label="μ΄λ―Έμ§ μ λ‘λ(L$[COST])..." name="Upload Image" /> | 5 | <menu_item_call label="μ΄λ―Έμ§ μ λ‘λ(L$[COST])" name="Upload Image" /> |
6 | <menu_item_call label="μ¬μ΄λ μ λ‘λ(L$[COST])..." name="Upload Sound" /> | 6 | <menu_item_call label="μ¬μ΄λ μ λ‘λ(L$[COST])" name="Upload Sound" /> |
7 | <menu_item_call label="μ λλ©μ΄μ μ λ‘λ(L$[COST])..." name="Upload Animation" /> | 7 | <menu_item_call label="μ λλ©μ΄μ μ λ‘λ(L$[COST])" name="Upload Animation" /> |
8 | <menu_item_call label="λ²ν¬ μ λ‘λ(νμΌλΉ L$[COST])..." name="Bulk Upload" /> | 8 | <menu_item_call label="νκΊΌλ²μ μ λ‘λ(νμΌλΉ L$[COST])" name="Bulk Upload" /> |
9 | <menu_item_separator label="-----------" name="separator" /> | 9 | <menu_item_separator label="-----------" name="separator" /> |
10 | <menu_item_call label="μ°½ λ«κΈ°" name="Close Window" /> | 10 | <menu_item_call label="μ°½ λ«κΈ°" name="Close Window" /> |
11 | <menu_item_separator label="-----------" name="separator2" /> | 11 | <menu_item_separator label="-----------" name="separator2" /> |
12 | <menu_item_call label="ν μ€μ²λ₯Ό λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯..." name="Save Texture As..." /> | 12 | <menu_item_call label="ν μ€μ²λ₯Ό λ€λ₯Έ μ΄λ¦μΌλ‘ μ μ₯" name="Save Texture As..." /> |
13 | <menu_item_separator label="-----------" name="separator3" /> | 13 | <menu_item_separator label="-----------" name="separator3" /> |
14 | <menu_item_call label="μ€λ μ· μ°κΈ°" name="Take Snapshot" /> | 14 | <menu_item_call label="μ€λ μ· λ―Έλ¦¬λ³΄κΈ°" name="Take Snapshot" /> |
15 | <menu_item_call label="λμ€ν¬λ‘ μ€λ μ·" name="Snapshot to Disk" /> | 15 | <menu_item_call label="μ€λ μ· μ°κΈ°" name="Snapshot to Disk" /> |
16 | <menu_item_separator label="-----------" name="separator4" /> | 16 | <menu_item_separator label="-----------" name="separator4" /> |
17 | <menu_item_call label="λμ€ν¬μ μν μμ/μ€μ§" name="Start/Stop Movie to Disk" /> | 17 | <menu_item_call label="λμμ μ°κΈ°" name="Start/Stop Movie to Disk" /> |
18 | <menu label="μλμ° μ¬μ΄μ¦ μ‘°μ " name="Set Window Size"> | 18 | <menu label="μ°½ ν¬κΈ° μ‘°μ " name="Set Window Size"> |
19 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | ||
20 | <menu_item_call label="320x240" name="320x240" /> | 19 | <menu_item_call label="320x240" name="320x240" /> |
21 | <menu_item_call label="640x480" name="640x480" /> | 20 | <menu_item_call label="640x480" name="640x480" /> |
22 | <menu_item_call label="800x600" name="800x600" /> | 21 | <menu_item_call label="800x600" name="800x600" /> |
@@ -25,127 +24,119 @@ | |||
25 | <menu_item_call label="768x576(PAL)" name="768x576 (PAL)" /> | 24 | <menu_item_call label="768x576(PAL)" name="768x576 (PAL)" /> |
26 | </menu> | 25 | </menu> |
27 | <menu_item_separator label="-----------" name="separator5" /> | 26 | <menu_item_separator label="-----------" name="separator5" /> |
28 | <menu_item_call label="λλ΄κΈ°" name="Quit" /> | 27 | <menu_item_call label="μ’ λ£" name="Quit" /> |
29 | </menu> | 28 | </menu> |
30 | <menu label="νΈμ§" name="Edit"> | 29 | <menu label="νΈμ§" name="Edit"> |
31 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | ||
32 | <menu_item_call label="μ·¨μ" name="Undo" /> | 30 | <menu_item_call label="μ·¨μ" name="Undo" /> |
33 | <menu_item_call label="λ€μ μ€ν" name="Redo" /> | 31 | <menu_item_call label="λ°λ³΅" name="Redo" /> |
34 | <menu_item_separator label="-----------" name="separator" /> | 32 | <menu_item_separator label="-----------" name="separator" /> |
35 | <menu_item_call label="μλΌλ΄κΈ°" name="Cut" /> | 33 | <menu_item_call label="μλΌλ΄κΈ°" name="Cut" /> |
36 | <menu_item_call label="볡μ¬" name="Copy" /> | 34 | <menu_item_call label="볡μ¬" name="Copy" /> |
37 | <menu_item_call label="λΆμ¬λ£κΈ°" name="Paste" /> | 35 | <menu_item_call label="λΆμ¬λ£κΈ°" name="Paste" /> |
38 | <menu_item_call label="μμ " name="Delete" /> | 36 | <menu_item_call label="μμ " name="Delete" /> |
39 | <menu_item_separator label="-----------" name="separator2" /> | 37 | <menu_item_separator label="-----------" name="separator2" /> |
40 | <menu_item_call label="κ²μ..." name="Search..." /> | 38 | <menu_item_call label="κ²μ" name="Search..." /> |
41 | <menu_item_separator label="-----------" name="separator3" /> | 39 | <menu_item_separator label="-----------" name="separator3" /> |
42 | <menu_item_call label="λͺ¨λ μ ν" name="Select All" /> | 40 | <menu_item_call label="λͺ¨λ μ ν" name="Select All" /> |
43 | <menu_item_call label="μ ν ν΄μ " name="Deselect" /> | 41 | <menu_item_call label="μ ν μ·¨μ" name="Deselect" /> |
44 | <menu_item_separator label="-----------" name="separator4" /> | 42 | <menu_item_separator label="-----------" name="separator4" /> |
45 | <menu_item_call label="볡μ " name="Duplicate" /> | 43 | <menu_item_call label="볡μ " name="Duplicate" /> |
46 | <menu_item_separator label="-----------" name="separator5" /> | 44 | <menu_item_separator label="-----------" name="separator5" /> |
47 | <menu label="μ€λΈμ νΈ μ°κ²°" name="Attach Object" /> | 45 | <menu label="μ€λΈμ νΈ μ°©μ©" name="Attach Object" /> |
48 | <menu label="μ€λΈμ νΈ λΆλ¦¬" name="Detach Object" /> | 46 | <menu label="μ€λΈμ νΈ λΆλ¦¬" name="Detach Object" /> |
49 | <menu label="μ· κ°μμ κΈ°" name="Take Off Clothing"> | 47 | <menu label="μ· λ²κΈ°" name="Take Off Clothing"> |
50 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | ||
51 | <menu_item_call label="μ μΈ " name="Shirt" /> | 48 | <menu_item_call label="μ μΈ " name="Shirt" /> |
52 | <menu_item_call label="λ°μ§" name="Pants" /> | 49 | <menu_item_call label="λ°μ§" name="Pants" /> |
53 | <menu_item_call label="μ λ°" name="Shoes" /> | 50 | <menu_item_call label="μ λ°" name="Shoes" /> |
54 | <menu_item_call label="μλ§" name="Socks" /> | 51 | <menu_item_call label="μλ§" name="Socks" /> |
55 | <menu_item_call label="μ¬ν·" name="Jacket" /> | 52 | <menu_item_call label="μ¬ν·" name="Jacket" /> |
56 | <menu_item_call label="μ₯κ°" name="Gloves" /> | 53 | <menu_item_call label="μ₯κ°" name="Gloves" /> |
57 | <menu_item_call label="μμ μΈ " name="Menu Undershirt" /> | 54 | <menu_item_call label="λ΄μ(μ)" name="Menu Undershirt" /> |
58 | <menu_item_call label="μλ°μ§" name="Menu Underpants" /> | 55 | <menu_item_call label="λ΄μ(ν)" name="Menu Underpants" /> |
59 | <menu_item_call label="μΉλ§" name="Skirt" /> | 56 | <menu_item_call label="μΉλ§" name="Skirt" /> |
60 | <menu_item_call label="λͺ¨λ μλ₯" name="All Clothes" /> | 57 | <menu_item_call label="λͺ¨λ μμ" name="All Clothes" /> |
61 | </menu> | 58 | </menu> |
62 | <menu_item_separator label="-----------" name="separator6" /> | 59 | <menu_item_separator label="-----------" name="separator6" /> |
63 | <menu_item_call label="μ μ€μ²β¦" name="Gestures..." /> | 60 | <menu_item_call label="μ μ€μ²" name="Gestures..." /> |
64 | <menu_item_call label="νλ‘ν..." name="Profile..." /> | 61 | <menu_item_call label="νλ‘ν" name="Profile..." /> |
65 | <menu_item_call label="μΈμ..." name="Appearance..." /> | 62 | <menu_item_call label="λ΄ λͺ¨μ΅" name="Appearance..." /> |
66 | <menu_item_separator label="-----------" name="separator7" /> | 63 | <menu_item_separator label="-----------" name="separator7" /> |
67 | <menu_item_check label="μΉκ΅¬λ€β¦" name="Friends..." /> | 64 | <menu_item_check label="μΉκ΅¬" name="Friends..." /> |
68 | <menu_item_call label="κ·Έλ£Ή..." name="Groups..." /> | 65 | <menu_item_call label="κ·Έλ£Ή" name="Groups..." /> |
69 | <menu_item_separator label="-----------" name="separator8" /> | 66 | <menu_item_separator label="-----------" name="separator8" /> |
70 | <menu_item_call label="νκ²½ μ€μ ..." name="Preferences..." /> | 67 | <menu_item_call label="νκ²½ μ€μ " name="Preferences..." /> |
71 | </menu> | 68 | </menu> |
72 | <menu label="보기" name="View"> | 69 | <menu label="보기" name="View"> |
73 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | 70 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> |
74 | <menu_item_call label="λ§μ°μ€ μμ " name="Mouselook" /> | 71 | <menu_item_call label="1μΈμΉ μμ " name="Mouselook" /> |
75 | <menu_item_check label="μ§κΈ°" name="Build" /> | 72 | <menu_item_check label="λ§λ€κΈ°" name="Build" /> |
76 | <menu_item_call label="보기 μ¬μ€μ " name="Reset View" /> | 73 | <menu_item_call label="보기 μ΄κΈ°ν" name="Reset View" /> |
77 | <menu_item_call label="λ§μ§λ§ μ±ν° 보기" name="Look at Last Chatter" /> | 74 | <menu_item_call label="λ§ν μ¬λ 보기" name="Look at Last Chatter" /> |
78 | <menu_item_separator label="-----------" name="separator" /> | 75 | <menu_item_separator label="-----------" name="separator" /> |
79 | <menu_item_check label="λꡬ λͺ¨μ" name="Toolbar" /> | 76 | <menu_item_check label="ν΄λ°" name="Toolbar" /> |
80 | <menu_item_check label="μ±ν κΈ°λ‘" name="Chat History" /> | 77 | <menu_item_check label="μ±ν κΈ°λ‘" name="Chat History" /> |
81 | <menu_item_check label="λ©μ μ " name="Instant Message" /> | 78 | <menu_item_check label="λ©μ μ " name="Instant Message" /> |
82 | <menu_item_call label="μ μ₯κ³ " name="Inventory" /> | 79 | <menu_item_call label="μΈλ²€ν 리" name="Inventory" /> |
83 | <menu_item_check label="μμκ±° λͺ©λ‘" name="Mute List" /> | 80 | <menu_item_check label="μ°¨λ¨ λͺ©λ‘" name="Mute List" /> |
84 | <menu_item_separator label="-----------" name="separator2" /> | 81 | <menu_item_separator label="-----------" name="separator2" /> |
85 | <menu_item_check label="μΉ΄λ©λΌ μ μ΄" name="Camera Controls" /> | 82 | <menu_item_check label="μΉ΄λ©λΌ μ μ΄" name="Camera Controls" /> |
86 | <menu_item_check label="μμ§μ μ μ΄" name="Movement Controls" /> | 83 | <menu_item_check label="μμ§μ μ μ΄" name="Movement Controls" /> |
87 | <menu_item_check label="μΈκ³ μ§λ" name="World Map" /> | 84 | <menu_item_check label="μλ μ§λ" name="World Map" /> |
88 | <menu_item_check label="λ―Έλ μ§λ" name="Mini-Map" /> | 85 | <menu_item_check label="λ―Έλμ§λ" name="Mini-Map" /> |
89 | <menu_item_separator label="-----------" name="separator3" /> | 86 | <menu_item_separator label="-----------" name="separator3" /> |
90 | <menu_item_check label="ν΅κ³ νμμ€" name="Statistics Bar" /> | 87 | <menu_item_check label="ν΅κ³λ³΄κΈ°" name="Statistics Bar" /> |
91 | <menu_item_check label="νΉμ± ν" name="Property Lines" /> | 88 | <menu_item_check label="μμ λ¬Ό ν" name="Property Lines" /> |
92 | <menu_item_check label="ν μ§ μμ μ£Ό" name="Land Owners" /> | 89 | <menu_item_check label="ν μ§ μμ μ£Ό" name="Land Owners" /> |
93 | <menu_item_separator label="-----------" name="separator4" /> | 90 | <menu_item_separator label="-----------" name="separator4" /> |
94 | <menu label="λμλ§λ³΄κΈ°" name="Hover Tips"> | 91 | <menu label="ν" name="Hover Tips"> |
95 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | ||
96 | <menu_item_check label="ν νμ" name="Show Tips" /> | 92 | <menu_item_check label="ν νμ" name="Show Tips" /> |
97 | <menu_item_separator label="-----------" name="separator" /> | 93 | <menu_item_separator label="-----------" name="separator" /> |
98 | <menu_item_check label="ν μ§ μ 보" name="Land Tips" /> | 94 | <menu_item_check label="ν μ§ ν" name="Land Tips" /> |
99 | <menu_item_check label="λͺ¨λ μμ΄ν μ ν" name="Tips On All Objects" /> | 95 | <menu_item_check label="λͺ¨λ μ€λΈμ νΈ ν" name="Tips On All Objects" /> |
100 | </menu> | 96 | </menu> |
101 | <menu_item_check label="λμμ μΌλ‘ 물리μ μ¬ν νμ" name="Alt Shows Physical" /> | 97 | <menu_item_check label="Alt ν€λ‘ 물리 μ€λΈμ νΈ λ³΄κΈ°" name="Alt Shows Physical" /> |
102 | <menu_item_check label="ν¬λͺ κ°μ‘°νμ" name="Highlight Transparent" /> | 98 | <menu_item_check label="ν¬λͺ μ€λΈμ νΈ λ³΄κΈ°" name="Highlight Transparent" /> |
103 | <menu label="μ§νλ§λ€κΈ°" name="Beacons"> | 99 | <menu label="νμ" name="Beacons"> |
104 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | 100 | <menu_item_check label="μ€ν¬λ¦½νΈλ μ€λΈμ νΈ" name="Scripted Objects" /> |
105 | <menu_item_check label="μ€ν¬λ¦½νΈλ μμ΄ν " name="Scripted Objects" /> | 101 | <menu_item_check label="물리 μμ§ μ€λΈμ νΈ" name="Physical Objects" /> |
106 | <menu_item_check label="물리μ μ¬λ¬Ό" name="Physical Objects" /> | 102 | <menu_item_check label="μ¬μ΄λ" name="Sound Sources" /> |
107 | <menu_item_check label="μ¬μ΄λ μμ€" name="Sound Sources" /> | 103 | <menu_item_check label="νν°ν΄" name="Particle Sources" /> |
108 | <menu_item_check label="νΉμν¨κ³Ό μμ€" name="Particle Sources" /> | ||
109 | <menu_item_separator label="-----------" name="separator" /> | 104 | <menu_item_separator label="-----------" name="separator" /> |
110 | <menu_item_check label="μ΄ννΈ μ¨κΈ°κΈ°" name="Hide Particles" /> | 105 | <menu_item_check label="νν°ν΄ μ¨κΈ°κΈ°" name="Hide Particles" /> |
111 | </menu> | 106 | </menu> |
112 | <menu_item_check label="HUD λΆμ°©λ¬Ό νμ" name="Show HUD Attachments" /> | 107 | <menu_item_check label="μ°©μ© HUD 보기" name="Show HUD Attachments" /> |
113 | <menu_item_separator label="-----------" name="separator5" /> | 108 | <menu_item_separator label="-----------" name="separator5" /> |
114 | <menu_item_call label="νλ" name="Zoom In" /> | 109 | <menu_item_call label="νλ" name="Zoom In" /> |
115 | <menu_item_call label="μ€ κΈ°λ³Έ μ€μ " name="Zoom Default" /> | 110 | <menu_item_call label="κΈ°λ³Έ" name="Zoom Default" /> |
116 | <menu_item_call label="μΆμ" name="Zoom Out" /> | 111 | <menu_item_call label="μΆμ" name="Zoom Out" /> |
117 | <menu_item_separator label="-----------" name="separator6" /> | 112 | <menu_item_separator label="-----------" name="separator6" /> |
118 | <menu label="More" name="More"> | 113 | <menu_item_call label="μ 체 νλ©΄" name="Toggle Fullscreen" /> |
119 | <menu_item_call label="μ 체νλ©΄ ν κΈ" name="Toggle Fullscreen" /> | 114 | <menu_item_call label="λ©λ΄μ°½ κΈ°λ³Έ ν¬κΈ°" name="Set UI Size to Default" /> |
120 | <menu_item_call label="UI ν¬κΈ°λ₯Ό κΈ°λ³Έ μ€μ μΌλ‘ μ€μ " name="Set UI Size to Default" /> | ||
121 | </menu> | ||
122 | </menu> | 115 | </menu> |
123 | <menu label="μΈκ³" name="World"> | 116 | <menu label="μλ" name="World"> |
124 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | ||
125 | <menu_item_call label="μ±ν " name="Chat" /> | 117 | <menu_item_call label="μ±ν " name="Chat" /> |
126 | <menu_item_call label="μ μ€μ² μμ" name="Start Gesture" /> | 118 | <menu_item_call label="μ μ€μ² μμ" name="Start Gesture" /> |
127 | <menu_item_check label="νμ μ€ν" name="Always Run" /> | 119 | <menu_item_check label="νμ λ°κΈ°" name="Always Run" /> |
128 | <menu_item_check label="λΉν" name="Fly" /> | 120 | <menu_item_check label="λΉν" name="Fly" /> |
129 | <menu_item_separator label="-----------" name="separator" /> | 121 | <menu_item_separator label="-----------" name="separator" /> |
130 | <menu_item_call label="μ¬κΈ°μ μμνμ μμ±" name="Create Landmark Here" /> | 122 | <menu_item_call label="μ¬κΈ°μ λλλ§ν¬ μμ±" name="Create Landmark Here" /> |
131 | <menu_item_call label="μ΄κ³³μ μ§μΌλ‘ μ€μ " name="Set Home to Here" /> | 123 | <menu_item_call label="μ΄κ³³μ νμΌλ‘ μ€μ " name="Set Home to Here" /> |
132 | <menu_item_separator label="-----------" name="separator2" /> | 124 | <menu_item_separator label="-----------" name="separator2" /> |
133 | <menu_item_call label="ν λ ν¬ν ν" name="Teleport Home" /> | 125 | <menu_item_call label="νμΌλ‘ ν 리ν¬νΈ" name="Teleport Home" /> |
134 | <menu_item_separator label="-----------" name="separator3" /> | 126 | <menu_item_separator label="-----------" name="separator3" /> |
135 | <menu_item_call label="μ리λΉμ μ€μ " name="Set Away" /> | 127 | <menu_item_call label="μ리λΉμ μ€μ " name="Set Away" /> |
136 | <menu_item_call label="λ€λ₯Έ μ©λ¬΄ μ€ μ€μ " name="Set Busy" /> | 128 | <menu_item_call label="λ€λ₯Έ μ©λ¬΄ μ€ μ€μ " name="Set Busy" /> |
137 | <menu_item_separator label="-----------" name="separator4" /> | 129 | <menu_item_separator label="-----------" name="separator4" /> |
138 | <menu_item_call label="κ³μ κΈ°λ‘β¦" name="Account History..." /> | 130 | <menu_item_call label="κ³μ κΈ°λ‘" name="Account History..." /> |
139 | <menu_item_call label="λ΄ κ³μ κ΄λ¦¬..." name="Manage My Account..." /> | 131 | <menu_item_call label="λ΄ κ³μ κ΄λ¦¬" name="Manage My Account..." /> |
140 | <menu_item_call label="L$ꡬ맀..." name="Buy and Sell L$..." /> | 132 | <menu_item_call label="λ¦°λ λ¬λ¬(L$) ꡬ맀" name="Buy and Sell L$..." /> |
141 | <menu_item_separator label="-----------" name="separator5" /> | 133 | <menu_item_separator label="-----------" name="separator5" /> |
142 | <menu_item_call label="λ΄ ν μ§..." name="My Land..." /> | 134 | <menu_item_call label="λ΄ ν μ§" name="My Land..." /> |
143 | <menu_item_call label="ν μ§ μκ°..." name="About Land..." /> | 135 | <menu_item_call label="ν μ§ μκ°" name="About Land..." /> |
144 | <menu_item_call label="ν μ§ κ΅¬λ§€νκΈ°..." name="Buy Land..." /> | 136 | <menu_item_call label="ν μ§ κ΅¬λ§€νκΈ°" name="Buy Land..." /> |
145 | <menu_item_call label="μ§μ/μμ μ§..." name="Region/Estate..." /> | 137 | <menu_item_call label="μ§μ/μ¬μ μ§" name="Region/Estate..." /> |
146 | <menu_item_separator label="-----------" name="separator6" /> | 138 | <menu_item_separator label="-----------" name="separator6" /> |
147 | <menu label="νμ μ‘°μ " name="Force Sun"> | 139 | <menu label="νμ μ‘°μ " name="Force Sun"> |
148 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | ||
149 | <menu_item_call label="μΌμΆ" name="Sunrise" /> | 140 | <menu_item_call label="μΌμΆ" name="Sunrise" /> |
150 | <menu_item_call label="μ μ€" name="Noon" /> | 141 | <menu_item_call label="μ μ€" name="Noon" /> |
151 | <menu_item_call label="μΌλͺ°" name="Sunset" /> | 142 | <menu_item_call label="μΌλͺ°" name="Sunset" /> |
@@ -154,74 +145,73 @@ | |||
154 | <menu_item_call label="μ§μ κΈ°λ³Έ μ€μ μΌλ‘ λλ리기" name="Revert to Region Default" /> | 145 | <menu_item_call label="μ§μ κΈ°λ³Έ μ€μ μΌλ‘ λλ리기" name="Revert to Region Default" /> |
155 | </menu> | 146 | </menu> |
156 | </menu> | 147 | </menu> |
157 | <menu label="λꡬλ€" name="Tools"> | 148 | <menu label="λꡬ" name="Tools"> |
158 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | 149 | <menu label="λꡬ μ ν" name="Select Tool"> |
159 | <menu label="μ νλꡬ" name="Select Tool"> | 150 | <menu_item_call label="보기" name="Focus" /> |
160 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | ||
161 | <menu_item_call label="μ΄μ " name="Focus" /> | ||
162 | <menu_item_call label="μ΄λ" name="Move" /> | 151 | <menu_item_call label="μ΄λ" name="Move" /> |
163 | <menu_item_call label="νΈμ§" name="Edit" /> | 152 | <menu_item_call label="νΈμ§" name="Edit" /> |
164 | <menu_item_call label="λ§λ€κΈ°" name="Create" /> | 153 | <menu_item_call label="λ§λ€κΈ°" name="Create" /> |
165 | <menu_item_call label="ν μ§" name="Land" /> | 154 | <menu_item_call label="ν μ§" name="Land" /> |
166 | </menu> | 155 | </menu> |
167 | <menu_item_separator label="-----------" name="separator" /> | 156 | <menu_item_separator label="-----------" name="separator" /> |
168 | <menu_item_check label="λ΄ μμ΄ν λ§ μ ν" name="Select Only My Objects" /> | 157 | <menu_item_check label="λ΄ μ€λΈμ νΈλ§ μ ν" name="Select Only My Objects" /> |
169 | <menu_item_check label="μ΄λ κ°λ₯ν μμ΄ν λ§ μ ν" name="Select Only Movable Objects" /> | 158 | <menu_item_check label="μ΄λ κ°λ₯ν μ€λΈμ νΈλ§ μ ν" |
159 | name="Select Only Movable Objects" /> | ||
170 | <menu_item_check label="νκ²½λ³ μ ν" name="Select By Surrounding" /> | 160 | <menu_item_check label="νκ²½λ³ μ ν" name="Select By Surrounding" /> |
171 | <menu_item_check label="μ¨μ μ ν μ¬ν νμ" name="Show Hidden Selection" /> | 161 | <menu_item_check label="μ¨μ μ ν λΆλΆ νμ" name="Show Hidden Selection" /> |
172 | <menu_item_check label="μ ν μ¬νμ λν λΉ λ°μ§λ¦ νμ" | 162 | <menu_item_check label="μ ν μ¬νμ λν λΉ λ°μ§λ¦ νμ" |
173 | name="Show Light Radius for Selection" /> | 163 | name="Show Light Radius for Selection" /> |
174 | <menu_item_check label="μ ν λΉ νμ" name="Show Selection Beam" /> | 164 | <menu_item_check label="μ ν κ΄μ νμ" name="Show Selection Beam" /> |
175 | <menu_item_separator label="-----------" name="separator2" /> | 165 | <menu_item_separator label="-----------" name="separator2" /> |
176 | <menu_item_check label="그리λμ λΆμ΄κΈ°" name="Snap to Grid" /> | 166 | <menu_item_check label="μλ μ λ ¬" name="Snap to Grid" /> |
177 | <menu_item_call label="κ°μ²΄ XYλ₯Ό 그리λμ λΆμ΄κΈ°" name="Snap Object XY to Grid" /> | 167 | <menu_item_call label="μ€λΈμ νΈ XYλ₯Ό μλ μ λ ¬" name="Snap Object XY to Grid" /> |
178 | <menu_item_call label="그리λ μ ν μ¬ν μ¬μ©" name="Use Selection for Grid" /> | 168 | <menu_item_call label="μ€λΈμ νΈ κΈ°μ€ μλ μ λ ¬" name="Use Selection for Grid" /> |
179 | <menu_item_call label="그리λ μ΅μ " name="Grid Options..." /> | 169 | <menu_item_call label="그리λ μ΅μ β¦" name="Grid Options..." /> |
180 | <menu_item_separator label="-----------" name="separator3" /> | 170 | <menu_item_separator label="-----------" name="separator3" /> |
181 | <menu_item_call label="μ°κ²°" name="Link" /> | 171 | <menu_item_call label="μ°κ²°" name="Link" /> |
182 | <menu_item_call label="μ°κ²° ν΄μ " name="Unlink" /> | 172 | <menu_item_call label="μ°κ²° ν΄μ " name="Unlink" /> |
183 | <menu_item_separator label="-----------" name="separator4" /> | 173 | <menu_item_separator label="-----------" name="separator4" /> |
184 | <menu_item_call label="λͺ¨λ μ λλ©μ΄μ μ€μ§" name="Stop All Animations" /> | 174 | <menu_item_call label="λͺ¨λ μ λλ©μ΄μ μ€μ§" name="Stop All Animations" /> |
185 | <menu_item_separator label="-----------" name="separator5" /> | 175 | <menu_item_separator label="-----------" name="separator5" /> |
186 | <menu_item_call label="μ ν μ¬νμ μ΄μ " name="Focus on Selection" /> | 176 | <menu_item_call label="μ ν μ€λΈμ νΈμ μ΄μ λ§μΆκΈ°" name="Focus on Selection" /> |
187 | <menu_item_call label="μ ν μ¬νμ μ€" name="Zoom to Selection" /> | 177 | <menu_item_call label="μ ν μμ νλ/μΆμ" name="Zoom to Selection" /> |
188 | <menu_item_call label="μμ΄ν ꡬ맀" name="Menu Object Take" /> | 178 | <menu_item_call label="μ€λΈμ νΈ κ΅¬λ§€" name="Menu Object Take" /> |
189 | <menu_item_call label="볡μ¬νκΈ°" name="Take Copy" /> | 179 | <menu_item_call label="볡μ¬νκΈ°" name="Take Copy" /> |
190 | <menu_item_call label="λ΄ λ³΄κ΄ν¨μ μ¬λ¬Ό λ€μ μ μ₯" | 180 | <menu_item_call label="λ΄ μΈλ²€ν 리μ μ€λΈμ νΈ λ€μ μ μ₯" |
191 | name="Save Object Back to My Inventory" /> | 181 | name="Save Object Back to My Inventory" /> |
192 | <menu_item_call label="μμ΄ν 컨ν μΈ μ μμ΄ν λ€μ μ μ₯" | 182 | <menu_item_call label="μ€λΈμ νΈ μ»¨ν μΈ μ μ€λΈμ νΈ λ€μ μ μ₯" |
193 | name="Save Object Back to Object Contents" /> | 183 | name="Save Object Back to Object Contents" /> |
194 | <menu_item_separator label="-----------" name="separator6" /> | 184 | <menu_item_separator label="-----------" name="separator6" /> |
195 | <menu_item_call label="μ€ν¬λ¦½νΈ κ²½κ³ /μ€λ₯ μ°½ νμ" | 185 | <menu_item_call label="μ€ν¬λ¦½νΈ κ²½κ³ /μ€λ₯ μ°½ νμ" |
196 | name="Show Script Warning/Error Window" /> | 186 | name="Show Script Warning/Error Window" /> |
197 | <menu_item_call label="μ ν μ¬νμ μ€ν¬λ¦½νΈ λ€μ μ»΄νμΌ" | 187 | <menu_item_call label="μ ν μ¬νμ μ€ν¬λ¦½νΈ 리컴νμΌ" |
198 | name="Recompile Scripts in Selection" /> | 188 | name="Recompile Scripts in Selection" /> |
199 | <menu_item_call label="μ ν μ¬νμ μ€ν¬λ¦½νΈ μ¬μ€μ " | 189 | <menu_item_call label="μ ν μ¬νμ μ€ν¬λ¦½νΈ μ΄κΈ°ν" |
200 | name="Reset Scripts in Selection" /> | 190 | name="Reset Scripts in Selection" /> |
201 | <menu_item_call label="μ ν μ¬νμμ μ€νμΌλ‘ μ€ν¬λ¦½νΈ μ€μ " | 191 | <menu_item_call label="μ ν μ€λΈμ νΈμ μ€ν¬λ¦½νΈ μ€ν" |
202 | name="Set Scripts to Running in Selection" /> | 192 | name="Set Scripts to Running in Selection" /> |
203 | <menu_item_call label="μ ν μ¬νμμ μ€ν μν¨μΌλ‘ μ€ν¬λ¦½νΈ μ€μ " | 193 | <menu_item_call label="μ ν μ€λΈμ νΈμ μ€ν¬λ¦½νΈ μ€λ¨" |
204 | name="Set Scripts to Not Running in Selection" /> | 194 | name="Set Scripts to Not Running in Selection" /> |
195 | <menu_item_separator label="-----------" name="separator6" /> | ||
196 | <menu_item_call label="λ²κ·Έ μ κ³ " name="Report Bug..." /> | ||
205 | </menu> | 197 | </menu> |
206 | <menu label="λμλ§" name="Help"> | 198 | <menu label="λμλ§" name="Help"> |
207 | <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> | 199 | <menu_item_call label="μΈμ»¨λλΌμ΄ν λμλ§" name="Second Life Help" /> |
208 | <menu_item_call label="Second Life λμλ§" name="Second Life Help" /> | 200 | <menu_item_call label="μΈμλ λμλ§" name="In-World Help" /> |
209 | <menu_item_call label="κΈ°μ μλ£..." name="Knowledge Base..." /> | 201 | <menu_item_call label="μΆκ° λμλ§" name="Additional Help" /> |
210 | <menu_item_call label="λΌμ΄λΈ λμλ§..." name="Live Help..." /> | ||
211 | <menu_item_separator label="-----------" name="separator" /> | 202 | <menu_item_separator label="-----------" name="separator" /> |
212 | <menu_item_call label="곡μ λ¦°λ λΈλ‘κ·Έ..." name="Official Linden Blog..." /> | 203 | <menu_item_call label="곡μ λ¦°λ λΈλ‘κ·Έ" name="Official Linden Blog..." /> |
213 | <menu_item_separator label="-----------" name="separator2" /> | 204 | <menu_item_separator label="-----------" name="separator2" /> |
214 | <menu_item_call label="μ€ν¬λ¦½ν κ°μ΄λ..." name="Scripting Guide..." /> | 205 | <menu_item_call label="μ€ν¬λ¦½ν κ°μ΄λ..." name="Scripting Guide..." /> |
215 | <menu_item_call label="μ€ν¬λ¦½ν μν€..." name="Scripting Wiki..." /> | 206 | <menu_item_call label="μ€ν¬λ¦½ν ν¬ν" name="Scripting Portal..." /> |
216 | <menu_item_separator label="-----------" name="separator3" /> | 207 | <menu_item_separator label="-----------" name="separator3" /> |
217 | <menu_item_call label="μ€λμ λ©μμ§..." name="Message of the Day..." /> | 208 | <menu_item_call label="μ€λμ λ©μμ§" name="Message of the Day..." /> |
218 | <menu_item_separator label="-----------" name="separator4" /> | 209 | <menu_item_separator label="-----------" name="separator4" /> |
219 | <menu_item_call label="μ μ© μ κ³ ..." name="Report Abuse..." /> | 210 | <menu_item_call label="μ κ³ νκΈ°β¦" name="Report Abuse..." /> |
220 | <menu_item_call label="μΆλ°©, λ°κΈ° λ° λ리기..." name="Bumps, Pushes &amp; Hits..." /> | 211 | <menu_item_call label="λ°κΈ°, ν격 λ± κ°μ§" name="Bumps, Pushes &amp; Hits..." /> |
221 | <menu_item_separator label="-----------" name="separator5" /> | 212 | <menu_item_separator label="-----------" name="separator5" /> |
222 | <menu_item_call label="λ²κ·Έ μ κ³ ..." name="Report Bug..." /> | 213 | <menu_item_call label="μΆμ μ 보" name="Release Notes..." /> |
223 | <menu_item_call label="μΆμ μ 보..." name="Release Notes..." /> | ||
224 | <menu_item_separator label="-----------" name="separator6" /> | 214 | <menu_item_separator label="-----------" name="separator6" /> |
225 | <menu_item_call label="Second Life μκ°β¦" name="About Second Life..." /> | 215 | <menu_item_call label="μΈμ»¨λλΌμ΄ν μ 보" name="About Second Life..." /> |
226 | </menu> | 216 | </menu> |
227 | </menu_bar> | 217 | </menu_bar> |
diff --git a/linden/indra/newview/skins/xui/ko/need_to_translate.xml b/linden/indra/newview/skins/xui/ko/need_to_translate.xml index b262393..2405b62 100644 --- a/linden/indra/newview/skins/xui/ko/need_to_translate.xml +++ b/linden/indra/newview/skins/xui/ko/need_to_translate.xml | |||
@@ -1,2 +1,658 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0"?> |
2 | <strings /> | 2 | <?mso-application progid="Excel.Sheet"?> |
3 | <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" | ||
4 | xmlns:o="urn:schemas-microsoft-com:office:office" | ||
5 | xmlns:x="urn:schemas-microsoft-com:office:excel" | ||
6 | xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" | ||
7 | xmlns:html="http://www.w3.org/TR/REC-html40"> | ||
8 | <DocumentProperties xmlns="urn:schemas-microsoft-com:office:office"> | ||
9 | <Author>dongyunyoum</Author> | ||
10 | <LastAuthor>Leyla Farazha</LastAuthor> | ||
11 | <Created>2007-06-04T06:38:01Z</Created> | ||
12 | <LastSaved>2007-06-05T18:22:13Z</LastSaved> | ||
13 | <Company>organization</Company> | ||
14 | <Version>11.6568</Version> | ||
15 | </DocumentProperties> | ||
16 | <ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel"> | ||
17 | <WindowHeight>11145</WindowHeight> | ||
18 | <WindowWidth>16560</WindowWidth> | ||
19 | <WindowTopX>360</WindowTopX> | ||
20 | <WindowTopY>30</WindowTopY> | ||
21 | <ProtectStructure>False</ProtectStructure> | ||
22 | <ProtectWindows>False</ProtectWindows> | ||
23 | </ExcelWorkbook> | ||
24 | <Styles> | ||
25 | <Style ss:ID="Default" ss:Name="Normal"> | ||
26 | <Alignment ss:Vertical="Center"/> | ||
27 | <Borders/> | ||
28 | <Font ss:FontName="λμ" x:CharSet="129" x:Family="Modern" ss:Size="11"/> | ||
29 | <Interior/> | ||
30 | <NumberFormat/> | ||
31 | <Protection/> | ||
32 | </Style> | ||
33 | <Style ss:ID="s21"> | ||
34 | <Font ss:FontName="κ΅΄λ¦Ό" x:CharSet="129" x:Family="Modern" ss:Size="11"/> | ||
35 | </Style> | ||
36 | <Style ss:ID="s22"> | ||
37 | <Font ss:FontName="λμ" x:CharSet="129" x:Family="Modern" ss:Size="11" | ||
38 | ss:Bold="1"/> | ||
39 | </Style> | ||
40 | <Style ss:ID="s23"> | ||
41 | <Font ss:FontName="λμ" x:CharSet="129" x:Family="Modern" ss:Size="11" | ||
42 | ss:Bold="1"/> | ||
43 | <Interior ss:Color="#C0C0C0" ss:Pattern="Solid"/> | ||
44 | </Style> | ||
45 | <Style ss:ID="s24"> | ||
46 | <Alignment ss:Vertical="Center" ss:WrapText="1"/> | ||
47 | </Style> | ||
48 | <Style ss:ID="s25"> | ||
49 | <Font ss:FontName="κ΅΄λ¦Ό" x:CharSet="129" x:Family="Modern" ss:Size="11"/> | ||
50 | <Interior/> | ||
51 | </Style> | ||
52 | <Style ss:ID="s26"> | ||
53 | <Font ss:FontName="κ΅΄λ¦Ό" x:CharSet="129" x:Family="Modern" ss:Size="9"/> | ||
54 | </Style> | ||
55 | </Styles> | ||
56 | <Worksheet ss:Name="need_to_translate"> | ||
57 | <Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="91" x:FullColumns="1" | ||
58 | x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="16.5"> | ||
59 | <Column ss:AutoFitWidth="0" ss:Width="117"/> | ||
60 | <Column ss:Width="81"/> | ||
61 | <Column ss:Width="100.5"/> | ||
62 | <Column ss:Width="74.25"/> | ||
63 | <Column ss:AutoFitWidth="0" ss:Width="231.75"/> | ||
64 | <Column ss:AutoFitWidth="0" ss:Width="199.5"/> | ||
65 | <Column ss:AutoFitWidth="0" ss:Width="255.75"/> | ||
66 | <Column ss:StyleID="s21" ss:AutoFitWidth="0" ss:Width="168"/> | ||
67 | <Column ss:AutoFitWidth="0" ss:Width="123"/> | ||
68 | <Row ss:AutoFitHeight="0"> | ||
69 | <Cell ss:StyleID="s22"><Data ss:Type="String">/strings</Data></Cell> | ||
70 | </Row> | ||
71 | <Row ss:AutoFitHeight="0"> | ||
72 | <Cell ss:StyleID="s23"><Data ss:Type="String">/string/a_file</Data></Cell> | ||
73 | <Cell ss:StyleID="s23"><Data ss:Type="String">/string/b_path</Data></Cell> | ||
74 | <Cell ss:StyleID="s23"><Data ss:Type="String">/string/c_attribute</Data></Cell> | ||
75 | <Cell ss:StyleID="s23"><Data ss:Type="String">/string/d_old</Data></Cell> | ||
76 | <Cell ss:StyleID="s23"><Data ss:Type="String">/string/e_new</Data></Cell> | ||
77 | <Cell ss:StyleID="s23"><Data ss:Type="String">/string/f_old_trans</Data></Cell> | ||
78 | <Cell ss:StyleID="s23"><Data ss:Type="String">/string/f_translation</Data></Cell> | ||
79 | </Row> | ||
80 | <Row ss:AutoFitHeight="0"> | ||
81 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
82 | <Cell><Data ss:Type="String">//WearableSave/message</Data></Cell> | ||
83 | <Cell ss:Index="5"><Data ss:Type="String">Save changes to current clothing/body part?</Data></Cell> | ||
84 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">νμ¬ λ΄ λͺ¨μ΅μ μ μ₯ νμκ² μ΅λκΉ?</Data></Cell> | ||
85 | </Row> | ||
86 | <Row ss:AutoFitHeight="0"> | ||
87 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
88 | <Cell><Data ss:Type="String">//WearableSave/Save</Data></Cell> | ||
89 | <Cell ss:Index="5"><Data ss:Type="String">Save</Data></Cell> | ||
90 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ μ₯</Data></Cell> | ||
91 | </Row> | ||
92 | <Row ss:AutoFitHeight="0"> | ||
93 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
94 | <Cell><Data ss:Type="String">//WearableSave/Don'tSave</Data></Cell> | ||
95 | <Cell ss:Index="5"><Data ss:Type="String">Don't Save</Data></Cell> | ||
96 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ μ₯νμ§ μμ</Data></Cell> | ||
97 | </Row> | ||
98 | <Row ss:AutoFitHeight="0"> | ||
99 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
100 | <Cell><Data ss:Type="String">//WearableSave/Cancel</Data></Cell> | ||
101 | <Cell ss:Index="5"><Data ss:Type="String">Cancel</Data></Cell> | ||
102 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ·¨μ</Data></Cell> | ||
103 | </Row> | ||
104 | <Row ss:AutoFitHeight="0"> | ||
105 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
106 | <Cell><Data ss:Type="String">//ClassifiedSave/message</Data></Cell> | ||
107 | <Cell ss:Index="5"><Data ss:Type="String">Save changes to classified [NAME]?</Data></Cell> | ||
108 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">[NAME]κ΄κ³ μ μ μ₯ νμκ² μ΅λκΉ?</Data></Cell> | ||
109 | </Row> | ||
110 | <Row ss:AutoFitHeight="0"> | ||
111 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
112 | <Cell><Data ss:Type="String">//ClassifiedSave/Save</Data></Cell> | ||
113 | <Cell ss:Index="5"><Data ss:Type="String">Save</Data></Cell> | ||
114 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ μ₯</Data></Cell> | ||
115 | </Row> | ||
116 | <Row ss:AutoFitHeight="0"> | ||
117 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
118 | <Cell><Data ss:Type="String">//ClassifiedSave/Don'tSave</Data></Cell> | ||
119 | <Cell ss:Index="5"><Data ss:Type="String">Don't Save</Data></Cell> | ||
120 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ μ₯νμ§ μμ</Data></Cell> | ||
121 | </Row> | ||
122 | <Row ss:AutoFitHeight="0"> | ||
123 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
124 | <Cell><Data ss:Type="String">//ClassifiedSave/Cancel</Data></Cell> | ||
125 | <Cell ss:Index="5"><Data ss:Type="String">Cancel</Data></Cell> | ||
126 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ·¨μ</Data></Cell> | ||
127 | </Row> | ||
128 | <Row ss:AutoFitHeight="0" ss:Height="148.5"> | ||
129 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
130 | <Cell><Data ss:Type="String">//DisplaySettingsNoShaders/message</Data></Cell> | ||
131 | <Cell ss:Index="5" ss:StyleID="s24"><Data ss:Type="String">[SECOND_LIFE] crashed while initializing graphics drivers. Shaders will be disabled in order to avoid some common driver errors. This will disable some graphics features. We recommend updating your graphics card drivers. Shaders can be re-enabled in Preferences > Graphics Detail.</Data></Cell> | ||
132 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">κ·Έλν½ λλΌμ΄λ² μΈμμ€ μ€λ₯κ° λ°μνμ΅λλ€. μΌλ°μ μΈ λλΌμ΄λ² μ€λ₯λ₯Ό νΌνκΈ° μν΄ μμ΄λλ μλμΌλ‘ λΉνμ± λ κ² μ λλ€. μ΄κ²μ μΌλΆ κ·Έλν½ κ΄λ ¨ ν¨κ³Όλ₯Ό λΉνμ± μν¬ κ² μ λλ€.κ·Έλν½ μΉ΄λλ λλΌμλ²μ μ λ°μ΄νΈλ₯Ό κΆμ ν©λλ€. μμ΄λλ νκ²½μ€μ >κ·Έλν½ λν μΌ μμ λ€μ νμ±ν μν¬ μ μμ΅λλ€.</Data></Cell> | ||
133 | </Row> | ||
134 | <Row ss:AutoFitHeight="0"> | ||
135 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
136 | <Cell><Data ss:Type="String">//WebLaunchBugReport101/message</Data></Cell> | ||
137 | <Cell ss:Index="5"><Data ss:Type="String">Visit the [SECOND_LIFE] Wiki and Learn how to Report Bugs Correctly.</Data></Cell> | ||
138 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μΈμ»¨λλΌμ΄ν μν€μμ λ²κ·Έμ κ³ μ λν΄ λ³΄κΈ°</Data></Cell> | ||
139 | </Row> | ||
140 | <Row ss:AutoFitHeight="0"> | ||
141 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
142 | <Cell><Data ss:Type="String">//WebLaunchBugReport101/ignore</Data></Cell> | ||
143 | <Cell ss:Index="5"><Data ss:Type="String">When launching web browser to view the Bug Reporting 101 Wiki</Data></Cell> | ||
144 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λ²κ·Έμ κ³ 101 μν€λ₯Ό μΉ λΈλΌμ°μ μμ λ³Όλ </Data></Cell> | ||
145 | </Row> | ||
146 | <Row ss:AutoFitHeight="0"> | ||
147 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
148 | <Cell><Data ss:Type="String">//WebLaunchBugReport101/Gotopage</Data></Cell> | ||
149 | <Cell ss:Index="5"><Data ss:Type="String">OK</Data></Cell> | ||
150 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">νμΈ</Data></Cell> | ||
151 | </Row> | ||
152 | <Row ss:AutoFitHeight="0"> | ||
153 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
154 | <Cell><Data ss:Type="String">//WebLaunchBugReport101/Cancel</Data></Cell> | ||
155 | <Cell ss:Index="5"><Data ss:Type="String">Cancel</Data></Cell> | ||
156 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ·¨μ</Data></Cell> | ||
157 | </Row> | ||
158 | <Row ss:AutoFitHeight="0"> | ||
159 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
160 | <Cell><Data ss:Type="String">//WebLaunchSecurityIssues/message</Data></Cell> | ||
161 | <Cell ss:Index="5"><Data ss:Type="String">Visit the [SECOND_LIFE] Wiki for Details of How to Report a Security Issue.</Data></Cell> | ||
162 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μΈμ»¨λλΌμ΄ν μν€μμ 보μ κ΄λ ¨ μ κ³ μ λν΄ λ³΄κΈ°</Data></Cell> | ||
163 | </Row> | ||
164 | <Row ss:AutoFitHeight="0"> | ||
165 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
166 | <Cell><Data ss:Type="String">//WebLaunchSecurityIssues/ignore</Data></Cell> | ||
167 | <Cell ss:Index="5"><Data ss:Type="String">When launching web browser to view Security Issues Wiki</Data></Cell> | ||
168 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">보μ κ΄λ ¨ μν€λ₯Ό μΉ λΈλΌμ°μ μμ λ³Όλ </Data></Cell> | ||
169 | </Row> | ||
170 | <Row ss:AutoFitHeight="0"> | ||
171 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
172 | <Cell><Data ss:Type="String">//WebLaunchSecurityIssues/Gotopage</Data></Cell> | ||
173 | <Cell ss:Index="5"><Data ss:Type="String">OK</Data></Cell> | ||
174 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">νμΈ</Data></Cell> | ||
175 | </Row> | ||
176 | <Row ss:AutoFitHeight="0"> | ||
177 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
178 | <Cell><Data ss:Type="String">//WebLaunchSecurityIssues/Cancel</Data></Cell> | ||
179 | <Cell ss:Index="5"><Data ss:Type="String">Cancel</Data></Cell> | ||
180 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ·¨μ</Data></Cell> | ||
181 | </Row> | ||
182 | <Row ss:AutoFitHeight="0"> | ||
183 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
184 | <Cell><Data ss:Type="String">//WebLaunchPublicIssue/message</Data></Cell> | ||
185 | <Cell ss:Index="5"><Data ss:Type="String">Visit the [SECOND_LIFE] Public Issue Tracker, Where you can Report Bugs and other Issues.</Data></Cell> | ||
186 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ΄μ νΈλμμ λ²κ·Έ λ° λ³΄μ κ΄λ ¨ μ κ³ λ³΄κΈ°</Data></Cell> | ||
187 | </Row> | ||
188 | <Row ss:AutoFitHeight="0"> | ||
189 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
190 | <Cell><Data ss:Type="String">//WebLaunchPublicIssue/ignore</Data></Cell> | ||
191 | <Cell ss:Index="5"><Data ss:Type="String">When launching web browser to view the Public Issue Tracker</Data></Cell> | ||
192 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ΄μ νΈλμ μΉ λΈλΌμ°μ μμ λ³Όλ </Data></Cell> | ||
193 | </Row> | ||
194 | <Row ss:AutoFitHeight="0"> | ||
195 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
196 | <Cell><Data ss:Type="String">//WebLaunchPublicIssue/Gotopage</Data></Cell> | ||
197 | <Cell ss:Index="5"><Data ss:Type="String">Go to page</Data></Cell> | ||
198 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">νμΈ</Data></Cell> | ||
199 | </Row> | ||
200 | <Row ss:AutoFitHeight="0"> | ||
201 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
202 | <Cell><Data ss:Type="String">//WebLaunchPublicIssue/Cancel</Data></Cell> | ||
203 | <Cell ss:Index="5"><Data ss:Type="String">Cancel</Data></Cell> | ||
204 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ·¨μ</Data></Cell> | ||
205 | </Row> | ||
206 | <Row ss:AutoFitHeight="0"> | ||
207 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
208 | <Cell><Data ss:Type="String">//WebLaunchPublicIssueHelp/message</Data></Cell> | ||
209 | <Cell ss:Index="5"><Data ss:Type="String">Visit the [SECOND_LIFE] Wiki for info on how to use the Public Issue Tracker.</Data></Cell> | ||
210 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μΈμ»¨λλΌμ΄ν μν€μμ μ΄μ νΈλμ λν΄ λ³΄κΈ°</Data></Cell> | ||
211 | </Row> | ||
212 | <Row ss:AutoFitHeight="0"> | ||
213 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
214 | <Cell><Data ss:Type="String">//WebLaunchPublicIssueHelp/ignore</Data></Cell> | ||
215 | <Cell ss:Index="5"><Data ss:Type="String">When launching web browser to view Public Issue Tracker Wiki</Data></Cell> | ||
216 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ΄μ νΈλ κ΄λ ¨ μν€λ₯Ό μΉ λΈλΌμ°μ μμ λ³Όλ </Data></Cell> | ||
217 | </Row> | ||
218 | <Row ss:AutoFitHeight="0"> | ||
219 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
220 | <Cell><Data ss:Type="String">//WebLaunchPublicIssueHelp/Gotopage</Data></Cell> | ||
221 | <Cell ss:Index="5"><Data ss:Type="String">Go to page</Data></Cell> | ||
222 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">νμΈ</Data></Cell> | ||
223 | </Row> | ||
224 | <Row ss:AutoFitHeight="0"> | ||
225 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
226 | <Cell><Data ss:Type="String">//WebLaunchPublicIssueHelp/Cancel</Data></Cell> | ||
227 | <Cell ss:Index="5"><Data ss:Type="String">Cancel</Data></Cell> | ||
228 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ·¨μ</Data></Cell> | ||
229 | </Row> | ||
230 | <Row ss:AutoFitHeight="0"> | ||
231 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
232 | <Cell><Data ss:Type="String">//ConfirmKick/Kick</Data></Cell> | ||
233 | <Cell ss:Index="5"><Data ss:Type="String">Kick All Users</Data></Cell> | ||
234 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μΆλ°©νκΈ°</Data></Cell> | ||
235 | </Row> | ||
236 | <Row ss:AutoFitHeight="0"> | ||
237 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
238 | <Cell><Data ss:Type="String">//ConfirmKick/Cancel</Data></Cell> | ||
239 | <Cell ss:Index="5"><Data ss:Type="String">Cancel</Data></Cell> | ||
240 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ·¨μ</Data></Cell> | ||
241 | </Row> | ||
242 | <Row ss:AutoFitHeight="0" ss:Height="33"> | ||
243 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
244 | <Cell><Data ss:Type="String">//ConfirmClearBrowserCache/message</Data></Cell> | ||
245 | <Cell ss:Index="5" ss:StyleID="s24"><Data ss:Type="String">Are you sure you want to clear your browser cache?</Data></Cell> | ||
246 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λΈλΌμ°μ μ μΊμ¬λ₯Ό μ λΆ μμ νμκ² μ΅λκΉ?</Data></Cell> | ||
247 | </Row> | ||
248 | <Row ss:AutoFitHeight="0"> | ||
249 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
250 | <Cell><Data ss:Type="String">//ConfirmClearBrowserCache/Yes</Data></Cell> | ||
251 | <Cell ss:Index="5"><Data ss:Type="String">Yes</Data></Cell> | ||
252 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">νμΈ</Data></Cell> | ||
253 | </Row> | ||
254 | <Row ss:AutoFitHeight="0"> | ||
255 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
256 | <Cell><Data ss:Type="String">//ConfirmClearBrowserCache/No</Data></Cell> | ||
257 | <Cell ss:Index="5"><Data ss:Type="String">Cancel</Data></Cell> | ||
258 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ·¨μ</Data></Cell> | ||
259 | </Row> | ||
260 | <Row ss:AutoFitHeight="0" ss:Height="33"> | ||
261 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
262 | <Cell><Data ss:Type="String">//ConfirmClearCookies/message</Data></Cell> | ||
263 | <Cell ss:Index="5" ss:StyleID="s24"><Data ss:Type="String">Are you sure you want to clear your cookies?</Data></Cell> | ||
264 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μΏ ν€λ₯Ό μ λΆ μμ νμκ² μ΅λκΉ?</Data></Cell> | ||
265 | </Row> | ||
266 | <Row ss:AutoFitHeight="0"> | ||
267 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
268 | <Cell><Data ss:Type="String">//ConfirmClearCookies/Yes</Data></Cell> | ||
269 | <Cell ss:Index="5"><Data ss:Type="String">Yes</Data></Cell> | ||
270 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">νμΈ</Data></Cell> | ||
271 | </Row> | ||
272 | <Row ss:AutoFitHeight="0"> | ||
273 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
274 | <Cell><Data ss:Type="String">//ConfirmClearCookies/No</Data></Cell> | ||
275 | <Cell ss:Index="5"><Data ss:Type="String">Cancel</Data></Cell> | ||
276 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ·¨μ</Data></Cell> | ||
277 | </Row> | ||
278 | <Row ss:AutoFitHeight="0" ss:Height="33"> | ||
279 | <Cell><Data ss:Type="String">alerts.xml</Data></Cell> | ||
280 | <Cell><Data ss:Type="String">//Cannot_Purchase_an_Attachment/message</Data></Cell> | ||
281 | <Cell ss:Index="5" ss:StyleID="s24"><Data ss:Type="String">Items may not be purchased while they are part of an attachment.</Data></Cell> | ||
282 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ°©μ©μ€μΈ μμ΄ν μ ꡬ맀 λΆκ°λ₯ ν©λλ€.</Data></Cell> | ||
283 | </Row> | ||
284 | <Row ss:AutoFitHeight="0"> | ||
285 | <Cell><Data ss:Type="String">floater_avatar_picker.xml</Data></Cell> | ||
286 | <Cell><Data ss:Type="String">/avatarpicker/Type part of the resident's name:</Data></Cell> | ||
287 | <Cell ss:Index="5"><Data ss:Type="String">Type part of the resident's name:</Data></Cell> | ||
288 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ΄λ¦μ μΌλΆλ₯Ό μ λ ₯ νμμμ€.</Data></Cell> | ||
289 | </Row> | ||
290 | <Row ss:AutoFitHeight="0"> | ||
291 | <Cell><Data ss:Type="String">floater_avatar_picker.xml</Data></Cell> | ||
292 | <Cell><Data ss:Type="String">/avatarpicker/Or select their calling card:</Data></Cell> | ||
293 | <Cell ss:Index="5"><Data ss:Type="String">Or select a calling card:</Data></Cell> | ||
294 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λλ νλ‘ν μ ν</Data></Cell> | ||
295 | </Row> | ||
296 | <Row ss:AutoFitHeight="0"> | ||
297 | <Cell><Data ss:Type="String">floater_image_preview.xml</Data></Cell> | ||
298 | <Cell><Data ss:Type="String">/Image Preview/clothing_type_combo/SculptedPrim</Data></Cell> | ||
299 | <Cell ss:Index="5"><Data ss:Type="String">Sculpted Prim</Data></Cell> | ||
300 | <Cell ss:Index="7" ss:StyleID="s25"><Data ss:Type="String">μ‘°κ° νλ¦Ό</Data></Cell> | ||
301 | </Row> | ||
302 | <Row ss:AutoFitHeight="0"> | ||
303 | <Cell><Data ss:Type="String">floater_inventory.xml</Data></Cell> | ||
304 | <Cell><Data ss:Type="String">/Inventory/Inventory Menu/Sort/System Folders To Top</Data></Cell> | ||
305 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
306 | <Cell ss:Index="5"><Data ss:Type="String">System Folders To Top</Data></Cell> | ||
307 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μμ€ν ν΄λλ μλ‘</Data></Cell> | ||
308 | </Row> | ||
309 | <Row ss:AutoFitHeight="0"> | ||
310 | <Cell><Data ss:Type="String">floater_preferences.xml</Data></Cell> | ||
311 | <Cell><Data ss:Type="String">/Preferences/Help</Data></Cell> | ||
312 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
313 | <Cell ss:Index="5"><Data ss:Type="String">Help</Data></Cell> | ||
314 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λμλ§</Data></Cell> | ||
315 | </Row> | ||
316 | <Row ss:AutoFitHeight="0"> | ||
317 | <Cell><Data ss:Type="String">floater_preferences.xml</Data></Cell> | ||
318 | <Cell><Data ss:Type="String">/Preferences/Help</Data></Cell> | ||
319 | <Cell><Data ss:Type="String">label_selected</Data></Cell> | ||
320 | <Cell ss:Index="5"><Data ss:Type="String">Help</Data></Cell> | ||
321 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λμλ§</Data></Cell> | ||
322 | </Row> | ||
323 | <Row ss:AutoFitHeight="0"> | ||
324 | <Cell><Data ss:Type="String">floater_tools.xml</Data></Cell> | ||
325 | <Cell><Data ss:Type="String">/toolbox floater/Object Info Tabs/Object/comboBaseType/Sculpted</Data></Cell> | ||
326 | <Cell ss:Index="5"><Data ss:Type="String">Sculpted</Data></Cell> | ||
327 | <Cell ss:Index="7" ss:StyleID="s25"><Data ss:Type="String">μ‘°κ°</Data></Cell> | ||
328 | </Row> | ||
329 | <Row ss:AutoFitHeight="0"> | ||
330 | <Cell><Data ss:Type="String">floater_tools.xml</Data></Cell> | ||
331 | <Cell><Data ss:Type="String">/toolbox floater/Object Info Tabs/Object/sculpt texture control</Data></Cell> | ||
332 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
333 | <Cell ss:Index="5"><Data ss:Type="String">Sculpt Texture</Data></Cell> | ||
334 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">ν μ€μ²</Data></Cell> | ||
335 | </Row> | ||
336 | <Row ss:AutoFitHeight="0"> | ||
337 | <Cell><Data ss:Type="String">floater_tools.xml</Data></Cell> | ||
338 | <Cell><Data ss:Type="String">/toolbox floater/Object Info Tabs/Object/sculpt texture control</Data></Cell> | ||
339 | <Cell><Data ss:Type="String">tool_tip</Data></Cell> | ||
340 | <Cell ss:Index="5"><Data ss:Type="String">Click to choose a picture</Data></Cell> | ||
341 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ΄λ―Έμ§ μ ν</Data></Cell> | ||
342 | </Row> | ||
343 | <Row ss:AutoFitHeight="0"> | ||
344 | <Cell><Data ss:Type="String">menu_viewer.xml</Data></Cell> | ||
345 | <Cell><Data ss:Type="String">/Main Menu/File/Close All Windows</Data></Cell> | ||
346 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
347 | <Cell ss:Index="5"><Data ss:Type="String">Close All Windows</Data></Cell> | ||
348 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λͺ¨λ μ°½ λ«κΈ°</Data></Cell> | ||
349 | </Row> | ||
350 | <Row ss:AutoFitHeight="0"> | ||
351 | <Cell><Data ss:Type="String">menu_viewer.xml</Data></Cell> | ||
352 | <Cell><Data ss:Type="String">/Main Menu/Tools/separator7</Data></Cell> | ||
353 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
354 | <Cell ss:Index="5"><Data ss:Type="String">-----------</Data></Cell> | ||
355 | <Cell ss:Index="7" ss:StyleID="s21"/> | ||
356 | </Row> | ||
357 | <Row ss:AutoFitHeight="0"> | ||
358 | <Cell><Data ss:Type="String">menu_viewer.xml</Data></Cell> | ||
359 | <Cell><Data ss:Type="String">/Main Menu/Tools/Select Tool/Report Bug...</Data></Cell> | ||
360 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
361 | <Cell ss:Index="5"><Data ss:Type="String">Report Bug...</Data></Cell> | ||
362 | <Cell ss:Index="7" ss:StyleID="s26"><Data ss:Type="String">λ²κ·Έμ κ³ </Data></Cell> | ||
363 | </Row> | ||
364 | <Row ss:AutoFitHeight="0"> | ||
365 | <Cell><Data ss:Type="String">menu_viewer.xml</Data></Cell> | ||
366 | <Cell><Data ss:Type="String">/Main Menu/Tools/Select Tool/Bug Reporing 101...</Data></Cell> | ||
367 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
368 | <Cell ss:Index="5"><Data ss:Type="String">Bug Reporting 101...</Data></Cell> | ||
369 | <Cell ss:Index="7" ss:StyleID="s26"><Data ss:Type="String">λ²κ·Έμ κ³ 101</Data></Cell> | ||
370 | </Row> | ||
371 | <Row ss:AutoFitHeight="0"> | ||
372 | <Cell><Data ss:Type="String">menu_viewer.xml</Data></Cell> | ||
373 | <Cell><Data ss:Type="String">/Main Menu/Tools/Select Tool/Security Issues...</Data></Cell> | ||
374 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
375 | <Cell ss:Index="5"><Data ss:Type="String">Security Issues...</Data></Cell> | ||
376 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">보μκ΄λ ¨ </Data></Cell> | ||
377 | </Row> | ||
378 | <Row ss:AutoFitHeight="0"> | ||
379 | <Cell><Data ss:Type="String">menu_viewer.xml</Data></Cell> | ||
380 | <Cell><Data ss:Type="String">/Main Menu/Tools/Select Tool/separator7</Data></Cell> | ||
381 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
382 | <Cell ss:Index="5"><Data ss:Type="String">-----------</Data></Cell> | ||
383 | <Cell ss:Index="7" ss:StyleID="s21"/> | ||
384 | </Row> | ||
385 | <Row ss:AutoFitHeight="0"> | ||
386 | <Cell><Data ss:Type="String">menu_viewer.xml</Data></Cell> | ||
387 | <Cell><Data ss:Type="String">/Main Menu/Tools/Select Tool/Public Issue Tracker...</Data></Cell> | ||
388 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
389 | <Cell ss:Index="5"><Data ss:Type="String">Public Issue Tracker...</Data></Cell> | ||
390 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ΄μ νΈλ</Data></Cell> | ||
391 | </Row> | ||
392 | <Row ss:AutoFitHeight="0"> | ||
393 | <Cell><Data ss:Type="String">menu_viewer.xml</Data></Cell> | ||
394 | <Cell><Data ss:Type="String">/Main Menu/Tools/Select Tool/Publc Issue Tracker Help...</Data></Cell> | ||
395 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
396 | <Cell ss:Index="5"><Data ss:Type="String">Public Issue Tracker Help...</Data></Cell> | ||
397 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ΄μ νΈλ λμλ§</Data></Cell> | ||
398 | </Row> | ||
399 | <Row ss:AutoFitHeight="0"> | ||
400 | <Cell><Data ss:Type="String">panel_avatar.xml</Data></Cell> | ||
401 | <Cell><Data ss:Type="String">/Panel Avatar/tab/2nd Life/Add Friend...</Data></Cell> | ||
402 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
403 | <Cell ss:Index="5"><Data ss:Type="String">Add Friend...</Data></Cell> | ||
404 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μΉκ΅¬ μΆκ°</Data></Cell> | ||
405 | </Row> | ||
406 | <Row ss:AutoFitHeight="0"> | ||
407 | <Cell><Data ss:Type="String">panel_avatar.xml</Data></Cell> | ||
408 | <Cell><Data ss:Type="String">/Panel Avatar/tab/2nd Life/Add Friend...</Data></Cell> | ||
409 | <Cell><Data ss:Type="String">label_selected</Data></Cell> | ||
410 | <Cell ss:Index="5"><Data ss:Type="String">Add Friend...</Data></Cell> | ||
411 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μΉκ΅¬ μΆκ°</Data></Cell> | ||
412 | </Row> | ||
413 | <Row ss:AutoFitHeight="0"> | ||
414 | <Cell><Data ss:Type="String">panel_group_general.xml</Data></Cell> | ||
415 | <Cell><Data ss:Type="String">/general_tab/group_name_editor</Data></Cell> | ||
416 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
417 | <Cell ss:Index="5"><Data ss:Type="String">Type your new group name here</Data></Cell> | ||
418 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ κ·Έλ£Ήμ μ΄λ¦μ μ λ ₯ νμμμ€</Data></Cell> | ||
419 | </Row> | ||
420 | <Row ss:AutoFitHeight="0"> | ||
421 | <Cell><Data ss:Type="String">panel_preferences_graphics2.xml</Data></Cell> | ||
422 | <Cell><Data ss:Type="String">/Display panel 3/shaders</Data></Cell> | ||
423 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
424 | <Cell ss:Index="5"><Data ss:Type="String">Enable Vertex Shaders</Data></Cell> | ||
425 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λ²ν μ€ μμ΄λ νμ±ν</Data></Cell> | ||
426 | </Row> | ||
427 | <Row ss:AutoFitHeight="0"> | ||
428 | <Cell><Data ss:Type="String">panel_preferences_graphics2.xml</Data></Cell> | ||
429 | <Cell><Data ss:Type="String">/Display panel 3/shaders</Data></Cell> | ||
430 | <Cell><Data ss:Type="String">tool_tip</Data></Cell> | ||
431 | <Cell ss:Index="5"><Data ss:Type="String">Disabling this option may prevent some graphics card drivers from crashing.</Data></Cell> | ||
432 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">κ·Έλν½ μΉ΄λμμ μΆ©λμ νΌνκΈ° μν΄ μ΅μ μ λΉνμ±νν¨</Data></Cell> | ||
433 | </Row> | ||
434 | <Row ss:AutoFitHeight="0"> | ||
435 | <Cell><Data ss:Type="String">panel_preferences_graphics3.xml</Data></Cell> | ||
436 | <Cell><Data ss:Type="String">/Display panel 2/debug beacon line width</Data></Cell> | ||
437 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
438 | <Cell ss:Index="5"><Data ss:Type="String">Debug Beacon Line Width:</Data></Cell> | ||
439 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">νμ μ κ΅΅κΈ°</Data></Cell> | ||
440 | </Row> | ||
441 | <Row ss:AutoFitHeight="0"> | ||
442 | <Cell><Data ss:Type="String">panel_preferences_graphics3.xml</Data></Cell> | ||
443 | <Cell><Data ss:Type="String">/Display panel 2/probe_hardware_checkbox</Data></Cell> | ||
444 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
445 | <Cell ss:Index="5"><Data ss:Type="String">Auto-detect graphics hardware on next startup</Data></Cell> | ||
446 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λ€μ λ‘κ·ΈμΈ μ κ·Έλν½ νλμ¨μ΄ μλ κ°μ§</Data></Cell> | ||
447 | </Row> | ||
448 | <Row ss:AutoFitHeight="0"> | ||
449 | <Cell><Data ss:Type="String">panel_preferences_graphics3.xml</Data></Cell> | ||
450 | <Cell><Data ss:Type="String">/Display panel 2/probe_hardware_checkbox</Data></Cell> | ||
451 | <Cell><Data ss:Type="String">tool_tip</Data></Cell> | ||
452 | <Cell ss:Index="5"><Data ss:Type="String">Second Life automatically configures some graphics settings based on your hardware. If you install new hardware, you should have Second Life detect it again.</Data></Cell> | ||
453 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μλμΌλ‘ νλμ¨μ΄μ μ ν©ν κ·Έλν½ μΈν μ ν©λλ€. μλ‘μ΄ νλμ¨μ΄λ₯Ό μΈμ€ν¨ ν κ²½μ° μΈμ»¨λλΌμ΄νλ₯Ό μ¬μΈμ μν€μμμ€</Data></Cell> | ||
454 | </Row> | ||
455 | <Row ss:AutoFitHeight="0"> | ||
456 | <Cell><Data ss:Type="String">panel_preferences_popups.xml</Data></Cell> | ||
457 | <Cell><Data ss:Type="String">/popups</Data></Cell> | ||
458 | <Cell><Data ss:Type="String">title</Data></Cell> | ||
459 | <Cell ss:Index="5"><Data ss:Type="String">Popups</Data></Cell> | ||
460 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">νμ </Data></Cell> | ||
461 | </Row> | ||
462 | <Row ss:AutoFitHeight="0"> | ||
463 | <Cell><Data ss:Type="String">panel_preferences_popups.xml</Data></Cell> | ||
464 | <Cell><Data ss:Type="String">/popups/accept_new_inventory</Data></Cell> | ||
465 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
466 | <Cell ss:Index="5"><Data ss:Type="String">Automatically accept</Data></Cell> | ||
467 | <Cell ss:Index="7" ss:StyleID="s25"><Data ss:Type="String">μλ μλ½</Data></Cell> | ||
468 | </Row> | ||
469 | <Row ss:AutoFitHeight="0"> | ||
470 | <Cell><Data ss:Type="String">panel_preferences_popups.xml</Data></Cell> | ||
471 | <Cell><Data ss:Type="String">/popups/show_new_inventory</Data></Cell> | ||
472 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
473 | <Cell ss:Index="5"><Data ss:Type="String">Automatically view after accepting</Data></Cell> | ||
474 | <Cell ss:Index="7" ss:StyleID="s25"><Data ss:Type="String">μλ μλ½ ν νμΈ</Data></Cell> | ||
475 | </Row> | ||
476 | <Row ss:AutoFitHeight="0"> | ||
477 | <Cell><Data ss:Type="String">panel_preferences_web.xml</Data></Cell> | ||
478 | <Cell><Data ss:Type="String">/web</Data></Cell> | ||
479 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
480 | <Cell ss:Index="5"><Data ss:Type="String">Web</Data></Cell> | ||
481 | <Cell ss:Index="7" ss:StyleID="s25"><Data ss:Type="String">μΉ</Data></Cell> | ||
482 | </Row> | ||
483 | <Row ss:AutoFitHeight="0"> | ||
484 | <Cell><Data ss:Type="String">panel_preferences_web.xml</Data></Cell> | ||
485 | <Cell><Data ss:Type="String">/web/cache_size_label_l</Data></Cell> | ||
486 | <Cell ss:Index="5"><Data ss:Type="String">Browser cache:</Data></Cell> | ||
487 | <Cell ss:Index="7" ss:StyleID="s25"><Data ss:Type="String">λΈλΌμ°μ μΊμ¬</Data></Cell> | ||
488 | </Row> | ||
489 | <Row ss:AutoFitHeight="0"> | ||
490 | <Cell><Data ss:Type="String">panel_preferences_web.xml</Data></Cell> | ||
491 | <Cell><Data ss:Type="String">/web/clear_cache</Data></Cell> | ||
492 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
493 | <Cell ss:Index="5"><Data ss:Type="String">Clear Now</Data></Cell> | ||
494 | <Cell ss:Index="7" ss:StyleID="s25"><Data ss:Type="String">μ§κΈ μμ </Data></Cell> | ||
495 | </Row> | ||
496 | <Row ss:AutoFitHeight="0"> | ||
497 | <Cell><Data ss:Type="String">panel_preferences_web.xml</Data></Cell> | ||
498 | <Cell><Data ss:Type="String">/web/cookie_label</Data></Cell> | ||
499 | <Cell ss:Index="5"><Data ss:Type="String">Cookies:</Data></Cell> | ||
500 | <Cell ss:Index="7" ss:StyleID="s25"><Data ss:Type="String">μΏ ν€</Data></Cell> | ||
501 | </Row> | ||
502 | <Row ss:AutoFitHeight="0"> | ||
503 | <Cell><Data ss:Type="String">panel_preferences_web.xml</Data></Cell> | ||
504 | <Cell><Data ss:Type="String">/web/cookies_enabled</Data></Cell> | ||
505 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
506 | <Cell ss:Index="5"><Data ss:Type="String">Accept cookies from sites</Data></Cell> | ||
507 | <Cell ss:Index="7" ss:StyleID="s25"><Data ss:Type="String">μ¬μ΄νΈλ‘ λΆν° μΏ ν€ μλ½</Data></Cell> | ||
508 | </Row> | ||
509 | <Row ss:AutoFitHeight="0"> | ||
510 | <Cell><Data ss:Type="String">panel_preferences_web.xml</Data></Cell> | ||
511 | <Cell><Data ss:Type="String">/web/clear_cookies</Data></Cell> | ||
512 | <Cell><Data ss:Type="String">label</Data></Cell> | ||
513 | <Cell ss:Index="5"><Data ss:Type="String">Clear Now</Data></Cell> | ||
514 | <Cell ss:Index="7" ss:StyleID="s25"><Data ss:Type="String">μ§κΈ μμ </Data></Cell> | ||
515 | </Row> | ||
516 | <Row ss:AutoFitHeight="0" ss:Height="115.5"> | ||
517 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
518 | <Cell><Data ss:Type="String">//errors/invalid_tport</Data></Cell> | ||
519 | <Cell ss:Index="5" ss:StyleID="s24"><Data ss:Type="String">Problem encountered processing your teleport request. You may need to log back in before you can teleport. If you continue to get this message, please check the Tech Support FAQ at: www.secondlife.com/support</Data></Cell> | ||
520 | <Cell ss:Index="7" ss:StyleID="s25"><Data ss:Type="String">ν λ ν¬νΈμ€ λ¬Έμ κ° λ°μνμΌλ©° λ€μ λ‘κ·ΈμΈ νμμμ€, κ³μ κ°μ λ¬Έμ κ° λ°μν κ²½μ°μλ www.secondlife.com/supportμ Tech Support FAQλ₯Ό νμΈν΄ μ£Όμμμ€. </Data></Cell> | ||
521 | </Row> | ||
522 | <Row ss:AutoFitHeight="0" ss:Height="115.5"> | ||
523 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
524 | <Cell><Data ss:Type="String">//errors/invalid_region_handoff</Data></Cell> | ||
525 | <Cell ss:Index="5" ss:StyleID="s24"><Data ss:Type="String">Problem encountered processing your region crossing. You may need to log back in before you can cross regions. If you continue to get this message, please check the Tech Support FAQ at: www.secondlife.com/support.</Data></Cell> | ||
526 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ§μ μ΄λμ€ λ¬Έμ κ° λ°μνμΌλ©° λ€μ λ‘κ·ΈμΈ νμμμ€, κ³μ κ°μ λ¬Έμ κ° λ°μν κ²½μ°μλ www.secondlife.com/supportμ Tech Support FAQλ₯Ό νμΈν΄ μ£Όμμμ€. </Data></Cell> | ||
527 | </Row> | ||
528 | <Row ss:AutoFitHeight="0" ss:Height="82.5"> | ||
529 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
530 | <Cell><Data ss:Type="String">//errors/blocked_tport</Data></Cell> | ||
531 | <Cell ss:Index="5" ss:StyleID="s24"><Data ss:Type="String">Sorry, teleport is currently blocked. Try again in a moment. If you still cannot teleport, please log out and log back in to resolve the problem.</Data></Cell> | ||
532 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">νμ¬ ν λ ν¬νΈκ° κΈμ§λμμ΅λλ€, μ μν λ€μ μλ νμμμ€. κ³μ ν λ ν¬νΈμ λ¬Έμ κ° μμκ²½μ° λ€μ λ‘κ·ΈμΈ νμμμ€.</Data></Cell> | ||
533 | </Row> | ||
534 | <Row ss:AutoFitHeight="0"> | ||
535 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
536 | <Cell><Data ss:Type="String">//errors/nolandmark_tport</Data></Cell> | ||
537 | <Cell ss:Index="5"><Data ss:Type="String">Sorry, but system was unable to locate landmark destination.</Data></Cell> | ||
538 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λλλ§ν¬ μμ±μ λ¬Έμ κ° μμ΅λλ€</Data></Cell> | ||
539 | </Row> | ||
540 | <Row ss:AutoFitHeight="0" ss:Height="49.5"> | ||
541 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
542 | <Cell><Data ss:Type="String">//errors/timeout_tport</Data></Cell> | ||
543 | <Cell ss:Index="5" ss:StyleID="s24"><Data ss:Type="String">Sorry, but system was unable to complete the teleport connection. Try again in a moment.</Data></Cell> | ||
544 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">ν λ ν¬νΈμ€ λ¬Έμ κ° λ°μνμΌλ©° μ μν λ€μ μλ νμμμ€.</Data></Cell> | ||
545 | </Row> | ||
546 | <Row ss:AutoFitHeight="0"> | ||
547 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
548 | <Cell><Data ss:Type="String">//errors/noaccess_tport</Data></Cell> | ||
549 | <Cell ss:Index="5"><Data ss:Type="String">Sorry, you do not have access to that teleport destination.</Data></Cell> | ||
550 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">ν λ ν¬νΈ λͺ©μ μ§μ μ°κ²°νμ§ λͺ»νμ΅λλ€.</Data></Cell> | ||
551 | </Row> | ||
552 | <Row ss:AutoFitHeight="0" ss:Height="82.5"> | ||
553 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
554 | <Cell><Data ss:Type="String">//errors/missing_attach_tport</Data></Cell> | ||
555 | <Cell ss:Index="5" ss:StyleID="s24"><Data ss:Type="String">Your attachments have not arrived yet. Try waiting for a few more seconds or log out and back in again before attempting to teleport.</Data></Cell> | ||
556 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λΆμ°©λ¬Όλ€μ΄ μμ§ λμ°©νμ§ λͺ»νμ΅λλ€. μ μν λ€μ λ‘κ·ΈμΈ ν΄λ³΄μμμ€.</Data></Cell> | ||
557 | </Row> | ||
558 | <Row ss:AutoFitHeight="0" ss:Height="99"> | ||
559 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
560 | <Cell><Data ss:Type="String">//errors/too_many_uploads_tport</Data></Cell> | ||
561 | <Cell ss:Index="5" ss:StyleID="s24"><Data ss:Type="String">The asset queue in this region is currently clogged so your teleport request will not be able to succeed in a timely manner. Please try again in a few minutes or go to a less busy area.</Data></Cell> | ||
562 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ μμ μκ° λ§μ ν λ ν¬νΈκ° λμ§ μμ΅λλ€. μ μν λ€μ μλ νμκ±°λ μ μμ μκ° μ μ μ§μμΌλ‘ ν λ ν¬νΈ νμμμ€.</Data></Cell> | ||
563 | </Row> | ||
564 | <Row ss:AutoFitHeight="0" ss:Height="66"> | ||
565 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
566 | <Cell><Data ss:Type="String">//errors/expired_tport</Data></Cell> | ||
567 | <Cell ss:Index="5" ss:StyleID="s24"><Data ss:Type="String">Sorry, but the system was unable to complete your teleport request in a timely fashion. Please try again in a few minutes.</Data></Cell> | ||
568 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">ν λ ν¬νΈκ° μλ£λμ§ λͺ»νμΌλ©° μ μν λ€μ μλ νμμμ€.</Data></Cell> | ||
569 | </Row> | ||
570 | <Row ss:AutoFitHeight="0" ss:Height="66"> | ||
571 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
572 | <Cell><Data ss:Type="String">//errors/expired_region_handoff</Data></Cell> | ||
573 | <Cell ss:Index="5" ss:StyleID="s24"><Data ss:Type="String">Sorry, but the system was unable to complete your region crossing in a timely fashion. Please try again in a few minutes.</Data></Cell> | ||
574 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ§μ μ΄λμ€ λ¬Έμ κ° λ°μνμΌλ©° λ€μ μλ νμμμ€.</Data></Cell> | ||
575 | </Row> | ||
576 | <Row ss:AutoFitHeight="0" ss:Height="82.5"> | ||
577 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
578 | <Cell><Data ss:Type="String">//errors/no_host</Data></Cell> | ||
579 | <Cell ss:Index="5" ss:StyleID="s24"><Data ss:Type="String">Unable to find teleport destination. The destination may be temporarily unavailable or no longer exists. Please try again in a few minutes.</Data></Cell> | ||
580 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">ν λ ν¬νΈ λͺ©μ μ§λ₯Ό μ°Ύμ μ μμ΅λλ€. λͺ©μ μ§κ° μ μ μ ν¨νμ§ μκ±°λ λ μ΄μ μ‘΄μ¬νμ§ μμ μ μμ΅λλ€. μ μν λ€μ μλ νμμμ€.</Data></Cell> | ||
581 | </Row> | ||
582 | <Row ss:AutoFitHeight="0"> | ||
583 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
584 | <Cell><Data ss:Type="String">//progress/sending_dest</Data></Cell> | ||
585 | <Cell ss:Index="5"><Data ss:Type="String">Sending to destination.</Data></Cell> | ||
586 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λͺ©μ μ§λ‘ μ΄λ</Data></Cell> | ||
587 | </Row> | ||
588 | <Row ss:AutoFitHeight="0"> | ||
589 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
590 | <Cell><Data ss:Type="String">//progress/redirecting</Data></Cell> | ||
591 | <Cell ss:Index="5"><Data ss:Type="String">Redirecting to different location.</Data></Cell> | ||
592 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λ€λ₯Έ μ₯μλ‘ μ¬μ€μ </Data></Cell> | ||
593 | </Row> | ||
594 | <Row ss:AutoFitHeight="0"> | ||
595 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
596 | <Cell><Data ss:Type="String">//progress/relaying</Data></Cell> | ||
597 | <Cell ss:Index="5"><Data ss:Type="String">Relaying to destination.</Data></Cell> | ||
598 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λͺ©μ μ§ κ΅μ²΄</Data></Cell> | ||
599 | </Row> | ||
600 | <Row ss:AutoFitHeight="0"> | ||
601 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
602 | <Cell><Data ss:Type="String">//progress/sending_home</Data></Cell> | ||
603 | <Cell ss:Index="5"><Data ss:Type="String">Sending home location request.</Data></Cell> | ||
604 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">ν μ§μ μμ² λ³΄λ΄κΈ°</Data></Cell> | ||
605 | </Row> | ||
606 | <Row ss:AutoFitHeight="0"> | ||
607 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
608 | <Cell><Data ss:Type="String">//progress/sending_landmark</Data></Cell> | ||
609 | <Cell ss:Index="5"><Data ss:Type="String">Sending landmark location request.</Data></Cell> | ||
610 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λλλ§ν¬ μ§μ μμ² λ³΄λ΄κΈ°</Data></Cell> | ||
611 | </Row> | ||
612 | <Row ss:AutoFitHeight="0"> | ||
613 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
614 | <Cell><Data ss:Type="String">//progress/completing</Data></Cell> | ||
615 | <Cell ss:Index="5"><Data ss:Type="String">Completing teleport.</Data></Cell> | ||
616 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">ν λ ν¬νΈ μλ£</Data></Cell> | ||
617 | </Row> | ||
618 | <Row ss:AutoFitHeight="0"> | ||
619 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
620 | <Cell><Data ss:Type="String">//progress/resolving</Data></Cell> | ||
621 | <Cell ss:Index="5"><Data ss:Type="String">Resolving destination.</Data></Cell> | ||
622 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λͺ©μ μ§ νμ </Data></Cell> | ||
623 | </Row> | ||
624 | <Row ss:AutoFitHeight="0"> | ||
625 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
626 | <Cell><Data ss:Type="String">//progress/contacting</Data></Cell> | ||
627 | <Cell ss:Index="5"><Data ss:Type="String">Contacting new region.</Data></Cell> | ||
628 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">μ μ§μ μ μ</Data></Cell> | ||
629 | </Row> | ||
630 | <Row ss:AutoFitHeight="0"> | ||
631 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
632 | <Cell><Data ss:Type="String">//progress/arriving</Data></Cell> | ||
633 | <Cell ss:Index="5"><Data ss:Type="String">Arriving...</Data></Cell> | ||
634 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">λμ°©</Data></Cell> | ||
635 | </Row> | ||
636 | <Row ss:AutoFitHeight="0"> | ||
637 | <Cell><Data ss:Type="String">teleport_strings.xml</Data></Cell> | ||
638 | <Cell><Data ss:Type="String">//progress/requesting</Data></Cell> | ||
639 | <Cell ss:Index="5"><Data ss:Type="String">Requesting Teleport...</Data></Cell> | ||
640 | <Cell ss:Index="7" ss:StyleID="s21"><Data ss:Type="String">ν λ ν¬νΈ</Data></Cell> | ||
641 | </Row> | ||
642 | </Table> | ||
643 | <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel"> | ||
644 | <Unsynced/> | ||
645 | <Selected/> | ||
646 | <TopRowVisible>27</TopRowVisible> | ||
647 | <Panes> | ||
648 | <Pane> | ||
649 | <Number>3</Number> | ||
650 | <ActiveRow>38</ActiveRow> | ||
651 | <RangeSelection>R39</RangeSelection> | ||
652 | </Pane> | ||
653 | </Panes> | ||
654 | <ProtectObjects>False</ProtectObjects> | ||
655 | <ProtectScenarios>False</ProtectScenarios> | ||
656 | </WorksheetOptions> | ||
657 | </Worksheet> | ||
658 | </Workbook> | ||
diff --git a/linden/indra/newview/skins/xui/ko/need_to_update.xml b/linden/indra/newview/skins/xui/ko/need_to_update.xml index b262393..9bd6732 100644 --- a/linden/indra/newview/skins/xui/ko/need_to_update.xml +++ b/linden/indra/newview/skins/xui/ko/need_to_update.xml | |||
@@ -1,2 +1,4028 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <strings /> | 2 | |
3 | <strings> | ||
4 | <string><a_file>alerts.xml</a_file> | ||
5 | <b_path>//WriteAnimationFail/message</b_path> | ||
6 | <c_attribute></c_attribute> | ||
7 | <d_old> | ||
8 | Failure writing animation data. | ||
9 | </d_old> | ||
10 | <e_new> | ||
11 | There was a problem writing animation data. Please try again later. | ||
12 | </e_new> | ||
13 | <f_old_trans> | ||
14 | μ λλ©μ΄μ λ°μ΄ν°λ₯Ό μ μ©νμ§ λͺ»νμ΅λλ€. | ||
15 | </f_old_trans> | ||
16 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
17 | <b_path>//RemoveFriend/message</b_path> | ||
18 | <c_attribute></c_attribute> | ||
19 | <d_old> | ||
20 | Do you want to remove [FIRST] [LAST] from your friends? | ||
21 | </d_old> | ||
22 | <e_new> | ||
23 | Do you want to remove [FIRST] [LAST] from your list of friends? | ||
24 | </e_new> | ||
25 | <f_old_trans> | ||
26 | [FIRST] [LAST]λμ μΉκ΅¬μμ μ κ±°νμκ² μ΅λκΉ? | ||
27 | </f_old_trans> | ||
28 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
29 | <b_path>//CreateGroupCanAfford/message</b_path> | ||
30 | <c_attribute></c_attribute> | ||
31 | <d_old> | ||
32 | Creating a group costs L$[COST]. | ||
33 | |||
34 | To maintain the group for more than three days, | ||
35 | you must reach a total of three or more members. | ||
36 | |||
37 | Create group? | ||
38 | </d_old> | ||
39 | <e_new> | ||
40 | Creating a group costs L$[COST]. | ||
41 | |||
42 | To maintain the group for more than three days, | ||
43 | you must reach a total of two or more members. | ||
44 | |||
45 | Create group? | ||
46 | </e_new> | ||
47 | <f_old_trans> | ||
48 | κ·Έλ£Ήμ μμ±νλ €λ©΄ L$[COST]κ° λλλ€. | ||
49 | |||
50 | κ·Έλ£Ήμ 3μΌ μ΄μ μ μ§νλ €λ©΄ | ||
51 | νμ μκ° μ΄ 3μΈ μ΄μμ΄ λμ΄μΌ ν©λλ€. | ||
52 | |||
53 | κ·Έλ£Ήμ μμ± νμκ² μ΅λκΉ? | ||
54 | </f_old_trans> | ||
55 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
56 | <b_path>//CreateGroupCannotAfford/message</b_path> | ||
57 | <c_attribute></c_attribute> | ||
58 | <d_old> | ||
59 | Creating a group costs L$[COST]. | ||
60 | You do not have enough money to create this group. | ||
61 | </d_old> | ||
62 | <e_new> | ||
63 | Creating a group costs L$[COST]. | ||
64 | You do not have enough L$ to create this group. | ||
65 | </e_new> | ||
66 | <f_old_trans> | ||
67 | κ·Έλ£Ήμ μμ±νλ €λ©΄ L$[COST]κ° λλλ€. | ||
68 | μκΈμ΄ λΆμ‘±νμ¬ μ΄ κ·Έλ£Ήμ μμ±ν μ μμ΅λλ€. | ||
69 | </f_old_trans> | ||
70 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
71 | <b_path>//GroupNameUsesReservedWord/message</b_path> | ||
72 | <c_attribute></c_attribute> | ||
73 | <d_old> | ||
74 | The group name uses a reserved word. Please | ||
75 | choose a different name. | ||
76 | </d_old> | ||
77 | <e_new> | ||
78 | The group name uses a censored word. Please | ||
79 | choose a different name. | ||
80 | </e_new> | ||
81 | <f_old_trans> | ||
82 | κ·Έλ£Ή μ΄λ¦μ μμ½λ λ¨μ΄κ° μ¬μ©λκ³ μμ΅λλ€. λ€λ₯Έ | ||
83 | μ΄λ¦μ μ ννμμμ€. | ||
84 | </f_old_trans> | ||
85 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
86 | <b_path>//SalePriceRestriction/message</b_path> | ||
87 | <c_attribute></c_attribute> | ||
88 | <d_old> | ||
89 | Sale price must be set to > L$0 if selling to anybody. | ||
90 | Please select an individual to sell to if selling for L$0. | ||
91 | </d_old> | ||
92 | <e_new> | ||
93 | Sale price must be set to more than L$0 if selling to anyone. | ||
94 | Please select an individual to sell to if selling for L$0. | ||
95 | </e_new> | ||
96 | <f_old_trans> | ||
97 | ν맀νλ κ²½μ°, ν맀 κ°κ²©μ > L$0(μΌ)λ‘ μ€μ λμ΄μΌ ν¨. | ||
98 | L$0λ‘ ν맀νλ κ²½μ°, ν μ¬λμ μ ννμμμ€. | ||
99 | </f_old_trans> | ||
100 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
101 | <b_path>//ConfirmLandSaleChange/message</b_path> | ||
102 | <c_attribute></c_attribute> | ||
103 | <d_old> | ||
104 | The selected [LAND_SIZE] sq. m. land is being set for sale. | ||
105 | Your selling price will be L$[SALE_PRICE] and will be authorized for sale to [NAME]. | ||
106 | |||
107 | Would you like to continue making this change? | ||
108 | </d_old> | ||
109 | <e_new> | ||
110 | The selected [LAND_SIZE] m2 land is being set for sale. | ||
111 | Your selling price will be L$[SALE_PRICE] and will be authorized for sale to [NAME]. | ||
112 | |||
113 | </e_new> | ||
114 | <f_old_trans> | ||
115 | μ νλ [LAND_SIZE] νλ°© λ―Έν°μ ν μ§κ° ν맀μ©μΌλ‘ μ€μ λμμ΅λλ€. | ||
116 | ν맀 κ°κ²©μ L$[SALE_PRICE]μ΄κ³ [NAME]μκ² νλ§€κ° μΉμΈλ©λλ€. | ||
117 | |||
118 | μ΄ λ³κ²½ μ¬νμ κ³μ μ μ©νμκ² μ΅λκΉ? | ||
119 | </f_old_trans> | ||
120 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
121 | <b_path>//ConfirmLandSaleChange/Continue</b_path> | ||
122 | <c_attribute></c_attribute> | ||
123 | <d_old> | ||
124 | Continue | ||
125 | </d_old> | ||
126 | <e_new> | ||
127 | OK | ||
128 | </e_new> | ||
129 | <f_old_trans> | ||
130 | κ³μ | ||
131 | </f_old_trans> | ||
132 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
133 | <b_path>//ReturnObjectsDeededToGroup/Return</b_path> | ||
134 | <c_attribute></c_attribute> | ||
135 | <d_old> | ||
136 | Return | ||
137 | </d_old> | ||
138 | <e_new> | ||
139 | OK | ||
140 | </e_new> | ||
141 | <f_old_trans> | ||
142 | λ°ν | ||
143 | </f_old_trans> | ||
144 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
145 | <b_path>//ReturnObjectsOwnedByUser/message</b_path> | ||
146 | <c_attribute></c_attribute> | ||
147 | <d_old> | ||
148 | Are you sure you want to return all objects owned by the | ||
149 | resident '[NAME]' on this parcel of land | ||
150 | back to their inventory? | ||
151 | |||
152 | Objects: [N] | ||
153 | </d_old> | ||
154 | <e_new> | ||
155 | Are you sure you want to return all objects owned by the | ||
156 | Resident '[NAME]' on this parcel of land | ||
157 | back to their inventory? | ||
158 | |||
159 | Objects: [N] | ||
160 | </e_new> | ||
161 | <f_old_trans> | ||
162 | μ΄ ν μ§ κ΅¬νμ μλ μ£Όλ―Ό '[NAME]' μμ μ μ€λΈμ νΈλ₯Ό | ||
163 | λͺ¨λ μ€λΈμ νΈ μΈλ²€ν 리μ | ||
164 | λ°ν νμκ² μ΅λκΉ? | ||
165 | |||
166 | μ€λΈμ νΈ: [N] | ||
167 | </f_old_trans> | ||
168 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
169 | <b_path>//ReturnObjectsOwnedByUser/Return</b_path> | ||
170 | <c_attribute></c_attribute> | ||
171 | <d_old> | ||
172 | Return | ||
173 | </d_old> | ||
174 | <e_new> | ||
175 | OK | ||
176 | </e_new> | ||
177 | <f_old_trans> | ||
178 | λ°ν | ||
179 | </f_old_trans> | ||
180 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
181 | <b_path>//ReturnObjectsOwnedBySelf/Return</b_path> | ||
182 | <c_attribute></c_attribute> | ||
183 | <d_old> | ||
184 | Return | ||
185 | </d_old> | ||
186 | <e_new> | ||
187 | OK | ||
188 | </e_new> | ||
189 | <f_old_trans> | ||
190 | λ°ν | ||
191 | </f_old_trans> | ||
192 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
193 | <b_path>//ReturnObjectsNotOwnedBySelf/Return</b_path> | ||
194 | <c_attribute></c_attribute> | ||
195 | <d_old> | ||
196 | Return | ||
197 | </d_old> | ||
198 | <e_new> | ||
199 | OK | ||
200 | </e_new> | ||
201 | <f_old_trans> | ||
202 | λ°ν | ||
203 | </f_old_trans> | ||
204 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
205 | <b_path>//ReturnObjectsNotOwnedByUser/Return</b_path> | ||
206 | <c_attribute></c_attribute> | ||
207 | <d_old> | ||
208 | Return | ||
209 | </d_old> | ||
210 | <e_new> | ||
211 | OK | ||
212 | </e_new> | ||
213 | <f_old_trans> | ||
214 | λ°ν | ||
215 | </f_old_trans> | ||
216 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
217 | <b_path>//ReturnAllTopObjects/Return</b_path> | ||
218 | <c_attribute></c_attribute> | ||
219 | <d_old> | ||
220 | Return | ||
221 | </d_old> | ||
222 | <e_new> | ||
223 | OK | ||
224 | </e_new> | ||
225 | <f_old_trans> | ||
226 | λ°ν | ||
227 | </f_old_trans> | ||
228 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
229 | <b_path>//DisableAllTopObjects/Disable</b_path> | ||
230 | <c_attribute></c_attribute> | ||
231 | <d_old> | ||
232 | Disable | ||
233 | </d_old> | ||
234 | <e_new> | ||
235 | OK | ||
236 | </e_new> | ||
237 | <f_old_trans> | ||
238 | λΉνμ± | ||
239 | </f_old_trans> | ||
240 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
241 | <b_path>//ReturnObjectsNotOwnedByGroup/Return</b_path> | ||
242 | <c_attribute></c_attribute> | ||
243 | <d_old> | ||
244 | Return | ||
245 | </d_old> | ||
246 | <e_new> | ||
247 | OK | ||
248 | </e_new> | ||
249 | <f_old_trans> | ||
250 | λ°ν | ||
251 | </f_old_trans> | ||
252 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
253 | <b_path>//UnableToDisableOutsideScripts/message</b_path> | ||
254 | <c_attribute></c_attribute> | ||
255 | <d_old> | ||
256 | Unable to disable outside scripts. | ||
257 | This entire region is health enabled (not safe). | ||
258 | Scripts must be allowed to run for guns to work. | ||
259 | </d_old> | ||
260 | <e_new> | ||
261 | Can not disable scripts. | ||
262 | This entire region is damage enabled. | ||
263 | Scripts must be allowed to run for weapons to work. | ||
264 | </e_new> | ||
265 | <f_old_trans> | ||
266 | μΈλΆ μ€ν¬λ¦½νΈλ₯Ό λΉνμ±νν μ μμ΅λλ€. | ||
267 | μ΄ μ 체 μ§μμ νμ± μνμ λλ€(μμ νμ§ μμ). | ||
268 | μ€ν¬λ¦½νΈλ μ΄μ΄ μλν μ μλλ‘ μ€νλμ΄μΌ ν©λλ€. | ||
269 | </f_old_trans> | ||
270 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
271 | <b_path>//ErrorEncodingSnapshot/message</b_path> | ||
272 | <c_attribute></c_attribute> | ||
273 | <d_old> | ||
274 | Error encoding snapshot! | ||
275 | </d_old> | ||
276 | <e_new> | ||
277 | Error encoding snapshot. | ||
278 | </e_new> | ||
279 | <f_old_trans> | ||
280 | μ€λ μ· μΈμ½λ© μ€ μ€λ₯κ° λ°μνμ΅λλ€. | ||
281 | </f_old_trans> | ||
282 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
283 | <b_path>//CannotWearTrash/message</b_path> | ||
284 | <c_attribute></c_attribute> | ||
285 | <d_old> | ||
286 | Cannot wear clothes or body parts that are in the trash | ||
287 | </d_old> | ||
288 | <e_new> | ||
289 | You can not wear clothes or body parts that are in the trash | ||
290 | </e_new> | ||
291 | <f_old_trans> | ||
292 | μ·μ μ°©μ©ν μ μκ±°λ μ 체λΆμκ° ν΄μ§ν΅μ μμ΅λλ€. | ||
293 | </f_old_trans> | ||
294 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
295 | <b_path>//CannotWearInfoNotComplete/message</b_path> | ||
296 | <c_attribute></c_attribute> | ||
297 | <d_old> | ||
298 | Cannot wear that item since the complete information set it not yet available. Please try again in a minute. | ||
299 | </d_old> | ||
300 | <e_new> | ||
301 | You can not wear that item because it has not yet loaded. Please try again in a minute. | ||
302 | </e_new> | ||
303 | <f_old_trans> | ||
304 | μ 체 μ λ³΄κ° μ€μ λμ§ μμ μ΄ μμ΄ν μ μ°©μ©ν μ μμ΅λλ€. μ μ νμ λ€μ μλν΄ μ£Όμμμ€. | ||
305 | </f_old_trans> | ||
306 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
307 | <b_path>//MustHaveAccountToLogInNoLinks/OK</b_path> | ||
308 | <c_attribute></c_attribute> | ||
309 | <d_old> | ||
310 | OK | ||
311 | </d_old> | ||
312 | <e_new> | ||
313 | Close | ||
314 | </e_new> | ||
315 | <f_old_trans> | ||
316 | νμΈ | ||
317 | </f_old_trans> | ||
318 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
319 | <b_path>//MustHaveAccountToLogIn/message</b_path> | ||
320 | <c_attribute></c_attribute> | ||
321 | <d_old> | ||
322 | You must have an account to connect to [SECOND_LIFE]. | ||
323 | |||
324 | Go to www.secondlife.com to create a new account? | ||
325 | </d_old> | ||
326 | <e_new> | ||
327 | You must have an account to connect to [SECOND_LIFE]. | ||
328 | |||
329 | Go to www.secondlife.com to create an account? | ||
330 | </e_new> | ||
331 | <f_old_trans> | ||
332 | [SECOND_LIFE]μ μ°κ²°νλ €λ©΄ κ³μ μ κ°κ³ μμ΄μΌ ν©λλ€. | ||
333 | |||
334 | www.secondlife.comμΌλ‘ μ΄λνμ¬ μλ‘μ΄ κ³μ μ λ§λμκ² μ΅λκΉ? | ||
335 | </f_old_trans> | ||
336 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
337 | <b_path>//AddClassified/message</b_path> | ||
338 | <c_attribute></c_attribute> | ||
339 | <d_old> | ||
340 | Classified ads appear in the 'Classified' section of the | ||
341 | Search directory for one week. | ||
342 | |||
343 | Fill out your ad, then click 'Publish...' to add it to the | ||
344 | directory. | ||
345 | |||
346 | You'll be asked for a price to pay when clicking Publish. | ||
347 | Paying more makes your ad appear higher in the list, and | ||
348 | also appear higher when people search for keywords. | ||
349 | </d_old> | ||
350 | <e_new> | ||
351 | Classified ads appear in the 'Classified' section of the | ||
352 | Search directory and on www.secondlife.com for one week. | ||
353 | |||
354 | Fill out your ad, then click 'Publish...' to add it to the | ||
355 | directory. | ||
356 | |||
357 | You'll be asked for a price to pay when clicking Publish. | ||
358 | Paying more makes your ad appear higher in the list, and | ||
359 | also appear higher when people search for keywords. | ||
360 | </e_new> | ||
361 | <f_old_trans> | ||
362 | κ΄κ³ κ° 1μ£ΌμΌ λμ κ²μ λλ ν 리μ 'κ΄κ³ ' μΉμ μ | ||
363 | λνλ©λλ€. | ||
364 | |||
365 | κ΄κ³ λ₯Ό μμ±ν ν 'κ²μνκΈ°...'λ₯Ό ν΄λ¦νμ¬ λλ ν 리μ | ||
366 | μΆκ°ν©λλ€. | ||
367 | |||
368 | κ²μνκΈ°λ₯Ό ν΄λ¦νλ©΄ μ§λΆν κ°κ²©μ 묻λ λ©μμ§κ° λνλ©λλ€. | ||
369 | λμ κ°κ²©μ μ§λΆν μλ‘ κ΄κ³ κ° λͺ©λ‘μμ λ λμ μμΉμ κ²μ¬λκ³ | ||
370 | ν€μλ κ²μ κ²°κ³Όμμ λ μ°μ μ μΌλ‘ νμλ©λλ€. | ||
371 | </f_old_trans> | ||
372 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
373 | <b_path>//DeleteClassified/Delete</b_path> | ||
374 | <c_attribute></c_attribute> | ||
375 | <d_old> | ||
376 | Delete | ||
377 | </d_old> | ||
378 | <e_new> | ||
379 | OK | ||
380 | </e_new> | ||
381 | <f_old_trans> | ||
382 | μμ | ||
383 | </f_old_trans> | ||
384 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
385 | <b_path>//DeleteAvatarPick/Delete</b_path> | ||
386 | <c_attribute></c_attribute> | ||
387 | <d_old> | ||
388 | Delete | ||
389 | </d_old> | ||
390 | <e_new> | ||
391 | OK | ||
392 | </e_new> | ||
393 | <f_old_trans> | ||
394 | μμ | ||
395 | </f_old_trans> | ||
396 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
397 | <b_path>//PromptGoToEventsPage/GotoPage</b_path> | ||
398 | <c_attribute></c_attribute> | ||
399 | <d_old> | ||
400 | Go to Page | ||
401 | </d_old> | ||
402 | <e_new> | ||
403 | OK | ||
404 | </e_new> | ||
405 | <f_old_trans> | ||
406 | νμ΄μ§λ‘ μ΄λ | ||
407 | </f_old_trans> | ||
408 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
409 | <b_path>//SelectItemToView/message</b_path> | ||
410 | <c_attribute></c_attribute> | ||
411 | <d_old> | ||
412 | Please select an item to view. | ||
413 | </d_old> | ||
414 | <e_new> | ||
415 | Please select a proposal to view. | ||
416 | </e_new> | ||
417 | <f_old_trans> | ||
418 | λ³΄λ €λ νλͺ©μ μ ννμμμ€. | ||
419 | </f_old_trans> | ||
420 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
421 | <b_path>//GoToAuctionPage/GotoPage</b_path> | ||
422 | <c_attribute></c_attribute> | ||
423 | <d_old> | ||
424 | Go to Page | ||
425 | </d_old> | ||
426 | <e_new> | ||
427 | OK | ||
428 | </e_new> | ||
429 | <f_old_trans> | ||
430 | νμ΄μ§λ‘ μ΄λ | ||
431 | </f_old_trans> | ||
432 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
433 | <b_path>//ScriptCannotUndo/message</b_path> | ||
434 | <c_attribute></c_attribute> | ||
435 | <d_old> | ||
436 | Could not undo all changes in your version of the script. | ||
437 | Would you like to load the server's last saved version? | ||
438 | (Note: this operation cannot be undone.) | ||
439 | </d_old> | ||
440 | <e_new> | ||
441 | Could not undo all changes in your version of the script. | ||
442 | Would you like to load the server's last saved version? | ||
443 | (**Warning** This operation cannot be undone.) | ||
444 | </e_new> | ||
445 | <f_old_trans> | ||
446 | μ€ν¬λ¦½νΈ λ²μ μ λν λͺ¨λ λ³κ²½ μ¬νμ μ·¨μν μ μμ΅λλ€. | ||
447 | μλ²μ μ μ₯λ μ΅μ λ²μ μ λ‘λ νμκ² μ΅λκΉ? | ||
448 | (μ°Έκ³ : μ΄ μμ μ μ·¨μν μ μμ΅λλ€.) | ||
449 | </f_old_trans> | ||
450 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
451 | <b_path>//ScriptCannotUndo/Yes</b_path> | ||
452 | <c_attribute></c_attribute> | ||
453 | <d_old> | ||
454 | Yes | ||
455 | </d_old> | ||
456 | <e_new> | ||
457 | OK | ||
458 | </e_new> | ||
459 | <f_old_trans> | ||
460 | μ | ||
461 | </f_old_trans> | ||
462 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
463 | <b_path>//ScriptCannotUndo/No</b_path> | ||
464 | <c_attribute></c_attribute> | ||
465 | <d_old> | ||
466 | No | ||
467 | </d_old> | ||
468 | <e_new> | ||
469 | Cancel | ||
470 | </e_new> | ||
471 | <f_old_trans> | ||
472 | μλμ€ | ||
473 | </f_old_trans> | ||
474 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
475 | <b_path>//SaveScriptFailObjectNotFound/message</b_path> | ||
476 | <c_attribute></c_attribute> | ||
477 | <d_old> | ||
478 | Could not save the script because the object it is on could not be found. | ||
479 | The object may be out of range or may have been deleted. | ||
480 | </d_old> | ||
481 | <e_new> | ||
482 | Could not save the script because the object it is in could not be found. | ||
483 | The object may be out of range or may have been deleted. | ||
484 | </e_new> | ||
485 | <f_old_trans> | ||
486 | μ€ν¬λ¦½νΈκ° μμΉν μ€λΈμ νΈλ₯Ό μ°Ύμ μ μμ΄ μ€ν¬λ¦½νΈλ₯Ό μ μ₯ν μ μμ΅λλ€. | ||
487 | μ€λΈμ νΈκ° ν΄λΉ λ²μ λ°μ μκ±°λ μμ λμμ μ μμ΅λλ€. | ||
488 | </f_old_trans> | ||
489 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
490 | <b_path>//CannotLoadWearable/message</b_path> | ||
491 | <c_attribute></c_attribute> | ||
492 | <d_old> | ||
493 | Sorry, unable to load wearable. | ||
494 | </d_old> | ||
495 | <e_new> | ||
496 | Unable to load wearable. | ||
497 | </e_new> | ||
498 | <f_old_trans> | ||
499 | μ£μ‘ν©λλ€. μ°©μ©λ¬Όμ λ‘λν μ μμ΅λλ€. | ||
500 | </f_old_trans> | ||
501 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
502 | <b_path>//CannotConnectDNSError/message</b_path> | ||
503 | <c_attribute></c_attribute> | ||
504 | <d_old> | ||
505 | Unable to connect to [SECOND_LIFE]. | ||
506 | DNS could not resolve the host name. | ||
507 | Please verify that you can connect to the www.secondlife.com | ||
508 | web site. If you can, but continue to receive this error, | ||
509 | please go to the support section and report this problem. | ||
510 | </d_old> | ||
511 | <e_new> | ||
512 | Unable to connect to [SECOND_LIFE]. | ||
513 | DNS could not resolve the host name. | ||
514 | Please verify that you can connect to the www.secondlife.com | ||
515 | web site. If you can, but continue to receive this error, | ||
516 | please go to www.secondlife.com/support and report this problem. | ||
517 | </e_new> | ||
518 | <f_old_trans> | ||
519 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | ||
520 | DNSκ° νΈμ€νΈ μ΄λ¦μ νμΈν μ μμ΅λλ€. | ||
521 | www.secondlife.com μΉμ¬μ΄νΈμ μ°κ²°ν μ μλμ§ μ¬λΆλ₯Ό | ||
522 | νμΈνμμμ€. μ°κ²°μ΄ λμμ§λ§ μ΄ μ€λ₯κ° κ³μ λ°μνλ κ²½μ° | ||
523 | μ§μ μΉμ μΌλ‘ μ΄λνμ¬ μ΄ λ¬Έμ λ₯Ό μ κ³ ν΄ μ£Όμμμ€. | ||
524 | </f_old_trans> | ||
525 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
526 | <b_path>//CannotConnectSecurityError/message</b_path> | ||
527 | <c_attribute></c_attribute> | ||
528 | <d_old> | ||
529 | Unable to establish a secure connection to the login server. | ||
530 | Often this means that your computer's clock is set incorrectly. | ||
531 | Please go to Control Panels and make sure the time and date | ||
532 | are set correctly. | ||
533 | |||
534 | If you continue to receive this error, please go | ||
535 | to the Support section of the SecondLife.com web site | ||
536 | and report the problem. | ||
537 | </d_old> | ||
538 | <e_new> | ||
539 | Unable to establish a secure connection to the login server. | ||
540 | Often this means that your computer's clock is set incorrectly. | ||
541 | Please ensure the time and date are set correctly. | ||
542 | |||
543 | If you continue to receive this error, please go | ||
544 | to www.secondlife.com/support | ||
545 | and report the problem. | ||
546 | </e_new> | ||
547 | <f_old_trans> | ||
548 | λ‘κ·ΈμΈ μλ²μ λν 보μ μ°κ²°μ μ€μ ν μ μμ΅λλ€. | ||
549 | μ’ μ’ μ΄ λ¬Έμ λ μ»΄ν¨ν° μκ³κ° μλͺ» μ€μ λ κ²μ μλ―Έν©λλ€. | ||
550 | μ μ΄νμΌλ‘ μ΄λνμ¬ μκ°κ³Ό λ μ§κ° μ¬λ°λ₯΄κ² μ€μ λμλμ§ | ||
551 | νμΈνμμμ€. | ||
552 | |||
553 | μ΄ μ€λ₯κ° κ³μν΄μ λ°μνλ κ²½μ°μλ | ||
554 | SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μΌλ‘ μ΄λν ν | ||
555 | λ¬Έμ λ₯Ό μ κ³ ν΄ μ£Όμμμ€. | ||
556 | </f_old_trans> | ||
557 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
558 | <b_path>//CannotConnectVerificationError/message</b_path> | ||
559 | <c_attribute></c_attribute> | ||
560 | <d_old> | ||
561 | Unable to connect to [SECOND_LIFE]. | ||
562 | The login server couldn't verify itself via SSL. | ||
563 | If you continue to receive this error, please go | ||
564 | to the Support section of the SecondLife.com web site | ||
565 | and report the problem. | ||
566 | </d_old> | ||
567 | <e_new> | ||
568 | Unable to connect to [SECOND_LIFE]. | ||
569 | The login server couldn't verify itself via SSL. | ||
570 | If you continue to receive this error, please go | ||
571 | to www.secondlife.com/support | ||
572 | and report the problem. | ||
573 | </e_new> | ||
574 | <f_old_trans> | ||
575 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | ||
576 | SSLμ ν΅ν΄ λ‘κ·ΈμΈ μλ²κ° νμΈλμ§ μμ΅λλ€. | ||
577 | μ΄ μ€λ₯κ° κ³μν΄μ λ°μνλ κ²½μ°μλ | ||
578 | SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μΌλ‘ μ΄λν λ€μ | ||
579 | λ¬Έμ λ₯Ό μ κ³ ν΄ μ£Όμμμ€. | ||
580 | </f_old_trans> | ||
581 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
582 | <b_path>//CannotConnectUnknownErrorWindows/message</b_path> | ||
583 | <c_attribute></c_attribute> | ||
584 | <d_old> | ||
585 | Unable to connect to [SECOND_LIFE]. | ||
586 | Despite our best efforts, something unexpected has gone wrong. | ||
587 | Please go to the Support section of the SecondLife.com web site | ||
588 | and report the problem. If possible, include your SecondLife.log | ||
589 | file from: C:\Documents and Settings\(name)\Application Data\SecondLife\logs | ||
590 | Thank you. | ||
591 | </d_old> | ||
592 | <e_new> | ||
593 | Unable to connect to [SECOND_LIFE]. | ||
594 | Despite our best efforts, something unexpected has gone wrong. | ||
595 | Please go to www.secondlife.com/support | ||
596 | and report the problem. If possible, include your SecondLife.log | ||
597 | file from: C:\Documents and Settings\(name)\Application Data\SecondLife\logs | ||
598 | Thank you. | ||
599 | </e_new> | ||
600 | <f_old_trans> | ||
601 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | ||
602 | μ΅μ μ λ Έλ ₯μλ λΆκ΅¬νκ³ μμμΉ λͺ»ν λ¬Έμ κ° λ°μνμ΅λλ€. | ||
603 | SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μμ | ||
604 | λ¬Έμ λ₯Ό μ κ³ ν΄ μ£Όμμμ€. κ°λ₯νλ©΄ C:\Documents and Settings\(name)\Application Data\SecondLife\logsμ | ||
605 | μλ κ·νμ SecondLife.log νμΌμ ν¨κ» 보λ΄μ£Όμμμ€. | ||
606 | κ°μ¬ν©λλ€. | ||
607 | </f_old_trans> | ||
608 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
609 | <b_path>//CannotConnectUnknownErrorDarwin/message</b_path> | ||
610 | <c_attribute></c_attribute> | ||
611 | <d_old> | ||
612 | Unable to connect to [SECOND_LIFE]. | ||
613 | Despite our best efforts, something unexpected has gone wrong. | ||
614 | Please go to the Support section of the SecondLife.com web site | ||
615 | and report the problem. If possible, include your SecondLife.log | ||
616 | file from: ~/Library/Application Support/SecondLife/logs | ||
617 | Thank you. | ||
618 | </d_old> | ||
619 | <e_new> | ||
620 | Unable to connect to [SECOND_LIFE]. | ||
621 | Despite our best efforts, something unexpected has gone wrong. | ||
622 | Please go to www.secondlife.com/support | ||
623 | and report the problem. If possible, include your SecondLife.log | ||
624 | file from: ~/Library/Application Support/SecondLife/logs | ||
625 | Thank you. | ||
626 | </e_new> | ||
627 | <f_old_trans> | ||
628 | [SECOND_LIFE]μ μ°κ²°νμ§ λͺ»νμ΅λλ€. | ||
629 | μ΅μ μ λ Έλ ₯μλ λΆκ΅¬νκ³ μμμΉ λͺ»ν λ¬Έμ κ° λ°μνμ΅λλ€. | ||
630 | SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μμ | ||
631 | λ¬Έμ λ₯Ό μ κ³ ν΄ μ£Όμμμ€. κ°λ₯νλ©΄ ~/Library/Application Support/SecondLife/logsμ | ||
632 | μλ κ·νμ SecondLife.log νμΌμ ν¨κ» 보λ΄μ£Όμμμ€. | ||
633 | κ°μ¬ν©λλ€. | ||
634 | </f_old_trans> | ||
635 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
636 | <b_path>//CannotResolveLoginToken/message</b_path> | ||
637 | <c_attribute></c_attribute> | ||
638 | <d_old> | ||
639 | There was a problem resolving your login | ||
640 | authentication token. Please try logging in | ||
641 | again. If you continue to receive this error, | ||
642 | please goto the Support section of the | ||
643 | SecondLife.com web site. | ||
644 | </d_old> | ||
645 | <e_new> | ||
646 | There was a problem resolving your login | ||
647 | authentication token. Please try logging in | ||
648 | again. If you continue to receive this error, | ||
649 | please go to www.secondlife.com/support. | ||
650 | </e_new> | ||
651 | <f_old_trans> | ||
652 | λ‘κ·ΈμΈ μΈμ¦μ νμΈνλ μ€ λ¬Έμ κ° | ||
653 | λ°μνμ΅λλ€. λ‘κ·ΈμΈμ λ€μ μλν΄ | ||
654 | 보μλ μ€λ₯κ° κ³μν΄μ λ°μνλ κ²½μ°μλ | ||
655 | SecondLife.com μΉμ¬μ΄νΈμ Support μΉμ μμ κ΄λ ¨μ 보λ₯Ό μ°Έκ³ νμμμ€. | ||
656 | </f_old_trans> | ||
657 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
658 | <b_path>//CannotConnectNoMessage/message</b_path> | ||
659 | <c_attribute></c_attribute> | ||
660 | <d_old> | ||
661 | Unknown problem trying to connect. | ||
662 | (Blank error message from server.) | ||
663 | |||
664 | Please try again in a few minutes, or click Help | ||
665 | for advice and a link to the system status web page. | ||
666 | </d_old> | ||
667 | <e_new> | ||
668 | Unknown problem trying to connect. | ||
669 | |||
670 | Please try again in a few minutes, or click Help | ||
671 | for advice and a link to the system status web page. | ||
672 | </e_new> | ||
673 | <f_old_trans> | ||
674 | μ°κ²°μ μλνλ μ€ μ μ μλ λ¬Έμ κ° λ°μνμ΅λλ€. | ||
675 | (μλ²μ 곡백 μ€λ₯ λ©μμ§) | ||
676 | |||
677 | λͺ μ΄ νμ λ€μ μλνκ±°λ λμλ§μ ν΄λ¦νμ¬ | ||
678 | μμ€ν μν μΉ νμ΄μ§μ λν μ§μ μ 보 λ° λ§ν¬λ₯Ό νμΈνμμμ€. | ||
679 | </f_old_trans> | ||
680 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
681 | <b_path>//ClothingStillDownloading/message</b_path> | ||
682 | <c_attribute></c_attribute> | ||
683 | <d_old> | ||
684 | Your clothing is still downloading. | ||
685 | You can use the world normally, and other users | ||
686 | will see you correctly. | ||
687 | </d_old> | ||
688 | <e_new> | ||
689 | Your avatar is still downloading. | ||
690 | You can use [SECOND_LIFE] normally, and other Residents | ||
691 | will see you correctly. | ||
692 | </e_new> | ||
693 | <f_old_trans> | ||
694 | μμμ λ€μ΄λ‘λνλ μ€μ λλ€. | ||
695 | μΌλ°μ μΌλ‘ μΈμ»¨λλΌμ΄νλ₯Ό μ¬μ©ν μ μμΌλ©° λ€λ₯Έ μ¬μ©μμκ² | ||
696 | κ·νμ λͺ¨μ΅μ΄ μ λλ‘ νμλ κ²μ λλ€. | ||
697 | </f_old_trans> | ||
698 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
699 | <b_path>//WelcomeToSecondLife/message</b_path> | ||
700 | <c_attribute></c_attribute> | ||
701 | <d_old> | ||
702 | Welcome to [SECOND_LIFE]! | ||
703 | |||
704 | Use arrow keys to walk. | ||
705 | |||
706 | Please choose the male or female character. | ||
707 | You can change your mind later. | ||
708 | </d_old> | ||
709 | <e_new> | ||
710 | Welcome to [SECOND_LIFE]! | ||
711 | |||
712 | Use arrow keys to walk. | ||
713 | |||
714 | Please choose the male or female avatar. | ||
715 | You can change your mind later. | ||
716 | </e_new> | ||
717 | <f_old_trans> | ||
718 | [SECOND_LIFE]μ μ€μ κ²μ νμν©λλ€! | ||
719 | |||
720 | νμ΄ν ν€λ₯Ό μ΄μ©νμ¬ κ±Έμ μ μμ΅λλ€. | ||
721 | |||
722 | λ¨μ± λλ μ¬μ± μΊλ¦ν°λ₯Ό μ νν΄ μ£Όμμμ€. | ||
723 | μ°¨νμ λ³κ²½μ΄ κ°λ₯ν©λλ€. | ||
724 | </f_old_trans> | ||
725 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
726 | <b_path>//WelcomeToSecondLifeSimple/message</b_path> | ||
727 | <c_attribute></c_attribute> | ||
728 | <d_old> | ||
729 | Welcome to [SECOND_LIFE]! | ||
730 | |||
731 | Use arrow keys to walk. | ||
732 | |||
733 | Please choose the male or female character. | ||
734 | </d_old> | ||
735 | <e_new> | ||
736 | Welcome to [SECOND_LIFE]! | ||
737 | |||
738 | Use arrow keys to walk. | ||
739 | |||
740 | Please choose the male or female avatar. | ||
741 | </e_new> | ||
742 | <f_old_trans> | ||
743 | [SECOND_LIFE]μ μ€μ κ²μ νμν©λλ€! | ||
744 | |||
745 | νμ΄ν ν€λ₯Ό μ΄μ©νμ¬ κ±Έμ μ μμ΅λλ€. | ||
746 | |||
747 | λ¨μ± λλ μ¬μ± μΊλ¦ν°λ₯Ό μ νν΄ μ£Όμμμ€. | ||
748 | </f_old_trans> | ||
749 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
750 | <b_path>//RegionNoTerraforming/message</b_path> | ||
751 | <c_attribute></c_attribute> | ||
752 | <d_old> | ||
753 | The region [REGION] does not allow terraforming. | ||
754 | You will need to buy land in another part of the world | ||
755 | to terraform it. | ||
756 | </d_old> | ||
757 | <e_new> | ||
758 | The region [REGION] does not allow terraforming. | ||
759 | </e_new> | ||
760 | <f_old_trans> | ||
761 | μ§μ [REGION]μ(λ) μ§ν λ³κ²½μ΄ νμ©λμ§ μμ΅λλ€. | ||
762 | μ΄ μ§μμ μ§νμ λ³κ²½νλ €λ©΄ λ€λ₯Έ ν μ§λ₯Ό | ||
763 | 맀μ ν΄μΌ ν©λλ€. | ||
764 | </f_old_trans> | ||
765 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
766 | <b_path>//TooManyItems/message</b_path> | ||
767 | <c_attribute></c_attribute> | ||
768 | <d_old> | ||
769 | Cannot give that many items in a single inventory transfer. | ||
770 | </d_old> | ||
771 | <e_new> | ||
772 | Cannot give more than 42 items in a single inventory transfer. | ||
773 | </e_new> | ||
774 | <f_old_trans> | ||
775 | μ΄λ§νΌ λ§μ μμ΄ν μ νλ²μ μΈλ²€ν 리 μ μ‘μΌλ‘ λ³΄λΌ μ μμ΅λλ€. | ||
776 | </f_old_trans> | ||
777 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
778 | <b_path>//NoItems/message</b_path> | ||
779 | <c_attribute></c_attribute> | ||
780 | <d_old> | ||
781 | No items you can give. | ||
782 | </d_old> | ||
783 | <e_new> | ||
784 | You do not have permission to transfer | ||
785 | the selected items. | ||
786 | </e_new> | ||
787 | <f_old_trans> | ||
788 | μ 곡ν μμ΄ν μμ. | ||
789 | </f_old_trans> | ||
790 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
791 | <b_path>//CannotGiveCategory/message</b_path> | ||
792 | <c_attribute></c_attribute> | ||
793 | <d_old> | ||
794 | Unable to give inventory category. | ||
795 | </d_old> | ||
796 | <e_new> | ||
797 | You do not have permission to transfer | ||
798 | the selected folder. | ||
799 | </e_new> | ||
800 | <f_old_trans> | ||
801 | μμ΄ν μΉ΄ν κ³ λ¦¬λ₯Ό μ 곡ν μ μμ΅λλ€. | ||
802 | </f_old_trans> | ||
803 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
804 | <b_path>//InvalidUUID/message</b_path> | ||
805 | <c_attribute></c_attribute> | ||
806 | <d_old> | ||
807 | Not a valid uuid | ||
808 | </d_old> | ||
809 | <e_new> | ||
810 | Not a valid UUID. | ||
811 | </e_new> | ||
812 | <f_old_trans> | ||
813 | μ¬λ°λ₯Έuuidκ° μλ | ||
814 | </f_old_trans> | ||
815 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
816 | <b_path>//TakeLockedOrNotOwnedBy/message</b_path> | ||
817 | <c_attribute></c_attribute> | ||
818 | <d_old> | ||
819 | At least one object is locked or not owned by you. | ||
820 | If an object is not owned by you and you take it, | ||
821 | next owner permissions will be applied to it and | ||
822 | possibly restrict your ability to modify or copy it | ||
823 | in the future. | ||
824 | However, you can still take the current selection. | ||
825 | Are you sure you want to take these itmes? | ||
826 | </d_old> | ||
827 | <e_new> | ||
828 | At least one object is locked or not owned by you. | ||
829 | If an object is not owned by you and you take it, | ||
830 | next owner permissions will be applied to it and | ||
831 | possibly restrict your ability to modify or copy it. | ||
832 | |||
833 | Are you sure you want to take these itmes? | ||
834 | </e_new> | ||
835 | <f_old_trans> | ||
836 | 1κ° μ΄μμ μ€λΈμ νΈκ° μ 겨 μκ±°λ κ·νμ μμ κ° μλλλ€. | ||
837 | κ·νμ μμ κ° μλ μ€λΈμ νΈλ₯Ό κ·νκ° κ°μ§λ©΄ | ||
838 | μ΄ μ€λΈμ νΈμ λ€μ μμ μ κΆνμ΄ μ μ©λμ΄ | ||
839 | μ΄νμ κ·νκ° μμ νκ±°λ 볡μ¬ν κΆνμ΄ μ νλ μ | ||
840 | μμ΅λλ€. | ||
841 | νμ§λ§ νμ¬ μνλ μμ΄ν μ μ νν μ μμ΅λλ€. | ||
842 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? | ||
843 | </f_old_trans> | ||
844 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
845 | <b_path>//TakeLockedOrNotOwnedBy/Yes</b_path> | ||
846 | <c_attribute></c_attribute> | ||
847 | <d_old> | ||
848 | Yes | ||
849 | </d_old> | ||
850 | <e_new> | ||
851 | OK | ||
852 | </e_new> | ||
853 | <f_old_trans> | ||
854 | μ | ||
855 | </f_old_trans> | ||
856 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
857 | <b_path>//TakeLockedOrNotOwnedBy/No</b_path> | ||
858 | <c_attribute></c_attribute> | ||
859 | <d_old> | ||
860 | No | ||
861 | </d_old> | ||
862 | <e_new> | ||
863 | Cancel | ||
864 | </e_new> | ||
865 | <f_old_trans> | ||
866 | μλμ€ | ||
867 | </f_old_trans> | ||
868 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
869 | <b_path>//PromptGoToCurrencyPage/GotoPage</b_path> | ||
870 | <c_attribute></c_attribute> | ||
871 | <d_old> | ||
872 | Go to Page | ||
873 | </d_old> | ||
874 | <e_new> | ||
875 | OK | ||
876 | </e_new> | ||
877 | <f_old_trans> | ||
878 | νμ΄μ§λ‘ μ΄λ | ||
879 | </f_old_trans> | ||
880 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
881 | <b_path>//UnableToLinkObjects/message</b_path> | ||
882 | <c_attribute></c_attribute> | ||
883 | <d_old> | ||
884 | Unable to link these [COUNT] objects. | ||
885 | You can link a maximum of [MAX] objects. | ||
886 | Try selecting fewer objects. | ||
887 | </d_old> | ||
888 | <e_new> | ||
889 | Unable to link these [COUNT] objects. | ||
890 | You can link a maximum of [MAX] objects. | ||
891 | </e_new> | ||
892 | <f_old_trans> | ||
893 | [COUNT]κ° μ€λΈμ νΈλ₯Ό μ°κ²°ν μ μμ΅λλ€. | ||
894 | μ΅λ [MAX]κ°μ μ€λΈμ νΈλ₯Ό μ°κ²°ν μ μμ΅λλ€. | ||
895 | λ μ μ μμ μ€λΈμ νΈλ₯Ό μ νν΄ μ£Όμμμ€. | ||
896 | </f_old_trans> | ||
897 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
898 | <b_path>//CannotUploadSoundFile/message</b_path> | ||
899 | <c_attribute></c_attribute> | ||
900 | <d_old> | ||
901 | Couldn't open upload sound file for reading: | ||
902 | [FILE] | ||
903 | </d_old> | ||
904 | <e_new> | ||
905 | Couldn't open uploaded sound file for reading: | ||
906 | [FILE] | ||
907 | </e_new> | ||
908 | <f_old_trans> | ||
909 | μ½κΈ°λ₯Ό μνν μ λ‘λ μ¬μ΄λ νμΌμ μ΄ μ μμ΅λλ€: | ||
910 | [FILE] | ||
911 | </f_old_trans> | ||
912 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
913 | <b_path>//UnknownVorbisEncodeFailure/message</b_path> | ||
914 | <c_attribute></c_attribute> | ||
915 | <d_old> | ||
916 | Unknown vorbis encode failure on: [FILE] | ||
917 | </d_old> | ||
918 | <e_new> | ||
919 | Unknown Vorbis encode failure on: [FILE] | ||
920 | </e_new> | ||
921 | <f_old_trans> | ||
922 | μ μ μλ vorbis μΈμ½λ© μ€λ₯: [FILE] | ||
923 | </f_old_trans> | ||
924 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
925 | <b_path>//CorruptResourceFile/message</b_path> | ||
926 | <c_attribute></c_attribute> | ||
927 | <d_old> | ||
928 | corrupt resource file: [FILE] | ||
929 | </d_old> | ||
930 | <e_new> | ||
931 | Corrupt resource file: [FILE] | ||
932 | </e_new> | ||
933 | <f_old_trans> | ||
934 | μμλ 리μμ€ νμΌ: [FILE] | ||
935 | </f_old_trans> | ||
936 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
937 | <b_path>//UnknownResourceFileVersion/message</b_path> | ||
938 | <c_attribute></c_attribute> | ||
939 | <d_old> | ||
940 | unknown linden resource file version in file: [FILE] | ||
941 | </d_old> | ||
942 | <e_new> | ||
943 | Unknown Linden resource file version in file: [FILE] | ||
944 | </e_new> | ||
945 | <f_old_trans> | ||
946 | νμΌμ μ μ μλ λ¦°λ 리μμ€ νμΌ λ²μ μ΄ μμ΅λλ€: [FILE] | ||
947 | </f_old_trans> | ||
948 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
949 | <b_path>//DoNotSupportBulkAnimationUpload/message</b_path> | ||
950 | <c_attribute></c_attribute> | ||
951 | <d_old> | ||
952 | We do not currently support bulk upload of animation files | ||
953 | </d_old> | ||
954 | <e_new> | ||
955 | We do not currently support bulk upload of animation files. | ||
956 | </e_new> | ||
957 | <f_old_trans> | ||
958 | νμ¬ μ λλ©μ΄μ νμΌμ μΌκ΄ μ λ‘λλ μ§μλμ§ μμ΅λλ€. | ||
959 | </f_old_trans> | ||
960 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
961 | <b_path>//InsufficientFundsToUploadFile/message</b_path> | ||
962 | <c_attribute></c_attribute> | ||
963 | <d_old> | ||
964 | Insufficient funds to upload file: cost is L$[COST], balance is L$[BALANCE] | ||
965 | </d_old> | ||
966 | <e_new> | ||
967 | Insufficient L$ to upload file: the price is L$[COST], your balance is L$[BALANCE] | ||
968 | </e_new> | ||
969 | <f_old_trans> | ||
970 | νμΌμ μ λ‘λνλ λ° λ¦°λ λ¬λ¬κ° λΆμ‘±ν¨: λΉμ©μ L$[COST]μ΄κ³ , μμ‘μ L$[BALANCE]μ | ||
971 | </f_old_trans> | ||
972 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
973 | <b_path>//InsufficientFundsToFinishUpload/message</b_path> | ||
974 | <c_attribute></c_attribute> | ||
975 | <d_old> | ||
976 | Insufficient funds to finish uploading [FILE]: cost is L$[COST], balance is L$[BALANCE] | ||
977 | </d_old> | ||
978 | <e_new> | ||
979 | Insufficient L$ to finish uploading [FILE]: the price is L$[COST], your balance is L$[BALANCE] | ||
980 | </e_new> | ||
981 | <f_old_trans> | ||
982 | [FILE] (μ)λ₯Ό μ λ‘λνλ λ° λ¦°λ λ¬λ¬κ° λΆμ‘±ν¨: λΉμ©μ L$[COST]μ΄κ³ , μμ‘μ L$[BALANCE]μ | ||
983 | </f_old_trans> | ||
984 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
985 | <b_path>//CannotCreateLandmarkNotOwner/message</b_path> | ||
986 | <c_attribute></c_attribute> | ||
987 | <d_old> | ||
988 | You cannot create a landmark here because | ||
989 | the owner of the land doesn't allow it. | ||
990 | Try moving a few meters away first. | ||
991 | </d_old> | ||
992 | <e_new> | ||
993 | You cannot create a landmark here because | ||
994 | the owner of the land doesn't allow it. | ||
995 | </e_new> | ||
996 | <f_old_trans> | ||
997 | ν μ§μ μμ μ£Όκ° νμ©νμ§ μμΌλ―λ‘ μ¬κΈ°μ | ||
998 | λλλ§ν¬λ₯Ό μμ±ν μ μμ΅λλ€. | ||
999 | λ¨Όμ λͺ m λ μ΄λν΄ λ³΄μμμ€. | ||
1000 | </f_old_trans> | ||
1001 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1002 | <b_path>//CannotRecompileSelectObjectsNoScripts/message</b_path> | ||
1003 | <c_attribute></c_attribute> | ||
1004 | <d_old> | ||
1005 | Not able to perform recompilation. | ||
1006 | Select objects with scripts that | ||
1007 | are valid. | ||
1008 | </d_old> | ||
1009 | <e_new> | ||
1010 | Not able to perform 'recompilation'. | ||
1011 | Select an object with a script. | ||
1012 | </e_new> | ||
1013 | <f_old_trans> | ||
1014 | 리컴νμΌλ§μ μνν μ μμ. | ||
1015 | μ¬λ°λ₯Έ | ||
1016 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€. | ||
1017 | </f_old_trans> | ||
1018 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1019 | <b_path>//CannotRecompileSelectObjectsNoPermission/message</b_path> | ||
1020 | <c_attribute></c_attribute> | ||
1021 | <d_old> | ||
1022 | Not able to perform recompilation. | ||
1023 | Select objects with scripts that you | ||
1024 | have permission to modify. | ||
1025 | </d_old> | ||
1026 | <e_new> | ||
1027 | Not able to perform 'recompilation'. | ||
1028 | Select objects with scripts that you | ||
1029 | have permission to modify. | ||
1030 | </e_new> | ||
1031 | <f_old_trans> | ||
1032 | 리컴νμΌλ§μ μνν μ μμ. | ||
1033 | λ΄κ° μμ ν κΆνμ΄ μλ | ||
1034 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€. | ||
1035 | </f_old_trans> | ||
1036 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1037 | <b_path>//CannotResetSelectObjectsNoScripts/message</b_path> | ||
1038 | <c_attribute></c_attribute> | ||
1039 | <d_old> | ||
1040 | Not able to perform reset. | ||
1041 | Select objects with scripts that you | ||
1042 | are valid. | ||
1043 | </d_old> | ||
1044 | <e_new> | ||
1045 | Not able to perform 'reset'. | ||
1046 | Select objects with scripts. | ||
1047 | </e_new> | ||
1048 | <f_old_trans> | ||
1049 | μ΄κΈ°νλ₯Ό μνν μ μμ. | ||
1050 | μ¬λ°λ₯Έ | ||
1051 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€.. | ||
1052 | </f_old_trans> | ||
1053 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1054 | <b_path>//CannotResetSelectObjectsNoPermission/message</b_path> | ||
1055 | <c_attribute></c_attribute> | ||
1056 | <d_old> | ||
1057 | Not able to perform reset. | ||
1058 | Select objects with scripts that you | ||
1059 | have permission to modify. | ||
1060 | </d_old> | ||
1061 | <e_new> | ||
1062 | Not able to perform 'reset'. | ||
1063 | Select objects with scripts that you | ||
1064 | have permission to modify. | ||
1065 | </e_new> | ||
1066 | <f_old_trans> | ||
1067 | μ΄κΈ°νλ₯Ό μνν μ μμ. | ||
1068 | λ΄κ° μμ ν κΆνμ΄ μλ | ||
1069 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€. | ||
1070 | </f_old_trans> | ||
1071 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1072 | <b_path>//CannotSetRunningSelectObjectsNoScripts/message</b_path> | ||
1073 | <c_attribute></c_attribute> | ||
1074 | <d_old> | ||
1075 | Not able to set any scripts to running. | ||
1076 | Select objects with scripts that | ||
1077 | are valid. | ||
1078 | </d_old> | ||
1079 | <e_new> | ||
1080 | Not able to set any scripts to 'running'. | ||
1081 | Select objects with scripts. | ||
1082 | </e_new> | ||
1083 | <f_old_trans> | ||
1084 | μ€ν¬λ¦½νΈλ₯Ό μ€ν ν¨μΌλ‘ μ€μ ν μ μμ. | ||
1085 | μ¬λ°λ₯Έ | ||
1086 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€. | ||
1087 | </f_old_trans> | ||
1088 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1089 | <b_path>//CannotSetRunningSelectObjectsNoPermission/message</b_path> | ||
1090 | <c_attribute></c_attribute> | ||
1091 | <d_old> | ||
1092 | Not able to set any scripts to running. | ||
1093 | Select objects with scripts that you | ||
1094 | have permission to modify. | ||
1095 | </d_old> | ||
1096 | <e_new> | ||
1097 | Not able to set any scripts to 'running'. | ||
1098 | Select objects with scripts that you | ||
1099 | have permission to modify. | ||
1100 | </e_new> | ||
1101 | <f_old_trans> | ||
1102 | μ€ν¬λ¦½νΈλ₯Ό μ€ν ν¨μΌλ‘ μ€μ ν μ μμ. | ||
1103 | λ΄κ° μμ ν κΆνμ΄ μλ | ||
1104 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€. | ||
1105 | </f_old_trans> | ||
1106 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1107 | <b_path>//CannotSetRunningNotSelectObjectsNoScripts/message</b_path> | ||
1108 | <c_attribute></c_attribute> | ||
1109 | <d_old> | ||
1110 | Not able to set any scripts to not running. | ||
1111 | Select objects with scripts that | ||
1112 | are valid. | ||
1113 | </d_old> | ||
1114 | <e_new> | ||
1115 | Unable to set any scripts to 'not running'. | ||
1116 | Select objects with scripts. | ||
1117 | </e_new> | ||
1118 | <f_old_trans> | ||
1119 | μ€ν¬λ¦½νΈλ₯Ό μ€ν μ ν¨μΌλ‘ μ€μ ν μ μμ. | ||
1120 | μ¬λ°λ₯Έ | ||
1121 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€. | ||
1122 | </f_old_trans> | ||
1123 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1124 | <b_path>//CannotSetRunningNotSelectObjectsNoPermission/message</b_path> | ||
1125 | <c_attribute></c_attribute> | ||
1126 | <d_old> | ||
1127 | Not able to set any scripts to not running. | ||
1128 | Select objects with scripts that you | ||
1129 | have permission to modify. | ||
1130 | </d_old> | ||
1131 | <e_new> | ||
1132 | Unable to set any scripts to 'not running'. | ||
1133 | Select objects with scripts that you | ||
1134 | have permission to modify. | ||
1135 | </e_new> | ||
1136 | <f_old_trans> | ||
1137 | μ€ν¬λ¦½νΈλ₯Ό μ€ν μ ν¨μΌλ‘ μ€μ ν μ μμ. | ||
1138 | λ΄κ° μμ ν κΆνμ΄ μλ | ||
1139 | μ€ν¬λ¦½νΈμ μ€λΈμ νΈν μ νν©λλ€. | ||
1140 | </f_old_trans> | ||
1141 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1142 | <b_path>//NoFrontmostFloater/message</b_path> | ||
1143 | <c_attribute></c_attribute> | ||
1144 | <d_old> | ||
1145 | No frontmost floater to save | ||
1146 | </d_old> | ||
1147 | <e_new> | ||
1148 | No frontmost floater to save. | ||
1149 | </e_new> | ||
1150 | <f_old_trans> | ||
1151 | 맨 μμ νλ¬ν° μ μ₯ μν¨ | ||
1152 | </f_old_trans> | ||
1153 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1154 | <b_path>//CannotSetLandOwnerNothingSelected/message</b_path> | ||
1155 | <c_attribute></c_attribute> | ||
1156 | <d_old> | ||
1157 | Unable to set land owner: | ||
1158 | Nothing selected. | ||
1159 | </d_old> | ||
1160 | <e_new> | ||
1161 | Unable to set land owner: | ||
1162 | No parcel selected. | ||
1163 | </e_new> | ||
1164 | <f_old_trans> | ||
1165 | ν μ§ μμ μ£Όλ₯Ό μ€μ ν μ μμ΅λλ€: | ||
1166 | μ νν νλͺ©μ΄ μμ΅λλ€. | ||
1167 | </f_old_trans> | ||
1168 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1169 | <b_path>//ForceOwnerAuctionWarning/Force</b_path> | ||
1170 | <c_attribute></c_attribute> | ||
1171 | <d_old> | ||
1172 | Force | ||
1173 | </d_old> | ||
1174 | <e_new> | ||
1175 | OK | ||
1176 | </e_new> | ||
1177 | <f_old_trans> | ||
1178 | ν¬μ€ | ||
1179 | </f_old_trans> | ||
1180 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1181 | <b_path>//CannotContentifyNothingSelected/message</b_path> | ||
1182 | <c_attribute></c_attribute> | ||
1183 | <d_old> | ||
1184 | Unable to contentify: | ||
1185 | Nothing selected. | ||
1186 | </d_old> | ||
1187 | <e_new> | ||
1188 | Unable to contentify: | ||
1189 | No parcel selected. | ||
1190 | </e_new> | ||
1191 | <f_old_trans> | ||
1192 | 컨ν μΈ λ₯Ό νμΈν μ μμ΅λλ€: | ||
1193 | μ νν νλͺ©μ΄ μμ΅λλ€. | ||
1194 | </f_old_trans> | ||
1195 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1196 | <b_path>//CannotContentifyNoRegion/message</b_path> | ||
1197 | <c_attribute></c_attribute> | ||
1198 | <d_old> | ||
1199 | Unable to contentify: | ||
1200 | No region. | ||
1201 | </d_old> | ||
1202 | <e_new> | ||
1203 | Unable to contentify: | ||
1204 | No region selected. | ||
1205 | </e_new> | ||
1206 | <f_old_trans> | ||
1207 | 컨ν μΈ λ₯Ό νμΈν μ μμ΅λλ€: | ||
1208 | μ§μμ΄ μμ΅λλ€. | ||
1209 | </f_old_trans> | ||
1210 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1211 | <b_path>//CannotReleaseLandNothingSelected/message</b_path> | ||
1212 | <c_attribute></c_attribute> | ||
1213 | <d_old> | ||
1214 | Unable to abandon land: | ||
1215 | Nothing selected. | ||
1216 | </d_old> | ||
1217 | <e_new> | ||
1218 | Unable to abandon land: | ||
1219 | No parcel selected. | ||
1220 | </e_new> | ||
1221 | <f_old_trans> | ||
1222 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: | ||
1223 | μ νν νλͺ©μ΄ μμ΅λλ€. | ||
1224 | </f_old_trans> | ||
1225 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1226 | <b_path>//CannotBuyLandNothingSelected/message</b_path> | ||
1227 | <c_attribute></c_attribute> | ||
1228 | <d_old> | ||
1229 | Unable to buy land: | ||
1230 | Nothing selected. | ||
1231 | </d_old> | ||
1232 | <e_new> | ||
1233 | Unable to buy land: | ||
1234 | No parcel selected. | ||
1235 | </e_new> | ||
1236 | <f_old_trans> | ||
1237 | ν μ§λ₯Ό ꡬ맀νμ§ λͺ»νμ΅λλ€: | ||
1238 | μ νν νλͺ©μ΄ μμ΅λλ€. | ||
1239 | </f_old_trans> | ||
1240 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1241 | <b_path>//CannotDeedLandNothingSelected/message</b_path> | ||
1242 | <c_attribute></c_attribute> | ||
1243 | <d_old> | ||
1244 | Unable to deed land: | ||
1245 | Nothing selected. | ||
1246 | </d_old> | ||
1247 | <e_new> | ||
1248 | Unable to deed land: | ||
1249 | No parcel selected. | ||
1250 | </e_new> | ||
1251 | <f_old_trans> | ||
1252 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: | ||
1253 | μ νν νλͺ©μ΄ μμ΅λλ€. | ||
1254 | </f_old_trans> | ||
1255 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1256 | <b_path>//CannotDeedLandNoGroup/message</b_path> | ||
1257 | <c_attribute></c_attribute> | ||
1258 | <d_old> | ||
1259 | Unable to deed land: | ||
1260 | No Group. | ||
1261 | </d_old> | ||
1262 | <e_new> | ||
1263 | Unable to deed land: | ||
1264 | No Group selected. | ||
1265 | </e_new> | ||
1266 | <f_old_trans> | ||
1267 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: | ||
1268 | κ·Έλ£Ήμ΄ μμ΅λλ€. | ||
1269 | </f_old_trans> | ||
1270 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1271 | <b_path>//CannotSetLandOwnerNothingSelected/message</b_path> | ||
1272 | <c_attribute></c_attribute> | ||
1273 | <d_old> | ||
1274 | Unable to set land owner: | ||
1275 | Nothing selected. | ||
1276 | </d_old> | ||
1277 | <e_new> | ||
1278 | Unable to set land owner: | ||
1279 | No parcel selected. | ||
1280 | </e_new> | ||
1281 | <f_old_trans> | ||
1282 | ν μ§ μμ μ£Όλ₯Ό μ€μ ν μ μμ΅λλ€: | ||
1283 | μ νν νλͺ©μ΄ μμ΅λλ€. | ||
1284 | </f_old_trans> | ||
1285 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1286 | <b_path>//CannotBuyLandMultipleSelected/message</b_path> | ||
1287 | <c_attribute></c_attribute> | ||
1288 | <d_old> | ||
1289 | Unable to buy land: | ||
1290 | Multiple different parcels selected. | ||
1291 | Try selecting a smaller area. | ||
1292 | </d_old> | ||
1293 | <e_new> | ||
1294 | Unable to buy land: | ||
1295 | Multiple parcels selected. | ||
1296 | Try selecting a single parcel. | ||
1297 | </e_new> | ||
1298 | <f_old_trans> | ||
1299 | ν μ§λ₯Ό ꡬ맀νμ§ λͺ»νμ΅λλ€: | ||
1300 | μ¬λ¬ κ°μ κ°κΈ° λ€λ₯Έ ꡬνμ΄ μ νλμμ΅λλ€. | ||
1301 | λ μμ μμμ μ νν΄ μ£Όμμμ€. | ||
1302 | </f_old_trans> | ||
1303 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1304 | <b_path>//CannotDeedLandMultipleSelected/message</b_path> | ||
1305 | <c_attribute></c_attribute> | ||
1306 | <d_old> | ||
1307 | Unable to deed land: | ||
1308 | Multiple different parcels selected. | ||
1309 | Try selecting a smaller area. | ||
1310 | </d_old> | ||
1311 | <e_new> | ||
1312 | Unable to deed land: | ||
1313 | Multiple parcels selected. | ||
1314 | Try selecting a single parcel. | ||
1315 | </e_new> | ||
1316 | <f_old_trans> | ||
1317 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: | ||
1318 | μ¬λ¬ κ°μ κ°κΈ° λ€λ₯Έ ꡬνμ΄ μ νλμμ΅λλ€. | ||
1319 | λ μμ μμμ μ νν΄ μ£Όμμμ€. | ||
1320 | </f_old_trans> | ||
1321 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1322 | <b_path>//CannotBuyLandWaitingForServer/message</b_path> | ||
1323 | <c_attribute></c_attribute> | ||
1324 | <d_old> | ||
1325 | Unable to buy land: | ||
1326 | Waiting for server to report cost. | ||
1327 | Try again in a few seconds. | ||
1328 | </d_old> | ||
1329 | <e_new> | ||
1330 | Unable to buy land: | ||
1331 | Waiting for server to report cost. | ||
1332 | Please try again. | ||
1333 | </e_new> | ||
1334 | <f_old_trans> | ||
1335 | ν μ§λ₯Ό ꡬ맀νμ§ λͺ»νμ΅λλ€: | ||
1336 | μλ²κ° λΉμ©μ λ³΄κ³ ν λκΉμ§ κΈ°λ€λ¦¬λ μ€μ λλ€. | ||
1337 | λͺ μ΄ ν λ€μ μλν΄ μ£Όμμμ€. | ||
1338 | </f_old_trans> | ||
1339 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1340 | <b_path>//CannotDeedLandWaitingForServer/message</b_path> | ||
1341 | <c_attribute></c_attribute> | ||
1342 | <d_old> | ||
1343 | Unable to deed land: | ||
1344 | Waiting for server to report ownership. | ||
1345 | Try again in a few seconds. | ||
1346 | </d_old> | ||
1347 | <e_new> | ||
1348 | Unable to deed land: | ||
1349 | Waiting for server to report ownership. | ||
1350 | Please try again. | ||
1351 | </e_new> | ||
1352 | <f_old_trans> | ||
1353 | ν μ§λ₯Ό μλνμ§ λͺ»νμ΅λλ€: | ||
1354 | μλ²κ° μμ κΆμ λ³΄κ³ ν λκΉμ§ κΈ°λ€λ¦¬λ μ€μ λλ€. | ||
1355 | λͺ μ΄ ν λ€μ μλν΄ μ£Όμμμ€. | ||
1356 | </f_old_trans> | ||
1357 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1358 | <b_path>//CannotBuyLandLandOwned/message</b_path> | ||
1359 | <c_attribute></c_attribute> | ||
1360 | <d_old> | ||
1361 | Unable to buy land: | ||
1362 | Land owned by another user is selected. | ||
1363 | Try selecting a smaller area. | ||
1364 | </d_old> | ||
1365 | <e_new> | ||
1366 | Unable to buy land: | ||
1367 | You have selected a parcel owned | ||
1368 | by another Resident. | ||
1369 | </e_new> | ||
1370 | <f_old_trans> | ||
1371 | ν μ§λ₯Ό ꡬ맀νμ§ λͺ»νμ΅λλ€: | ||
1372 | λ€λ₯Έ μ¬μ©μ μμ μ ν μ§κ° μ νλμμ΅λλ€. | ||
1373 | λ μμ μμμ μ νν΄ μ£Όμμμ€. | ||
1374 | </f_old_trans> | ||
1375 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1376 | <b_path>//CannotBuyLandInsufficientFunds/message</b_path> | ||
1377 | <c_attribute></c_attribute> | ||
1378 | <d_old> | ||
1379 | Buying this [AREA] sq. meters of land costs L$[PRICE]. | ||
1380 | You only have L$[BALANCE]. | ||
1381 | </d_old> | ||
1382 | <e_new> | ||
1383 | Buying this [AREA] m2 of land costs L$[PRICE]. | ||
1384 | You only have L$[BALANCE]. | ||
1385 | </e_new> | ||
1386 | <f_old_trans> | ||
1387 | μ΄ ν μ§ [AREA]μ κ³±λ―Έν°λ₯Ό ꡬ맀 νλ €λ©΄ L$[PRICE]κ° λλλ€. | ||
1388 | κ·νμ μκ³ λ L$[BALANCE]λΏμ λλ€. | ||
1389 | </f_old_trans> | ||
1390 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1391 | <b_path>//CannotReleaseLandNothingSelected/message</b_path> | ||
1392 | <c_attribute></c_attribute> | ||
1393 | <d_old> | ||
1394 | Unable to abandon land: | ||
1395 | Nothing selected. | ||
1396 | </d_old> | ||
1397 | <e_new> | ||
1398 | Unable to abandon land: | ||
1399 | No parcel selected. | ||
1400 | </e_new> | ||
1401 | <f_old_trans> | ||
1402 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: | ||
1403 | μ νν νλͺ©μ΄ μμ΅λλ€. | ||
1404 | </f_old_trans> | ||
1405 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1406 | <b_path>//CannotReleaseLandWatingForServer/message</b_path> | ||
1407 | <c_attribute></c_attribute> | ||
1408 | <d_old> | ||
1409 | Unable to abandon land: | ||
1410 | Waiting for server to report cost. | ||
1411 | Try again in a few seconds. | ||
1412 | </d_old> | ||
1413 | <e_new> | ||
1414 | Unable to abandon land: | ||
1415 | Waiting for server to update parcel information. | ||
1416 | Try again in a few seconds. | ||
1417 | </e_new> | ||
1418 | <f_old_trans> | ||
1419 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: | ||
1420 | μλ²κ° λΉμ©μ λ³΄κ³ ν λκΉμ§ κΈ°λ€λ¦¬λ μ€μ λλ€. | ||
1421 | λͺ μ΄ ν λ€μ μλν΄ μ£Όμμμ€. | ||
1422 | </f_old_trans> | ||
1423 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1424 | <b_path>//CannotReleaseLandSelected/message</b_path> | ||
1425 | <c_attribute></c_attribute> | ||
1426 | <d_old> | ||
1427 | Unable to abandon land: | ||
1428 | Multiple different parcels selected. | ||
1429 | Try selecting a smaller area. | ||
1430 | </d_old> | ||
1431 | <e_new> | ||
1432 | Unable to abandon land: | ||
1433 | You do not own all the parcels selected. | ||
1434 | Please select a single parcel. | ||
1435 | </e_new> | ||
1436 | <f_old_trans> | ||
1437 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: | ||
1438 | μ¬λ¬ κ°μ κ°κΈ° λ€λ₯Έ ꡬνμ΄ μ νλμμ΅λλ€. | ||
1439 | λ μμ μμμ μ νν΄ μ£Όμμμ€. | ||
1440 | </f_old_trans> | ||
1441 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1442 | <b_path>//CannotReleaseLandPartialSelection/message</b_path> | ||
1443 | <c_attribute></c_attribute> | ||
1444 | <d_old> | ||
1445 | Unable to abandon land: | ||
1446 | You must select an entire parcel to release it. | ||
1447 | Try double-clicking to select an entire parcel, or | ||
1448 | first divide your parcel. | ||
1449 | </d_old> | ||
1450 | <e_new> | ||
1451 | Unable to abandon land: | ||
1452 | You must select an entire parcel to release it. | ||
1453 | Select an entire parcel, or divide your parcel first. | ||
1454 | </e_new> | ||
1455 | <f_old_trans> | ||
1456 | ν μ§λ₯Ό ν¬κΈ°νμ§ λͺ»νμ΅λλ€: | ||
1457 | ν μ§λ₯Ό λ°©μΆνλ €λ©΄ μ 체 ꡬνμ μ νν΄μΌ ν©λλ€. | ||
1458 | μ 체 ꡬνμ μ ννλ €λ©΄ λλΈ ν΄λ¦νκ±°λ | ||
1459 | λ¨Όμ ꡬνμ λΆν ν΄ λ³΄μμμ€. | ||
1460 | </f_old_trans> | ||
1461 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1462 | <b_path>//ReleaseLandWarning/message</b_path> | ||
1463 | <c_attribute></c_attribute> | ||
1464 | <d_old> | ||
1465 | You are about to release [AREA] sq. meters of land. | ||
1466 | Releasing this parcel will remove it from your land | ||
1467 | holdings, but will not credit any L$. | ||
1468 | |||
1469 | Release this land? | ||
1470 | </d_old> | ||
1471 | <e_new> | ||
1472 | You are about to release [AREA] m2 of land. | ||
1473 | Releasing this parcel will remove it from your land | ||
1474 | holdings, but will not grant any L$. | ||
1475 | |||
1476 | Release this land? | ||
1477 | </e_new> | ||
1478 | <f_old_trans> | ||
1479 | κ·νκ»μλ ν μ§μ [AREA] νλ°© λ―Έν°λ₯Ό λ°©μΆνλ €κ³ ν©λλ€. | ||
1480 | μ΄ κ΅¬νμ λ°©μΆνλ©΄ μμ ν ν μ§μμ μ κ±°λμ§λ§ | ||
1481 | ν μ§μ λν μ μ©(L$)μ΄ μ 립λμ§ μμ΅λλ€. | ||
1482 | |||
1483 | μ΄ ν μ§λ₯Ό λ°©μΆνμκ² μ΅λκΉ? | ||
1484 | </f_old_trans> | ||
1485 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1486 | <b_path>//ReleaseLandWarning/Release</b_path> | ||
1487 | <c_attribute></c_attribute> | ||
1488 | <d_old> | ||
1489 | Release | ||
1490 | </d_old> | ||
1491 | <e_new> | ||
1492 | OK | ||
1493 | </e_new> | ||
1494 | <f_old_trans> | ||
1495 | ν΄μ | ||
1496 | </f_old_trans> | ||
1497 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1498 | <b_path>//CannotDivideLandNothingSelected/message</b_path> | ||
1499 | <c_attribute></c_attribute> | ||
1500 | <d_old> | ||
1501 | Unable to divide land: | ||
1502 | Nothing selected. | ||
1503 | </d_old> | ||
1504 | <e_new> | ||
1505 | Unable to divide land: | ||
1506 | No parcels selected. | ||
1507 | </e_new> | ||
1508 | <f_old_trans> | ||
1509 | ν μ§λ₯Ό λΆν νμ§ λͺ»νμ΅λλ€: | ||
1510 | μ νν νλͺ©μ΄ μμ΅λλ€. | ||
1511 | </f_old_trans> | ||
1512 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1513 | <b_path>//CannotDivideLandPartialSelection/message</b_path> | ||
1514 | <c_attribute></c_attribute> | ||
1515 | <d_old> | ||
1516 | Unable to divide land: | ||
1517 | You have an entire parcel selected. | ||
1518 | Try selecting a smaller area by clicking | ||
1519 | and dragging. | ||
1520 | </d_old> | ||
1521 | <e_new> | ||
1522 | Unable to divide land: | ||
1523 | You have an entire parcel selected. | ||
1524 | Try selecting a part of the parcel. | ||
1525 | </e_new> | ||
1526 | <f_old_trans> | ||
1527 | ν μ§λ₯Ό λΆν νμ§ λͺ»νμ΅λλ€: | ||
1528 | μ 체 ꡬνμ μ ννμ ¨μ΅λλ€. | ||
1529 | μμμ ν΄λ¦νκ³ λλκ·Ένμ¬ λ μμ μμμ | ||
1530 | μ νν΄ μ£Όμμμ€. | ||
1531 | </f_old_trans> | ||
1532 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1533 | <b_path>//LandDivideWarning/Divide</b_path> | ||
1534 | <c_attribute></c_attribute> | ||
1535 | <d_old> | ||
1536 | Divide | ||
1537 | </d_old> | ||
1538 | <e_new> | ||
1539 | OK | ||
1540 | </e_new> | ||
1541 | <f_old_trans> | ||
1542 | λΆν | ||
1543 | </f_old_trans> | ||
1544 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1545 | <b_path>//CannotJoinLandNothingSelected/message</b_path> | ||
1546 | <c_attribute></c_attribute> | ||
1547 | <d_old> | ||
1548 | Unable to join land: | ||
1549 | Nothing selected. | ||
1550 | </d_old> | ||
1551 | <e_new> | ||
1552 | Unable to join land: | ||
1553 | No parcels selected. | ||
1554 | </e_new> | ||
1555 | <f_old_trans> | ||
1556 | ν μ§λ₯Ό κ²°ν©νμ§ λͺ»νμ΅λλ€: | ||
1557 | μ νν νλͺ©μ΄ μμ΅λλ€. | ||
1558 | </f_old_trans> | ||
1559 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1560 | <b_path>//CannotJoinLandEntireParcelSelected/message</b_path> | ||
1561 | <c_attribute></c_attribute> | ||
1562 | <d_old> | ||
1563 | Unable to join land: | ||
1564 | You have an entire parcel selected. | ||
1565 | Try selecting a larger area by clicking | ||
1566 | and dragging. | ||
1567 | </d_old> | ||
1568 | <e_new> | ||
1569 | Unable to join land: | ||
1570 | You only have one parcel selected. | ||
1571 | Select land across both parcels. | ||
1572 | </e_new> | ||
1573 | <f_old_trans> | ||
1574 | ν μ§λ₯Ό κ²°ν©νμ§ λͺ»νμ΅λλ€: | ||
1575 | μ 체 ꡬνμ μ ννμ ¨μ΅λλ€. | ||
1576 | μμμ ν΄λ¦νκ³ λλκ·Ένμ¬ λ ν° μμμ | ||
1577 | μ νν΄ μ£Όμμμ€. | ||
1578 | </f_old_trans> | ||
1579 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1580 | <b_path>//CannotJoinLandSelection/message</b_path> | ||
1581 | <c_attribute></c_attribute> | ||
1582 | <d_old> | ||
1583 | Unable to join land: | ||
1584 | You must select more than one parcel. | ||
1585 | Try selecting a larger area by clicking | ||
1586 | and dragging. | ||
1587 | </d_old> | ||
1588 | <e_new> | ||
1589 | Unable to join land: | ||
1590 | You must select more than one parcel. | ||
1591 | Select land across both parcels. | ||
1592 | </e_new> | ||
1593 | <f_old_trans> | ||
1594 | ν μ§λ₯Ό κ²°ν©νμ§ λͺ»νμ΅λλ€: | ||
1595 | λ μ΄μμ ꡬνμ μ νν΄μΌ ν©λλ€. | ||
1596 | μμμ ν΄λ¦νκ³ λλκ·Ένμ¬ λ ν° μμμ | ||
1597 | μ νν΄ μ£Όμμμ€. | ||
1598 | </f_old_trans> | ||
1599 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1600 | <b_path>//JoinLandWarning/Join</b_path> | ||
1601 | <c_attribute></c_attribute> | ||
1602 | <d_old> | ||
1603 | Join | ||
1604 | </d_old> | ||
1605 | <e_new> | ||
1606 | OK | ||
1607 | </e_new> | ||
1608 | <f_old_trans> | ||
1609 | κ°μ | ||
1610 | </f_old_trans> | ||
1611 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1612 | <b_path>//ConfirmNotecardSave/Save</b_path> | ||
1613 | <c_attribute></c_attribute> | ||
1614 | <d_old> | ||
1615 | Save | ||
1616 | </d_old> | ||
1617 | <e_new> | ||
1618 | OK | ||
1619 | </e_new> | ||
1620 | <f_old_trans> | ||
1621 | μ μ₯ | ||
1622 | </f_old_trans> | ||
1623 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1624 | <b_path>//ConfirmLandmarkCopy/message</b_path> | ||
1625 | <c_attribute></c_attribute> | ||
1626 | <d_old> | ||
1627 | Copy this item to your inventory? | ||
1628 | </d_old> | ||
1629 | <e_new> | ||
1630 | Copy this landmark to your inventory? | ||
1631 | </e_new> | ||
1632 | <f_old_trans> | ||
1633 | μ΄ νλͺ©μ κ·νμ μΈλ²€ν λ¦¬λ‘ λ³΅μ¬ νμκ² μ΅λκΉ? | ||
1634 | </f_old_trans> | ||
1635 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1636 | <b_path>//ConfirmLandmarkCopy/Copy</b_path> | ||
1637 | <c_attribute></c_attribute> | ||
1638 | <d_old> | ||
1639 | Copy | ||
1640 | </d_old> | ||
1641 | <e_new> | ||
1642 | OK | ||
1643 | </e_new> | ||
1644 | <f_old_trans> | ||
1645 | λ³΅μ¬ | ||
1646 | </f_old_trans> | ||
1647 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1648 | <b_path>//OnlyOfficerCanBuyLand/message</b_path> | ||
1649 | <c_attribute></c_attribute> | ||
1650 | <d_old> | ||
1651 | Unable to buy land for the group: | ||
1652 | You do not have permission to buy land for your active group. | ||
1653 | Please activate another group using Edit -> Groups... | ||
1654 | </d_old> | ||
1655 | <e_new> | ||
1656 | Unable to buy land for the group: | ||
1657 | You do not have permission to buy land for your active group. | ||
1658 | </e_new> | ||
1659 | <f_old_trans> | ||
1660 | κ·Έλ£Ήμ λμ ν΄ ν μ§λ₯Ό 맀μ νμ§ λͺ»νμ΅λλ€: | ||
1661 | νλ μ€μΈ κ·Έλ£Ήμ μν΄ ν μ§λ₯Ό 맀μ ν κΆνμ΄ μμ΅λλ€. | ||
1662 | νΈμ§ -> κ·Έλ£Ή...μ μ΄μ©νμ¬ λ€λ₯Έ κ·Έλ£Ήμ νμ±ννμμμ€. | ||
1663 | </f_old_trans> | ||
1664 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1665 | <b_path>//AddFriend/Offer</b_path> | ||
1666 | <c_attribute></c_attribute> | ||
1667 | <d_old> | ||
1668 | Offer | ||
1669 | </d_old> | ||
1670 | <e_new> | ||
1671 | OK | ||
1672 | </e_new> | ||
1673 | <f_old_trans> | ||
1674 | μ 곡 | ||
1675 | </f_old_trans> | ||
1676 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1677 | <b_path>//RemoveFromFriends/message</b_path> | ||
1678 | <c_attribute></c_attribute> | ||
1679 | <d_old> | ||
1680 | Do you want to remove [FIRST_NAME] [LAST_NAME] from your friends? | ||
1681 | </d_old> | ||
1682 | <e_new> | ||
1683 | Do you want to remove [FIRST_NAME] [LAST_NAME] from your Friends List? | ||
1684 | </e_new> | ||
1685 | <f_old_trans> | ||
1686 | [FIRST_NAME] [LAST_NAME]λμ μΉκ΅¬μμ μ κ±°νμκ² μ΅λκΉ? | ||
1687 | </f_old_trans> | ||
1688 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1689 | <b_path>//RemoveFromFriends/Remove</b_path> | ||
1690 | <c_attribute></c_attribute> | ||
1691 | <d_old> | ||
1692 | Remove | ||
1693 | </d_old> | ||
1694 | <e_new> | ||
1695 | OK | ||
1696 | </e_new> | ||
1697 | <f_old_trans> | ||
1698 | μ κ±° | ||
1699 | </f_old_trans> | ||
1700 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1701 | <b_path>//RemoveMultipleFromFriends/message</b_path> | ||
1702 | <c_attribute></c_attribute> | ||
1703 | <d_old> | ||
1704 | Do you want to remove multiple friends from your friends list? | ||
1705 | </d_old> | ||
1706 | <e_new> | ||
1707 | Do you want to remove multiple friends from your Friends list? | ||
1708 | </e_new> | ||
1709 | <f_old_trans> | ||
1710 | μΉκ΅¬ λͺ©λ‘μμ μ¬λ¬ λͺ μ μΉκ΅¬λ₯Ό μ κ±°νμκ² μ΅λκΉ? | ||
1711 | </f_old_trans> | ||
1712 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1713 | <b_path>//RemoveMultipleFromFriends/Remove</b_path> | ||
1714 | <c_attribute></c_attribute> | ||
1715 | <d_old> | ||
1716 | Remove | ||
1717 | </d_old> | ||
1718 | <e_new> | ||
1719 | OK | ||
1720 | </e_new> | ||
1721 | <f_old_trans> | ||
1722 | μ κ±° | ||
1723 | </f_old_trans> | ||
1724 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1725 | <b_path>//GodDeleteAllScriptedPublicObjectsByUser/DELETE!!</b_path> | ||
1726 | <c_attribute></c_attribute> | ||
1727 | <d_old> | ||
1728 | DELETE!! | ||
1729 | </d_old> | ||
1730 | <e_new> | ||
1731 | OK | ||
1732 | </e_new> | ||
1733 | <f_old_trans> | ||
1734 | μμ !! | ||
1735 | </f_old_trans> | ||
1736 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1737 | <b_path>//GodDeleteAllScriptedObjectsByUser/!!DELETEALL!!</b_path> | ||
1738 | <c_attribute></c_attribute> | ||
1739 | <d_old> | ||
1740 | !!DELETE ALL!! | ||
1741 | </d_old> | ||
1742 | <e_new> | ||
1743 | OK | ||
1744 | </e_new> | ||
1745 | <f_old_trans> | ||
1746 | !!λͺ¨λ μμ !! | ||
1747 | </f_old_trans> | ||
1748 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1749 | <b_path>//GodDeleteAllObjectsByUser/!!DELETEALL!!</b_path> | ||
1750 | <c_attribute></c_attribute> | ||
1751 | <d_old> | ||
1752 | !!DELETE ALL!! | ||
1753 | </d_old> | ||
1754 | <e_new> | ||
1755 | OK | ||
1756 | </e_new> | ||
1757 | <f_old_trans> | ||
1758 | !!λͺ¨λ μμ !! | ||
1759 | </f_old_trans> | ||
1760 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1761 | <b_path>//BlankClassifiedName/message</b_path> | ||
1762 | <c_attribute></c_attribute> | ||
1763 | <d_old> | ||
1764 | You must specify a non-blank name for your classified. | ||
1765 | </d_old> | ||
1766 | <e_new> | ||
1767 | You must specify a name for your classified. | ||
1768 | </e_new> | ||
1769 | <f_old_trans> | ||
1770 | κ΄κ³ μ λν΄ μ΄λ¦μ μ λ ₯ν΄μΌ ν©λλ€. | ||
1771 | </f_old_trans> | ||
1772 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1773 | <b_path>//ConfirmObjectDeleteLock/message</b_path> | ||
1774 | <c_attribute></c_attribute> | ||
1775 | <d_old> | ||
1776 | At least one object is locked. | ||
1777 | However, you can delete the current selection. | ||
1778 | Are you sure you want to delete these items? | ||
1779 | </d_old> | ||
1780 | <e_new> | ||
1781 | At least one of the items you have selected is locked. | ||
1782 | |||
1783 | Are you sure you want to delete these items? | ||
1784 | </e_new> | ||
1785 | <f_old_trans> | ||
1786 | 1κ° μ΄μμ μ€λΈμ νΈκ° μ 겨 μμ΅λλ€. | ||
1787 | νμ§λ§ νμ¬ μ ν μμ΄ν μ μμ ν μ μμ΅λλ€. | ||
1788 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? | ||
1789 | </f_old_trans> | ||
1790 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1791 | <b_path>//ConfirmObjectDeleteLock/Yes</b_path> | ||
1792 | <c_attribute></c_attribute> | ||
1793 | <d_old> | ||
1794 | Yes | ||
1795 | </d_old> | ||
1796 | <e_new> | ||
1797 | OK | ||
1798 | </e_new> | ||
1799 | <f_old_trans> | ||
1800 | μ | ||
1801 | </f_old_trans> | ||
1802 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1803 | <b_path>//ConfirmObjectDeleteLock/No</b_path> | ||
1804 | <c_attribute></c_attribute> | ||
1805 | <d_old> | ||
1806 | No | ||
1807 | </d_old> | ||
1808 | <e_new> | ||
1809 | Cancel | ||
1810 | </e_new> | ||
1811 | <f_old_trans> | ||
1812 | μλμ€ | ||
1813 | </f_old_trans> | ||
1814 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1815 | <b_path>//ConfirmObjectDeleteNoCopy/message</b_path> | ||
1816 | <c_attribute></c_attribute> | ||
1817 | <d_old> | ||
1818 | At least one object is not copyable. | ||
1819 | However, you can delete the current selection. | ||
1820 | Are you sure you want to delete these items? | ||
1821 | </d_old> | ||
1822 | <e_new> | ||
1823 | At least one of the items you have selected is not copyable. | ||
1824 | |||
1825 | Are you sure you want to delete these items? | ||
1826 | </e_new> | ||
1827 | <f_old_trans> | ||
1828 | 1κ° μ΄μμ μ€λΈμ νΈλ₯Ό 볡μ¬ν μ μμ΅λλ€. | ||
1829 | νμ§λ§ νμ¬ μ ν μμ΄ν μ μμ ν μ μμ΅λλ€. | ||
1830 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? | ||
1831 | </f_old_trans> | ||
1832 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1833 | <b_path>//ConfirmObjectDeleteNoCopy/Yes</b_path> | ||
1834 | <c_attribute></c_attribute> | ||
1835 | <d_old> | ||
1836 | Yes | ||
1837 | </d_old> | ||
1838 | <e_new> | ||
1839 | OK | ||
1840 | </e_new> | ||
1841 | <f_old_trans> | ||
1842 | μ | ||
1843 | </f_old_trans> | ||
1844 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1845 | <b_path>//ConfirmObjectDeleteNoCopy/No</b_path> | ||
1846 | <c_attribute></c_attribute> | ||
1847 | <d_old> | ||
1848 | No | ||
1849 | </d_old> | ||
1850 | <e_new> | ||
1851 | Cancel | ||
1852 | </e_new> | ||
1853 | <f_old_trans> | ||
1854 | μλμ€ | ||
1855 | </f_old_trans> | ||
1856 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1857 | <b_path>//ConfirmObjectDeleteNoOwn/message</b_path> | ||
1858 | <c_attribute></c_attribute> | ||
1859 | <d_old> | ||
1860 | You do not own least one object. | ||
1861 | However, you can delete the current selection. | ||
1862 | Are you sure you want to delete these items? | ||
1863 | </d_old> | ||
1864 | <e_new> | ||
1865 | You do not own least one of the items you have selected . | ||
1866 | |||
1867 | Are you sure you want to delete these items? | ||
1868 | </e_new> | ||
1869 | <f_old_trans> | ||
1870 | μ΅μ νλ μ΄μμ μ€λΈμ νΈλ₯Ό μμ νκ³ μμ§ μμ΅λλ€. | ||
1871 | νμ§λ§ νμ¬ μ ν νλͺ©μ μμ ν μ μμ΅λλ€. | ||
1872 | μ΄λ¬ν μμ΄ν μ μμ νμκ² μ΅λκΉ? | ||
1873 | </f_old_trans> | ||
1874 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1875 | <b_path>//ConfirmObjectDeleteNoOwn/Yes</b_path> | ||
1876 | <c_attribute></c_attribute> | ||
1877 | <d_old> | ||
1878 | Yes | ||
1879 | </d_old> | ||
1880 | <e_new> | ||
1881 | OK | ||
1882 | </e_new> | ||
1883 | <f_old_trans> | ||
1884 | μ | ||
1885 | </f_old_trans> | ||
1886 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1887 | <b_path>//ConfirmObjectDeleteNoOwn/No</b_path> | ||
1888 | <c_attribute></c_attribute> | ||
1889 | <d_old> | ||
1890 | No | ||
1891 | </d_old> | ||
1892 | <e_new> | ||
1893 | Cancel | ||
1894 | </e_new> | ||
1895 | <f_old_trans> | ||
1896 | μλμ€ | ||
1897 | </f_old_trans> | ||
1898 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1899 | <b_path>//ConfirmObjectDeleteLockNoCopy/message</b_path> | ||
1900 | <c_attribute></c_attribute> | ||
1901 | <d_old> | ||
1902 | At least one object is locked. | ||
1903 | At least one object is not copyable. | ||
1904 | However, you can delete the current selection. | ||
1905 | Are you sure you want to delete these items? | ||
1906 | </d_old> | ||
1907 | <e_new> | ||
1908 | At least one object is locked. | ||
1909 | At least one object is not copyable. | ||
1910 | |||
1911 | Are you sure you want to delete these items? | ||
1912 | </e_new> | ||
1913 | <f_old_trans> | ||
1914 | 1κ° μ΄μμ μ€λΈμ νΈκ° μ 겨 μμ΅λλ€. | ||
1915 | 1κ° μ΄μμ μ€λΈμ νΈλ₯Ό 볡μ¬ν μ μμ΅λλ€. | ||
1916 | νμ§λ§ νμ¬ μ ν μμ΄ν μ μμ ν μ μμ΅λλ€. | ||
1917 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? | ||
1918 | </f_old_trans> | ||
1919 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1920 | <b_path>//ConfirmObjectDeleteLockNoCopy/Yes</b_path> | ||
1921 | <c_attribute></c_attribute> | ||
1922 | <d_old> | ||
1923 | Yes | ||
1924 | </d_old> | ||
1925 | <e_new> | ||
1926 | OK | ||
1927 | </e_new> | ||
1928 | <f_old_trans> | ||
1929 | μ | ||
1930 | </f_old_trans> | ||
1931 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1932 | <b_path>//ConfirmObjectDeleteLockNoCopy/No</b_path> | ||
1933 | <c_attribute></c_attribute> | ||
1934 | <d_old> | ||
1935 | No | ||
1936 | </d_old> | ||
1937 | <e_new> | ||
1938 | Cancel | ||
1939 | </e_new> | ||
1940 | <f_old_trans> | ||
1941 | μλμ€ | ||
1942 | </f_old_trans> | ||
1943 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1944 | <b_path>//ConfirmObjectDeleteLockNoOwn/message</b_path> | ||
1945 | <c_attribute></c_attribute> | ||
1946 | <d_old> | ||
1947 | At least one object is locked. | ||
1948 | You do not own least one object. | ||
1949 | However, you can delete the current selection. | ||
1950 | Are you sure you want to delete these items? | ||
1951 | </d_old> | ||
1952 | <e_new> | ||
1953 | At least one object is locked. | ||
1954 | You do not own least one object. | ||
1955 | |||
1956 | Are you sure you want to delete these items? | ||
1957 | </e_new> | ||
1958 | <f_old_trans> | ||
1959 | 1κ° μ΄μμ μ€λΈμ νΈκ° μ 겨 μμ΅λλ€. | ||
1960 | 1κ° μ΄μμ μ€λΈμ νΈκ° κ·νμ μμ κ° μλλλ€. | ||
1961 | νμ§λ§ νμ¬ μ ν μμ΄ν μ μμ ν μ μμ΅λλ€. | ||
1962 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? | ||
1963 | </f_old_trans> | ||
1964 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1965 | <b_path>//ConfirmObjectDeleteLockNoOwn/Yes</b_path> | ||
1966 | <c_attribute></c_attribute> | ||
1967 | <d_old> | ||
1968 | Yes | ||
1969 | </d_old> | ||
1970 | <e_new> | ||
1971 | OK | ||
1972 | </e_new> | ||
1973 | <f_old_trans> | ||
1974 | μ | ||
1975 | </f_old_trans> | ||
1976 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1977 | <b_path>//ConfirmObjectDeleteLockNoOwn/No</b_path> | ||
1978 | <c_attribute></c_attribute> | ||
1979 | <d_old> | ||
1980 | No | ||
1981 | </d_old> | ||
1982 | <e_new> | ||
1983 | Cancel | ||
1984 | </e_new> | ||
1985 | <f_old_trans> | ||
1986 | μλμ€ | ||
1987 | </f_old_trans> | ||
1988 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
1989 | <b_path>//ConfirmObjectDeleteNoCopyNoOwn/message</b_path> | ||
1990 | <c_attribute></c_attribute> | ||
1991 | <d_old> | ||
1992 | At least one object is not copyable. | ||
1993 | You do not own least one object. | ||
1994 | However, you can delete the current selection. | ||
1995 | Are you sure you want to delete these items? | ||
1996 | </d_old> | ||
1997 | <e_new> | ||
1998 | At least one object is not copyable. | ||
1999 | You do not own least one object. | ||
2000 | |||
2001 | Are you sure you want to delete these items? | ||
2002 | </e_new> | ||
2003 | <f_old_trans> | ||
2004 | 1κ° μ΄μμ μ€λΈμ νΈλ₯Ό 볡μ¬ν μ μμ΅λλ€. | ||
2005 | 1κ° μ΄μμ μ€λΈμ νΈκ° κ·νμ μμ κ° μλλλ€. | ||
2006 | νμ§λ§ νμ¬ μ ν μμ΄ν μ μμ ν μ μμ΅λλ€. | ||
2007 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? | ||
2008 | </f_old_trans> | ||
2009 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2010 | <b_path>//ConfirmObjectDeleteNoCopyNoOwn/Yes</b_path> | ||
2011 | <c_attribute></c_attribute> | ||
2012 | <d_old> | ||
2013 | Yes | ||
2014 | </d_old> | ||
2015 | <e_new> | ||
2016 | OK | ||
2017 | </e_new> | ||
2018 | <f_old_trans> | ||
2019 | μ | ||
2020 | </f_old_trans> | ||
2021 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2022 | <b_path>//ConfirmObjectDeleteNoCopyNoOwn/No</b_path> | ||
2023 | <c_attribute></c_attribute> | ||
2024 | <d_old> | ||
2025 | No | ||
2026 | </d_old> | ||
2027 | <e_new> | ||
2028 | Cancel | ||
2029 | </e_new> | ||
2030 | <f_old_trans> | ||
2031 | μλμ€ | ||
2032 | </f_old_trans> | ||
2033 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2034 | <b_path>//ConfirmObjectDeleteLockNoCopyNoOwn/message</b_path> | ||
2035 | <c_attribute></c_attribute> | ||
2036 | <d_old> | ||
2037 | At least one object is locked. | ||
2038 | At least one object is not copyable. | ||
2039 | You do not own least one object. | ||
2040 | However, you can delete the current selection. | ||
2041 | Are you sure you want to delete these items? | ||
2042 | </d_old> | ||
2043 | <e_new> | ||
2044 | At least one object is locked. | ||
2045 | At least one object is not copyable. | ||
2046 | You do not own least one object. | ||
2047 | |||
2048 | Are you sure you want to delete these items? | ||
2049 | </e_new> | ||
2050 | <f_old_trans> | ||
2051 | 1κ° μ΄μμ μ€λΈμ νΈκ° μ 겨 μμ΅λλ€. | ||
2052 | 1κ° μ΄μμ μ€λΈμ νΈλ₯Ό 볡μ¬ν μ μμ΅λλ€. | ||
2053 | 1κ° μ΄μμ μ€λΈμ νΈκ° κ·νμ μμ κ° μλλλ€. | ||
2054 | νμ§λ§ νμ¬ μ ν μμ΄ν μ μμ ν μ μμ΅λλ€. | ||
2055 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? | ||
2056 | </f_old_trans> | ||
2057 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2058 | <b_path>//ConfirmObjectDeleteLockNoCopyNoOwn/Yes</b_path> | ||
2059 | <c_attribute></c_attribute> | ||
2060 | <d_old> | ||
2061 | Yes | ||
2062 | </d_old> | ||
2063 | <e_new> | ||
2064 | OK | ||
2065 | </e_new> | ||
2066 | <f_old_trans> | ||
2067 | μ | ||
2068 | </f_old_trans> | ||
2069 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2070 | <b_path>//ConfirmObjectDeleteLockNoCopyNoOwn/No</b_path> | ||
2071 | <c_attribute></c_attribute> | ||
2072 | <d_old> | ||
2073 | No | ||
2074 | </d_old> | ||
2075 | <e_new> | ||
2076 | cancel | ||
2077 | </e_new> | ||
2078 | <f_old_trans> | ||
2079 | μλμ€ | ||
2080 | </f_old_trans> | ||
2081 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2082 | <b_path>//ConfirmObjectTakeLock/message</b_path> | ||
2083 | <c_attribute></c_attribute> | ||
2084 | <d_old> | ||
2085 | At least one object is locked. | ||
2086 | However, you can take the current selection. | ||
2087 | Are you sure you want to take these items? | ||
2088 | </d_old> | ||
2089 | <e_new> | ||
2090 | At least one object is locked. | ||
2091 | |||
2092 | Are you sure you want to take these items? | ||
2093 | </e_new> | ||
2094 | <f_old_trans> | ||
2095 | 1κ° μ΄μμ μ€λΈμ νΈκ° μ 겨 μμ΅λλ€. | ||
2096 | νμ§λ§ νμ¬ μνλ μμ΄ν μ μ νν μ μμ΅λλ€. | ||
2097 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? | ||
2098 | </f_old_trans> | ||
2099 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2100 | <b_path>//ConfirmObjectTakeLock/Yes</b_path> | ||
2101 | <c_attribute></c_attribute> | ||
2102 | <d_old> | ||
2103 | Yes | ||
2104 | </d_old> | ||
2105 | <e_new> | ||
2106 | OK | ||
2107 | </e_new> | ||
2108 | <f_old_trans> | ||
2109 | μ | ||
2110 | </f_old_trans> | ||
2111 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2112 | <b_path>//ConfirmObjectTakeLock/No</b_path> | ||
2113 | <c_attribute></c_attribute> | ||
2114 | <d_old> | ||
2115 | No | ||
2116 | </d_old> | ||
2117 | <e_new> | ||
2118 | Cancel | ||
2119 | </e_new> | ||
2120 | <f_old_trans> | ||
2121 | μλμ€ | ||
2122 | </f_old_trans> | ||
2123 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2124 | <b_path>//ConfirmObjectTakeNoOwn/message</b_path> | ||
2125 | <c_attribute></c_attribute> | ||
2126 | <d_old> | ||
2127 | You do not own all of the objects you are taking. | ||
2128 | If you continue, next owner permissions will be | ||
2129 | applied to the objects and possibly restrict your | ||
2130 | ability to modify or copy them in the future. | ||
2131 | However, you can take the current selection. | ||
2132 | Are you sure you want to take these items? | ||
2133 | </d_old> | ||
2134 | <e_new> | ||
2135 | You do not own all of the objects you are taking. | ||
2136 | If you continue, next owner permissions will be | ||
2137 | applied and possibly restrict your | ||
2138 | ability to modify or copy them. | ||
2139 | |||
2140 | Are you sure you want to take these items? | ||
2141 | </e_new> | ||
2142 | <f_old_trans> | ||
2143 | κ°μ Έμ€λ €λ λͺ¨λ μ€λΈμ νΈλ₯Ό μμ νκ³ μμ§ μμ΅λλ€. | ||
2144 | κ³μνλ©΄ μ΄ μ€λΈμ νΈμ λ€μ μμ μ£Ό κΆνμ΄ | ||
2145 | μ μ©λκ³ λμ€μ μ€λΈμ νΈλ₯Ό μμ λλ 볡μ¬νλ λ° νμν | ||
2146 | κ·νμ κΆνμ΄ μ νλ μ μμ΅λλ€. | ||
2147 | νμ§λ§ νμ¬ μ νν νλͺ©μ κ°μ Έμ¬ μ μμ΅λλ€. | ||
2148 | μ΄λ¬ν μμ΄ν μ κ°μ Έμ€μκ² μ΅λκΉ? | ||
2149 | </f_old_trans> | ||
2150 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2151 | <b_path>//ConfirmObjectTakeNoOwn/Yes</b_path> | ||
2152 | <c_attribute></c_attribute> | ||
2153 | <d_old> | ||
2154 | Yes | ||
2155 | </d_old> | ||
2156 | <e_new> | ||
2157 | OK | ||
2158 | </e_new> | ||
2159 | <f_old_trans> | ||
2160 | μ | ||
2161 | </f_old_trans> | ||
2162 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2163 | <b_path>//ConfirmObjectTakeNoOwn/No</b_path> | ||
2164 | <c_attribute></c_attribute> | ||
2165 | <d_old> | ||
2166 | No | ||
2167 | </d_old> | ||
2168 | <e_new> | ||
2169 | Cancel | ||
2170 | </e_new> | ||
2171 | <f_old_trans> | ||
2172 | μλμ€ | ||
2173 | </f_old_trans> | ||
2174 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2175 | <b_path>//ConfirmObjectTakeLockNoOwn/message</b_path> | ||
2176 | <c_attribute></c_attribute> | ||
2177 | <d_old> | ||
2178 | At least one object is locked. | ||
2179 | You do not own all of the objects you are taking. | ||
2180 | If you continue, next owner permissions will be | ||
2181 | applied to the objects and possibly restrict your | ||
2182 | ability to modify or copy them in the future. | ||
2183 | However, you can take the current selection. | ||
2184 | Are you sure you want to take these items? | ||
2185 | </d_old> | ||
2186 | <e_new> | ||
2187 | At least one object is locked. | ||
2188 | You do not own all of the objects you are taking. | ||
2189 | If you continue, next owner permissions will be | ||
2190 | applied and possibly restrict your | ||
2191 | ability to modify or copy them. | ||
2192 | However, you can take the current selection. | ||
2193 | Are you sure you want to take these items? | ||
2194 | </e_new> | ||
2195 | <f_old_trans> | ||
2196 | 1κ° μ΄μμ μ€λΈμ νΈκ° μ 겨 μμ΅λλ€. | ||
2197 | κ°μ§λ €λ μ€λΈμ νΈ μ€ μΌλΆκ° κ·νμ μμ κ° μλλλ€. | ||
2198 | κ³μνλ©΄ μ€λΈμ νΈμ λ€μ μμ μ κΆνμ΄ | ||
2199 | μ μ©λμ΄ μ΄νμ κ·νκ° μμ νκ±°λ 볡μ¬ν | ||
2200 | κΆνμ΄ μ νλ μ μμ΅λλ€. | ||
2201 | νμ§λ§ νμ¬ μνλ μμ΄ν μ μ νν μ μμ΅λλ€. | ||
2202 | μ΄ μμ΄ν μ μμ νμκ² μ΅λκΉ? | ||
2203 | </f_old_trans> | ||
2204 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2205 | <b_path>//ConfirmObjectTakeLockNoOwn/Yes</b_path> | ||
2206 | <c_attribute></c_attribute> | ||
2207 | <d_old> | ||
2208 | Yes | ||
2209 | </d_old> | ||
2210 | <e_new> | ||
2211 | OK | ||
2212 | </e_new> | ||
2213 | <f_old_trans> | ||
2214 | μ | ||
2215 | </f_old_trans> | ||
2216 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2217 | <b_path>//ConfirmObjectTakeLockNoOwn/No</b_path> | ||
2218 | <c_attribute></c_attribute> | ||
2219 | <d_old> | ||
2220 | No | ||
2221 | </d_old> | ||
2222 | <e_new> | ||
2223 | Cancel | ||
2224 | </e_new> | ||
2225 | <f_old_trans> | ||
2226 | μλμ€ | ||
2227 | </f_old_trans> | ||
2228 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2229 | <b_path>//DeedLandToGroup/message</b_path> | ||
2230 | <c_attribute></c_attribute> | ||
2231 | <d_old> | ||
2232 | By deeding this parcel, the group will be required | ||
2233 | to have and maintain sufficient land use credits. | ||
2234 | |||
2235 | The purchase price of the land is not refunded to | ||
2236 | the owner. If a deeded parcel is sold, the sale | ||
2237 | price will be divided evenly among group members. | ||
2238 | |||
2239 | Deed this [AREA] square meters of land to the group | ||
2240 | '[GROUP_NAME]'? | ||
2241 | </d_old> | ||
2242 | <e_new> | ||
2243 | By deeding this parcel, the group will be required | ||
2244 | to have and maintain sufficient land use credits. | ||
2245 | |||
2246 | The purchase price of the land is not refunded to | ||
2247 | the owner. If a deeded parcel is sold, the sale | ||
2248 | price will be divided evenly among group members. | ||
2249 | |||
2250 | Deed this [AREA] m2 of land to the group | ||
2251 | '[GROUP_NAME]'? | ||
2252 | </e_new> | ||
2253 | <f_old_trans> | ||
2254 | μ΄ κ΅¬νμ μλνλ λ° μμ΄μ μ΄ κ·Έλ£Ήμ ν μ§ μ¬μ©μ | ||
2255 | μν μΆ©λΆν μ μ©μ΄ μμ΄μΌ ν©λλ€. | ||
2256 | |||
2257 | ν μ§ κ΅¬λ§€ κ°κ²©μ μμ μ£Όμκ² νλΆλμ§ | ||
2258 | μμ΅λλ€. μλλ ꡬνμ΄ ν맀λλ κ²½μ° ν맀 | ||
2259 | κ°κ²©μ κ·Έλ£Ή νμμκ² κ· λ±νκ² λΆλ°°λ©λλ€. | ||
2260 | |||
2261 | [AREA]μ κ³±λ―Έν°μ μ΄ ν μ§λ₯Ό λ€μ κ·Έλ£Ήμκ² μλ νμκ² μ΅λκΉ? | ||
2262 | '[GROUP_NAME]' | ||
2263 | </f_old_trans> | ||
2264 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2265 | <b_path>//DeedLandToGroup/Deed</b_path> | ||
2266 | <c_attribute></c_attribute> | ||
2267 | <d_old> | ||
2268 | Deed | ||
2269 | </d_old> | ||
2270 | <e_new> | ||
2271 | OK | ||
2272 | </e_new> | ||
2273 | <f_old_trans> | ||
2274 | μλ | ||
2275 | </f_old_trans> | ||
2276 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2277 | <b_path>//DeedLandToGroupWithContribution/message</b_path> | ||
2278 | <c_attribute></c_attribute> | ||
2279 | <d_old> | ||
2280 | By deeding this parcel, the group will be required | ||
2281 | to have and maintain sufficient land use credits. | ||
2282 | |||
2283 | The deed will include a simultaneous land | ||
2284 | contribution to the group from '[FIRST_NAME] [LAST_NAME]'. | ||
2285 | |||
2286 | The purchase price of the land is not refunded to | ||
2287 | the owner. If a deeded parcel is sold, the sale | ||
2288 | price will be divided evenly among group members. | ||
2289 | |||
2290 | Deed this [AREA] square meters of land to the group | ||
2291 | '[GROUP_NAME]'? | ||
2292 | </d_old> | ||
2293 | <e_new> | ||
2294 | By deeding this parcel, the group will be required | ||
2295 | to have and maintain sufficient land use credits. | ||
2296 | |||
2297 | The deed will include a simultaneous land | ||
2298 | contribution to the group from '[FIRST_NAME] [LAST_NAME]'. | ||
2299 | |||
2300 | The purchase price of the land is not refunded to | ||
2301 | the owner. If a deeded parcel is sold, the sale | ||
2302 | price will be divided evenly among group members. | ||
2303 | |||
2304 | Deed this [AREA] m2 of land to the group | ||
2305 | '[GROUP_NAME]'? | ||
2306 | </e_new> | ||
2307 | <f_old_trans>LALALA</f_old_trans> | ||
2308 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2309 | <b_path>//DeedLandToGroupWithContribution/Deed</b_path> | ||
2310 | <c_attribute></c_attribute> | ||
2311 | <d_old> | ||
2312 | Deed | ||
2313 | </d_old> | ||
2314 | <e_new> | ||
2315 | OK | ||
2316 | </e_new> | ||
2317 | <f_old_trans> | ||
2318 | μλ | ||
2319 | </f_old_trans> | ||
2320 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2321 | <b_path>//WelcomeChooseSex/message</b_path> | ||
2322 | <c_attribute></c_attribute> | ||
2323 | <d_old> | ||
2324 | Your character will appear in a moment. | ||
2325 | |||
2326 | Use arrow keys to walk. | ||
2327 | |||
2328 | Press the F1 key at any time for help or | ||
2329 | to learn more about [SECOND_LIFE]. | ||
2330 | |||
2331 | Please choose the male or female character. | ||
2332 | You can change your mind later. | ||
2333 | </d_old> | ||
2334 | <e_new> | ||
2335 | Your character will appear in a moment. | ||
2336 | |||
2337 | Use arrow keys to walk. | ||
2338 | |||
2339 | Press the F1 key at any time for help or | ||
2340 | to learn more about [SECOND_LIFE]. | ||
2341 | |||
2342 | Please choose the male or female avatar. | ||
2343 | You can change your mind later. | ||
2344 | </e_new> | ||
2345 | <f_old_trans> | ||
2346 | μ μ ν μ ννμ μΊλ¦ν°κ° λνλ©λλ€. | ||
2347 | |||
2348 | νμ΄ν ν€λ₯Ό μ΄μ©νμ¬ κ±Έμ μ μμ΅λλ€. | ||
2349 | |||
2350 | F1 ν€λ₯Ό λλ¬ λμλ§μ 보거λ | ||
2351 | [SECOND_LIFE]λ₯Ό μμΈν λ°°μΈ μ μμ΅λλ€. | ||
2352 | |||
2353 | λ¨μ± λλ μ¬μ± μΊλ¦ν°λ₯Ό μ νν΄ μ£Όμμμ€. | ||
2354 | μ°¨νμ λ³κ²½μ΄ κ°λ₯ν©λλ€. | ||
2355 | </f_old_trans> | ||
2356 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2357 | <b_path>//KickUsersFromRegion/message</b_path> | ||
2358 | <c_attribute></c_attribute> | ||
2359 | <d_old> | ||
2360 | Teleport home all users in this region? | ||
2361 | </d_old> | ||
2362 | <e_new> | ||
2363 | Teleport all Residents in this region home? | ||
2364 | </e_new> | ||
2365 | <f_old_trans> | ||
2366 | μ΄ μ§μ λ΄ λͺ¨λ μ¬μ©μλ₯Ό νμΌλ‘ ν 리ν¬νΈ νμκ² μ΅λκΉ? | ||
2367 | </f_old_trans> | ||
2368 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2369 | <b_path>//ReturnScriptedOnOthersLand/message</b_path> | ||
2370 | <c_attribute></c_attribute> | ||
2371 | <d_old> | ||
2372 | Are you sure you want to return all scripted objects owned by | ||
2373 | ** [USER_NAME] ** | ||
2374 | non all land but his/her own? | ||
2375 | </d_old> | ||
2376 | <e_new> | ||
2377 | Are you sure you want to return all scripted objects owned by | ||
2378 | ** [USER_NAME] ** | ||
2379 | on all land in this region they do not own? | ||
2380 | </e_new> | ||
2381 | <f_old_trans> | ||
2382 | μ¬μ©μμ ν μ§λ₯Ό μ μΈν λͺ¨λ ν μ§μμ | ||
2383 | ** [USER_NAME] ** | ||
2384 | μμ μ λͺ¨λ μ€ν¬λ¦½νΈ μ€λΈμ νΈλ₯Ό λ°ν νμκ² μ΅λκΉ? | ||
2385 | </f_old_trans> | ||
2386 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2387 | <b_path>//ReturnScriptedOnOthersLand/Return</b_path> | ||
2388 | <c_attribute></c_attribute> | ||
2389 | <d_old> | ||
2390 | Return | ||
2391 | </d_old> | ||
2392 | <e_new> | ||
2393 | OK | ||
2394 | </e_new> | ||
2395 | <f_old_trans> | ||
2396 | λ°ν | ||
2397 | </f_old_trans> | ||
2398 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2399 | <b_path>//ReturnScriptedOnAllLand/message</b_path> | ||
2400 | <c_attribute></c_attribute> | ||
2401 | <d_old> | ||
2402 | Are you sure you want to return ALL scripted objects owned by | ||
2403 | ** [USER_NAME] ** | ||
2404 | non ALL LAND in this region? | ||
2405 | </d_old> | ||
2406 | <e_new> | ||
2407 | Are you sure you want to return ALL scripted objects owned by | ||
2408 | ** [USER_NAME] ** | ||
2409 | on ALL LAND in this region? | ||
2410 | </e_new> | ||
2411 | <f_old_trans> | ||
2412 | μ΄ μ§μ λ΄ λͺ¨λ ν μ§μμ | ||
2413 | ** [USER_NAME] ** | ||
2414 | μμ μ λͺ¨λ μ€ν¬λ¦½νΈ μ€λΈμ νΈλ₯Ό λ°ννμκ² μ΅λκΉ? | ||
2415 | </f_old_trans> | ||
2416 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2417 | <b_path>//ReturnScriptedOnAllLand/Return</b_path> | ||
2418 | <c_attribute></c_attribute> | ||
2419 | <d_old> | ||
2420 | Return | ||
2421 | </d_old> | ||
2422 | <e_new> | ||
2423 | OK | ||
2424 | </e_new> | ||
2425 | <f_old_trans> | ||
2426 | λ°ν | ||
2427 | </f_old_trans> | ||
2428 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2429 | <b_path>//InvalidTerrainBitDepth/message</b_path> | ||
2430 | <c_attribute></c_attribute> | ||
2431 | <d_old> | ||
2432 | Couldn't set region textures: | ||
2433 | |||
2434 | Terrain texture [TEXTURE_NUM] has an invalid bit depth of [TEXTURE_BIT_DEPTH]. | ||
2435 | |||
2436 | Replace texture [TEXTURE_NUM] with a 24 bit 512x512 or smaller image | ||
2437 | then click "Set" again. | ||
2438 | </d_old> | ||
2439 | <e_new> | ||
2440 | Couldn't set region textures: | ||
2441 | |||
2442 | Terrain texture [TEXTURE_NUM] has an invalid bit depth of [TEXTURE_BIT_DEPTH]. | ||
2443 | |||
2444 | Replace texture [TEXTURE_NUM] with a 24-bit 512x512 or smaller image | ||
2445 | then click "Apply" again. | ||
2446 | </e_new> | ||
2447 | <f_old_trans> | ||
2448 | μ§μ ν μ€μ²λ₯Ό μ€μ ν μ μμ΅λλ€: | ||
2449 | |||
2450 | μ§ν ν μ€μ² [TEXTURE_NUM]μ λΉνΈ μμ€ [TEXTURE_BIT_DEPTH]μ΄(κ°) μ ν¨νμ§ μμ΅λλ€. | ||
2451 | |||
2452 | ν μ€μ² [TEXTURE_NUM]μ(λ₯Ό) 24λΉνΈμ 512x512(λλ λ μμ) μ΄λ―Έμ§λ‘ κ΅μ²΄νκ³ | ||
2453 | "μ€μ "μ λ€μ ν΄λ¦νμμμ€. | ||
2454 | </f_old_trans> | ||
2455 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2456 | <b_path>//InvalidTerrainSize/message</b_path> | ||
2457 | <c_attribute></c_attribute> | ||
2458 | <d_old> | ||
2459 | Couldn't set region textures: | ||
2460 | |||
2461 | Terrain texture [TEXTURE_NUM] is too large at [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]. | ||
2462 | |||
2463 | Replace texture [TEXTURE_NUM] with a 24 bit 512x512 or smaller image | ||
2464 | then click "Set" again. | ||
2465 | </d_old> | ||
2466 | <e_new> | ||
2467 | Couldn't set region textures: | ||
2468 | |||
2469 | Terrain texture [TEXTURE_NUM] is too large at [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]. | ||
2470 | |||
2471 | Replace texture [TEXTURE_NUM] with a 24-bit 512x512 or smaller image | ||
2472 | then click "Apply" again. | ||
2473 | </e_new> | ||
2474 | <f_old_trans> | ||
2475 | μ§μ ν μ€μ²λ₯Ό μ€μ ν μ μμ΅λλ€: | ||
2476 | |||
2477 | μ§ν ν μ€μ² [TEXTURE_NUM]μ΄(κ°) λ무 ν½λλ€([TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]). | ||
2478 | |||
2479 | ν μ€μ² [TEXTURE_NUM]μ(λ₯Ό) 24λΉνΈμ 512x512(λλ λ μμ) μ΄λ―Έμ§λ‘ κ΅μ²΄νκ³ | ||
2480 | "μ€μ "μ λ€μ ν΄λ¦νμμμ€. | ||
2481 | </f_old_trans> | ||
2482 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2483 | <b_path>//ConfirmBakeTerrain/Bake</b_path> | ||
2484 | <c_attribute></c_attribute> | ||
2485 | <d_old> | ||
2486 | Bake | ||
2487 | </d_old> | ||
2488 | <e_new> | ||
2489 | OK | ||
2490 | </e_new> | ||
2491 | <f_old_trans> | ||
2492 | μ μ₯ | ||
2493 | </f_old_trans> | ||
2494 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2495 | <b_path>//MaxAllowedAgentOnRegion/message</b_path> | ||
2496 | <c_attribute></c_attribute> | ||
2497 | <d_old> | ||
2498 | You can only have [MAX_AGENTS] allowed residents. | ||
2499 | </d_old> | ||
2500 | <e_new> | ||
2501 | You can only have [MAX_AGENTS] Allowed Residents. | ||
2502 | </e_new> | ||
2503 | <f_old_trans> | ||
2504 | κ·νμκ² νμ©λλ μ΅λ μ£Όλ―Ό μλ [MAX_AGENTS]μ λλ€. | ||
2505 | </f_old_trans> | ||
2506 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2507 | <b_path>//MaxAllowedGroupsOnRegion/message</b_path> | ||
2508 | <c_attribute></c_attribute> | ||
2509 | <d_old> | ||
2510 | You can only have [MAX_GROUPS] allowed groups. | ||
2511 | </d_old> | ||
2512 | <e_new> | ||
2513 | You can only have [MAX_GROUPS] Allowed Groups. | ||
2514 | </e_new> | ||
2515 | <f_old_trans> | ||
2516 | κ·νμκ² νμ©λλ μ΅λ κ·Έλ£Ή μλ [MAX_GROUPS]μ λλ€. | ||
2517 | </f_old_trans> | ||
2518 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2519 | <b_path>//MaxBannedAgentsOnRegion/message</b_path> | ||
2520 | <c_attribute></c_attribute> | ||
2521 | <d_old> | ||
2522 | You can only have [MAX_BANNED] banned residents. | ||
2523 | </d_old> | ||
2524 | <e_new> | ||
2525 | You can only have [MAX_BANNED] Banned Residents. | ||
2526 | </e_new> | ||
2527 | <f_old_trans> | ||
2528 | κ·νμ μ΅λ κΈμ§ μ£Όλ―Ό μλ [MAX_BANNED]μ λλ€. | ||
2529 | </f_old_trans> | ||
2530 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2531 | <b_path>//MaxManagersOnRegion/message</b_path> | ||
2532 | <c_attribute></c_attribute> | ||
2533 | <d_old> | ||
2534 | You can only have [MAX_MANAGER] banned residents. | ||
2535 | </d_old> | ||
2536 | <e_new> | ||
2537 | You can only have [MAX_MANAGER] Banned Residents. | ||
2538 | </e_new> | ||
2539 | <f_old_trans> | ||
2540 | κ·νμ μ΅λ κΈμ§ μ£Όλ―Ό μλ [MAX_MANAGER]μ λλ€. | ||
2541 | </f_old_trans> | ||
2542 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2543 | <b_path>//OwnerCanNotBeDenied/message</b_path> | ||
2544 | <c_attribute></c_attribute> | ||
2545 | <d_old> | ||
2546 | Can't add estate owner to estate 'Access denied' list. | ||
2547 | </d_old> | ||
2548 | <e_new> | ||
2549 | Can't add estate owner to estate 'Banned Resident' list. | ||
2550 | </e_new> | ||
2551 | <f_old_trans> | ||
2552 | μ¬μ μ§ μμ μλ μ¬μ μ§μ 'μΆμ κ±°λΆ' λͺ©λ‘μ μΆκ°λ μ μμ΅λλ€. | ||
2553 | </f_old_trans> | ||
2554 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2555 | <b_path>//FinishedRawDownload/message</b_path> | ||
2556 | <c_attribute></c_attribute> | ||
2557 | <d_old> | ||
2558 | Finished download of raw terrain file to: | ||
2559 | [DOWNLOAD_PATH] | ||
2560 | </d_old> | ||
2561 | <e_new> | ||
2562 | Finished download of raw terrain file to: | ||
2563 | [DOWNLOAD_PATH]. | ||
2564 | </e_new> | ||
2565 | <f_old_trans> | ||
2566 | RAW μ§ν νμΌμ λ€μ κ²½λ‘μ λ€μ΄λ‘λ μλ£νμ΅λλ€: | ||
2567 | [DOWNLOAD_PATH] | ||
2568 | </f_old_trans> | ||
2569 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2570 | <b_path>//DownloadWindowsMandatory/message</b_path> | ||
2571 | <c_attribute></c_attribute> | ||
2572 | <d_old> | ||
2573 | A new version of [SECOND_LIFE] is available. | ||
2574 | [MESSAGE] | ||
2575 | |||
2576 | You must download this update to use the system. | ||
2577 | </d_old> | ||
2578 | <e_new> | ||
2579 | A new version of [SECOND_LIFE] is available. | ||
2580 | [MESSAGE] | ||
2581 | |||
2582 | You must download this update to use [SECOND_LIFE]. | ||
2583 | </e_new> | ||
2584 | <f_old_trans> | ||
2585 | [SECOND_LIFE] μ λ²μ μ΄ μΆμλμμ΅λλ€. | ||
2586 | [MESSAGE] | ||
2587 | |||
2588 | μμ€ν μ μ¬μ©νλ €λ©΄ μ΄ μ λ°μ΄νΈλ₯Ό λ€μ΄λ‘λν΄μΌ ν©λλ€. | ||
2589 | </f_old_trans> | ||
2590 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2591 | <b_path>//DownloadMacMandatory/message</b_path> | ||
2592 | <c_attribute></c_attribute> | ||
2593 | <d_old> | ||
2594 | A new version of [SECOND_LIFE] is available. | ||
2595 | [MESSAGE] | ||
2596 | |||
2597 | You must download this update to use the system. | ||
2598 | |||
2599 | Download to your Applications folder? | ||
2600 | </d_old> | ||
2601 | <e_new> | ||
2602 | A new version of [SECOND_LIFE] is available. | ||
2603 | [MESSAGE] | ||
2604 | |||
2605 | You must download this update to use [SECOND_LIFE]. | ||
2606 | |||
2607 | Download to your Applications folder? | ||
2608 | </e_new> | ||
2609 | <f_old_trans> | ||
2610 | [SECOND_LIFE] μ λ²μ μ΄ μΆμλμμ΅λλ€. | ||
2611 | [MESSAGE] | ||
2612 | |||
2613 | μμ€ν μ μ¬μ©νλ €λ©΄ μ΄ μ λ°μ΄νΈλ₯Ό λ€μ΄λ‘λν΄μΌ ν©λλ€. | ||
2614 | |||
2615 | Applications ν΄λμ λ€μ΄λ‘λνμκ² μ΅λκΉ? | ||
2616 | </f_old_trans> | ||
2617 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2618 | <b_path>//DeedObjectToGroup/message</b_path> | ||
2619 | <c_attribute></c_attribute> | ||
2620 | <d_old> | ||
2621 | Deeding this object will cause the group to: | ||
2622 | * Receive money paid into the object | ||
2623 | </d_old> | ||
2624 | <e_new> | ||
2625 | Deeding this object will cause the group to: | ||
2626 | * Receive L$ paid into the object | ||
2627 | </e_new> | ||
2628 | <f_old_trans> | ||
2629 | μ΄ μ€λΈμ νΈ μλ μ κ·Έλ£Ήμκ² λ°μνλ κ²°κ³Ό: | ||
2630 | * μ€λΈμ νΈμ λν μ§λΆκΈμ μλ Ήν¨ | ||
2631 | </f_old_trans> | ||
2632 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2633 | <b_path>//AddClassified/message</b_path> | ||
2634 | <c_attribute></c_attribute> | ||
2635 | <d_old> | ||
2636 | Classified ads appear in the 'Classified' section of the | ||
2637 | Search directory for one week. | ||
2638 | |||
2639 | Fill out your ad, then click 'Publish...' to add it to the | ||
2640 | directory. | ||
2641 | |||
2642 | You'll be asked for a price to pay when clicking Publish. | ||
2643 | Paying more makes your ad appear higher in the list, and | ||
2644 | also appear higher when people search for keywords. | ||
2645 | </d_old> | ||
2646 | <e_new> | ||
2647 | Classified ads appear in the 'Classified' section of the | ||
2648 | Find directory for one week. | ||
2649 | |||
2650 | Fill out your ad, then click 'Publish...' to add it to the | ||
2651 | directory. | ||
2652 | |||
2653 | You'll be asked for a price to pay when clicking Publish. | ||
2654 | Paying more makes your ad appear higher in the list, and | ||
2655 | also appear higher when people search for keywords. | ||
2656 | </e_new> | ||
2657 | <f_old_trans> | ||
2658 | κ΄κ³ κ° 1μ£ΌμΌ λμ κ²μ λλ ν 리μ 'κ΄κ³ ' μΉμ μ | ||
2659 | λνλ©λλ€. | ||
2660 | |||
2661 | κ΄κ³ λ₯Ό μμ±ν ν 'κ²μνκΈ°...'λ₯Ό ν΄λ¦νμ¬ λλ ν 리μ | ||
2662 | μΆκ°ν©λλ€. | ||
2663 | |||
2664 | κ²μνκΈ°λ₯Ό ν΄λ¦νλ©΄ μ§λΆν κ°κ²©μ 묻λ λ©μμ§κ° λνλ©λλ€. | ||
2665 | λμ κ°κ²©μ μ§λΆν μλ‘ κ΄κ³ κ° λͺ©λ‘μμ λ λμ μμΉμ κ²μ¬λκ³ | ||
2666 | ν€μλ κ²μ κ²°κ³Όμμ λ μ°μ μ μΌλ‘ νμλ©λλ€. | ||
2667 | </f_old_trans> | ||
2668 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2669 | <b_path>//WebLaunchForums/Gotopage</b_path> | ||
2670 | <c_attribute></c_attribute> | ||
2671 | <d_old> | ||
2672 | Go to page | ||
2673 | </d_old> | ||
2674 | <e_new> | ||
2675 | OK | ||
2676 | </e_new> | ||
2677 | <f_old_trans> | ||
2678 | νμ΄μ§λ‘ μ΄λ | ||
2679 | </f_old_trans> | ||
2680 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2681 | <b_path>//WebLaunchSupport/Gotopage</b_path> | ||
2682 | <c_attribute></c_attribute> | ||
2683 | <d_old> | ||
2684 | Go to page | ||
2685 | </d_old> | ||
2686 | <e_new> | ||
2687 | OK | ||
2688 | </e_new> | ||
2689 | <f_old_trans> | ||
2690 | νμ΄μ§λ‘ μ΄λ | ||
2691 | </f_old_trans> | ||
2692 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2693 | <b_path>//WebLaunchSupportWiki/Gotopage</b_path> | ||
2694 | <c_attribute></c_attribute> | ||
2695 | <d_old> | ||
2696 | Go to page | ||
2697 | </d_old> | ||
2698 | <e_new> | ||
2699 | OK | ||
2700 | </e_new> | ||
2701 | <f_old_trans> | ||
2702 | νμ΄μ§λ‘ μ΄λ | ||
2703 | </f_old_trans> | ||
2704 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2705 | <b_path>//WebLaunchLSLGuide/message</b_path> | ||
2706 | <c_attribute></c_attribute> | ||
2707 | <d_old> | ||
2708 | Go to the LSL Guide for scripting help? | ||
2709 | </d_old> | ||
2710 | <e_new> | ||
2711 | Go to the Scripting Guide for scripting help? | ||
2712 | </e_new> | ||
2713 | <f_old_trans> | ||
2714 | μ€ν¬λ¦½ν λμλ§μ μν΄ LSL κ°μ΄λλ‘ κ°λκΉ? | ||
2715 | </f_old_trans> | ||
2716 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2717 | <b_path>//WebLaunchLSLGuide/Gotopage</b_path> | ||
2718 | <c_attribute></c_attribute> | ||
2719 | <d_old> | ||
2720 | Go to page | ||
2721 | </d_old> | ||
2722 | <e_new> | ||
2723 | OK | ||
2724 | </e_new> | ||
2725 | <f_old_trans> | ||
2726 | νμ΄μ§λ‘ μ΄λ | ||
2727 | </f_old_trans> | ||
2728 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2729 | <b_path>//WebLaunchReleaseNotes/Gotopage</b_path> | ||
2730 | <c_attribute></c_attribute> | ||
2731 | <d_old> | ||
2732 | Go to page | ||
2733 | </d_old> | ||
2734 | <e_new> | ||
2735 | OK | ||
2736 | </e_new> | ||
2737 | <f_old_trans> | ||
2738 | νμ΄μ§λ‘ μ΄λ | ||
2739 | </f_old_trans> | ||
2740 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2741 | <b_path>//ReturnToOwner/message</b_path> | ||
2742 | <c_attribute></c_attribute> | ||
2743 | <d_old> | ||
2744 | Are you sure you want to return the selected | ||
2745 | objects to their owners? Transferable deeded | ||
2746 | objects will be returned to their previous owners. | ||
2747 | (All objects returned will return to the folder they were last in.) | ||
2748 | |||
2749 | *WARNING* No-transfer deeded objects will be deleted! | ||
2750 | </d_old> | ||
2751 | <e_new> | ||
2752 | Are you sure you want to return the selected | ||
2753 | objects to their owners? Transferable deeded | ||
2754 | objects will be returned to their previous owners. | ||
2755 | |||
2756 | *WARNING* No-transfer deeded objects will be deleted! | ||
2757 | </e_new> | ||
2758 | <f_old_trans> | ||
2759 | μ νν μ€λΈμ νΈλ₯Ό μμ μ£Όμκ² | ||
2760 | λ°ν νμκ² μ΅λκΉ? μλλ | ||
2761 | μλ κ°λ₯ μ€λΈμ νΈκ° μ΄μ μμ μμκ² λ°νλ©λλ€. | ||
2762 | (λ°νλλ λͺ¨λ μ€λΈμ νΈλ μ΅μ’ μμ ν΄λλ‘ λ°νλ©λλ€.) | ||
2763 | |||
2764 | *κ²½κ³ * μλλ μλ λΆκ°λ₯ μ€λΈμ νΈλ μμ λ©λλ€. | ||
2765 | </f_old_trans> | ||
2766 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2767 | <b_path>//ReturnToOwner/Return</b_path> | ||
2768 | <c_attribute></c_attribute> | ||
2769 | <d_old> | ||
2770 | Return | ||
2771 | </d_old> | ||
2772 | <e_new> | ||
2773 | OK | ||
2774 | </e_new> | ||
2775 | <f_old_trans> | ||
2776 | λ°ν | ||
2777 | </f_old_trans> | ||
2778 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2779 | <b_path>//ViewReleaseNotes/Gotopage</b_path> | ||
2780 | <c_attribute></c_attribute> | ||
2781 | <d_old> | ||
2782 | Go to page | ||
2783 | </d_old> | ||
2784 | <e_new> | ||
2785 | OK | ||
2786 | </e_new> | ||
2787 | <f_old_trans> | ||
2788 | νμ΄μ§λ‘ μ΄λ | ||
2789 | </f_old_trans> | ||
2790 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2791 | <b_path>//GroupLeaveConfirmOfficer/Leave</b_path> | ||
2792 | <c_attribute></c_attribute> | ||
2793 | <d_old> | ||
2794 | Leave | ||
2795 | </d_old> | ||
2796 | <e_new> | ||
2797 | OK | ||
2798 | </e_new> | ||
2799 | <f_old_trans> | ||
2800 | νν΄ | ||
2801 | </f_old_trans> | ||
2802 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2803 | <b_path>//GroupLeaveConfirmMember/Leave</b_path> | ||
2804 | <c_attribute></c_attribute> | ||
2805 | <d_old> | ||
2806 | Leave | ||
2807 | </d_old> | ||
2808 | <e_new> | ||
2809 | OK | ||
2810 | </e_new> | ||
2811 | <f_old_trans> | ||
2812 | νν΄ | ||
2813 | </f_old_trans> | ||
2814 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2815 | <b_path>//RemoveItemWarn/message</b_path> | ||
2816 | <c_attribute></c_attribute> | ||
2817 | <d_old> | ||
2818 | Though permitted, deleting inventory may damage the | ||
2819 | object. Do you want to delete that inventory item? | ||
2820 | </d_old> | ||
2821 | <e_new> | ||
2822 | Though permitted, deleting contents may damage the | ||
2823 | object. Do you want to delete that item? | ||
2824 | </e_new> | ||
2825 | <f_old_trans> | ||
2826 | νμ©λ κ²½μ° μΈλ²€ν 리λ₯Ό μμ νλ©΄ μ€λΈμ νΈκ° μμλ μ | ||
2827 | μμ΅λλ€. μμ΄ν μ μμ νμκ² μ΅λκΉ? | ||
2828 | </f_old_trans> | ||
2829 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2830 | <b_path>//RemoveItemWarn/Yes</b_path> | ||
2831 | <c_attribute></c_attribute> | ||
2832 | <d_old> | ||
2833 | Yes | ||
2834 | </d_old> | ||
2835 | <e_new> | ||
2836 | OK | ||
2837 | </e_new> | ||
2838 | <f_old_trans> | ||
2839 | μ | ||
2840 | </f_old_trans> | ||
2841 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2842 | <b_path>//RemoveItemWarn/No</b_path> | ||
2843 | <c_attribute></c_attribute> | ||
2844 | <d_old> | ||
2845 | No | ||
2846 | </d_old> | ||
2847 | <e_new> | ||
2848 | Cancel | ||
2849 | </e_new> | ||
2850 | <f_old_trans> | ||
2851 | μλμ€ | ||
2852 | </f_old_trans> | ||
2853 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2854 | <b_path>//CantSetHome/message</b_path> | ||
2855 | <c_attribute></c_attribute> | ||
2856 | <d_old> | ||
2857 | Can't set home to here. | ||
2858 | Your home must be on land you or your group owns. | ||
2859 | </d_old> | ||
2860 | <e_new> | ||
2861 | Can't set home to here. | ||
2862 | </e_new> | ||
2863 | <f_old_trans> | ||
2864 | μ΄ κ³³μ νμΌλ‘ μ€μ ν μ μμ΅λλ€. | ||
2865 | νμ κ·νλ κ·νμ κ·Έλ£Ήμ΄ μμ ν ν μ§μ μμ΄μΌ ν©λλ€. | ||
2866 | </f_old_trans> | ||
2867 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2868 | <b_path>//BusyModeSet/message</b_path> | ||
2869 | <c_attribute></c_attribute> | ||
2870 | <d_old> | ||
2871 | Busy mode set. | ||
2872 | Chat and instant messages will be hidden. Instant | ||
2873 | messages will get your busy reply. All teleportation | ||
2874 | and inventory offers will be declined. | ||
2875 | </d_old> | ||
2876 | <e_new> | ||
2877 | Busy mode set. | ||
2878 | Chat and instant messages will be hidden. Instant | ||
2879 | messages will get your Busy mode response. All teleportation | ||
2880 | and inventory offers will be declined. | ||
2881 | </e_new> | ||
2882 | <f_old_trans> | ||
2883 | λ€λ₯Έ μ©λ¬΄ μ€ λͺ¨λκ° μ€μ λμμ΅λλ€. | ||
2884 | μ±ν λ° λ©μ μ κ° μ¨κ²¨μ§λλ€. λ©μ μ λ₯Ό | ||
2885 | λ°μΌλ©΄ κ·νμ λ€λ₯Έ μ©λ¬΄ μ€ μλ΅μ΄ λ΅λ³ λ©λλ€. λͺ¨λ ν 리ν¬νΈ λ° μμ΄ν μ κ³΅μ΄ κ±°λΆλ©λλ€. | ||
2886 | </f_old_trans> | ||
2887 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2888 | <b_path>//ChangeLindenEstate/ChangeEstate</b_path> | ||
2889 | <c_attribute></c_attribute> | ||
2890 | <d_old> | ||
2891 | Change Estate | ||
2892 | </d_old> | ||
2893 | <e_new> | ||
2894 | OK | ||
2895 | </e_new> | ||
2896 | <f_old_trans> | ||
2897 | μ¬μ μ§ λ³κ²½ | ||
2898 | </f_old_trans> | ||
2899 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2900 | <b_path>//ChangeLindenAccess/message</b_path> | ||
2901 | <c_attribute></c_attribute> | ||
2902 | <d_old> | ||
2903 | You are about to change the access list for a Linden owned | ||
2904 | estate (mainland, teen grid, orientation, etc.). | ||
2905 | |||
2906 | This is DANGEROUS and should only be done to invoke the | ||
2907 | hack allowing objects/money to be transfered in/out of | ||
2908 | a grid. | ||
2909 | |||
2910 | It will change thousands of regions and make the | ||
2911 | spaceserver hiccup. | ||
2912 | |||
2913 | Proceed? | ||
2914 | </d_old> | ||
2915 | <e_new> | ||
2916 | You are about to change the access list for a Linden owned | ||
2917 | estate (mainland, teen grid, orientation, etc.). | ||
2918 | |||
2919 | This is DANGEROUS and should only be done to invoke the | ||
2920 | hack allowing objects/L$ to be transfered in/out of | ||
2921 | a grid. | ||
2922 | |||
2923 | It will change thousands of regions and make the | ||
2924 | spaceserver hiccup. | ||
2925 | </e_new> | ||
2926 | <f_old_trans> | ||
2927 | κ·νκ»μλ λ¦°λ μμ μ μ¬μ μ§(λ©μΈλλ, ν΄ κ·Έλ¦¬λ, μ€λ¦¬μν μ΄μ λ±)μ λν | ||
2928 | μ κ·Ό λͺ©λ‘μ λ³κ²½νλ €κ³ ν©λλ€. | ||
2929 | |||
2930 | μ΄λ μνν μμ μ΄λ©° μ€λΈμ νΈ/κΈμ‘μ 그리λμμ μ‘μμ ν μ μλλ‘ | ||
2931 | ν΅μ λΆλ¬λ΄λ κ²½μ°μλ§ μνν μ | ||
2932 | μμ΅λλ€. | ||
2933 | |||
2934 | μ΄λ κ² νλ©΄ μμ²κ°μ§μ μ§μμ΄ λ³κ²½λκ³ | ||
2935 | κ³΅κ° μλ²κ° μΌμμ μΌλ‘ μ€λ¨λ μλ μμ΅λλ€. | ||
2936 | |||
2937 | κ³μνμκ² μ΅λκΉ? | ||
2938 | </f_old_trans> | ||
2939 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2940 | <b_path>//ChangeLindenAccess/ChangeEstate</b_path> | ||
2941 | <c_attribute></c_attribute> | ||
2942 | <d_old> | ||
2943 | Change Estate | ||
2944 | </d_old> | ||
2945 | <e_new> | ||
2946 | OK | ||
2947 | </e_new> | ||
2948 | <f_old_trans> | ||
2949 | μ¬μ μ§ λ³κ²½ | ||
2950 | </f_old_trans> | ||
2951 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2952 | <b_path>//EstateBannedAgentRemove/message</b_path> | ||
2953 | <c_attribute></c_attribute> | ||
2954 | <d_old> | ||
2955 | Stop denying access for this estate only or for [ALL_ESTATES]? | ||
2956 | </d_old> | ||
2957 | <e_new> | ||
2958 | Remove this Resident from the ban list for access for this estate only or for [ALL_ESTATES]? | ||
2959 | </e_new> | ||
2960 | <f_old_trans> | ||
2961 | μ΄ μμ μ§μ λν΄μλ§ λλ [ALL_ESTATES]μ λν μ κ·Ό κ±°λΆλ₯Ό μ€λ¨νμκ² μ΅λκΉ? | ||
2962 | </f_old_trans> | ||
2963 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2964 | <b_path>//EstateManagerAdd/message</b_path> | ||
2965 | <c_attribute></c_attribute> | ||
2966 | <d_old> | ||
2967 | Add estate manager for this estate only or for all your estates? | ||
2968 | </d_old> | ||
2969 | <e_new> | ||
2970 | Add estate manager for this estate only or for [ALL_ESTATES]? | ||
2971 | </e_new> | ||
2972 | <f_old_trans> | ||
2973 | μ΄ μ¬μ μ§μ λν΄μλ§ λλ λͺ¨λ μ¬μ μ§μ λν΄ μ¬μ μ§ κ΄λ¦¬μλ₯Ό μΆκ°νμκ² μ΅λκΉ? | ||
2974 | </f_old_trans> | ||
2975 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2976 | <b_path>//EstateManagerRemove/message</b_path> | ||
2977 | <c_attribute></c_attribute> | ||
2978 | <d_old> | ||
2979 | Remove estate manager for this estate only or for all your estates? | ||
2980 | </d_old> | ||
2981 | <e_new> | ||
2982 | Remove estate manager for this estate only or for [ALL_ESTATES]? | ||
2983 | </e_new> | ||
2984 | <f_old_trans> | ||
2985 | μ΄ μ¬μ μ§λ§ λλ λ΄ λͺ¨λ μ¬μ μ§ κ΄λ¦¬μλ₯Ό μ κ±°ν©λκΉ? | ||
2986 | </f_old_trans> | ||
2987 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
2988 | <b_path>//EstateKickUser/Kick</b_path> | ||
2989 | <c_attribute></c_attribute> | ||
2990 | <d_old> | ||
2991 | Kick | ||
2992 | </d_old> | ||
2993 | <e_new> | ||
2994 | OK | ||
2995 | </e_new> | ||
2996 | <f_old_trans> | ||
2997 | μΆλ°©νκΈ° | ||
2998 | </f_old_trans> | ||
2999 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3000 | <b_path>//EstateChangeCovenant/Change</b_path> | ||
3001 | <c_attribute></c_attribute> | ||
3002 | <d_old> | ||
3003 | Change | ||
3004 | </d_old> | ||
3005 | <e_new> | ||
3006 | OK | ||
3007 | </e_new> | ||
3008 | <f_old_trans> | ||
3009 | λ³κ²½ | ||
3010 | </f_old_trans> | ||
3011 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3012 | <b_path>//PublishClassified/Publish</b_path> | ||
3013 | <c_attribute></c_attribute> | ||
3014 | <d_old> | ||
3015 | Publish | ||
3016 | </d_old> | ||
3017 | <e_new> | ||
3018 | OK | ||
3019 | </e_new> | ||
3020 | <f_old_trans> | ||
3021 | κ²μνκΈ° | ||
3022 | </f_old_trans> | ||
3023 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3024 | <b_path>//ConfirmRestart/Restart</b_path> | ||
3025 | <c_attribute></c_attribute> | ||
3026 | <d_old> | ||
3027 | Restart | ||
3028 | </d_old> | ||
3029 | <e_new> | ||
3030 | OK | ||
3031 | </e_new> | ||
3032 | <f_old_trans> | ||
3033 | μ¬μμ | ||
3034 | </f_old_trans> | ||
3035 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3036 | <b_path>//HelpRegionAllowDamage/message</b_path> | ||
3037 | <c_attribute></c_attribute> | ||
3038 | <d_old> | ||
3039 | Checking this box enables the health system across all parcels | ||
3040 | regardless of individual parcel settings. If this box is left | ||
3041 | unchecked, individual parcel owners will still be able to | ||
3042 | activate the health system on their parcels. | ||
3043 | |||
3044 | Default: off | ||
3045 | </d_old> | ||
3046 | <e_new> | ||
3047 | If this box is checked, the health system across all parcels | ||
3048 | regardless of individual parcel settings. If this box is left | ||
3049 | unchecked, individual parcel owners will still be able to | ||
3050 | activate the health system on their parcels. | ||
3051 | |||
3052 | Default: off | ||
3053 | </e_new> | ||
3054 | <f_old_trans> | ||
3055 | μ΄ μμλ₯Ό μ ννλ©΄ κ°λ³ ꡬν μ€μ κ³Ό κ΄κ³μμ΄ λͺ¨λ ꡬνμ | ||
3056 | 보건 μμ€ν μ΄ νμ±ν λ©λλ€. μ΄ μμκ° μ ν ν΄μ λ | ||
3057 | κ²½μ°μλ κ°λ³ ꡬν μμ μ£Όκ° μμ μ ꡬν 보건 μμ€ν μ | ||
3058 | νμ±νν μ μμ΅λλ€. | ||
3059 | |||
3060 | κΈ°λ³Έ μ€μ : κΊΌμ§ | ||
3061 | </f_old_trans> | ||
3062 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3063 | <b_path>//HelpRegionAgentLimit/message</b_path> | ||
3064 | <c_attribute></c_attribute> | ||
3065 | <d_old> | ||
3066 | Sets the maximum number of avatars allowed in this region. | ||
3067 | Note that the more avatars you have in one region, the worse | ||
3068 | the performance can be. | ||
3069 | |||
3070 | Default: 30 | ||
3071 | </d_old> | ||
3072 | <e_new> | ||
3073 | Sets the maximum number of avatars allowed in this region. | ||
3074 | Performance may vary depending on the | ||
3075 | number avatars present. | ||
3076 | |||
3077 | Default: 40 | ||
3078 | </e_new> | ||
3079 | <f_old_trans> | ||
3080 | μ΄ μ§μμ νμ©λλ μ΅λ μλ°ν μλ₯Ό μ€μ ν©λλ€. | ||
3081 | ν μ§μμ μλ°ν μκ° λ§μμλ‘ | ||
3082 | μ±λ₯μ΄ μ νλλ€λ μ μ μ λ νμμμ€. | ||
3083 | |||
3084 | κΈ°λ³Έ μ€μ : 30 | ||
3085 | </f_old_trans> | ||
3086 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3087 | <b_path>//HelpRegionObjectBonus/message</b_path> | ||
3088 | <c_attribute></c_attribute> | ||
3089 | <d_old> | ||
3090 | The Object Bonus is a multiplier for primitives allowed on any given | ||
3091 | parcel. The range allowed is 1 to 10. Set at '1' each 512m2 parcel | ||
3092 | would be allowed 117 objects. Set at '2' each 512m2 parcel would be | ||
3093 | allowed 234, or twice as many, and so on. The max number of objects | ||
3094 | allowed per region remains 15,000 no matter what the value set for | ||
3095 | Object Bonus. Once this value is set, it should not be lowered until | ||
3096 | you are certain that changing it will not force return or deletion of | ||
3097 | the objects currently on parcels. | ||
3098 | |||
3099 | Default: 1.0 | ||
3100 | </d_old> | ||
3101 | <e_new> | ||
3102 | The Object Bonus is a multiplier for primitives allowed on any given | ||
3103 | parcel. The range allowed is 1 to 10. Set at '1', each 512m2 parcel | ||
3104 | is allowed 117 objects. Set at '2', each 512m2 parcel is | ||
3105 | allowed 234, or twice as many, and so on. The max number of objects | ||
3106 | allowed per region remains 15,000 no matter what the | ||
3107 | Object Bonus is. once set, be aware that lowering the Object Bonus may cause | ||
3108 | objects to be returned or deleted. | ||
3109 | |||
3110 | Default: 1.0 | ||
3111 | </e_new> | ||
3112 | <f_old_trans>LALALA</f_old_trans> | ||
3113 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3114 | <b_path>//HelpRegionMaturity/message</b_path> | ||
3115 | <c_attribute></c_attribute> | ||
3116 | <d_old> | ||
3117 | Sets the maturity of the region, as shown in the upper right hand | ||
3118 | corner of the screen and in pop-up tips on the map. Maturity | ||
3119 | also affects search results - residents can choose not to find | ||
3120 | content in Mature regions. | ||
3121 | |||
3122 | The pop-up tips on the map will not change for 5 minutes, because | ||
3123 | the system only updates map information periodically. | ||
3124 | |||
3125 | Default: PG | ||
3126 | </d_old> | ||
3127 | <e_new> | ||
3128 | Sets the maturity of the region, as shown at the top | ||
3129 | of the screen and in pop-up tips on the map. This setting | ||
3130 | also affects search results - Residents can choose not to find | ||
3131 | content in Mature regions. | ||
3132 | |||
3133 | It may take some time for this change to be reflected | ||
3134 | on the map. | ||
3135 | |||
3136 | Default: PG | ||
3137 | </e_new> | ||
3138 | <f_old_trans> | ||
3139 | νλ©΄ μ°μΈ‘ μλ¨ μ½λμ μ§λμ νμ νμ νμλ λλ‘ | ||
3140 | μ±μΈμ© μ§μμ μ€μ ν©λλ€. μ±μΈμ©μ | ||
3141 | κ²μ κ²°κ³Όμ μν₯μ μ€ μ μμΌλ©° μ£Όλ―Όλ€μ΄ μ±μΈμ© μ§μμ 컨ν μΈ λ₯Ό μ°Ύμ§ λͺ»νλλ‘ | ||
3142 | μ νν μ μμ΅λλ€. | ||
3143 | |||
3144 | μμ€ν μ΄ μ£ΌκΈ°μ μΌλ‘ μ§λ μ λ³΄λ§ μ λ°μ΄νΈνκΈ° λλ¬Έμ | ||
3145 | μ§λμ νμ νμ 5λΆ λμ λ³κ²½λμ§ μμ΅λλ€. | ||
3146 | |||
3147 | κΈ°λ³Έ μ€μ : PG | ||
3148 | </f_old_trans> | ||
3149 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3150 | <b_path>//HelpRegionRestrictPushObject/message</b_path> | ||
3151 | <c_attribute></c_attribute> | ||
3152 | <d_old> | ||
3153 | Sets the full region to restricted push permissions. | ||
3154 | Agents may only push themselves, or be pushed by scripts owned by | ||
3155 | the owner of a parcel, or that are set to the group of the parcel, | ||
3156 | assuming the parcel has a group set/deeded. | ||
3157 | Push refers to the llPushObject() LSL function. | ||
3158 | |||
3159 | Default: Off | ||
3160 | </d_old> | ||
3161 | <e_new> | ||
3162 | This checkbox sets the full region to restricted push permissions. | ||
3163 | When enabled, Residents may only be pushed by themselves | ||
3164 | or by the parcel's owner. | ||
3165 | (Push refers to the llPushObject() LSL function.) | ||
3166 | |||
3167 | Default: Off | ||
3168 | </e_new> | ||
3169 | <f_old_trans> | ||
3170 | μ 체 μ§μμ νμ λ μ μ© κΆνμΌλ‘ μ€μ ν©λλ€. | ||
3171 | μμ΄μ νΈλ μμ λ§μ μ μ©νκ±°λ ꡬν μμ μ£Όκ° μμ ν μ€ν¬λ¦½νΈκ° μ μ©λκ±°λ | ||
3172 | λλ ꡬνμ κ·Έλ£Ήμ μ€μ λ μ€ν¬λ¦½νΈλ‘ | ||
3173 | ν΄λΉ ꡬνμ κ·Έλ£Ή μ€μ /μλκ° μλ κ²μΌλ‘ μΆμ ν©λλ€. | ||
3174 | λ°κΈ°λ llPushObject() LSL κΈ°λ₯μ λ§ν©λλ€. | ||
3175 | |||
3176 | κΈ°λ³Έ μ€μ : κΊΌμ§ | ||
3177 | </f_old_trans> | ||
3178 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3179 | <b_path>//HelpParcelChanges/message</b_path> | ||
3180 | <c_attribute></c_attribute> | ||
3181 | <d_old> | ||
3182 | Sets whether or not parcels not owned by the estate owner | ||
3183 | can be joined or subdivided. | ||
3184 | If this option is unchecked: | ||
3185 | * Only estate owners or managers can join or subdivide parcels. | ||
3186 | * They may only join or subdivide parcels belonging to the owner, | ||
3187 | or to a group where they have the appropriate group powers. | ||
3188 | If this option is checked: | ||
3189 | * All parcel owners can join or subdivide the parcels they own. | ||
3190 | * For group owned parcels, those with appropriate group powers | ||
3191 | may join or subdivide parcels. | ||
3192 | |||
3193 | Default: Checked | ||
3194 | </d_old> | ||
3195 | <e_new>LALALA</e_new> | ||
3196 | <f_old_trans>LALALA</f_old_trans> | ||
3197 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3198 | <b_path>//RegionMaturityChange/message</b_path> | ||
3199 | <c_attribute></c_attribute> | ||
3200 | <d_old> | ||
3201 | The maturity rating for this region has been updated. | ||
3202 | |||
3203 | The world map, however, will take approximately 5 minutes | ||
3204 | to update, because the system only updates map information | ||
3205 | periodically. | ||
3206 | </d_old> | ||
3207 | <e_new> | ||
3208 | The maturity rating for this region has been updated. | ||
3209 | |||
3210 | It may take some time for the change to be | ||
3211 | reflected on the map. | ||
3212 | </e_new> | ||
3213 | <f_old_trans> | ||
3214 | μ΄ μμμ λν μ±μΈμ© λ±κΈμ΄ μ λ°μ΄νΈλμμ΅λλ€. | ||
3215 | |||
3216 | μμ€ν μ΄ μ£ΌκΈ°μ μΌλ‘ μ§λ μ λ³΄λ§ μ λ°μ΄νΈνκΈ° λλ¬Έμ | ||
3217 | μλ μ§λλ₯Ό μ λ°μ΄νΈνλ €λ©΄ μ½ 5λΆ μ λ | ||
3218 | μμλ©λλ€. | ||
3219 | </f_old_trans> | ||
3220 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3221 | <b_path>//HelpRegionDisableScripts/message</b_path> | ||
3222 | <c_attribute></c_attribute> | ||
3223 | <d_old> | ||
3224 | When sim performance is poor, a script may be to blame. Open the | ||
3225 | Statistics Bar (Ctrl-Shift-1). Look at the Simulator Physics FPS. | ||
3226 | If it is lower than 45 then open the 'Time' panel located at the | ||
3227 | bottom of the Stats Bar. If Script Time reads 25 ms or higher, click | ||
3228 | the 'Get Top Scripts' button. You will be given the name and location | ||
3229 | of scripts that may be causing poor performance. | ||
3230 | |||
3231 | Checking the 'Disable Scripts' box and then pressing the 'Apply' | ||
3232 | button will temporarily disable all scripts in this region. You may | ||
3233 | need to do this in order to travel to the location of a noted | ||
3234 | 'top script'. Once you have arrived at the location, investigate the | ||
3235 | script to determine if it is causing the problem. You may want to | ||
3236 | contact the owner of the script or delete or return the object. | ||
3237 | Uncheck the 'Disable Script' box and then 'Apply' to reactivate | ||
3238 | the scripts in the region. | ||
3239 | |||
3240 | Default: off | ||
3241 | </d_old> | ||
3242 | <e_new>LALALA</e_new> | ||
3243 | <f_old_trans>LALALA</f_old_trans> | ||
3244 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3245 | <b_path>//HelpRegionDisableCollisions/message</b_path> | ||
3246 | <c_attribute></c_attribute> | ||
3247 | <d_old> | ||
3248 | When sim performance is poor, physical objects may be to blame. | ||
3249 | Open the Statistics Bar (Ctrl-Shift-1). Look at the Simulator | ||
3250 | Physics FPS. If it is lower than 45 then open the 'Time' panel | ||
3251 | located at the bottom of the Stats Bar. If Sim Time (Physics) | ||
3252 | reads 20 ms or higher, click the 'Get Top Colliders' button. | ||
3253 | You will be given the name and location of physical objects | ||
3254 | that may be causing poor performance. | ||
3255 | |||
3256 | Checking the 'Disable Collisions' box and then pressing the 'Apply' | ||
3257 | button will temporarily disable object-object collisions. You may | ||
3258 | need to do this in order to travel to the location of a noted | ||
3259 | 'top collider'. Once you have arrived at the location, investigate the | ||
3260 | object - is it constantly colliding with other objects? You may want to | ||
3261 | contact the owner of the object or delete or return the object. | ||
3262 | Uncheck the 'Disable Collisions' box and then 'Apply' to reactivate | ||
3263 | collisions in the region. | ||
3264 | |||
3265 | Default: off | ||
3266 | </d_old> | ||
3267 | <e_new>LALALA</e_new> | ||
3268 | <f_old_trans>LALALA</f_old_trans> | ||
3269 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3270 | <b_path>//HelpRegionDisablePhysics/message</b_path> | ||
3271 | <c_attribute></c_attribute> | ||
3272 | <d_old> | ||
3273 | Disable Physics is similar to Disable Collisions, except all | ||
3274 | physics simulation is disabled. This means that not only will | ||
3275 | objects stop colliding, but avatars will be unable to move. | ||
3276 | |||
3277 | This should only be used when Disable Collisions does not | ||
3278 | give back enough performance to the region to investigate | ||
3279 | a physics problem or 'Top Collider'. | ||
3280 | |||
3281 | Be sure to re-enable physics when you are done, or avatars | ||
3282 | will continue to be unable to move. | ||
3283 | |||
3284 | Default: off | ||
3285 | </d_old> | ||
3286 | <e_new> | ||
3287 | Disable Physics is similar to Disable Collisions, except all | ||
3288 | physics simulation is disabled. This means that not only will | ||
3289 | objects stop colliding, but avatars will be unable to move. | ||
3290 | |||
3291 | This should only be used when Disable Collisions does not | ||
3292 | give back enough performance to the region to investigate | ||
3293 | a physics problem or Top Collider. | ||
3294 | |||
3295 | Be sure to re-enable physics when you are done, or avatars | ||
3296 | will continue to be unable to move. | ||
3297 | |||
3298 | Default: off | ||
3299 | </e_new> | ||
3300 | <f_old_trans>LALALA</f_old_trans> | ||
3301 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3302 | <b_path>//HelpRegionTopColliders/message</b_path> | ||
3303 | <c_attribute></c_attribute> | ||
3304 | <d_old> | ||
3305 | Show a list of objects experiencing the greatest number | ||
3306 | of potential object-object collisions. These objects can | ||
3307 | slow sim performance. Select View > Statistics Bar and | ||
3308 | look under Simulator > Time > Sim Time (Physics) to see | ||
3309 | if more than 20 ms is being spent in physics. | ||
3310 | </d_old> | ||
3311 | <e_new> | ||
3312 | Show a list of objects experiencing the greatest number | ||
3313 | of potential object-object collisions. These objects can | ||
3314 | slow performance. Select View > Statistics Bar and | ||
3315 | look under Simulator > Time > Sim Time (Physics) to see | ||
3316 | if more than 20 ms is being spent in physics. | ||
3317 | </e_new> | ||
3318 | <f_old_trans> | ||
3319 | μ€λΈμ νΈ κ°μ μ΅κ³ μμ€μ μΆ©λ κ°λ₯μ±μ κ²½ννλ | ||
3320 | μ€λΈμ νΈ λͺ©λ‘μ νμν©λλ€. μ΄λ¬ν μ€λΈμ νΈλ‘ μΈν΄ | ||
3321 | Simulation μ±λ₯μ΄ λλ €μ§ μ μμ΅λλ€. 물리μ μΌλ‘ 20 ms μ΄μ μ¬μ©λμλμ§ μ¬λΆλ₯Ό νμΈνλ €λ©΄ | ||
3322 | '보기 > ν΅κ³λ³΄κΈ°'λ₯Ό μ ννκ³ 'μλ¬λ μ΄ν° > | ||
3323 | μκ° > Simulation μκ°(Physics)'μ νμΈνμμμ€. | ||
3324 | </f_old_trans> | ||
3325 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3326 | <b_path>//HelpRegionTopScripts/message</b_path> | ||
3327 | <c_attribute></c_attribute> | ||
3328 | <d_old> | ||
3329 | Show a list of objects spending the most time running | ||
3330 | LSL scripts. These objects can slow sim performance. | ||
3331 | Select View > Statistics Bar and look under | ||
3332 | Simulator > Time > Script Time to see if more than | ||
3333 | 25 ms is being spent in scripts. | ||
3334 | </d_old> | ||
3335 | <e_new> | ||
3336 | Show a list of objects spending the most time running | ||
3337 | LSL scripts. These objects can slow performance. | ||
3338 | Select View > Statistics Bar and look under | ||
3339 | Simulator > Time > Script Time to see if more than | ||
3340 | 25 ms is being spent in scripts. | ||
3341 | </e_new> | ||
3342 | <f_old_trans> | ||
3343 | LSL μ€ν¬λ¦½νΈ μ€νμ κ°μ₯ λ§μ μκ°μ μλͺ¨νλ μ€λΈμ νΈμ λͺ©λ‘μ | ||
3344 | νμν©λλ€. μ΄λ¬ν μ€λΈμ νΈλ Simulation μ±λ₯μ μ νμν¬ μ μμ΅λλ€. | ||
3345 | μ€ν¬λ¦½νΈμμ 25 ms μ΄μ μ¬μ©λμλμ§ μ¬λΆλ₯Ό νμΈνλ €λ©΄ | ||
3346 | '보기 > ν΅κ³λ³΄κΈ°'λ₯Ό μ ννκ³ 'μλ¬λ μ΄ν° > | ||
3347 | μκ° > μ€ν¬λ¦½νΈ μκ°'μ νμΈνμμμ€. | ||
3348 | </f_old_trans> | ||
3349 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3350 | <b_path>//HelpRegionRestart/message</b_path> | ||
3351 | <c_attribute></c_attribute> | ||
3352 | <d_old> | ||
3353 | Restart the server process running this region after a | ||
3354 | two minute warning. All residents in the region will be | ||
3355 | disconnected. The region will save its data, and should | ||
3356 | come back up within 90 seconds. | ||
3357 | |||
3358 | Restarting the region will not fix most performance | ||
3359 | problems, and should usually be used only when directed. | ||
3360 | </d_old> | ||
3361 | <e_new> | ||
3362 | Restart the server process running this region after a | ||
3363 | two minute warning. All Residents in the region will be | ||
3364 | disconnected. The region will save its data, and should | ||
3365 | come back up within 90 seconds. | ||
3366 | |||
3367 | Restarting the region will not fix most performance | ||
3368 | problems, and should usually be used only when directed. | ||
3369 | </e_new> | ||
3370 | <f_old_trans> | ||
3371 | μ μ κΈ°λ€λ¦° ν μ΄ μ§μμ μ€ννλ μλ² μ²λ¦¬λ₯Ό μ¬μμ ν©λλ€.μ§μμ λͺ¨λ μ£Όλ―Όλ€μ | ||
3372 | μ°κ²° ν΄μ λ©λλ€.μ§μμ΄ ν΄λΉ μ§μ λ°μ΄ν°λ₯Ό μ μ₯νκ³ | ||
3373 | 90 μ΄ μ΄λ΄μ λμ μμΌ ν©λλ€. | ||
3374 | |||
3375 | μ§μμ μ¬μμνλ©΄ λλΆλΆμ μ€ν | ||
3376 | λ¬Έμ λ€μ κ³ μΉ μ μκ³ μ§μ λ°λ κ²½μ°μλ§ λ³΄ν΅ μ΄μ©λ μ μμ΅λλ€. | ||
3377 | </f_old_trans> | ||
3378 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3379 | <b_path>//HelpRegionTerrainRaise/message</b_path> | ||
3380 | <c_attribute></c_attribute> | ||
3381 | <d_old> | ||
3382 | This is the distance that parcel owners can raise | ||
3383 | their terrain above the 'baked' terrain default | ||
3384 | height. | ||
3385 | |||
3386 | Default: 4 | ||
3387 | </d_old> | ||
3388 | <e_new> | ||
3389 | This is the distance in meters that parcel owners can raise | ||
3390 | their terrain above the 'baked' terrain default | ||
3391 | height. | ||
3392 | |||
3393 | Default: 4 | ||
3394 | </e_new> | ||
3395 | <f_old_trans> | ||
3396 | μ΄κ²μ μ μ₯λ μ§νμ κΈ°μ€ λμ΄ | ||
3397 | μ΄μμΌλ‘ μ§νμ λμΆ μ μλ 거리λ₯Ό | ||
3398 | λνλ λλ€. | ||
3399 | |||
3400 | κΈ°λ³Έ μ€μ : 4 | ||
3401 | </f_old_trans> | ||
3402 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3403 | <b_path>//HelpRegionTerrainLower/message</b_path> | ||
3404 | <c_attribute></c_attribute> | ||
3405 | <d_old> | ||
3406 | This is the distance that parcel owners can lower | ||
3407 | their terrain below the 'baked' terrain default | ||
3408 | height. | ||
3409 | |||
3410 | Default: -4 | ||
3411 | </d_old> | ||
3412 | <e_new> | ||
3413 | This is the distance in meters that parcel owners can lower | ||
3414 | their terrain below the 'baked' terrain default | ||
3415 | height. | ||
3416 | |||
3417 | Default: -4 | ||
3418 | </e_new> | ||
3419 | <f_old_trans> | ||
3420 | μ΄κ²μ μ μ₯λ μ§νμ κΈ°μ€ λμ΄ | ||
3421 | λ―Έλ§μΌλ‘ μ§νμ λμΆ μ μλ 거리λ₯Ό | ||
3422 | λνλ λλ€. | ||
3423 | |||
3424 | κΈ°λ³Έ μ€μ : -4 | ||
3425 | </f_old_trans> | ||
3426 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3427 | <b_path>//HelpRegionUploadRaw/message</b_path> | ||
3428 | <c_attribute></c_attribute> | ||
3429 | <d_old> | ||
3430 | This button uploads a .RAW file to the region you are in. | ||
3431 | The file must have the correct dimensions/number of channels: | ||
3432 | RGB, 256x256 and 13 channels. The best way to create a | ||
3433 | terrain file is to download the existing RAW file. A good | ||
3434 | first step is to modify the first channel (land height), | ||
3435 | and upload it. | ||
3436 | |||
3437 | The upload can take up to 45 seconds. Note that uploading a | ||
3438 | terrain file *will not* move the objects that are on the land, | ||
3439 | only the terrain itself and the permissions associated with the | ||
3440 | parcels. This can result in objects going underground. | ||
3441 | |||
3442 | For more information on editing region height fields, go to: | ||
3443 | http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | ||
3444 | </d_old> | ||
3445 | <e_new>LALALA</e_new> | ||
3446 | <f_old_trans>LALALA</f_old_trans> | ||
3447 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3448 | <b_path>//HelpRegionDownloadRaw/message</b_path> | ||
3449 | <c_attribute></c_attribute> | ||
3450 | <d_old> | ||
3451 | This button downloads a file containing the height field data, | ||
3452 | parcel dimensions, parcel for sale status and some parcel permissions | ||
3453 | for this region. When opening the file in a program such as | ||
3454 | Photoshop you must specify the document's dimensions which | ||
3455 | are: RGB, 256x256 with 13 channels. This terrain file cannot | ||
3456 | be opened in any other way. | ||
3457 | |||
3458 | For more information on editing region height fields, go to: | ||
3459 | http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | ||
3460 | </d_old> | ||
3461 | <e_new> | ||
3462 | This button downloads a file containing the height field data, | ||
3463 | parcel dimensions, parcel for sale status and some parcel permissions | ||
3464 | for this region. When opening the file in a program such as | ||
3465 | Photoshop you must specify the document's dimensions which | ||
3466 | are: RGB, 256x256 with 13 channels. This terrain file cannot | ||
3467 | be opened in any other way. | ||
3468 | |||
3469 | For more information on editing region height fields, consult F1 help. | ||
3470 | </e_new> | ||
3471 | <f_old_trans>LALALA</f_old_trans> | ||
3472 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3473 | <b_path>//HelpRegionBakeTerrain/message</b_path> | ||
3474 | <c_attribute></c_attribute> | ||
3475 | <d_old> | ||
3476 | This button saves the current shape of the terrain as the | ||
3477 | new default for the region. Once baked, the land can revert | ||
3478 | to the saved shape whenever you or others use the Edit Terrain | ||
3479 | 'Revert' option/tool. The baked terrain is also the middle | ||
3480 | point for the terrain raise and lower limits. | ||
3481 | </d_old> | ||
3482 | <e_new> | ||
3483 | This button saves the current shape of the terrain as the | ||
3484 | new default for the region. Once baked, the land can revert | ||
3485 | to the saved shape whenever you or others use the Edit Terrain | ||
3486 | 'Revert' option. The baked terrain is also the middle | ||
3487 | point for the terrain raise and lower limits. | ||
3488 | </e_new> | ||
3489 | <f_old_trans> | ||
3490 | μ΄ λ²νΌμ λλ₯΄λ©΄ νμ¬ μ§ν λͺ¨μ΅μ΄ μ§μμ μλ‘μ΄ | ||
3491 | κΈ°λ³Έ μ§νμΌλ‘ μ μ₯λ©λλ€. μ μ₯λν λ³ΈμΈ λλ λ€λ₯Έ μ¬λμ΄ | ||
3492 | ν μ§ νΈμ§μ '볡ꡬ' λ²νΌμ ν΄λ¦ν΄ μ μ₯λ λͺ¨μ΅μ λλ릴 μμμΌλ©°, λν μ μ₯λ μ§νμ μ§ν λμ΄κΈ° λ° λμΆκΈ° | ||
3493 | νκ³μ λν κΈ°μ€ μ§μ μ΄ λ©λλ€. | ||
3494 | </f_old_trans> | ||
3495 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3496 | <b_path>//HelpEstateEstateManager/message</b_path> | ||
3497 | <c_attribute></c_attribute> | ||
3498 | <d_old> | ||
3499 | An estate manager is a resident to whom you have delegated | ||
3500 | control of region and estate settings. An estate manager | ||
3501 | can change any setting in these panels, except for uploading, | ||
3502 | downloading, and baking terrain. In particular, they can | ||
3503 | allow or ban residents from your estate. | ||
3504 | |||
3505 | Estate managers can only be added or removed by the owner | ||
3506 | of the estate, not by each other. Please only choose | ||
3507 | residents you trust as estate managers, as you will be | ||
3508 | ultimately responsible for their actions. | ||
3509 | </d_old> | ||
3510 | <e_new> | ||
3511 | An estate manager is a Resident to whom you have delegated | ||
3512 | control of region and estate settings. An estate manager | ||
3513 | can change any setting in these panels, except for uploading, | ||
3514 | downloading, and baking terrain. In particular, they can | ||
3515 | allow or ban Residents from your estate. | ||
3516 | |||
3517 | Estate managers can only be added or removed by the owner | ||
3518 | of the estate, not by each other. Please only choose | ||
3519 | Residents you trust as estate managers, as you will be | ||
3520 | ultimately responsible for their actions. | ||
3521 | </e_new> | ||
3522 | <f_old_trans>LALALA</f_old_trans> | ||
3523 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3524 | <b_path>//HelpEstateExternallyVisible/message</b_path> | ||
3525 | <c_attribute></c_attribute> | ||
3526 | <d_old> | ||
3527 | Sets whether residents who are on other estates can enter this | ||
3528 | estate without being on an access list. | ||
3529 | |||
3530 | Default: on | ||
3531 | </d_old> | ||
3532 | <e_new> | ||
3533 | This checkbox sets whether Residents who are on other estates can enter this | ||
3534 | estate without being on an access list. | ||
3535 | |||
3536 | Default: on | ||
3537 | </e_new> | ||
3538 | <f_old_trans> | ||
3539 | λ€λ₯Έ μ¬μ μ§ λ΄μ μλ μ£Όλ―Όλ€μ΄ | ||
3540 | μ κ·Ό κΆν 리μ€νΈμ μ¬λΌμμ§ μμλ μ΄ μ¬μ μ§μ λ€μ΄κ° μ μλμ§ μ¬λΆλ₯Ό μ€μ ν©λλ€. | ||
3541 | |||
3542 | κΈ°λ³Έ μ€μ : μΌμ§ | ||
3543 | </f_old_trans> | ||
3544 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3545 | <b_path>//HelpEstateAllowDirectTeleport/message</b_path> | ||
3546 | <c_attribute></c_attribute> | ||
3547 | <d_old> | ||
3548 | When checked, allows residents to directly teleport to any | ||
3549 | point in your estate. When unchecked, residents teleport | ||
3550 | to the nearest telehub. | ||
3551 | |||
3552 | Default: off | ||
3553 | </d_old> | ||
3554 | <e_new> | ||
3555 | When checked, allows Residents to directly teleport to any | ||
3556 | point in your estate. When unchecked, Residents teleport | ||
3557 | to the nearest telehub. | ||
3558 | |||
3559 | Default: off | ||
3560 | </e_new> | ||
3561 | <f_old_trans> | ||
3562 | μ΄ μ΅μ μ μ ννλ©΄ μ£Όλ―Όμ΄ μ¬μ©μ μ¬μ μ§μ λͺ¨λ μ§μ μΌλ‘ | ||
3563 | μ§μ ν λ ν¬νΈν μ μμ΅λλ€. μ΄ μ΅μ μ μ νμ μ·¨μνλ©΄ μ£Όλ―Όμ΄ κ°μ₯ κ°κΉμ΄ | ||
3564 | ν λ νλΈλ‘ ν λ ν¬νΈν©λλ€. | ||
3565 | |||
3566 | κΈ°λ³Έ μ€μ : κΊΌμ§ | ||
3567 | </f_old_trans> | ||
3568 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3569 | <b_path>//HelpEstateAllowResident/message</b_path> | ||
3570 | <c_attribute></c_attribute> | ||
3571 | <d_old> | ||
3572 | If any resident is listed here, access to the estate will be | ||
3573 | limited to residents on this list and groups listed below. | ||
3574 | |||
3575 | (If the estate is visible from the mainland, access cannot be | ||
3576 | limited to a resident or group list, and these controls will be | ||
3577 | disabled. Only the 'access denied' list will be used.) | ||
3578 | </d_old> | ||
3579 | <e_new> | ||
3580 | Access to this estate will be limited to Residents | ||
3581 | listed here and any groups below. This setting is | ||
3582 | only available when Visible from Mainland is | ||
3583 | unchecked. | ||
3584 | </e_new> | ||
3585 | <f_old_trans> | ||
3586 | μ¬μ μ§ μ¬μ©κΆνμ λͺ©λ‘μ μλ μ£Όλ―Όλ€κ³Ό μλ λͺ©λ‘μ κ·Έλ£Ήλ€λ‘ μ νλ©λλ€. | ||
3587 | |||
3588 | (μ¬μ μ§λ₯Ό λ©μΈλλμμ νμΈν μ μλ κ²½μ°, μ¬μ©κΆνμ μ£Όλ―Ό λλ λͺ©λ‘μμ κ·Έλ£ΉμΌλ‘ μ νλ μ μκ³ , μ΄λ¬ν μ μ΄λ λΉνμ±ν λ©λλ€. βμ κ·Ό κ±°λΆβ λͺ©λ‘λ§ μ¬μ©λ¨). | ||
3589 | </f_old_trans> | ||
3590 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3591 | <b_path>//HelpEstateAllowGroup/message</b_path> | ||
3592 | <c_attribute></c_attribute> | ||
3593 | <d_old> | ||
3594 | If any group is listed here, access to the estate will be | ||
3595 | limited to the groups on this list and residents specifically | ||
3596 | allowed above. | ||
3597 | |||
3598 | (If the estate is visible from the mainland, access cannot be | ||
3599 | limited to a resident or group list, and these controls will be | ||
3600 | disabled. Only the 'access denied' list will be used.) | ||
3601 | </d_old> | ||
3602 | <e_new> | ||
3603 | Access to this estate will be limited to groups | ||
3604 | listed here and any Residents above. This setting is | ||
3605 | only available when Visible from Mainland is | ||
3606 | unchecked. | ||
3607 | </e_new> | ||
3608 | <f_old_trans> | ||
3609 | μ¬μ μ§ μ¬μ©κΆνμ λͺ©λ‘μμ κ·Έλ£Ήλ€κ³Ό μμ νΉλ³ν νλ½λ μ£Όλ―Όλ€λ‘ μ νλ©λλ€. | ||
3610 | |||
3611 | (μ¬μ μ§λ₯Ό λ©μΈλλμμ νμΈν μ μλ κ²½μ°, μ¬μ©κΆνμ μ£Όλ―Ό λλ λͺ©λ‘μμ κ·Έλ£ΉμΌλ‘ μ νλ μ μκ³ , μ΄λ¬ν μ μ΄λ λΉνμ±ν λ©λλ€. βμ κ·Ό κ±°λΆβ λͺ©λ‘λ§ μ¬μ©λ¨). | ||
3612 | </f_old_trans> | ||
3613 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3614 | <b_path>//HelpEstateBanResident/message</b_path> | ||
3615 | <c_attribute></c_attribute> | ||
3616 | <d_old> | ||
3617 | Residents on this list are denied access to your estate, | ||
3618 | regardless of the allow and group settings above. | ||
3619 | |||
3620 | Adding a resident to this list will remove them from | ||
3621 | the allow list. | ||
3622 | </d_old> | ||
3623 | <e_new> | ||
3624 | Residents on this list are denied access to your estate, | ||
3625 | regardless of any other settings. | ||
3626 | </e_new> | ||
3627 | <f_old_trans> | ||
3628 | μ΄ λͺ©λ‘μ μλ μ£Όλ―Όλ€μ | ||
3629 | μμ νκ°μ κ·Έλ£Ή μ€μ μ κ΄κ³μμ΄ λ΄ μ¬μ μ§ μ¬μ© κΆνμ΄ κ±°λΆλμμ΅λλ€. | ||
3630 | |||
3631 | μ΄ λͺ©λ‘μΌλ‘ μ£Όλ―Όμ μΆκ°νλ©΄ | ||
3632 | νκ° λͺ©λ‘μμ ν΄λΉ μ£Όλ―Όμ΄ μ κ±°λ©λλ€. | ||
3633 | </f_old_trans> | ||
3634 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3635 | <b_path>//BuyOriginal/Buy</b_path> | ||
3636 | <c_attribute></c_attribute> | ||
3637 | <d_old> | ||
3638 | Buy | ||
3639 | </d_old> | ||
3640 | <e_new> | ||
3641 | OK | ||
3642 | </e_new> | ||
3643 | <f_old_trans> | ||
3644 | ꡬ맀 | ||
3645 | </f_old_trans> | ||
3646 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3647 | <b_path>//BuyOriginalNoOwner/Buy</b_path> | ||
3648 | <c_attribute></c_attribute> | ||
3649 | <d_old> | ||
3650 | Buy | ||
3651 | </d_old> | ||
3652 | <e_new> | ||
3653 | OK | ||
3654 | </e_new> | ||
3655 | <f_old_trans> | ||
3656 | ꡬ맀 | ||
3657 | </f_old_trans> | ||
3658 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3659 | <b_path>//BuyCopy/Buy</b_path> | ||
3660 | <c_attribute></c_attribute> | ||
3661 | <d_old> | ||
3662 | Buy | ||
3663 | </d_old> | ||
3664 | <e_new> | ||
3665 | OK | ||
3666 | </e_new> | ||
3667 | <f_old_trans> | ||
3668 | ꡬ맀 | ||
3669 | </f_old_trans> | ||
3670 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3671 | <b_path>//BuyCopyNoOwner/Buy</b_path> | ||
3672 | <c_attribute></c_attribute> | ||
3673 | <d_old> | ||
3674 | Buy | ||
3675 | </d_old> | ||
3676 | <e_new> | ||
3677 | OK | ||
3678 | </e_new> | ||
3679 | <f_old_trans> | ||
3680 | ꡬ맀 | ||
3681 | </f_old_trans> | ||
3682 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3683 | <b_path>//BuyContents/Buy</b_path> | ||
3684 | <c_attribute></c_attribute> | ||
3685 | <d_old> | ||
3686 | Buy | ||
3687 | </d_old> | ||
3688 | <e_new> | ||
3689 | OK | ||
3690 | </e_new> | ||
3691 | <f_old_trans> | ||
3692 | ꡬ맀 | ||
3693 | </f_old_trans> | ||
3694 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3695 | <b_path>//BuyContentsNoOwner/Buy</b_path> | ||
3696 | <c_attribute></c_attribute> | ||
3697 | <d_old> | ||
3698 | Buy | ||
3699 | </d_old> | ||
3700 | <e_new> | ||
3701 | OK | ||
3702 | </e_new> | ||
3703 | <f_old_trans> | ||
3704 | ꡬ맀 | ||
3705 | </f_old_trans> | ||
3706 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3707 | <b_path>//ConfirmPurchase/Confirm</b_path> | ||
3708 | <c_attribute></c_attribute> | ||
3709 | <d_old> | ||
3710 | Confirm | ||
3711 | </d_old> | ||
3712 | <e_new> | ||
3713 | OK | ||
3714 | </e_new> | ||
3715 | <f_old_trans> | ||
3716 | νμΈ | ||
3717 | </f_old_trans> | ||
3718 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3719 | <b_path>//ConfirmPurchasePassword/message</b_path> | ||
3720 | <c_attribute></c_attribute> | ||
3721 | <d_old> | ||
3722 | This transaction will: | ||
3723 | |||
3724 | [ACTION] | ||
3725 | |||
3726 | Are you sure you want to proceed with this purchase? | ||
3727 | Please re-enter your password and click Confirm. | ||
3728 | </d_old> | ||
3729 | <e_new> | ||
3730 | This transaction will: | ||
3731 | |||
3732 | [ACTION] | ||
3733 | |||
3734 | Are you sure you want to proceed with this purchase? | ||
3735 | Please re-enter your password and click OK. | ||
3736 | </e_new> | ||
3737 | <f_old_trans> | ||
3738 | κ±°λλ λ€μκ³Ό κ°μ΅λλ€: | ||
3739 | |||
3740 | [ACTION] | ||
3741 | |||
3742 | ꡬ맀λ₯Ό μ§ννμκ² μ΅λκΉ? | ||
3743 | μνΈλ₯Ό λ€μ μ λ ₯νκ³ 'νμΈ'μ ν΄λ¦νμμμ€. | ||
3744 | </f_old_trans> | ||
3745 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3746 | <b_path>//ConfirmPurchasePassword/ConfirmPurchase</b_path> | ||
3747 | <c_attribute></c_attribute> | ||
3748 | <d_old> | ||
3749 | Confirm Purchase | ||
3750 | </d_old> | ||
3751 | <e_new> | ||
3752 | OK | ||
3753 | </e_new> | ||
3754 | <f_old_trans> | ||
3755 | ꡬ맀 νμΈ | ||
3756 | </f_old_trans> | ||
3757 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3758 | <b_path>//MoveInventoryFromObject/Move</b_path> | ||
3759 | <c_attribute></c_attribute> | ||
3760 | <d_old> | ||
3761 | Move | ||
3762 | </d_old> | ||
3763 | <e_new> | ||
3764 | OK | ||
3765 | </e_new> | ||
3766 | <f_old_trans> | ||
3767 | μ΄λ | ||
3768 | </f_old_trans> | ||
3769 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3770 | <b_path>//MoveInventoryFromObject/Don'tMove</b_path> | ||
3771 | <c_attribute></c_attribute> | ||
3772 | <d_old> | ||
3773 | Don't Move | ||
3774 | </d_old> | ||
3775 | <e_new> | ||
3776 | Cancel | ||
3777 | </e_new> | ||
3778 | <f_old_trans> | ||
3779 | μ΄λ μ ν¨ | ||
3780 | </f_old_trans> | ||
3781 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3782 | <b_path>//MoveInventoryFromScriptedObject/Move</b_path> | ||
3783 | <c_attribute></c_attribute> | ||
3784 | <d_old> | ||
3785 | Move | ||
3786 | </d_old> | ||
3787 | <e_new> | ||
3788 | OK | ||
3789 | </e_new> | ||
3790 | <f_old_trans> | ||
3791 | μ΄λ | ||
3792 | </f_old_trans> | ||
3793 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3794 | <b_path>//MoveInventoryFromScriptedObject/Don'tMove</b_path> | ||
3795 | <c_attribute></c_attribute> | ||
3796 | <d_old> | ||
3797 | Don't Move | ||
3798 | </d_old> | ||
3799 | <e_new> | ||
3800 | Cancel | ||
3801 | </e_new> | ||
3802 | <f_old_trans> | ||
3803 | μ΄λ μ ν¨ | ||
3804 | </f_old_trans> | ||
3805 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3806 | <b_path>//ClickActionNotPayable/message</b_path> | ||
3807 | <c_attribute></c_attribute> | ||
3808 | <d_old> | ||
3809 | Warning: The Pay Object click action has been set, but it | ||
3810 | will only work if a script is added with a money() event. | ||
3811 | This is because residents generally expect that objects | ||
3812 | will react somehow when money is payed into them. | ||
3813 | </d_old> | ||
3814 | <e_new> | ||
3815 | Warning: The Pay Object click action has been set, but it | ||
3816 | will only work if a script is added with a money() event. | ||
3817 | </e_new> | ||
3818 | <f_old_trans> | ||
3819 | κ²½κ³ : μ€λΈμ νΈ μ§λΆ ν΄λ¦ νλμ΄ μ€μ λμμ§λ§ | ||
3820 | μ€ν¬λ¦½νΈκ° money() μ΄λ²€νΈμ ν¨κ» μΆκ°λ κ²½μ°μλ§ μλν©λλ€. | ||
3821 | μ΄λ μ£Όλ―Όλ€μ΄ μΌλ°μ μΌλ‘ μ€λΈμ νΈμ λΉμ©μ΄ μ§λΆλ λ | ||
3822 | μ€λΈμ νΈκ° λ°μν κ²μ΄λΌκ³ μμνκΈ° λλ¬Έμ λλ€. | ||
3823 | </f_old_trans> | ||
3824 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3825 | <b_path>//ReplaceAttachment/Yes</b_path> | ||
3826 | <c_attribute></c_attribute> | ||
3827 | <d_old> | ||
3828 | Yes | ||
3829 | </d_old> | ||
3830 | <e_new> | ||
3831 | OK | ||
3832 | </e_new> | ||
3833 | <f_old_trans> | ||
3834 | μ | ||
3835 | </f_old_trans> | ||
3836 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3837 | <b_path>//ReplaceAttachment/No</b_path> | ||
3838 | <c_attribute></c_attribute> | ||
3839 | <d_old> | ||
3840 | No | ||
3841 | </d_old> | ||
3842 | <e_new> | ||
3843 | Cancel | ||
3844 | </e_new> | ||
3845 | <f_old_trans> | ||
3846 | μλμ€ | ||
3847 | </f_old_trans> | ||
3848 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3849 | <b_path>//BusyModePay/Yes</b_path> | ||
3850 | <c_attribute></c_attribute> | ||
3851 | <d_old> | ||
3852 | Yes | ||
3853 | </d_old> | ||
3854 | <e_new> | ||
3855 | OK | ||
3856 | </e_new> | ||
3857 | <f_old_trans> | ||
3858 | μ | ||
3859 | </f_old_trans> | ||
3860 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3861 | <b_path>//BusyModePay/No</b_path> | ||
3862 | <c_attribute></c_attribute> | ||
3863 | <d_old> | ||
3864 | No | ||
3865 | </d_old> | ||
3866 | <e_new> | ||
3867 | Cancel | ||
3868 | </e_new> | ||
3869 | <f_old_trans> | ||
3870 | μλμ€ | ||
3871 | </f_old_trans> | ||
3872 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3873 | <b_path>//ConfirmEmptyTrash/Yes</b_path> | ||
3874 | <c_attribute></c_attribute> | ||
3875 | <d_old> | ||
3876 | Yes | ||
3877 | </d_old> | ||
3878 | <e_new> | ||
3879 | OK | ||
3880 | </e_new> | ||
3881 | <f_old_trans> | ||
3882 | μ | ||
3883 | </f_old_trans> | ||
3884 | <f_translation/></string><string><a_file>alerts.xml</a_file> | ||
3885 | <b_path>//ConfirmEmptyTrash/No</b_path> | ||
3886 | <c_attribute></c_attribute> | ||
3887 | <d_old> | ||
3888 | No | ||
3889 | </d_old> | ||
3890 | <e_new> | ||
3891 | Cancel | ||
3892 | </e_new> | ||
3893 | <f_old_trans> | ||
3894 | μλμ€ | ||
3895 | </f_old_trans> | ||
3896 | <f_translation/></string><string><a_file>floater_about.xml</a_file> | ||
3897 | <b_path>/floater_about/credits_editor</b_path> | ||
3898 | <c_attribute></c_attribute> | ||
3899 | <d_old>Second Life is brought to you by a2, Aaron, Abishai, adrian, Alberto, Alex, Alexei, Alfred, Alice, Altruima, Amber, Anastasia, Andrea, Andrew, Andy, Annette, Anthony, Aura, Avi, Babbage, Beast, beez, Belinda, Ben, Benjamin, Benny, Betsy, Bill, Blue, Bo, Bob, Brad, Branka, Brent, Brian, Bruce, Bub, Bucky, Bunny, Burgess, Buttercup, Callum, Casino, Cat, Catherine, Chadrick, Char, Charity, Charlie, Chiyo, Chris, Christopher, Civic, Claudia, Cleopetra, Cole, ColeD, Colin, Colleen, Cornelius, Cory, Cube, Cupid, Cyan, Cyn, Dan, DanceStar, Daniel, Data, Dave, David, David2, Deana, Debra, Dee, Dek, Del, Dez, Don, Donovan, Dore, Doug, drunkensufi, Dummy, dustin, Eddie, Eileen, Elena, Elle, Emily, Eric, erika, Erin, Ethan, Evan, Eve, Everett, Firefly, Flashpoint, Fordak, Frank, Fred, Fritz, Frontier, Garry, George, Gia, Ginsu, Glenn, Gulliver, Guy, Hamlet, Haney, Harmony, Harry, Helen, Hello, Henrik, Heretic, Hermia, Holly, Hungry, Hunter, Ian, Icculus, Irfan, Iris, Isaac, Isabel, IsThat, Ivy, Izzy, Jack, Jacqui, Jake, James, Jane, Janet, Jaron, Jay, Jean, Jed, Jeff, Jennifer, Jeremy, Jeska, JeskaTest, Jesse, Jill, Jim, Jimbo, Joe, John, Jon, Jonathan, Joon, Jose, Joshua, Jp, June, Justin, Karen, Kari, Karinelson, Kelly, Kelvin, Ken, Kenny, Kent, Kevin, Kona, Kyle, LaughingMan, Lauren, Lawrence, Lee, Leopard, Leprechaun, Leviathania, Lexie, Leyla, Liana, Libby, Lightfoot, Lizzie, Lock, Logan, Loki, Louie, Lucy, Luke, Madhavi, Magellan, Magenta, Makiko, Marius, Mark, Martin, Matthew, Maurice, Mayor, Melanie, Meta, Mia, Michael, MichaelFrancis, Mick, Migyeong, Mikeb, MikeT, Milo, Mitch, Mogura, Monkey, Monroe, Morpheus, Natria, Neo, Nicolas, Nicole, Nigel, Noel, Nora, Nova, Otakon, Page, Pathfinder, Patsy, Paul, Peter, Philip, Phoenix, PierreLuc, Pilouk, Pony, Professor, Qarl, Rachelle, Ramzi, Ray, Realestate, Red, Rejean, Reuben, Rheya, Richard, Rika, Rob, Robin, Roosevelt, Ross, Runitai, Ruth, Ryan, Sabin, Sally, Sam, Sarah, Satoko, Sean, Secret, Sejong, Senator, Seth, Showme, Siobhan, Sky, Sleepy, Spike, Stefan, Stephanie, Stephany, Stephen, Steve, Stryfe, sturm, Sudhi, Sunil, Swiss, Sylvain, Tanya, Tbone, Teeny, Teeple, Teresa, Tesla, Tess, Tessa, Thomas, Thrax, Thumper, Tim, Tobin, Todd, Tofu, Tom, Torley, Tracy, Uncle, Varas, Vasudha, Vektor, Ventrella, Video, Viola, Walker, Warren, Wendy, Which, Xan, Xander, Xenon, Xtreme, Yedwab, Yohan, Yool, Yoz, Yuko, Zach, Zee, Zero and many others. | ||
3900 | |||
3901 | Thank you to the following residents for helping to ensure that this is the best version yet: AlexandriaS Aabye, devilite Aabye, Dynamqting Aabye, hellebore Aabye, Maddog Aabye, Urru Aabye, mabare Abattoir, Didi Abdallah, Elwood Abernathy, Jake Abramovich, Schort Achterbahn, Divily Ackland, JadeCharlet Ackland, Kevin Acorn, Binvis Acronym, Robert Adelaide, Atte Aderdeen, KiVanyel Adria, Krillian Adria, Mandi Adria, Butch Adzebills, Beccaboo Aero, Akasha Aferdita, Nicole Aferdita, Nero Agnomen, Hay Ah, Oxoc Ah, Sironl Ah, evokue Ahn, nycbadboy Ahn, Taan Ahn, Cyres Aida, TalNova Aji, Illusion Akula, Xen Akula, Jessa Alba, Alba Albert, kernowed Albert, Blaine Albion, AnneMarie Alcott, Bo Alcott, Cindie Alcott, Cunundrum Alcott, fighter Alcott, Jarad Alcott, Marcello Aldwych, Xenia Alemany, CellMaster Alexander, Molly Alexander, Aerotisma Alexandre, Ghostofgoat Alexandre, Took Alexandre, Ty Alexandre, Christophe Perrin / Krisp Alexandre, Adec Alexandria, Kiwi Alfa, Rowr Aliev, aivlys Allen, asclepius Allen, Aveyond06 Allen, Calvin Allen, gayfrench Allen, gender Allen, Grayson Allen, Jak Allen, Jerdog Allen, MariahMarie Allen, Metzyn Allen, Misty26 Allen, moshetzi Allen, nayara Allen, NH Allen, Pegi Allen, Ponesco Allen, Rap4rag Allen, Safer Allen, sobroke Allen, Bethann Allstar, Sloan Almendros, Ogro Almodovar, Raymondo Alonzo, Rebeca Alonzo, Omega Alphabeta, Elirien Alturas, Rick Alvarado, Golam Amadeus, Kea Amarula, Ariella Amat, Popas Amat, xxjojxx Amat, Jamie Amdahl, Helyos Ames, julies Ames, Keisha Ames, Javz Amsterdam, Kathy Amsterdam, Twistaspliff Amsterdam, darian Anabuki, Dnali Anabuki, Wes Anaconda, Serra Anansi, Britney Anatine, pax Anatine, Ranya Anatine, sientaya Anatine, Siowen Anatine, Padu Andalso, Chanel Anderson, Donna Andrews, Trixie Angel, Macphisto Angelus, meQal Anna, Aznxer Antfarm, Karlo Antonelli, Maksimilian Antonelli, Vala Antonelli, Athoni Antonioni, klement Antwerp, lildeadgirl Antwerp, GeordieJohn Anubis, KatanaBlade Anubis, Diag Anzac, Lunarlie Anzac, Picker Apogee, Azuby Apparatchik, brianica Appin, SwedenArtSheepdogs Aquacade, CaSimone Aquitaine, Dexter Aquitaine, Pericat Aquitaine, Sunshine Araw, Bino Arbuckle, Evangeline Arcadia, Niles Argus, pe Argus, BenneDJezzerette Ariantho, Karmaticdragon Ariantho, Teren Aridian, Garcia Ariel, Ina Arkin, alva Arliss, Noriyoko Arliss, Harle Armistice, Avi Arrow, Ming Arrow, Rox Arten, Razitra Artizar, Mandy Asano, Ty Asano, Kristoff Asbrink, Skye Asbrink, Threasher Asbrink, Daniel Ash, Dion Ashby, Eva Ashby, Ravenal Ashby, TOPDIME Ashby, danielluh Ashton, Deb Ashton, ach Asp, cokeser Asp, lastping Asp, Posrednik Asp, Notypewell Astro, Nargus Asturias, SiRiS Asturias, yol Asturias, ZATZAi Asturias, Animus Asylum, Sang Asylum, SomethingReal Atkey, Dakota Atlanta, Irie Atlantis, Matt Attenborough, Nirva Attenborough, CaptJosh Au, Goren Auer, Jackamo Auer, Jonathan Auer, Tisdi Auer, Chris Auk, Raven Axon, Shawn Ay, TJ Ay, ares Ayres, Cazz Ayres, Eon Ayres, Laura Ayres, zoeba Ayres, Naomi Babcock, Eldrich Babeli, Adrianna Babenco, She Babenco, sterick Babenco, corto Babii, Dia Babii, EvilCutz Babii, Flooxx Babii, Girl Babii, Imraanos Babii, Iv Babii, Lizthebabe Babii, Torrence Babii, Chrystal Babii, Sara Bachman, dzb0 Bade, Doug Bagration, Hobbit Bagration, Abert Bailey, Bambi Bailey, EveNice Bailey, Kaliya Bailey, Kriz Bailey, Leen Bailey, Leonine Bailey, Minke Bailey, Nightjaxs Bailey, Peyton Bailey, Shan Bailey, Stevo Bailey, Tariv Bailey, cream Bailly, Ezekiel Bailly, Gianna Bailly, Hells Bain, Briauna Bainbridge, AnaSofia Bakalava, Jonas Bakalava, Micki Baker, Anita Balczo, Naomi Balczo, Nathan Balder, Bibi Balhaus, Sponz Balhaus, Ainsleigh Ballinger, Dimitry Ballinger, Miriam Ballinger, Rik Ballinger, Trey Ballinger, Zagor Ballinger, Zek Ballinger, Kilara Balnarring, Maya Balut, Franz Bamaisin, Manolo Bamboo, Yuki Bamboo, Oliver Bandit, Pirate Bandit, Outy Banjo, winkler Banjo, SabreWulf Banshee, Akeela Banting, Elke Banting, Arkesh Baral, Barber Barbarossa, Samantha Barbee, Aruk Barbosa, Ayahuasca Barbosa, Bastill Barbosa, Corleone Barbosa, Padrig Barbosa, Samakh Barbosa, seat Barbosa, Topper Barbosa, Thery Bardeen, Bridgitte Bardot, Nici Barley, Annie Barnard, Josse Barnard, DB Barnes, Kitty Barnett, Threshin Barnett, Amy Barnett, Scott Baron, Jeremy Barracuda, Verbuda Barragar, Daphne Barrett, Fenleab Barrett, Lindsey Barrett, Smiley Barry, Denise Barrymore, Manuela Barrymore, Nell Barrymore, Sensation Barrymore, BraadWorst Barth, XxRevelationxX Barthelmess, Fleur Bartlett, Marina Bartlett, Lucius Bartz, Mack Bartz, Astley Bascom, dolomite Bascom, Dags Basevi, Lena Basevi, crystal Basiat, SuezanneC Baskerville, Sweetheart Baskerville, Demi Bates, Demon Bates, kane Bates, Will Bates, ShadixBear Bathgate, Carlotta Batra, Bruce Batz, Silentborn Batz, Dominik Bauer, Logan Bauer, Boz Baxter, Camryn Baxter, diesus Baxter, Drett Baxter, Gazmanjones Baxter, Kiley Baxter, Schwenny Baxter, Shimboo Baxter, Stoffe Baxter, Diamond Baxter, Gruntos Baxter, BC Bayliss, Bibi Bayliss, Backly Beam, BigFoot Beam, JuJu Beam, nati Beam, Pelgrim Beam, ELLiebob Bean, LeatherElf1 Beat, Nikky Beat, Carl Beattie, Fe Beattie, sonoma Beatty, Henri Beauchamp, TimTam Beauchamp, Conrad Beaumont, Dieudonnee Beaumont, Kitten Beaumont, Lucilla Beaumont, Odina Beaumont, PCBRANDY Beaumont, PLASTOK Beaumont, Sheree Beaumont, Sweet Beaumont, Olivier Beaumont, Busybee Beaver, Chiheb Bechir, Caspian Beck, GoldenGamer Beck, icar Beck, Jigoes Beck, Matsumoto Beck, Millie Beck, Rhino Beck, Ronor Beck, ropland Beck, wai Beck, laurionna Beckenbauer, Jeffery Beckersted, Dominick Beckham, Druu Becloud, Holger Becloud, Duce Bedlam, Beach Beebe, Manicexpression Beebe, Nicolette Beebe, Feril Beeks, BillyJoe Beerbaum, Lola Beerbaum, Pimppdog Beerbaum, Baylee Beery, DrathnotT Behemoth, Malarthi Behemoth, phoenix Behemoth, Trinity Bekkers, Dioana Bellah, KissesRhawt Bellambi, Bream Bellman, Hazel Bellow, Milo Bellow, Corvette Beltran, Lefty Belvedere, Jaden Benavente, Bianca Bender, Jeremy Bender, Mercedes Benedek, Albert Benelli, Dodi Benelli, Emili Benelli, laurette Benelli, ninake Benelli, Evazion Benelli, Elaine Bennett, Izabella Bentham, Carol Bentley, Deedrick Benton, Joel Berblinger, Lord Berchot, Pele Berchot, Marimar Berchot, Melody Beresford, Brielle Bergbahn, chrissie Bergson, Kody Bergson, Bit Berjis, Kevin Bernal, Dorie Bernstein, mystic Berry, Razza Berry, Bella Bertone, Taylor Berzin, liz Bessie, Kekken Biberman, Nicolas Biddle, Halbert Bienenstich, terrycrow Bigwig, Jasmine Bijoux, Kala Bijoux, Dano Bikcin, enzo Bikcin, Angle Binder, Cuffs Binder, Roxtor Binder, Tom Binder, Agamemnon Bing, Chalander Bing, Gigi Bing, runeking3007 Bing, Monsieur Bingyi, Angelica Biondetti, Melissa Birge, reeneebob Birmingham, Anubis Bishop, Danica Bishop, Mowesy Bisiani, Marteas Biziou, Karla Bjornson, Roxie Bjornson, Travis Bjornson, Atlwolf Blabbermouth, Rice Black, Nathan Black, Amanda Blackmountain, Disstraction Blackthorne, Miriya Blackthorne, Teagan Blackthorne, Orko Blanchard, Neural Blankes, Random Blankes, Shaura Blazer, Nethermind Bliss, dayanne Boa, Denideny Boa, lecosutre Boa, naholc Boa, NITR0US Boa, Prana Boa, RS Boa, penelope Bobak, Bad Bobbysocks, Ryuujin Boccara, Joey Bock, Elkissa Bode, Annika Boehm, Babyblues Boffin, Snodude101101 Bogan, Dirk Bogart, Jily Bogart, Pompo Bombacci, Ascanio Bonetto, Bony Bonetto, Casanova Bonetto, Cuncittina Bonetto, Frede Bonetto, Ervee Bonne, Jolanda Bonne, Poppy Bonne, Becky Book, Bibi Book, Barney Boomslang, Sam Boomslang, Steeven Boorman, Rogue Borgnine, Summer Borgnine, Rafe Borrelly, Equitus Bosch, Peter van den Bosch, tessa Bosshart, Hermione Bossy, Mr Bossy, Rhiannon Bossy, Aspen Bossy, Marisela Bouchard, Tony Bouchard, Annita Boucher, Aster Boucher, Katy Boucher, Lisae Boucher, Router Boucher, Sneaky1 Boucher, Varak Boucher, DarkAlpha Bourne, Hastings Bournemouth, bend Bowie, Lucy Bowie, Casper Box, coolbimbo Box, Kittenna Box, Metaphor Box, Nemesis Box, Bell Boyd, Kelley Boyd, Sylar Boyd, WendyCat Boyd, Denis Boyle, Jennifer Boyle, melmuse Boyle, Alycia Bradley, jayne Bradley, Airie Braendle, Glitch Braess, Su Brando, Tybalt Brando, IntLibber Brautigan, Dante Breck, Carbon Breed, WitchFire Breed, Bella Brennan, erika Brenner, gaby Brenner, Talthybius Brevity, KitKat Brewster, Lindsey Breyer, Artemis Bright, Brigitte Bright, Donnie Bright, Lucas Bright, Oya Bright, Prentice Bright, Risa Bright, Starfire Bright, Beebo Brink, Marcus Brink, Emi Brissot, Ice Brodie, Luth Brodie, Sam Brodie, Chromal Brodsky, Tydomus Brodsky, Cage Brody, Darling Brody, Kurston Brody, Mike1A Brody, UserJesse Brody, Reese Brody, Faith Broek, Happy Broek, ShadowHunter Brokken, Jacey Brooks, Shake Brooks, Shary Brooks, Sigurd Brooks, Tate Brooks, Vanleen Brooks, BruTuS Broome, PastorD Broome, Sarita Broome, October Brotherhood, Elroy Brouwer, Neophyte Brouwer, Jebediah Brown, linda Brown, Schwartz Bruder, lupu Brule, Joshua Brynner, Linda Brynner, Southy Buckenburger, drifterr Bugaboo, Michelle Bumbo, Trixie Bumbo, Paul Bumi, Jitar Bunin, Kerian Bunin, Crystalmom Bunnyhug, Embrace Bunnyhug, Zues Burali, GiGi Burgess, Keith Burgess, Shawna Burgess, Bain Buridan, Sean Buridan, Chiccorosso Burke, Count Burks, Hinamori Burleigh, Atom Burma, Jasper Burma, Aleshanee Burnett, Dottie Burns, Ebro Burns, Skipper Burns, John Burns, Haroldthe Burrel, Big Burt, dubureau Burt, Keisha Burt, phill Burt, Janloo Burton, Madd Burton, Bowlalot Bury, Dreklore Bury, Jarek Bury, Jenni Bury, Lou Bury, Orlando Bury, Angel Butuzova, dodi Byrd, Enchtris Byrd, Tleva Caballero, Gayle Cabaret, Monique Cabaret, Adele Cagney, Cralyn Cagney, Caribbean Cahill, Darien Caldwell, Lily Caldwell, CFire Caldwell, Ciara Calhern, Karl Calhern, Cecil Calhoun, Tizzy Calliope, Hypatia Callisto, Raven Callisto, Fred Cameron, Meliana Cameron, Antonius Camus, Maddie Camus, Raskella Canadeo, Exotica Canadeo, Vessus Candour, Alexis Canetti, Silvio Canetti, Talia Canetti, bragan Canning, Charenthia Canning, Reeda Canning, Vannesh Cannoli, Changurr Cao, Chilli Cao, Dorian Cao, RosyLee Cao, steve319 Cao, Contamina Capalini, Cougard Capalini, Kirsti Capalini, Lindichka Capalini, Lyla Capalini, JohnMAC Carbenell, snake Carbenell, Capri Carbetta, Sophia Carducci, Kid Cardway, Icould Careless, Aurore Carlberg, Brumia Carlberg, Bruni Carlberg, Brandie Carlos, Jenny Carlos, Avalon Carmona, Moana Carmona, Ashelia Carnell, Rain Carnell, CJ Carnot, Madison Carnot, Julie Carpathea, HALOCAT Carr, coolmaria Carroll, karyme Carroll, Leila Carroll, Crisii Carter, cyrielle Carter, isidore Carter, Missi Carter, Shatara Carter, Tristan Carthage, Aemilia Case, Baby Case, Jenn Cassady, Kittygloom Cassady, Charlotte Cassavetes, Holly Cassavetes, Anthony Cassini, Supertell Cassini, Wietse Cassini, Just Cattaneo, Mandy Cattaneo, Aleicester Catteneo, arthuraleksandravicius Cavan, Maximus Cazalet, Quellin Ceawlin, dMetria Cela, Spidey Cela, Arcadia Ceres, wanderer Cerveau, Aaron Cerveau, Marky Chaffe, Stefani Chaffe, The Chaffe, Becca Chambers, Lexis Chambers, Inigo Chamerberlin, Shion Chandrayaan, Ibrisse Chantilly, MaryAnne Chantilly, Cool Chaparral, guy2 Chaplin, Iadwen Chaplin, Lillyann Chaplin, wllmn Chaplin, Marsha Chapman, Caspar Chapman, Dominique Charles, Chilly Charlton, Pammie Charming, Total Chastity, Arohee Chatnoir, Papillon Chatnoir, Barry Cheeky, coldFuSion Cheeky, Nyla Cheeky, Ryan Cheeky, Aggressor Cheetah, Ronald Cheevers, Michelle Chernov, Maggy Chestnut, Cam Chevalier, Eleonore Chevalier, Kelly Chevalier, Mauries Chevalier, Ozzy Chevalier, Rayvendell Chevalier, Swampy Chevalier, Cheesemuncher Chickenwing, Kaltezar Chickenwing, milespeed Chihuly, Coolkama Childs, Michelle Childs, Nicole Childs, SimonRaven Chippewa, Albert Choche, Annetha Christensen, Jennifer Christensen, Zell Christensen, Herman Christiansen, Haifeng Chu, Francis Chung, tyana Chung, Sundance Churchill, Anubis Cioc, Corpierro Cioc, Dwayne Cioc, Knibbel Cioc, Slowhand Citylights, PonygirlSarah Clapper, Jim Clark, Jacob Clark, Jo A Clark, Angelos Clary, Biffle Clary, lilly733 Clary, Rui Clary, William Clary, Otto Clave, Arahan Claveau, Neil Claxton, Mimi Claymore, Pete Claymore, Sam Clayton, Blank Cleanslate, Deckheard Cleanslate, Electron Cleanslate, Spirit Cleanslate, Willow Cleanslate, Kovu Cleaver, Bell Clellon, Covisha Clift, EBCY Clift, Iumi Cline, pizzaguy Clutterbuck, knightrider Clymer, Exia Coage, Brenda Coakes, Lindsay Coakes, Lyndka Cochrane, Ceinwen Coen, Oneil Coen, Mahogony Coffee, Mark Coffee, Lisbeth Cohen, Melayna Colasanti, holly Coldstream, Moon Cole, Shiden Coledale, Castalia Collingwood, JUNKIE Colman, Silver Colman, Stahi Columbia, SweetAbe Columbia, CC Columbo, Charity Colville, Isabeau Conacher, Deb Cone, emili0 Congrejo, MarioDaniel Congrejo, Jazzy Connell, Jenika Connolly, Cooper Conover, Garn Conover, Mara Conover, Myles Cooper, Angelina Coorara, Valentine Coppens, psyco Coppola, Tremleh Coppola, Venus Coppola, Chiana Cordeaux, Sensuality Cordeaux, Clarissa Cordoso, Methos Corinthian, Tylerferland Cork, Caleb Corleone, Montana Corleone, Sparkey Corleone, Zoey Corleone, Achtai Coronet, Count Coronet, Dweedle Coronet, jjccc Coronet, Ron Coronet, Caterina Cortes, Letitia Cortes, Marcella Cortes, Martinelli Cortes, Raven Cortes, Soopafly Cortes, Grazel Cosmo, Athena Cosmos, Cally Cosmos, Annyssa Cosmos, Bunny Costello, Zelitor Costello, Lionel Cournoyer, Sasha Cowen, Carl Crabe, Lyssa Craig, micke Craig, Mel Cramer, Tee Cramer, Avil Creeggan, Bunch Creeggan, CronoCloud Creeggan, NewYorkCityDJ Cremorne, Shalori Cremorne, Artik Crimson, Bliss Crimson, Daffodil Crimson, Raul Crimson, Shaoti Crimson, Trevor Crimson, Rex Cronon, Ace Crosby, Linnrenate Crosby, DaRealNeo Crossing, Wark Cruyff, Silver Csak, Eulalia Cuddihy, Lauralynne Cuddihy, Rammstig Cummings, Rita Cummings, Fremont Cunningham, Jinger Curie, RICX Curie, Betty Curry, Marissa Curtis, Mercurion Curtiss, Juan Cusack, Sanderman Cyclone, Marek Czervik, Alreania DaSilva, Dnel DaSilva, Seph DaSilva, Kelly Dabney, dorothyann07 Dae, Frax Dae, Frost Dae, Syryne Dae, Oddy Dae, 1Time Daehlie, Sinead Daehlie, TRACI Daehlie, Dante Daffodil, Limey Daffodil, stripey Daffodil, Atomik Dagger, Bloodsoaked Dagger, Coca Dagger, Colera Dagger, J4ck Dagger, Jaune Dagger, leigha Dagger, Silver1 Dagger, Alexander Dagmar, Simeon Dagmar, Dweezle Dagostino, Ginoo7 Dagostino, Joka Dagostino, Rachid Dagostino, Sinatra Dagostino, DR Dahlgren, Alexandra Daikon, Devious Dailey, Natalie Dailey, Sukit Dailey, Zoya Dailey, Nad Dal, Rudra Dal, Robert Dale, Coventina Dalgleish, Salvador Dalgleish, Anya Daligdig, Nyterious Daligdig, yvette Daligdig, Kylie Dallin, Angel Damask, Phantom Damask, QatanI Damdin, Bekka Damone, Pashin Damone, Vaekraun Damone, Zoraya Damone, elmoono Dana, Mary Dana, ml Dana, Rezzer Dancer, Shrug Dangle, Guttstein, Daniel, Bubba Daniels, Dinky Daniels, Kiana Daniels, marcel Daniels, Rosey Daniels, Sara Daniels, VictoriaRose Daniels, Ignacio Dannunzio, SlimD Dannunzio, williamae Dannunzio, Chriss Darkes, Digit Darkes, Tanooki Darkes, Bree Darling, Chasity Darling, Darra Darling, Val Darracq, Diana Darragh, Ryan Darragh, Bane Darrow, Bree Darrow, Ivy Darrow, cuddles Dassin, Leeloo Dassin, Dachine Daviau, Gyllian Daviau, Leben Daviau, Serioto Daviau, Willow Daviau, Allison David, JamieZel David, Todd David, Casey Davidson, LaNikki Davis, Whispering Dawn, Lady Dawson, Helen Dayton, Ryan Dayton, Ooh Dazy, Woopsy Dazy, Brighid DeCuir, eZekiel DeCuir, Link DeCuir, nath DeCuir, Rhys DeCuir, siliconegirl DeCuir, spring DeCuir, Iron DeCuir, Escort DeFarge, Archangelo DeSantis, Aubrey DeSantis, Gustav DeSantis, Hippy DeSantis, Ilana DeSantis, Sutara DeSantis, Undina DeSantis, Axienne DeVaux, Dana DeVaux, Kitty DeVaux, Mindy DeVaux, Krystal DeVinna, Krystalynn DeVinna, Magenta DeVinna, Manuela DeVinna, Spike Deakins, Debbes Dean, Korben Dean, Dogbert Debevec, Savannah Debs, emily Decatur, Heiko Decatur, Zorena Deckard, Andrea Decosta, Dolly Decosta, Esperenza Decosta, Kruppen Decosta, larrykin Decosta, PhoenixRose Decosta, Sophy Decosta, Twinsen Decosta, Vladimir Decosta, Duxster Deere, Maxim Deharo, Summerbreeze Deharo, Matti Deigan, DeeAnn Dejavu, Gina Dejavu, Shai Delacroix, alexis Delcon, Ashly Delcon, Kane Delcon, Dante Deledda, Lady Deledda, Jega Delgado, Alicia Delphin, Darek Deluca, Lestat Demain, Nuka Demain, Allissa Demar, Lilyanah Demar, Aeleen Demina, Blowing Demina, Kalm Demina, Sarias Demina, Skeddles Demina, Sweet Demina, Alida Demontrond, Redux Dengaku, J. Derby, Cristell Deschanel, Ivey Deschanel, SinaMaria Deschanel, Elisabeth Desideri, Monique Desideri, Bartiloux Desmoulins, Hazel Desmoulins, Isis Desmoulins, Phoenix Desmoulins, Jon Desmoulins, Dino Despres, Samantha Despres, Snowflake Despres, Bones Detritus, Neo Devoix, Bre Dharma, Showshawna Dharma, Mike DiPrima, Winter DiPrima, Gongree Diage, Azure Diamond, Styles Diamond, Maike Dibou, Klaus Dieffenbach, Xavier Dieffenbach, Lordfly Digeridoo, Selkit Diller, Tari Dilley, Kelly Dilweg, Werewolf Dingo, Darkharmony Dingson, Knud Dingson, Jewel Dinkin, Mecha Dinosaur, Savonna Dinova, Amina Diplomat, FuZzY Diqui, Crimson Divine, Lizbeth Divine, Cryptid Divisadero, Destiny Divisadero, Montsho Division, Gryphon Dix, Kittybird Dix, Hope Dixon, CadiWolf Dobbs, Darling Doboy, Nicole Docherty, Ralph Doctorow, Odo Dod, nik385 Doesburg, sam Doigts, Elea Dollinger, Miche Dollinger, Severina Dollinger, Eric Domela, Krysta Domela, Franky Donaldo, Duntroon Donburi, Tricia Donovan, Sabrina Doolittle, DeDe Doowangle, Dinghy Doowangle, Phoebe Doowangle, Ratzfatz Dorado, Jessalicious Dorance, RJaNator Dorance, Kalemika Dougall, Fi Douglas, Norelyn Douglas, Aerrett Dovgal, Wendy Dovgal, Alex Drago, MAGWolf Drago, Lupo Drake, Palanth Drake, Aryanna Draken, Drinkin Draken, Kaylan Draken, Maddy Draken, nixkuroi Draken, Thornpaw Draken, Sinjo Drakes, James001 Dryke, Nameless Dryke, Roberta Ducatillon, Helke Duettmann, Moni Duettmann, Kyla Duke, Esence Dulce, Manuella Dulce, Ric Dulce, Shannel Dulce, Xander Dumont, Lionna Dumouriez, Marko Duncan, Duncan, Lyre Dunia, Cyndari Dunn, Garth Dunn, Sugababe Duport, Taylorholic Durant, Vixie Durant, Julie Durant, Drew Dwi, Ribbon Dye, Michelle Dzieciol, shngy Dzieciol, Jeffrey Earp, Umbrella Ebi, Adi Eccleston, Bazzerbill Eccleston, Dragon Eccleston, chawna Eclipse, Minolin Eclipse, Valkyrie Eclipse, Joi Edelman, Alx Edman, Daniella Edman, Saskia Edman, Storm Edman, Cory Edo, Tommy Ehrler, Stephe Ehrler, Edred Einarmige, Hope Eldrich, Kai Eldrich, Winter Eldrich, Thunder Electric, Ezmerelda Electricteeth, Hostile Electricteeth, Kris Electricteeth, Loki Eliot, rudy2zday Eliot, Shaydin Eliot, Iris Ellison, Enigma Elswit, Tim Ely, Darkling Elytis, Delu Elytis, Happy Elytis, Jessica Elytis, Bernd Emmons, Kellie Emmons, Robbert Emmons, Bean Emoto, dick Encore, Andy Enfield, Fuzionor Engawa, Hethr Engel, RH Engel, Digital Enigma, Kahlest Enoch, Lex Enoch, Oran Enoch, Ryal Enoch, Wobmongle Enoch, Wyatt Enoch, Pea Enzyme, Antony Epin, Sapphire Epin, DBDigital Epsilon, Shoshana Epsilon, FallenAngel Erato, Renton Eretz, Mo Eriksen, 64Y80Y Eros, tommy Eros, Nicola Escher, Zak Escher, Salvatore Esposito, Quinevere Essex, Zed Essex, Fabian Etchegaray, Psyche Etoile, Byanex Etzel, CrimsonWings Eun, Deckard Eun, Arwen Eusebio, Anastacia Evans, buttonlynn Evans, Rose Evans, Romeo Evelyn, Sephiroth Everidge, Patriiick Ewing, Trey Ewing, Vivian Ewing, Xwing Ewing, Zha Ewry, SirZarath Excelsior, Zorrita Express, Hierophant Extraordinaire, Blanche Fabre, Annie Fackler, Wolfgang Fackler, Amy Faddoul, Shukran Fahid, Garth FairChang, Brooke Fairplay, TOmmy Fairplay, Vixen Fairplay, Bobby Fairweather, Darlean Fairymeadow, Gotobug Fairymeadow, Heathie Fairymeadow, Meleni Fairymeadow, Moon Fairymeadow, Odysseus Fairymeadow, rob Fairymeadow, Taylkusha Fairymeadow, Crystal Falcon, WhiteAngel Falcon, VetteMan Falken, Evilpony Fallon, Fernand Fapp, Sasuke Fapp, Roen Fardel, Dariush Fargis, Jenn Fargis, Mandy Farina, Kokoro Fasching, Madison Fasching, Ben Fassbinder, Leo Fastback, Rikky Faulds, STEEL Faulds, Equino Faulkland, Flynn Faulkland, High Faulkland, Arda Fauna, Elvis Faust, Benelli Federal, Forest Federko, Belle Fegte, Danny Feingold, Luc Feingold, Bing Fell, Darky Fellini, Jaze Fellini, Sacha Fellini, paulie Femto, Ynot Fenua, Fau Ferdinand, Soren Ferlinghetti, Meri Fermi, Boxter Ferraris, Danamea Ferraris, Duilho Ferraris, Fred33 Ferraris, LeekySean Ferraris, Letizia Ferraris, Marlowe Ferraris, Wanted Ferraris, Xavier Ferraris, Feff Ferrer, Thomas Ferris, Nakala Fetisov, Astrin Few, Chosen Few, Ahh Fiddlesticks, Chantal Fielding, Caleb Fierrens, Patrice Fierrens, sam Fieseler, NutZ Figaro, summer Figaro, Leumia Figgis, Mae Figtree, Maldavius Figtree, Ravovich Figtree, Morgana Fillion, Brett Finsbury, sofia Finsbury, Jazmina Firefly, sasha Fischer, william Fish, Nadia Fisher, StevenSDF Fisher, Carol A . Fisher, Dimitri Fisseux, Manni Fitzgerald, Freddie Fitzroy, Phineas Flagstaff, Ante Flan, Braden Flanagan, BrettEbay Flanagan, Echo Flanagan, Knute Flanagan, Kristjan Flanagan, LilyRose Flanagan, Meril Flanagan, Lulu Flasheart, Jolie Fleury, Clitoria Flint, Fifi Flintlock, Frostie Flora, Kitto Flora, Chriss Florio, Arlen Flossberg, Angel Fluffy, Emilyuk Fluffy, Frurry Fluno, Faedra Flytrap, Brieg Foden, Annette Fonda, Katina Fonda, Raymond Fonda, Marcos Fonzarelli, Yuri Fonzarelli, CrystalShard Foo, etoile16 Food, Kim Food, Kode Forager, Vodka Forager, Wendy Forager, Lucien Forcella, Maela Forcella, Olli Forcella, Violet Forcella, Clarissa Forder, darkdog Forder, Hans Forder, Jango3234 Forder, Olli Forder, Naryu Forester, FaustTiger Forte, Richie Forte, BMFC Forwzy, Erick Forwzy, SusNy Foss, Sanford Foulon, Iwana Fouquet, Kae Fox, Raudf Fox, Wolfie Fox, Phli Foxchase, Kityn Foxley, MollyBrown Foxley, Qua Frampton, Ice Franchini, Nicolas Franchini, Soizie Franciosa, Samson Francis, Nequam Frangilli, Andreas Frankfurter, PreWired Frankfurter, Diane Franklin, Cappy Frantisek, Romano Frascati, DeMits Frederix, Mel Fredriksson, Sune Fredriksson, Tina Fredriksson, Fastfreddy Freeloader, Sammar Freeman, Kitty Freund, Jorgen Friis, Zorin Frobozz, mdbobbitt Frobozz, Chris Frontenac, Foolish Frost, Asriazh Frye, Patti Frye, Phish Frye, Nobody Fugazi, Simba Fuhr, Snugglebunny Fuhr, fallendream Furse, Jamie Furst, Cherise Gagliano, Laura Gagliano, Gammy Gainey, Gazz Galatea, Govindira Galatea, Rizpah Galatea, Amber Galbraith, Mandy Galileo, william Galileo, David Gall, LoLa Galland, Zach Ganache, Casey Gandini, Edgar Gantenbein, Jonx Gao, Soso Gao, Madison Gardner, Silver Garfield, Michelle Garrigus, Nerdmaster Garrigus, Jarik Garsztka, Svoboda Garsztka, Salkin Gascoigne, Roger Gaspara, Buttlock Gasser, Pud Gasser, Zina Gasser, Prince Gausman, livingdead Ge, Josh Geesink, Tolly Geest, Georgina Geewhiz, Chris Geiger, Sabine Geiger, Samuel Geiger, Tristessa Geiger, Joe Gemini, Mielle Gemini, Misty Gentil, Sanna Georgette, Phoenix Gerhadsen, Mic Ghia, Salores Ghia, Loskobosko Giacomin, Susanne Giffen, Lazarus Giha, Micah Giha, Merry Gildea, Summer Gildea, Brittany Giles, Rayy Giles, sevron Giles, Gattz Gilman, Rori Gilmour, SunQueen Ginsberg, Rockwell Ginsberg, Intolerable Ginsburg, Junie Ginsburg, Enrico Giove, Krystal Giove, Annie Giovinazzo, Cat Gisel, Constantine Giugiaro, Io Giugiaro, Persimmon Gjellerup, Lorna Gladstone, Toby Gladstone, Dale Glass, Gellan Glenelg, EmmaBella Glimmer, louise Glimmer, Gianna Glitter, Melyissa Glitterbuck, Victoria Glushenko, Wolf Goalpost, Chris Gobo, Xerses Goff, Sturdus Goldblatt, Nigel Goldflake, Major Golding, Master Goldkey, Zho Golem, Stylez Gomez, Carlos Gomez, Alecydoss Gontermann, Skyler Goode, Valentine Goode, Odd Goodfellow, Dragyn Goodliffe, Hank Goodliffe, Livinda Goodliffe, Robertt Goodliffe, Daphne Goodnight, Sean Gorham, Ledje Gorky, Emma Gould, Amaze Grace, Lagerstone Graff, Harper Grainger, Andy Grant, Carrie Grant, LauraLOral Granville, AlphaOmega Graves, Ebon Graves, Kyrii Graves, Leeloo Graves, Bosco Gray, Dez Gray, Renegade Gray, Summer Gray, Aries Graysmark, Edian Graysmark, Scotty Grayson, Mantis Grebe, Kelly Green, cara Greene, Kimber Greene, Mystical Greene, Raven Greene, Soilent Greene, Matthew Greene, Soilent Greene, Roberta Greenfield, ShayLee Greenspan, Dax Greer, Angel Gregg, Kyleigh Gregg, Sophie Greggan, Deanna Gregoire, StylynProfylyn Gretzky, Farallon Greyskin, Kraal Griffith, Xavier Griffith, Jacomo Grigg, Sylvie Grizot, bodyman72 Grot, Damian Grot, MarieCaroline Grumiaux, Mozo Grumiaux, Oceane Grumiaux, Jadem Gruppman, Gracie Grut, Jennie Grut, Mhaijik Guillaume, Frog Gulick, RacerX Gullwing, Enktan Gully, Gilly Gully, Woozie Gumshoe, Teddy Gumsing, Stephane Gunawan, Alienbear Gupte, Boroondas Gupte, mcgeeb Gupte, Elise Guyot, Jamal Guyot, Lawyer Guyot, Thiago Guyot, Arwen Gymnast, denniswo1993 Gymnast, Lukes Gymnast, Miki Gymnast, Sizoark Gynoid, Markiss Haas, Pepper Haas, Arkanys Hadlee, Apollo Haight, Lord Haight, Fawn Hailey, Kaelin Hailey, Gaelle Halasy, ISIS Halberd, Meg Halberd, Zander Halberd, Arnold Halderman, Malarwen Hall, Ken Hall, Jonah2cd Hallard, Saii Hallard, Trixie Hallard, Doris Haller, Destina Halley, Susiee Hamilton, IBMTapeGuy Hammerer, Lighten Hammerer, VEVER Hammerer, Alison Hamsun, Fawn Hana, leah Hana, Darknite Hand, Emperors Hand, nefertiti71 Handrick, Rodney Handrick, Delerium Hannibal, leanhaumshee Hannya, jingle Hansen, Mattie Hansen, Terry Hansen, Vox Hansen, Filo Hapmouche, Gustavus Hapmouche, Nounouch Hapmouche, Adrian Harbinger, Kami Harbinger, StormCrow Harbinger, CherryBomb Hare, Den Hare, Omegasun Harford, ricky Harford, ricky Harford, Harley, Jenna Harley, Kristina Harley, Natasha Harlow, Hummer Harmison, Allen Harrington, Tessa Harrington, Joker Harris, Shanti Harris, Dagon Harrison, J0NATHAN Harrop, Kerinauu Hartunian, Kyentay Hartunian, Rav Hartunian, Ski Harvey, Tuesday Harvey, Xylo Hasp, Betina Hatfield, Gina Hatfield, Calamity Hathaway, Dorian Hathaway, Duncan Hathaway, Xavier Hathaway, Jack Hathor, Kamilah Hauptmann, Pam Havercamp, swift Havercamp, Griselda Hawes, kwanita Hawks, Ravenis Hawks, BenG Hax, el33t Hax, Juicy Hax, Macx Hax, Meta Hax, Mikka Hax, Mokona512 Hax, Mr8ball Hax, Prophet Hax, Rina Hax, Slober Hax, Starbuck Hax, Takehiro4 Hax, Kyle Hayashi, Ashrilyn Hayashida, Eriko Hayashida, August Hayek, Milton Hayek, Ronnie Hayes, Max Hazlehurst, Sorsaran Hazlehurst, Grath Hazlitt, Violet Hazlitt, April Heaney, Aquela Hearn, jefferey Heart, Kalyrra Heart, Marissa Heart, Taina Heart, TLC Heart, Tori Heart, Dana Hebert, Trimzi Hedges, AmazedBlue Hegel, Dagmar Heideman, r0bin Helsinki, Moira Henley, Ursa Henley, Joharr Hennah, Daviana Hennesy, GJ Hennesy, jens Hennesy, Karl Herber, mistydawn Herbst, Donatella Hermano, Robins Hermano, Ekib Hern, Greves Heron, Jagged Heron, Christel Herzbrun, le Herzog, Reverend Herzog, Elektra Hesse, SweetDesire Heston, Cotton Hicks, Zack Hicks, Kevyn Hienke, Tristan Hienzman, Devin Hill, Wendy Hill, Tensai Hilra, Valek Hin, Adolph Hinkle, Timothy Hinkle, YoCo Hird, Amber Hirvi, Dagon Hitchcock, Heather Hitchcock, Noah Hitchcock, Sianna Hock, Dominique Hofmann, Holly Hofmann, Ganador Holgado, Brookston Holiday, Davidd Holmer, Sam Holyoke, Alexander Homewood, atory Homewood, dabadguy Homewood, Ed Homewood, Huge Homewood, Meesha Homewood, tilstad Homewood, Cremi Honey, Laura Honey, Sandling Honey, Honey, Haos Honua, Vudu Hoodoo, Dallas Horsefly, Lucy Horton, SJ Horton, Homer Horwitz, naty Hotaling, Traceysvideos Hotger, DaQueenB Houston, Natasha Houston, Tia Houston, Hughes Howard, Meg Howe, Edward Howton, Falllen Howton, Pepto Hoyer, Sabrina Hoyer, LadyAbigail Hubbard, Kristopher Hudson, Nikita Hudson, Titus Hudson, XLR8RRICK Hudson, Holly Huffhines, Bella Hugo, Haole Hula, Sard Huldschinsky, Neran Hull, Anastasia Humphrey, October Hush, Silent Hush, Ctarr Huszar, ac14 Hutson, Dex Hutton, Fox Hwasung, Johanna Hyacinth, White Hyacinth, Adrianna Hyde, DJ Hyde, Ty Hyland, Adeline Hynes, Cathy Hynes, DeepSweet Hynes, Psykeeper Hynes, Sexy Hynes, Ares Hyun, Emperor Hyun, melodie Hyun, slayer Hyun, Puck Ida, Weary Ida, Anne Idler, Ruby Idora, Bryan Idziak, Six Igaly, elfi Independent, Spike Independent, Veilofunknown Independent, Bryndi Ingersoll, Ingrid Ingersoll, Noelyci Ingmann, Andrew Ingrassia, Dale Innis, Foxy Innis, Vern Innis, 111Mc Innis, Cloud Insoo, MEtoo Insoo, Quinn Iredell, Rebekah Iredell, Lucien Ireton, Maggie Ireton, Austin Ironclad, DavidJames Irwin, Roy Irwin, Xavier Irwin, Esmee Isbell, Miyu Ishii, Billy Islander, Misa Itamae, Magnum Iuga, Akasha Ivory, Juliana Ivory, WHITEMAGIC Ivory, Gazometr Ivory, Indigo Izumi, Kami Izumi, Salazar Jack, Gunslinger Jackalope, Sutton Jacks, Casandra Jackson, Dernard Jackson, Dougal Jacobs, Lone Jacobs, Sydney Jacobs, jefftlse Jacobus, jose007 Jacobus, justine Jacobus, LampLighter Jacobus, Micha Jacobus, Jadge Jacobus, Enchant Jacques, Victoria Jacques, Dreamweaver Jae, Gregoire James, Kizza James, Vienna James, Barry Jannings, Bianca Jannings, Gwen Jannings, Juappa Jannings, Paisley Jannings, Coos Jansma, Fernandinho Jansma, Griffioen Jansma, Jiire Jansma, IsisLynn Janus, Theobaise Janus, Conway Jarrico, DylanJr Jarrico, Quest Jarrico, erba Jarvis, Jeagerman Javelin, Alan Jay, Lopp Jay, harpo Jedburgh, Craig Jeffries, Alexis Jenns, Bimbie Jenns, XanXan Jervil, Alexander Jessop, Gelenas Jessop, RodneyLee Jessop, Tataniya Jessop, Amethyst Jetaime, Kooky Jetaime, Sapphire Jetaime, Tempest Jewel, Vampirella Jewel, Elia Jewell, Josey Jewell, Shaolin Jewell, Sheeba Jewell, Stefu Jewell, Uma Jewell, Rosslin Jiang, alex Jimenez, Forest Joffe, John Jogiches, Dyani Johin, Musashi Johin, Major Johnson, Dean Johnson, Peter Johnson, Thomas Carson Johnson, Janet Jones, Jason Jones, Bedo Jonze, Elaine Jorgensen, Osiloa Jorgensen, Mariah Jubilee, Sam Jubilee, Ada Jun, Chenak Jun, Ferris Jun, kelyane Jun, Takeshi Jun, Tommi Jun, Phoebe Juneau, Grace Juniper, icandi Juno, Kimo Junot, isha Juran, Orchid Juran, Torsten Juran, Krzywol Kaczmarek, Sakura Kagekiyo, Meni Kaiousei, Fritz Kakapo, Esdrael Kamachi, Kathy Kamenev, Darsuky Kaminski, Rebecca Kaminski, Digital Kaos, Kappa Kappa, Leah Kappa, Gapple Kappler, Cristalle Karami, Toledo Karas, Tina Karlfeldt, Angelina Karura, Samara Kasshiki, Kitty Katscher, Lonetree Katscher, Goldie Katsu, Shamir Katsu, Lacey Kavanagh, Scrooge Kavanagh, Faye Kawabata, Ninja Kawabata, Onimusho Kawaguichi, Brad Kazakov, Ida Keen, Jeff Kelley, Kyle Kelley, An Kellner, Cindy Kellner, Kean Kelly, Tony Kembla, KaliCat Kennedy, Fred Kenorland, Sharon Kent, Nils Kenzo, Rase Kenzo, Tammy Kenzo, Tyci Kenzo, chica Keon, Benja Kepler, Gust Kepler, KittyKatt Kerensky, anton Keynes, Ipenda Keynes, Malevolyn Keynes, Ayumi Khorana, Hoshi Kiama, Nekorina Kiama, Aurillius Kidd, Bare Kidd, Billboard Kidd, Blurple Kidd, Cade Kidd, Ekerilar Kidd, FFS Kidd, Lazarus Kidd, Lea Kidd, MidnightRush Kidd, Mittens Kidd, Morliona Kidd, Neilly Kidd, Kim Kienzle, RJ Kikuchiyo, Gail Kilara, Fish Kilby, zeelee Kindley, Montez King, Dax Kirkorian, Myoukitsune Kirkorian, Szandor Kirkorian, Cmtccmoi Kish, Kia Kish, DaQbet Kish, Coca Kit, Developer Kit, pronto Kit, Sunshine Kit, ssjkriccolo Kitchensink, Reisuki Kitsune, Tengu Kitsune, AngelEyes Kittinger, Devilish Kitty, Kitty, Panther Kitty, Daaneth Kivioq, Praseodymium Kivioq, Sonya Kivioq, Emily Kleene, Buejien Klees, Princess Klees, SaltySugar Klees, Parrish Kline, ProfessorKindly Kline, Chelsay Knibber, Victoria Knight, Raspitomaru Knopfli, Cocoanut Koala, Akiko Koba, Bryan Koba, dawood Koba, Izen Koba, Nebur Koba, Taran Koba, Pamela Koenig, Neo Koga, BlackOut Kohime, Jazzie Kohime, Naa Kohime, Seriuskid Kohime, Wandale Kohime, Zana Kohime, Zerosix Kohime, Maucat Koi, Dagmar Kojishi, Chroma Kolache, Icey Kolache, Kornscope Komachi, Bri Koolhaas, KamaSutra Koolhaas, Katya Koolhaas, Trylle Korda, Corrine Korobase, Navajo Korvin, Pasha Korvin, David Kostolany, quintin Kostolany, Tasha Kostolany, Amy Kotobide, Zaphod Kotobide, KYWLDCT Kovacs, LillyEliska Kralomoc, Joseph Krams, Fumon Kubo, LudwigVan Kubrick, Anagras Kuhn, Selina Kuhn, Tal Kuhn, Finora Kuncoro, Maya Kupferberg, Jana Kurelek, Shika Kuri, Yo0gy Kuri, Endo Kurosawa, Tatsuki Kurosawa, MrBill Kurri, Albert Kwak, Kwakkelde Kwak, Duckling Kwak, Kasey Kyger, Kaimi Kyomoon, Stelard Kyomoon, Kyo Kyong, Emm Laa, Keera Laasonen, Delvendez Laborde, Raban Laborde, Amodeus Labrada, Louisa Labrada, Sweeten Lacey, Fiachra Lach, Eliv Lachman, Flykiwi Lachman, Charlie Laffer, LarryS Laffer, Sasha Lafleur, OxLukexO Lagan, Shadow Lagan, Tilianna Lagan, Jaye Lahtoh, Davoid Lake, Fairlight Lake, Thomas Lake, Veronique Lalonde, Leticia Lambeau, Maleia Lambeau, Cross Lament, Drakon Lameth, Misch Lameth, Caeleigh Lamington, Nedrick Lamont, essayn Lamont, Dwayne Lancaster, Hiram Lancaster, Carlton Lane, Christo83 Lane, DOO Lane, Niket Lane, Roughtoe Lane, Taylor Lane, Ami Lang, Emily Lang, Ruadh Langwarrin, Sasha Lapointe, Garrett Laramide, TBA Lardner, Beverly Larkin, Marcoh Larsen, Vanessa Larsen, bjf25 Larsson, curL Larsson, Garsson Larsson, Jondolarr Larsson, Justicar Larsson, Quinn Larsson, redshoedave Larsson, Tod Larsson, lea Laryukov, Renate Laryukov, Benny Lassally, Khristen Lassard, Josh Latrell, Lacey Latrell, Shari Latrell, Casper Laughton, Kory Laughton, Lisa Launay, Sasha Launay, Areyn Laurasia, Crystaleen Laval, Moirae Laval, Sascha Laval, Slasha Laval, Tiberius Laval, Shadow Laviolette, Velarissa Laviolette, Zeus Laws, Snaptick Laxness, wtf Laxness, Carrie Laysan, Norton Lazarno, Candide LeMay, Dustin LeMay, Shelly LeMay, Antionette LeShelle, Hayden LeShelle, Kristian LeShelle, Monika LeShelle, Mysti LeShelle, Shaklin LeShelle, Shavaii LeShelle, Lord Leafblower, Kinjry Legend, UniqueRose Legend, Jonny Legien, Lillia Lehane, Renae Leigh, KeiAira Leigh, Casper Leinhardt, MiaLily Lelouch, Adriana Lemieux, Keiki Lemieux, Ginger Lemmon, Heather Lemmon, JohnnyMac Lemmon, Lenni Lemuria, Bubba Leonard, Spyder Leroy, Aral Levitt, DarionMonkee Levitt, Quiana Levitt, Angharad Lewellen, AngelEyes Lewis, Cookie Lewis, JonnyImpala Lewis, Ekka Li, Jesa Li, Anark Liebknecht, KUieTSToRm Lightcloud, Lincoln Lightfoot, Nicola Lightfoot, Shaman Lightstone, Nika Lightworker, April Lilliehook, Joi Lilliehook, Kimi Lilliehook, LAPDHOLLYWOOD2000 Lilliehook, Lindy Lilliehook, Shayne Lilliehook, Skywil Lilliehook, Neo Linden, Amber Linden, Guy Linden, Teeple Linden, Marck Lindman, NoSpy Lindman, Rahduhlac Lineker, Evangeline Ling, Kailani Ling, Karyll Ling, Lexus Ling, moon Ling, Wai Ling, Samantha Lingiuan, CyberonX Link, Laynie Link, SLurl Link, Aphrodisiack Lisle, Petunia Liveoak, Eithnie Llanfair, Jennifer Llanfair, Pami Llewelyn, Gwyneth Llewelyn, Kiten Lobo, Paul Lobo, Khrome Lock, Brett Logan, Dragger Lok, Pavig Lok, Sera Lok, May Loll, Lola Lollipop, SweetTasting Lollipop, Nikee London, Trinity London, Dogan Lonergan, Rod Longcloth, Excalibur Longstaff, Apolonique Loon, Austyn Loon, Danyhael Loon, Goreki Loon, Huligo Loon, Jaffred Loon, LouisS Loon, Luke Loon, mahee Loon, Ruthless Loon, Melina Loonie, rasta Lopez, Lydiah Lorentz, Stellar Losangeles, Blackie Lotus, Misha Lotus, Alysia Loudon, Grace Loudon, grumble Loudon, Kate Loudon, kimmie Loveless, LadyMacbrat Loveless, Ally Lovell, Dixii Lovell, Darb2rad Lowe, Lozzie Lowe, Trip Lowe, Andrek Lowell, Jaraziah Lowell, Lissa Lowell, Stryfe Lowell, Leland Lowell, Leonardo Lowey, Stagger Lowey, Strabo Lowey, Raen Lu, Laurie Lubezki, MissJean Lubezki, Lucia Lucero, Lee Ludd, Franchises Lulu, Jayden Lulu, Kitten Lulu, mona Lumet, Alienor Lumiere, Michi Lumin, Wolf Lumin, Grumpy Lumley, Sian Lumley, HamSuiJe Lumpen, Laguna Luna, Starbella Luna, Ashley Lundquist, Theosta Lunt, Cliothe Luo, Lincoln Lupino, Bronwyn Lurra, Mineki Lurra, MYMistress Lusch, Linnae Lusso, Natalie Lustre, Rose Luxemburg, Helena Lycia, AG Lykin, Lhlilith Lykin, Niko Lykin, Logan Lyne, Jacques Lytton, Kianeira MacDiarmid, Apple MacKay, Melissa MacKay, Bailey Mackenzie, Maxx Mackenzie, Rose Mackie, Ee Maculate, Gaetan Maculate, Ravarian Maculate, Adrian Maddaloni, yearning Maddaloni, Ava Maddux, Flezix Maddux, Karamel Madison, Allure Madonna, Mannie Madonna, Sitearm Madonna, Mario Madsen, Mitzy Madsen, Ben Maersk, Lillian Maertens, Turk Maertens, Stephanie Magnolia, Lonique Magojiro, WarKirby Magojiro, Loki Mahana, Vinny Mahana, Semiramis Mahina, Shadow Mahoney, Rissa Maidstone, Tynana Maidstone, Angel Majestic, Jeremy Majestic, StarFire Majestic, Tiara Majestic, One Maktoum, Lana Maladay, Marzipan Maladay, Missy Malaprop, Ordinal Malaprop, Void Malaprop, Natasha Malibu, Rygel Malick, Ali Maltz, Leena Maltz, Cage Mandala, Synthalor Mandelbrot, Zeppelin Mandelbrot, Esteban Manen, Kawaii Manga, Mailee Manga, Nathalie Manga, Yinato Manga, Mya Mantis, Madame Maracas, Maisa Maracas, Domino Marama, Panama Marama, Charm March, SallyWoelfin March, Markel Marchionne, AdriAnne Margulis, Edgware Marker, Tika Market, AiSenshi Market, Lizbeth Marlowe, Queue Marlowe, Joana Maroon, Grey Marquette, Adrianna Marquez, Jeremy Marquez, Shirley Marquez, Christian Marquez, Dax Mars, Dnate Mars, Xandi Mars, Sarah Marsi, Garmon Martin, Sean Martin, SignpostMarv Martin, Brittany Martinek, Sweet Martini, ElDraque Martov, Aminom Marvin, Edwin Marvin, Meatnik Marvin, Zanza Marx, bollit Masala, Nguai Masala, Satya Masala, team23 Mascot, Tyler Mason, NAM Massey, Minasojo Massiel, Gatto Mastroianni, Checho Masukami, SlavegirlPaula Masukami, Hellsing Matador, Femina Matahari, Leoki Matahari, Rosa Mathieson, Violet Mathieson, MikVik Mathilde, Jonathan Mathy, Ernesto Matova, Selenia Matova, Meltharas Matsukaze, lordneg Matzerath, Memnoch Matzerath, Dedric Mauriac, Kezz Mauriac, Wolruf Mauvaise, coyote Maverick, Martin Maxwell, jericka May, Jeza May, Mellony May, Lauri Mayfair, EnCore Mayne, revochen Mayne, amaya Mayo, Hellmanns Mayo, Jima Mayo, Kion Mayo, Kisho Mayo, Mo9a7i Mayo, Neobe Mayo, Salazar Mayo, Sat Mayo, Scotto Mayo, William Mayo, Gino McAllister, Masion McAllister, Wallace McAllister, DarlinNikki McAlpine, Hawk McAlpine, Inga McAlpine, Lex McArdle, Maggie McArdle, Joshua McCallister, Keegan McCallister, Bradford McCann, Ella McCann, Flox McCarey, Jezzie McCellan, David E . McClure, Cash McConachie, Cathal McConachie, Tad McConachie, Aodhan McDunnough, Drew McDunnough, Artie McFly, Minnie McGann, Sabine McGettigan, Poppet McGimsie, Carole McGuire, Tegwenn McKenna, Shaemus McLaglen, ShirleyM McLaglen, Dirty McLean, HoseQueen McLean, Billibob McLeod, Cari McLeod, Innes McLeod, Jaenae McLeod, Slate McLeod, Troy McLuhan, Anya McMahon, DoGGo McMahon, Hutch McMahon, Iras McMahon, Jian McMahon, Jimama McMahon, Kouki McMahon, Sioban McMahon, Akie McMillan, laika McMillan, Lauris McMillan, Marteze McMillan, Maye McMillan, Nicholas McMillan, Radikal McMillan, Tammi McMillan, Jax McNally, Arwyn Meadowbrook, Waterflower Meadowbrook, Ima Mechanique, Nber Medici, Chandra Meehan, Geo Meek, Earane Meiji, Jessica Meiklejohn, Emiko Meili, penelope Meili, Luz Melbourne, Marti Melnik, MenuBar Memorial, Aitor Mendes, Mona Mendes, Jay Menges, Kimmie Menges, Lennart Menges, Margaret Menges, Mikel Menjou, VzNevada Menoptra, Merselus Mensing, Leia Mercy, SAPPHIRE Mercy, Sofie Mercy, ozadakan Meriman, Sandycd Meriman, Washington1985 Meriman, Infiniview Merit, Nanashe Merkur, Ayahuasca Merlin, Craischen Merlin, devillover Merlin, Faer Merlin, Jarros Merlin, Jolie Merlin, Kejo Merlin, Mario4 Merlin, Sarah Merlin, Silas Merlin, Wizard01 Merlin, Telitha Merlin, Vrrgo Merlin, Rocky Merosi, Luxe Merrienboer, Lance Mertel, Angus Mesmer, MysElf Messmer, Lonny Miasma, Utopar Michinaga, MTC Mielziner, Enysy Mikita, Celeste Miles, Giovani Miles, Guli Miles, Mars Miles, Noah Miles, RobWest Miles, Subzero Miles, DALLAS Milestone, Jane Milev, Jesper Milev, MMz Milev, YumYum Milk, Belle Milland, Berri Milland, Joanne Milland, Vicky Miller, Samantha Miller, Calvin Millions, Envy Millions, Lusty Millions, Versu Millionsofus, AsteroidS Mills, Emixam Mills, Goodstuff Mills, Guntrinkyt Mills, Isabella Mills, Landen Mills, Noelle Mills, Sand Mills, Djarno Mills, Mandee Milner, Haika Milo, Mankud Milo, Slobodan Milosz, Eliezer Mimistrobell, Amoret Mineff, Little Ming, Mako Minogue, Mandee Minogue, Milena Minogue, Sylfie Minogue, Manon Mirabeau, Tygeria Mirabeau, leliel Mirihi, Cmdr Misfit, disisme Misfit, fangy Misfit, Grim Misfit, RedWolf Misfit, Michal Mishin, Robby Mission, Shawn Mission, Haravikk Mistral, Thom Mistral, Sertories Mitchell, Temporal Mitra, Bphero Mizser, Stolar Mohr, DarkWulf Mokeev, Nemo Mokeev, sharon Mokeev, Sech Molinari, lara Molinaro, MARIOS Molinaro, James Mommsen, Sierra Monnett, Joan Monstre, Cattra Montagne, Galadhriel Montagne, AnnaMarie Montgomery, Christine Montgomery, Mariah Montgomery, Shawna Montgomery, Jemima Moo, Jihashi Moo, Moonie Moo, Wiske Moo, Borgie Moody, DOA Moody, Makinzie Moody, Preciousse Moody, Bit Moody, Luna Moody, ziphren Moonflower, Axl Moonlight, FxyLdy Moonlight, Stormy Moonlight, Lichtje Moonsoo, Astryd Moore, Haze Moore, Walker Moore, wiseman Moore, Zak Moore, Mordechai Moose, JMM Morahan, Kayleigh Morahan, Cyndi Moran, Marcus Moreau, Kathy Morellet, Violet Morellet, Heather Morenz, Maggie Morgan, Newbie1canobe Morgan, Sumar Morgan, Bella Morico, Ornella Morigi, Eagle Morris, Amanda Morrison, Maeyanie Mosienko, Svetlana Mosienko, Trinity Mostel, Risa Mosuke, Falcon Mountain, NEWB Mountain, Windy Mountain, KittenAnne Mousehold, Minky Mousehold, Lawna Mower, Pure Moxie, webeagle Moy, Buckaroo Mu, Nye Mu, Kara Muir, Robert Muir, Criscad Muni, Jean Munro, Pranay Munro, Nobu Murakami, Shar Murakami, Yumi Murakami, Arrekusu Muromachi, Sasameyuki Muromachi, Usagi Musashi, Spiritfire Musketeer, Questyn Myhre, Myst Mysterio, Vincent Nacon, Fox Nadir, Morgana Nagorski, Sari Naheed, Yasmin Nakamichi, Aibyou Nakamura, Aluviel Nakamura, Kyriani Nakamura, Madeea Nakamura, Masao Nakamura, Misao Nakamura, Tammi Nakamura, Tanabata Nakamura, Nawtakune Nakatani, rich Nasu, Lev Nedkov, Coal Nelson, Shiharizad Nelson, Laurah Nemeth, Beladonna Nephilim, Lianna Nephilim, Seraph Nephilim, Sari Neruda, Tiberious Neruda, otakup0pe Neumann, Wilhelm Neumann, Chet Neurocam, Draconis Neurocam, Cenji Neutra, Lex Neva, Prokofy Neva, BC Nevadan, Seagel Neville, Judi Newall, Killian Newall, Si Newall, Roenik Newell, Jos Newman, Lynda Newman, MadCat Newman, Weaver Newman, Ian Newt, Ribblet Newt, ninjafoo Ng, Raideur Ng, William Niangao, Gao Niangao, Lori Nicholas, Pravda Nicholas, Evangeline Nichols, Joella Nico, Morpheus Nieder, Titzalina Nieder, Blaze Nielsen, Angelus Nielson, Lazaros Nikolaidis, lincoln Nikolaidis, Tiruviel Nikolaidis, Kenn Nilsson, Lib Nilsson, Jokyr Nimbus, Tateru Nino, Jyotsna Nishi, lloll Nishi, Roxas Nishi, Tuote Nishi, Katlene Niven, Kari Niven, Thegamer Nixdorf, May Noarlunga, Jo Noe, DesrAw Noel, Jacindia Noel, Jaz Noel, MelodyRose Noel, Mi Noel, Paden Noel, Ricky Noel, Sunno Noel, Ono Noh, Tuach Noh, Feras Nolan, Jane Nolan, Harald Nomad, Helen Nomura, Lolita Nomura, Richard Noonan, Aenea Nori, Aulin Normandy, Kat Normandy, Zebra North, Stephen Northport, Galare Novi, KittyMarie Novi, Soo Novi, Elia Nozaki, lynsey Nozaki, Rini Nozaki, Kinzo Nurmi, Yasmin Nurmi, Kyran Nyak, Lauren Nykvist, Karma Oates, Alice Obscure, Honeymoon Obscure, Mikhail Obscure, Origin Obscure, Dementia Obviate, Lucius Obviate, Mootly Obviate, TripleXXXTex Obviate, Vanessa Obviate, Vitis Obviate, Sieben Ochs, Avery Oddfellow, Clinton Oddfellow, Maczter Oddfellow, Sempervirens Oddfellow, Tashie Oddfellow, Wagahai Oddfellow, CarlinRae Odell, Johnny Odell, Liny Odell, Lucifer Odell, vanler Odets, Foxb Oe, Kiwini Oe, Natalie Oe, Eddy Ofarrel, Mylinn Ofeq, Roundabout Ogee, Bannock Ogg, Behemoth Ogre, Anju Oh, BlackCinders Oh, Canoe Oh, Crippy Oh, Dakotah Oh, Day Oh, Doo Oh, Feander Oh, Heady Oh, Job Oh, kyushudan Oh, Lila Oh, Luxura Oh, MrSim Oh, OHYES Oh, Oury Oh, Qyty Oh, Santa Oh, Svn Oh, Volta Oh, xepadd Oh, isla Oh, Angelina Ohara, Troy Oherlihy, Yasuragi Okame, Rephaim Okina, Sven Okonomi, benyamin Olaria, EvlDesire Oliver, Brightly Olivier, Renton Olivier, Gary Olson, Christopher Omega, Hamncheese Omlet, Joseph Omlet, Libuse Ondricek, luminye Onizuka, Miyuki Onmura, Toshiro Onmura, Hotaru Onomatopoeia, Isis Ophelia, Orchid Ophelia, Stumbelina Ophelia, Roberto Oppewall, Anthony Opus, Spaceman Opus, Vakis Oranos, Koop Orbit, Sammy Ormsby, Cal Orr, Usra Ostrich, Nikki Osumi, Ariel Otafuku, kevin Oto, CJ Oto, Ann Otoole, Patrice Otoole, Abyssin Otoro, Omega Otsuzum, Teravus Ousley, Straitjacket Overlord, Szegey Oxberger, LemonYellow Oxide, Tabitha Oxide, Rianne Ozsvar, Coyote Pace, Hare Pace, Dargon Pacer, Piero Padar, Zasha Padar, Chav Paderborn, Edison Paderborn, Otenth Paderborn, RC Paderborn, Sylvia Paderborn, Chandra Page, Lili Page, Raven Page, Web Page, AnneJoy Paine, DravenLee Paine, Isobella Paine, Larva Paine, Lushious Paine, Thomas42 Paine, Cesar Pakula, Federico Palen, Monica Palen, Diana Palmer, sense Palmer, Crazy Pangaea, Sacha Pangaea, Upinthe Panhandle, Simbiant Paperclip, Drea Paperdoll, Pannie Paperdoll, raymon Paperdoll, jaesung Papp, JohnJ Papp, Alec Paragon, Cliff Paris, Vertigo Paris, Blue Parisi, serena Parisi, JR Parker, Kora Parker, Prawnyloks Parker, Etheria Parrott, Tommy Parrott, Selaras Partridge, Sexy Partridge, Maegen Parvenu, Francie Pasternak, Mr Pasternak, Eloise Pasteur, sandhya2 Patel, Bruce Patton, Penny Patton, Dave Patton, Haole Pau, Andy Paul, LanNoire Paul, Nolte, Paul, Nicholi Pavlova, shadow Pawpaw, Cuffman Payne, Deseri Payne, Gypsy Paz, LupineFox Paz, Shy Peart, Tamara Peart, Pontias Peck, Robin Peel, Elum Pegler, Kotek Pekli, Pulp Pekli, Reaser Pencer, Caliandris Pendragon, Hiro Pendragon, Jopsy Pendragon, Darren Pennell, Mideon Pennell, Powell Pera, Stanley Pera, Tajma Pera, FlipperPA Peregrine, Jennyfur Peregrine, Alana Perenti, MaxPerfect Perenti, Revolution Perenti, MoonGazer Perhaps, Brooklyn Perinal, Shawk Pertwee, Drakior Perun, Charm Perway, Jubilee Pessoa, Riley Pessoa, Tristram Petion, Aline Petrov, Larry Petrov, PantzerHamzter Petshop, scott Petshop, Foxy Petunia, Inara Pey, Tony Pey, Brathak Pfeffer, Henrick Pfeffer, Jack Pfeffer, Marlo Pfeffer, Resi Pfeffer, Lum Pfohl, TACK Pfohl, rren Pfohl, Psyke Phaeton, Sangi Phaeton, Don Pharaoh, Topdog Pharaoh, Anderson Philbin, Philb Philbin, Ridge Phillips, Maximus Phlox, Careltje Phoenix, Winter Phoenix, Ummm Pickles, Piper Picnic, Loki Pico, Hawk Pidgeon, followmeimthe Piedpiper, Alin Piek, Ricky Piek, angelwithahintoflife Pierterson, Elsibeth Pierterson, Marod Pierterson, Noshi Pierterson, Shanel Pierterson, Natasha Pike, Joshua Pilote, Adeline Pinion, Miguel Pinion, Quinn Pinion, Peach Pink, Tisha Pink, Lulu Pink, alice Pinkerton, Getty Pinkerton, Apple Pinkney, Becky Pippen, Tam Pippen, sandra Pitney, Trish Pitney, Max Pitre, Hawk Pitts, Spritely Pixel, Chel Pixie, HotBuns Pixie, Mina Pixie, Mcplane Planer, simon Planer, Guy Plasma, Halogen Plasma, Mathias Plasma, Phill Plasma, White Platini, Phoenix Platthy, Gallia Plubeau, Corki Plunkett, PollyD Plunkett, Asalynda Pluto, Evgeniy Podolsky, OTTONE Pogelmann, Henry Poindexter, Phoebe Poitier, Rowan Poitier, Rigorus Poitier, Stephen Pollock, Mishka Pomeray, Kuatum Poole, Karina Popinjay, Francesca Poppy, Hot Poppy, Shelly Portello, Anthony Portsmouth, Ian Portsmouth, HackPatooey Posthorn, JohnnyD Posthorn, Madison Posthorn, Antitese Poulot, Uccello Poultry, Tanarus Pow, Frederic Prevost, Bill Priestly, Dit Priestly, Phil Priestman, Rachelle Priestman, Sage Priestman, Simone Prieto, Wundur Primbee, Jacob Primeau, Twilight Primeau, Beautifull Princess, Creamyyy Princess, Graciella Princess, Lyna Princess, Theo Prinz, Krono Pro, Don Proost, Games Prototype, Melissa Prunes, Pie Psaltery, Danger Pugilist, Lily Pussycat, LoL Pye, PITTACOS Pye, Prize Pyle, Reese Qian, Ash Qin, Jen Qinan, milesmess Qinan, Quino Quaggy, Starsitter Quality, Algeard Quamar, Flack Quartermass, Marcus Quartermass, Shaggy Quimby, Laura Quimby, Memir Quinn, Amy Quirk, Edge Qunhua, HeinzJoachim Qunhua, Tsing Qunhua, brooke Ra, Dael Ra, Knightsof Ra, Mayo Ra, Roger Raabe, Sharven Raabe, Sail Racer, Supra Racer, Ada Radius, Rob Raffke, Rayne Ragowski, Starfoxtj4 Rail, mantitaur2 Rainbow, Sparkly Rainbow, Andromeda Raine, musicteacher Rampal, Hoyle Rang, Hermione Ranger, jurnal Ranger, Horgus Rasmuson, Trend Rasmuson, Whoosh Rasmuson, Rascal Ratelle, Eriss Rau, Morugai Rau, Ozhika Rau, slave Rau, Awsoonn Rawley, Marie Rawley, Guy Raymaker, JAC Raymaker, PlanetThoughts Raymaker, Rogier Raymaker, Trident Raymaker, Xoren Raymaker, Ranaa Raymond, Rowena Rearwin, Londyn Reatequi, Neo Rebus, Bekka Redgrave, Etude Redgrave, Lyn Redgrave, Publicist Redgrave, Wingless Redgrave, Allie Ree, Jon Ree, Thyna Ree, Zi Ree, Todd Reed, RhaRha Rees, Alex Regent, Alexander Regent, Cat Rehula, Timoteo Reifsnider, Sirus Reiner, Trilobite Reisman, ali Reiter, Ruben Reiter, Fenrir Reitveld, EmpressNever Rejected, Maya Remblai, Kapu Ren, Atticus Renoir, catsrounds Renoir, Cedric Renoir, Julion Renoir, karman Renoir, Sim Renoir, Isabela Repine, MysticalCeCe Repine, Sissimaid Resistance, Tom Reuven, Beagle Revolution, Xin Revolution, Keex Rexroth, Ordos Reymont, Roz Reynolds, CJ Rezillo, Rena Rhea, Hiroaki Rhino, Curious Rhode, Lexy Rhode, Natriumcitrate Rhode, Toshi Rhode, Pam Ribble, Gia Richard, Gigly Richez, Hutton Richez, Renae Richez, Ronald Richez, Roxi Richez, Jimbo Richez, Josh Rident, Finncaev Riederer, Aeryn Riel, INK Rinkitink, Puck Rinkitink, Riki Rinkitink, Edoardo Ritt, Bibi Riva, Eche Riverview, helloau Riverview, Liam Roark, Angela Robertson, Jay Robson, Brooks Rocco, Marth Rocco, Mo Rocco, Wolf Rocco, dartagnan29 Rockett, marco Rockett, Monida Rockett, ortaga Rockett, Raziel Rockett, Anastasia Roelofs, Stormy Roentgen, Hector Roffo, Ricci Roffo, Tonio Roffo, Picaro Roffo, IvanTwin Rogers, Chrisje100 Rojyo, Rowana Rolland, Shine Rolls, Iris Ronmark, Jacques Ronmark, Phil Ronzoni, Keishii Roo, MattyMcHatton Roo, Kimika Rookwood, Prego Rosca, Rayne Rosca, Uber Rosca, Felix Rosenberg, Amethyst Rosencrans, Alejandro Rosenthal, Davian Rosenthal, Edgar Rosenthal, Seth Rosetta, Alustriel Rosewood, Arenae Rosewood, Fury Rosewood, Gwendelyn Rosewood, Kira Rosewood, liz Rosewood, Oriene Rosewood, Lashelle Rosse, Roodvosje Rosse, Rose Rosse, Rico Rosse, Jonah Rossini, Milordino Rossini, Sparrow Rossini, Yira Rossini, Zanah Rossini, zina Rossini, Francaldo Rotunno, Reckless Rotunno, Excel Rousselot, mica Rousselot, Lexie Rovio, Alexandra Rucker, Lilith Ruff, Stina Ruff, Aragorn Runo, Kragelund Runo, Rinziq Runo, ViRi Runo, Distilled1 Rush, Jordann Russell, Kryton Russell, Miyaki, Russell, Brent Russell, Revons Rutabaga, Rocky Rutabaga, FEZ Rutherford, Darcy Rutledge, Jo Ruttenberg, Odo Ruttenberg, Theodorrick Ruttenberg, Artix Ruxton, Armand Ryan, Zakeir Rydell, Cathy Ryder, McCall Ryder, Inarra Saarinen, Kai Sabena, Sarie Sabena, Alissa Sabre, Arcticfire Sabre, BamBam Sachertorte, kai Sachertorte, Umphrey Sachs, Mila Sadovnycha, Proxima Saenz, Lynne Sage, Cheloxchile2006 Saiman, Milo Saintlouis, Natasia Saintlouis, Trinity Saintlouis, Rollergirl Saiz, Nyoko Salome, Scandinavian Salomon, Agarash Salsman, Rayne Saltair, Horus Salubrius, Solta Salyut, Nicola Samiam, Aleg Sandell, angeltf Sands, Balkan Sands, Charmaign Sands, Check Sands, Damien Sands, Orika Sands, Other Sands, Padraic Sands, Sotos Sands, Taira Sands, Cloudia Sani, Carinthia Sansome, Allasandra Santos, Rosell Santos, Solanghe Sarlo, Ishara Sartre, Charles Sassoon, Damian Saule, Jesse Sautereau, Natalia Sawley, Billie Scaggs, Mordecai Scaggs, Roz Scaggs, Socaliwag Scaggs, Johannason Scarborough, Jim Schack, Norm Schack, Fatz Scheflo, MissKitten Schildhauer, Nelson Schmo, Werner Schnabel, Tammye Schneider, Frank Schneider, Funk Schnook, cleopatras Schnyder, mylife Schnyder, ScOrPiOn Schnyder, Count Schridde, Kircheis Schroeder, Julia Schulze, Anita Schwartzman, Cornelious Schwartzman, Etrius Schwartzman, Dr Scofield, Joe Scofield, RyanAva Scofield, Kira Scott, Six Seale, Sterremare Seale, Dallas Seaton, Star Seaton, Spurs Seattle, Elio Seelowe, Jaden Seelowe, Moira Seelowe, Teleio Seferis, Artemus Seifert, Gouranga Seiling, Alyrae Seitan, Grace Selene, Maureen Selene, amandaelisabeth Sellers, Chelsey Sellers, Fashion Sellers, Novellium Sellers, Kerutsen Sellery, Semolina Semaphore, ice Semple, Daisy Semyorka, Roxy Semyorka, DarkStar Senior, River Senyurt, Singular Seoul, James Seraph, Jesrad Seraph, Liv Serf, Tears Serf, Neon Serge, Magnum Serpentine, Jazzy Serra, Aiyana Serrurier, Coelacanth Seurat, Jean Severine, Landreu Severine, Gitana Sevier, Elizabell Sewell, johni Seymour, nayeli Shabazz, Talena Shabazz, Princess Shalala, Robbie Shamroy, Dimas Shan, Lancer Shan, Nae Shan, onlyyou Shan, Shango Shan, Spirit Shan, Jumpda Shark, DigiKatt Shaw, Steffi Shenlin, Afon Shepherd, Clair Shepherd, Eastern Shepherd, LadyLeah Shepherd, Lexis Shepherd, Siddhartha Shepherd, Taran Shepherd, Valentin Shepherd, Jieux Shepherd, Delicious Sheridan, LauraAnne Sheridan, Remco Sheridan, Aki Shichiroji, Todedoz Shichiroji, BlckCobra Shikami, Mary Shikami, Seven Shikami, Thomas Shikami, Szia Shilova, lisalove Shimada, Yoyo Shinobu, Tarrant Shipman, Kitsuribami Shirabyoshi, Amber Shirakawa, AmySue Shirakawa, Kanna Shirakawa, Shelectra Shirakawa, CJ Shojo, Felix Sholokhov, VonFoxFire Sholokhov, Renegade Shriner, Alexandra Shu, Bung Shu, Ddevine Shuftan, emmakael Shuftan, Skipper Shutt, Jaime Sicling, Ko Sicling, Lucien Sidek, Ulrich Sidran, Darlene Sieyes, Darling Sieyes, sparkles Sieyes, Mjren Silvera, Apotheus Silverman, HVX Silverstar, Nirven Silverstar, Rocco Silverstar, Tamar Silverstar, Rosie Simca, Drvid Simoni, Dragos Simons, barnowlgirl Sinatra, Cheyanne Sinatra, marilsdb Sinatra, Nanceee Sinatra, Quiet Sinatra, Vent Sinatra, Frosty Sinatra, Misty Singer, Katie Singh, Sydney Singh, Philo Sion, followingwaves Sirbu, Saya Sirbu, Don Sivocci, Danielle Skall, Hegemon Skall, JASMINE Skall, Mykal Skall, Dovryn Skall, Arathorn Slade, Artakan Slade, djsunz Slade, Eleana Slade, Erica Slade, Jupiter Slade, Kronikz Slade, Methosmv Slade, piro Slade, Snapeslove Slade, Sys Slade, TylerSnk Slade, Wylee Slade, ZirQ Slade, Xabax Slade, Malik Slapstick, Coug Sleeper, Kenny Sleeper, Lucia Slippery, Adrian Sloane, Alistair Sloane, Rysz Sloane, Angel Slocombe, PrinceDK Slunce, Flo Slunce, Tatiana Smagulov, badboy1331 Smalls, Brat Smalls, EDhardy Smalls, Lomgren Smalls, DonAmon Smirnov, Andrew Smith, Elliott Smith, Mikal Snakeankle, Esch Snoats, Eian Snook, Pavee Snook, floe Snookums, kramer Snookums, Rach Snookums, Jonboy Snye, fionn Soderstrom, miguel Soderstrom, Bellisima Sodwind, Dafydd Sodwind, Scott69 Sodwind, Shipper Sodwind, Ilianexsi Sojourner, Shirokuro Sojourner, The Sojourner, Wiccan Sojourner, Elijah Sol, Lara Sola, Vanilla Sola, Silvari Soleil, David23 Something, DolphPun Somme, Rhyph Somme, aewyn Sondergaard, Kali Sonic, Packard Sonic, Jayman Sonnenblume, Pippen Sonnenblume, Esichs Sonnerstein, Sylvia Sonoda, ASCLEPIUS Soon, Tecumseh Soon, Julia Soothsayer, Shadowspawn Soothsayer, Tindallia Soothsayer, RJ Source, Akemi Soy, Aln Soy, Aaron Soyer, Tsuno Soyinka, Oz Spade, Ellen Spark, karlynn Sparkle, Kaylie Sparkle, TruHeart Sparkle, Dave Sparrow, slyflower Sparrow, Flapjack Spatula, Cheyenne Spearmann, Jester Spearmann, JewelKicker Spearmann, Data Spectre, Rai Speculaas, Sin Speculaas, Thornne Speculaas, Ehdward Spengler, mo Spengler, Wesley Spengler, Datentyp Sperber, Niko Sperber, Giuseppe Spicoli, Snakeye Spicoli, Marcus Spire, Setori Spire, Crackervelli Spitteler, Naughty Spitteler, Studders101 Spitteler, Yojne Spitteler, ScaryMary Spitz, Geezer Spoonhammer, GutterBlood Spoonhammer, Tour Spoonhammer, Sheet Spotter, tree Sprawl, Kitty Sprocket, Alan Standish, Fox Standish, Clive Stanwell, Alexis Stapovic, Hippyjim Starbrook, Missy Starbrook, Thunder Starbrook, Babydoll Stardust, Birdy Stardust, Johannes Starostin, Ariana Starr, Funk Starr, eltee Statosky, Hanako Stawberry, Micheal Steadham, Blueman Steele, sugar Steele, Jennifer Steele, Golda Stein, Tyler Stein, Uber Stein, Bernd Steinhardt, Whisper Stella, Hjoerdis Stenvaag, Timmy Stepford, LaserFingers Steptoe, Athena Sterling, Selvina Sterling, Hunter Stern, Ocmer Sternberg, Jabath Steuart, Sylvia Steuben, Bracin Stevenson, Sammmy Stewart, Skeeter Stiglitz, Lily Stilman, Nisaa Stilman, Quick Stilman, Spaydar Stine, Unger Stine, Sherrade Stirling, Till Stirling, Juggernaut Stoklitsky, Meret Stonebender, Argent Stonecutter, Gearsawe Stonecutter, Kayla Stonecutter, Liquids Stonewall, Nevera Stooge, Matthew Stork, Sam Stork, Neotoy Story, AllieKat Stovall, Krystal Straaf, Kyrus Straaf, Laars Straaf, Niccia Straaf, Aloe Stradling, egbert Stradling, Lotus Stradling, SlyFox Stradling, Eristic Strangelove, Thaumata Strangelove, Valiant Strangelove, Salome Strangelove, Erica Strauss, Zinger Strauss, Gabrielle Street, Artistniko Streeter, Bruce82 Streeter, Builder Streeter, dast Streeter, Hans Streeter, Stilette Streeter, Darzus Strutt, Bluto Stubbs, Olivier Sturges, Kharie Su, Rexx Su, Vudu Suavage, Silverrain Sucettes, Siyu Suen, Zack Suen, Linnian Sugar, Sierra Sugar, Stacey Sugar, Jodie Suisei, Koto Sukra, Takira Sukra, Ravanne Sullivan, Rik Sullivan, Sofi Sullivan, Joffi Sumbula, BrightAngel Summers, Kiyana Summers, Eclipsed Sun, Shinshinto Sungsoo, Angel Sunset, Warord Suntzu, DalE Supply, ivan Supply, Frictionless Surface, Brightwing Surtees, David Surtees, Georges Susa, Caterina Susanti, Fatima Susanti, Owen Susanto, Caliburn Susanto, Kevin Susenko, Forseti Svarog, Kinga Svarog, Batman Swenholt, Flame Swenholt, Shyressa Swenholt, Earle Swenson, Harvey Swenson, Kevin Swenson, Anastasia Swindlehurst, Liz Swindlehurst, Swein Swindlehurst, Verrenus Swindlehurst, Christain Switchblade, Guy Szondi, Nonlucid Szondi, Sagmumu Szondi, XVenomX Szymborska, CaelThunderwing Tackleberry, Mitzi Tackleberry, Ayla Tae, Maya Tae, Princess Tae, Carsten Taft, Gigs Taggart, Aphrodite Tagore, Lynn Tagore, Jenna Taira, Zephora Taiyou, Rusmi Taka, Kaimen Takahe, Akina Takakura, Sabina Takakura, Tao Takashi, Cornelius Tal, Dolmere Talamasca, Kelindra Talamasca, Sabane Talamasca, Tod69 Talamasca, Bad Tamale, Kitchkinet Tamale, Dany Tammas, kym Tammas, Phoming Tammas, sasha Tammas, Alina Tamura, Janu Tamura, Karetta Tamura, Melli Tamura, Morina Tamura, Snake Tamura, Valentina Tamura, Rutain Tandino, Tracy Tani, Jolt Tank, Rachel Tapioca, Ilyara Tardis, Jaxx Tardis, Aaron Tardis, Sim Tatham, Tobi Taurog, Joey Tavoularis, John Taylor, Jeffrey Temin, Enabran Templar, Crymzon Tempura, Jehan Tendaze, Angel Tengu, Arctic Tenk, Ginevro Tenk, OolBatar Tenk, Sally Tenk, Storchi Tenk, Bloodsong Termagant, Cubey Terra, Lynn Terra, Niles Theas, Sterre Theas, Lost Thereian, Osprey Therian, Lukas Thetan, Larson Thibaud, Redd Thielt, Tana Thielt, Thongshaman Thirroul, Millie Thompson, Brooke Thurston, Lisa Thyben, Bengal Tiger, RavenAnn Tiger, Terrigo Tiger, Sable Till, Soraya Till, Zayn Till, Trixie Timtam, immortal Tiramisu, Matthew Todd, Watermelon Tokyo, Amily Toland, Prijian Toland, Wigger Toland, Wym Toland, Shaia Toll, harathoi Toman, EH Tomcat, Pawz Tomcat, nicky Tomsen, Olyntchen Tomsen, Siul Tomsen, Zukini Tomsen, Darkover Tone, JazzySweet Tone, Tea Tone, Shelly Toonie, Tristan Torgeson, Katie Tornado, manufr Torok, Drew Torres, Xavier Tosung, Benjamin Tower, TJ Tower, Coquine Tracy, Fintaya Tracy, Herman Tracy, killer Tracy, Marcel Tran, Cabal Trautman, Nadja Travanti, Steve Trenchard, Grimm Trenchmouth, Neogrinch Trenchmouth, Scarlet Trenton, input Trilam, Debbie Trilling, Dahlia Trimble, TrainingDay Trimble, Candy Tripp, FeelGood Tripp, Nate Tripp, Skalligrim Tripp, stimpy Tripp, Michael Tripsa, Orion Tristan, Sam Troell, Celebrity Trollop, MaidHeather Trollop, Roberto Trotter, Tipsey Troughton, Lucille Trudeau, Paul Trudeau, arthus Truffaut, Chambord Truffaut, Siss Truss, Boshiken Tsuki, Sindy Tsure, Dante Tucker, ImAOzGrl Tucker, Scott Tucker, BabyAlice Tulip, Bryce Tully, Pixie Tungl, Lyr Tuppakaka, Hawthorn Tuque, Omei Turnbull, Victor Tuxing, Cloe Twang, Twill Tymets, Andrew Tyson, Lyndyn Tzara, Ilyushin Tzedek and many others. | ||
3902 | |||
3903 | |||
3904 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
3905 | Cg Copyright (C) 2002, NVIDIA Corporationa. | ||
3906 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
3907 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
3908 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
3909 | GL Copyright (C) 1999-2004 Brian Paul. | ||
3910 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
3911 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
3912 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
3913 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
3914 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
3915 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
3916 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3917 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
3918 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
3919 | |||
3920 | All rights reserved. See licenses.txt for details. | ||
3921 | |||
3922 | |||
3923 | Steve *really* needs a vacation | ||
3924 | </d_old> | ||
3925 | <e_new>LALALA</e_new> | ||
3926 | <f_old_trans>LALALA</f_old_trans> | ||
3927 | <f_translation/></string><string><a_file>floater_lsl_guide.xml</a_file> | ||
3928 | <b_path>/script ed float</b_path> | ||
3929 | <c_attribute>title</c_attribute> | ||
3930 | <d_old>Dynamic Help</d_old> | ||
3931 | <e_new>LSL Wiki</e_new> | ||
3932 | <f_old_trans>λμ λμλ§</f_old_trans> | ||
3933 | <f_translation/></string><string><a_file>floater_mute.xml</a_file> | ||
3934 | <b_path>/mute floater/Mute resident...</b_path> | ||
3935 | <c_attribute>label</c_attribute> | ||
3936 | <d_old>Mute resident...</d_old> | ||
3937 | <e_new>Mute Resident...</e_new> | ||
3938 | <f_old_trans>μ°¨λ¨ν μ£Όλ―Ό</f_old_trans> | ||
3939 | <f_translation/></string><string><a_file>floater_mute.xml</a_file> | ||
3940 | <b_path>/mute floater/Mute resident...</b_path> | ||
3941 | <c_attribute>label_selected</c_attribute> | ||
3942 | <d_old>Mute resident...</d_old> | ||
3943 | <e_new>Mute Resident...</e_new> | ||
3944 | <f_old_trans>μ°¨λ¨ν μ£Όλ―Ό</f_old_trans> | ||
3945 | <f_translation/></string><string><a_file>floater_preferences.xml</a_file> | ||
3946 | <b_path>/Preferences/About...</b_path> | ||
3947 | <c_attribute>label</c_attribute> | ||
3948 | <d_old>About...</d_old> | ||
3949 | <e_new>About</e_new> | ||
3950 | <f_old_trans>μ 보...</f_old_trans> | ||
3951 | <f_translation/></string><string><a_file>floater_preferences.xml</a_file> | ||
3952 | <b_path>/Preferences/About...</b_path> | ||
3953 | <c_attribute>label_selected</c_attribute> | ||
3954 | <d_old>About...</d_old> | ||
3955 | <e_new>About</e_new> | ||
3956 | <f_old_trans>μ 보...</f_old_trans> | ||
3957 | <f_translation/></string><string><a_file>menu_viewer.xml</a_file> | ||
3958 | <b_path>/Main Menu/Tools/Select Tool</b_path> | ||
3959 | <c_attribute>label</c_attribute> | ||
3960 | <d_old>Select Tool</d_old> | ||
3961 | <e_new>Bug Reporting</e_new> | ||
3962 | <f_old_trans>λꡬ μ ν</f_old_trans> | ||
3963 | <f_translation/></string><string><a_file>notify.xml</a_file> | ||
3964 | <b_path>//ObjectGiveItem/message</b_path> | ||
3965 | <c_attribute></c_attribute> | ||
3966 | <d_old> | ||
3967 | An object named [OBJECTFROMNAME] owned by [FIRST] [LAST] has given you a [OBJECTTYPE] named '[OBJECTNAME]'. | ||
3968 | </d_old> | ||
3969 | <e_new> | ||
3970 | An object named [OBJECTFROMNAME] owned by [FIRST] [LAST] has given you a [OBJECTTYPE] named [OBJECTNAME]. | ||
3971 | </e_new> | ||
3972 | <f_old_trans> | ||
3973 | [FIRST] [LAST] μμ μ μ€λΈμ νΈ [OBJECTFROMNAME]μ΄(κ°) λΉμ μκ² '[OBJECTNAME]'(μ΄)λΌλ [OBJECTTYPE]μ(λ₯Ό) μ£Όμμ΅λλ€. | ||
3974 | </f_old_trans> | ||
3975 | <f_translation/></string><string><a_file>notify.xml</a_file> | ||
3976 | <b_path>//ObjectGiveItemUnknownUser/message</b_path> | ||
3977 | <c_attribute></c_attribute> | ||
3978 | <d_old> | ||
3979 | An object named [OBJECTFROMNAME] owned by (an unknown user) has given you a [OBJECTTYPE] named '[OBJECTNAME]'. | ||
3980 | </d_old> | ||
3981 | <e_new> | ||
3982 | An object named [OBJECTFROMNAME] owned by (an unknown user) has given you a [OBJECTTYPE] named [OBJECTNAME]. | ||
3983 | </e_new> | ||
3984 | <f_old_trans> | ||
3985 | μ μ μλ μ¬μ©μ μμ μ μ€λΈμ νΈ [OBJECTFROMNAME]μ΄(κ°) λΉμ μκ² '[OBJECTNAME]'(μ΄)λΌλ [OBJECTTYPE]μ(λ₯Ό) μ£Όμμ΅λλ€. | ||
3986 | </f_old_trans> | ||
3987 | <f_translation/></string><string><a_file>panel_group.xml</a_file> | ||
3988 | <b_path>/GroupInfo/btn_refresh</b_path> | ||
3989 | <c_attribute>label_selected</c_attribute> | ||
3990 | <d_old>Refresh from server</d_old> | ||
3991 | <e_new>Refresh</e_new> | ||
3992 | <f_old_trans>μλ²λ‘λΆν° μλ‘ κ³ μΉ¨</f_old_trans> | ||
3993 | <f_translation/></string><string><a_file>panel_group_general.xml</a_file> | ||
3994 | <b_path>/general_tab/group_name_editor</b_path> | ||
3995 | <c_attribute></c_attribute> | ||
3996 | <d_old> | ||
3997 | Type your new group name here | ||
3998 | </d_old> | ||
3999 | <e_new></e_new> | ||
4000 | <f_old_trans> | ||
4001 | μ κ·Έλ£Ή μ΄λ¦μ μ¬κΈ°μ μ λ ₯ | ||
4002 | </f_old_trans> | ||
4003 | <f_translation/></string><string><a_file>panel_preferences_popups.xml</a_file> | ||
4004 | <b_path>/popups/text_box2</b_path> | ||
4005 | <c_attribute></c_attribute> | ||
4006 | <d_old> | ||
4007 | Show popups: | ||
4008 | </d_old> | ||
4009 | <e_new> | ||
4010 | Offers of notecards, textures and landmarks: | ||
4011 | </e_new> | ||
4012 | <f_old_trans> | ||
4013 | νμ©λ νμ : | ||
4014 | </f_old_trans> | ||
4015 | <f_translation/></string><string><a_file>panel_status_bar.xml</a_file> | ||
4016 | <b_path>/status/BalanceText</b_path> | ||
4017 | <c_attribute></c_attribute> | ||
4018 | <d_old> | ||
4019 | L$ | ||
4020 | </d_old> | ||
4021 | <e_new> | ||
4022 | Loading... | ||
4023 | </e_new> | ||
4024 | <f_old_trans> | ||
4025 | L$ | ||
4026 | </f_old_trans> | ||
4027 | <f_translation/></string> | ||
4028 | </strings> | ||
diff --git a/linden/indra/newview/skins/xui/ko/notify.xml b/linden/indra/newview/skins/xui/ko/notify.xml index b1817d2..dccdcdd 100644 --- a/linden/indra/newview/skins/xui/ko/notify.xml +++ b/linden/indra/newview/skins/xui/ko/notify.xml | |||
@@ -2,7 +2,7 @@ | |||
2 | <notifications> | 2 | <notifications> |
3 | <notify name="SystemMessageTip"> | 3 | <notify name="SystemMessageTip"> |
4 | <message name="message"> | 4 | <message name="message"> |
5 | [λ©μμ§] | 5 | [MESSAGE] |
6 | </message> | 6 | </message> |
7 | </notify> | 7 | </notify> |
8 | <notify name="Cancelled"> | 8 | <notify name="Cancelled"> |
@@ -17,44 +17,54 @@ | |||
17 | </notify> | 17 | </notify> |
18 | <notify name="CancelledAttach"> | 18 | <notify name="CancelledAttach"> |
19 | <message name="message"> | 19 | <message name="message"> |
20 | λΆμ°© μ·¨μ | 20 | μ°©μ© μ·¨μ |
21 | </message> | 21 | </message> |
22 | </notify> | 22 | </notify> |
23 | <notify name="ReplacedMissingWearable"> | 23 | <notify name="ReplacedMissingWearable"> |
24 | <message name="message"> | 24 | <message name="message"> |
25 | λΆμ€λ μ볡/μ 체 λΆμλ₯Ό κΈ°λ³Έ μ€μ μΌλ‘ κ΅μ²΄νμ΅λλ€. | 25 | μλ μ볡/μ 체 λΆμλ₯Ό κΈ°λ³Έ μ€μ μΌλ‘ λ체νμ΅λλ€. |
26 | </message> | 26 | </message> |
27 | </notify> | 27 | </notify> |
28 | <notify name="FriendOnline"> | 28 | <notify name="FriendOnline"> |
29 | <message name="message"> | 29 | <message name="message"> |
30 | [LAST] [FIRST]μ΄(κ°) μ¨λΌμΈμ λλ€ | 30 | [FIRST] [LAST]λ μ¨λΌμΈ |
31 | </message> | 31 | </message> |
32 | </notify> | 32 | </notify> |
33 | <notify name="FriendOffline"> | 33 | <notify name="FriendOffline"> |
34 | <message name="message"> | 34 | <message name="message"> |
35 | [LAST] [FIRST]μ΄(κ°) μ€νλΌμΈμ λλ€ | 35 | [FIRST] [LAST]λ μ€νλΌμΈ |
36 | </message> | ||
37 | </notify> | ||
38 | <notify name="AddSelfFriend"> | ||
39 | <message name="message"> | ||
40 | μ¬μ©μ μμ μ μΉκ΅¬λ‘ μΆκ°ν μ μμ΅λλ€. | ||
36 | </message> | 41 | </message> |
37 | </notify> | 42 | </notify> |
38 | <notify name="UploadingAuctionSnapshot"> | 43 | <notify name="UploadingAuctionSnapshot"> |
39 | <message name="message"> | 44 | <message name="message"> |
40 | κ²μ μ€ λ° μΉμ¬μ΄νΈ μ€λ μ· μ λ‘λ μ€... | 45 | μΈμλ λ° μΉμ¬μ΄νΈ μ€λ μ· μ λ‘λ μ€... |
41 | (μ½ 5λΆ μμ.) | 46 | (μ½ 5λΆ μμ) |
47 | </message> | ||
48 | </notify> | ||
49 | <notify name="UploadPayment"> | ||
50 | <message name="message"> | ||
51 | μ λ‘λλ₯Ό μν΄ L$[AMOUNT]μ(λ₯Ό) μ§λΆνμ ¨μ΅λλ€. | ||
42 | </message> | 52 | </message> |
43 | </notify> | 53 | </notify> |
44 | <notify name="UploadingSnapshot"> | 54 | <notify name="UploadingSnapshot"> |
45 | <message name="message"> | 55 | <message name="message"> |
46 | κ²μ μ€ μ€λ μ· μ λ‘λ μ€... | 56 | μΈμλ μ€λ μ· μ λ‘λ μ€... |
47 | (1λΆ λ΄μΈ μμ.) | 57 | (1λΆ λ΄μΈ μμ) |
48 | </message> | 58 | </message> |
49 | </notify> | 59 | </notify> |
50 | <notify name="UploadWebSnapshotDone"> | 60 | <notify name="UploadWebSnapshotDone"> |
51 | <message name="message"> | 61 | <message name="message"> |
52 | μΉ μ¬μ΄νΈ μ€λ μ·μ μ λ‘λ μλ£νμ΅λλ€. | 62 | μΉ μ¬μ΄νΈ μ€λ μ· μ λ‘λλ₯Ό μλ£νμ΅λλ€. |
53 | </message> | 63 | </message> |
54 | </notify> | 64 | </notify> |
55 | <notify name="UploadSnapshotDone"> | 65 | <notify name="UploadSnapshotDone"> |
56 | <message name="message"> | 66 | <message name="message"> |
57 | κ²μ μ€ μ€λ μ· μ λ‘λ μλ£ | 67 | μΈμλ μ€λ μ· μ λ‘λ μλ£ |
58 | </message> | 68 | </message> |
59 | </notify> | 69 | </notify> |
60 | <notify name="TerrainDownloaded"> | 70 | <notify name="TerrainDownloaded"> |
@@ -74,29 +84,30 @@ | |||
74 | </notify> | 84 | </notify> |
75 | <notify name="UnableToLoadGesture"> | 85 | <notify name="UnableToLoadGesture"> |
76 | <message name="message"> | 86 | <message name="message"> |
77 | μ μ€μ² λ‘λ©μ μ€ν¨νμ΅λλ€. | 87 | μ μ€μ² λ‘λμ μ€ν¨νμ΅λλ€. |
78 | λ€μ μλν΄ μ£Όμμμ€. | 88 | λ€μ μλν΄ μ£Όμμμ€. |
79 | </message> | 89 | </message> |
80 | </notify> | 90 | </notify> |
81 | <notify name="InventoryLoaded"> | 91 | <notify name="InventoryLoaded"> |
82 | <message name="message"> | 92 | <message name="message"> |
83 | 보κ΄ν¨μ΄ λ‘λλμμ΅λλ€. | 93 | μΈλ²€ν λ¦¬κ° λ‘λλμμ΅λλ€. |
84 | </message> | 94 | </message> |
85 | </notify> | 95 | </notify> |
86 | <notify name="LandmarkMissing"> | 96 | <notify name="LandmarkMissing"> |
87 | <message name="message"> | 97 | <message name="message"> |
88 | μ§μνμκ° λ°μ΄ν°λ² μ΄μ€μ μμ΅λλ€. | 98 | λλλ§ν¬κ° λ°μ΄ν°λ² μ΄μ€μ μμ΅λλ€. |
89 | </message> | 99 | </message> |
90 | </notify> | 100 | </notify> |
91 | <notify name="UnableToLoadLandmark"> | 101 | <notify name="UnableToLoadLandmark"> |
92 | <message name="message"> | 102 | <message name="message"> |
93 | μ§μ νμ λ‘λ©μ μ€ν¨νμ΅λλ€. λ€μ μλν΄ μ£Όμμμ€. | 103 | λλλ§ν¬ λ‘λμ μ€ν¨νμ΅λλ€. λ€μ μλν΄ μ£Όμμμ€. |
94 | </message> | 104 | </message> |
95 | </notify> | 105 | </notify> |
96 | <notify name="CapsKeyOn"> | 106 | <notify name="CapsKeyOn"> |
97 | <message name="message"> | 107 | <message name="message"> |
98 | Caps Lock ν€κ° μΌμ Έ μμ΅λλ€. | 108 | Caps Lock ν€κ° μΌμ Έ μμ΅λλ€. |
99 | passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | 109 | μ΄λ‘ μΈν΄ μ λ ₯ν μνΈκ° μλͺ»λ μνΈλ‘ λνλ μ μμΌλ©° |
110 | μ΄ ν€λ₯Ό κΊΌμΌ ν©λλ€. | ||
100 | </message> | 111 | </message> |
101 | </notify> | 112 | </notify> |
102 | <notify name="NotecardMissing"> | 113 | <notify name="NotecardMissing"> |
@@ -106,12 +117,12 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
106 | </notify> | 117 | </notify> |
107 | <notify name="NotecardNoPermissions"> | 118 | <notify name="NotecardNoPermissions"> |
108 | <message name="message"> | 119 | <message name="message"> |
109 | λ ΈνΈμΉ΄λλ₯Ό λ³Ό κΆνμ΄ μμ΅λλ€. | 120 | λ ΈνΈμΉ΄λλ₯Ό λ³Ό κΆνμ΄ λΆμ‘±ν©λλ€. |
110 | </message> | 121 | </message> |
111 | </notify> | 122 | </notify> |
112 | <notify name="UnableToLoadNotecard"> | 123 | <notify name="UnableToLoadNotecard"> |
113 | <message name="message"> | 124 | <message name="message"> |
114 | λ ΈνΈμΉ΄λ λ‘λ©μ μ€ν¨νμ΅λλ€. | 125 | μ°Έκ³ μΉ΄λ λ‘λμ μ€ν¨νμ΅λλ€. |
115 | λ€μ μλν΄ μ£Όμμμ€. | 126 | λ€μ μλν΄ μ£Όμμμ€. |
116 | </message> | 127 | </message> |
117 | </notify> | 128 | </notify> |
@@ -122,19 +133,19 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
122 | </notify> | 133 | </notify> |
123 | <notify name="ScriptNoPermissions"> | 134 | <notify name="ScriptNoPermissions"> |
124 | <message name="message"> | 135 | <message name="message"> |
125 | μ€ν¬λ¦½νΈλ₯Ό λ³Ό κΆνμ΄ μμ΅λλ€. | 136 | μ€ν¬λ¦½νΈλ₯Ό λ³Ό κΆνμ΄ λΆμ‘±ν©λλ€. |
126 | </message> | 137 | </message> |
127 | </notify> | 138 | </notify> |
128 | <notify name="UnableToLoadScript"> | 139 | <notify name="UnableToLoadScript"> |
129 | <message name="message"> | 140 | <message name="message"> |
130 | μ€ν¬λ¦½νΈ λ‘λ©μ μ€ν¨νμ΅λλ€. λ€μ μλν΄ μ£Όμμμ€. | 141 | μ€ν¬λ¦½νΈ λ‘λμ μ€ν¨νμ΅λλ€. λ€μ μλν΄ μ£Όμμμ€. |
131 | </message> | 142 | </message> |
132 | </notify> | 143 | </notify> |
133 | <notify name="IncompleteInventory"> | 144 | <notify name="IncompleteInventory"> |
134 | <message name="message"> | 145 | <message name="message"> |
135 | μ 곡νλ μ 체 컨ν μΈ λ μμ§ | 146 | μ 곡ν μ 체 컨ν μΈ λ μμ§ |
136 | λ‘컬μμ μ¬μ©ν μ μμ΅λλ€. λͺ λΆ νμ ν΄λΉ μμ΄ν μ | 147 | λ‘컬μμ μ¬μ©ν μ μμ΅λλ€. λͺ λΆ νμ ν΄λΉ μμ΄ν μ |
137 | λ€μ μ 곡νμμμ€. | 148 | λ€μ μ κ³΅ν΄ λ³΄μμμ€. |
138 | </message> | 149 | </message> |
139 | </notify> | 150 | </notify> |
140 | <notify name="CannotModifyProtectedCategories"> | 151 | <notify name="CannotModifyProtectedCategories"> |
@@ -144,40 +155,40 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
144 | </notify> | 155 | </notify> |
145 | <notify name="CannotRemoveProtectedCategories"> | 156 | <notify name="CannotRemoveProtectedCategories"> |
146 | <message name="message"> | 157 | <message name="message"> |
147 | 보νΈλ μΉ΄ν κ³ λ¦¬λ μμ ν μ μμ΅λλ€. | 158 | 보νΈλ μΉ΄ν κ³ λ¦¬λ μ κ±°ν μ μμ΅λλ€. |
148 | </message> | 159 | </message> |
149 | </notify> | 160 | </notify> |
150 | <notify name="OfferedCard"> | 161 | <notify name="OfferedCard"> |
151 | <message name="message"> | 162 | <message name="message"> |
152 | λͺ ν¨μ [LAST] [FIRST] μ μ 곡νμ΅λλ€ | 163 | νλ‘νμ [LAST][FIRST]μκ² μ 곡νμ΅λλ€. |
153 | </message> | 164 | </message> |
154 | </notify> | 165 | </notify> |
155 | <notify name="OfferedFriendship"> | 166 | <notify name="OfferedFriendship"> |
156 | <message name="message"> | 167 | <message name="message"> |
157 | μ°μ μ [LAST] [FIRST]μ μ 곡νμ΅λλ€ | 168 | [LAST][FIRST]μκ² μ°μ μ μ 곡νμ΅λλ€. |
158 | </message> | 169 | </message> |
159 | </notify> | 170 | </notify> |
160 | <notify name="UnableToBuyWhileDownloading"> | 171 | <notify name="UnableToBuyWhileDownloading"> |
161 | <message name="message"> | 172 | <message name="message"> |
162 | μμ΄ν λ°μ΄ν°λ₯Ό λ€μ΄λ‘λνλ λμμλ ꡬ맀ν μ μμ΅λλ€. | 173 | μ€λΈμ νΈ λ°μ΄ν°λ₯Ό λ€μ΄λ‘λνλ λμμλ ꡬμ ν μ μμ΅λλ€. |
163 | λ€μ μλν΄ μ£Όμμμ€. | 174 | λ€μ μλν΄ μ£Όμμμ€. |
164 | </message> | 175 | </message> |
165 | </notify> | 176 | </notify> |
166 | <notify name="UnableToLinkWhileDownloading"> | 177 | <notify name="UnableToLinkWhileDownloading"> |
167 | <message name="message"> | 178 | <message name="message"> |
168 | μμ΄ν λ°μ΄ν°λ₯Ό λ€μ΄λ‘λνλ λμμλ μ°κ²°ν μ μμ΅λλ€. | 179 | μ€λΈμ νΈ λ°μ΄ν°λ₯Ό λ€μ΄λ‘λνλ λμμλ μ°κ²°ν μ μμ΅λλ€. |
169 | λ€μ μλν΄ μ£Όμμμ€. | 180 | λ€μ μλν΄ μ£Όμμμ€. |
170 | </message> | 181 | </message> |
171 | </notify> | 182 | </notify> |
172 | <notify name="CannotBuyObjectsFromDifferentOwners"> | 183 | <notify name="CannotBuyObjectsFromDifferentOwners"> |
173 | <message name="message"> | 184 | <message name="message"> |
174 | λμμ λ€λ₯Έ μ¬λ¬ μμ μ£Όλ‘λΆν° μμ΄ν μ ꡬμ ν μ μμ΅λλ€. | 185 | λμμ λ€λ₯Έ μ¬λ¬ μμ μ£Όλ‘ λΆν° μ€λΈμ νΈλ₯Ό ꡬμ ν μ μμ΅λλ€. |
175 | νλμ μμ΄ν μ μ ννμμμ€. | 186 | 1κ°μ μ€λΈμ νΈλ₯Ό μ ννμμμ€. |
176 | </message> | 187 | </message> |
177 | </notify> | 188 | </notify> |
178 | <notify name="ObjectNotForSale"> | 189 | <notify name="ObjectNotForSale"> |
179 | <message name="message"> | 190 | <message name="message"> |
180 | μμ΄ν μ΄ λ§€λ¬Όλ‘ νμλμ§ μμ΅λλ€. | 191 | μ€λΈμ νΈκ° λ§€λ¬Όλ‘ νμλμ§ μμ΅λλ€. |
181 | </message> | 192 | </message> |
182 | </notify> | 193 | </notify> |
183 | <notify name="EnteringGodMode"> | 194 | <notify name="EnteringGodMode"> |
@@ -187,22 +198,22 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
187 | </notify> | 198 | </notify> |
188 | <notify name="LeavingGodMode"> | 199 | <notify name="LeavingGodMode"> |
189 | <message name="message"> | 200 | <message name="message"> |
190 | God mode μ’ λ£, λ 벨 [LEVEL] | 201 | God λͺ¨λ μ’ λ£, λ 벨[LEVEL] |
191 | </message> | 202 | </message> |
192 | </notify> | 203 | </notify> |
193 | <notify name="CopyFailed"> | 204 | <notify name="CopyFailed"> |
194 | <message name="message"> | 205 | <message name="message"> |
195 | λ³΅μ¬ κΆνμ΄ λΆμ‘±νμ¬ λ³΅μ¬λ₯Ό νμ§ λͺ»ν¨ | 206 | λ³΅μ¬ κΆνμ΄ μμ΄ λ³΅μ¬νμ§ λͺ»νμ΅λλ€. |
196 | </message> | 207 | </message> |
197 | </notify> | 208 | </notify> |
198 | <notify name="InventoryAccepted"> | 209 | <notify name="InventoryAccepted"> |
199 | <message name="message"> | 210 | <message name="message"> |
200 | [NAME]μ΄(κ°) 보κ΄ν¨μ μλ½νμ΅λλ€. | 211 | [NAME]λμ΄ μμ΄ν μ 곡μ μλ½νμ΅λλ€. |
201 | </message> | 212 | </message> |
202 | </notify> | 213 | </notify> |
203 | <notify name="InventoryDeclined"> | 214 | <notify name="InventoryDeclined"> |
204 | <message name="message"> | 215 | <message name="message"> |
205 | [NAME]μ΄(κ°) 보κ΄ν¨μ κ±°λΆνμ΅λλ€. | 216 | [NAME]λμ΄ μμ΄ν μ 곡μ κ±°λΆνμ΅λλ€. |
206 | </message> | 217 | </message> |
207 | </notify> | 218 | </notify> |
208 | <notify name="ObjectMessage"> | 219 | <notify name="ObjectMessage"> |
@@ -212,40 +223,40 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
212 | </notify> | 223 | </notify> |
213 | <notify name="CallingCardAccepted"> | 224 | <notify name="CallingCardAccepted"> |
214 | <message name="message"> | 225 | <message name="message"> |
215 | λͺ ν¨μ΄ μλ½λμμ΅λλ€. | 226 | νλ‘νμ΄ μλ½λμμ΅λλ€. |
216 | </message> | 227 | </message> |
217 | </notify> | 228 | </notify> |
218 | <notify name="CallingCardDeclined"> | 229 | <notify name="CallingCardDeclined"> |
219 | <message name="message"> | 230 | <message name="message"> |
220 | λͺ ν¨μ΄ κ±°λΆλμμ΅λλ€. | 231 | νλ‘νμ΄ κ±°λΆλμμ΅λλ€. |
221 | </message> | 232 | </message> |
222 | </notify> | 233 | </notify> |
223 | <notify name="TeleportToLandmark"> | 234 | <notify name="TeleportToLandmark"> |
224 | <message name="message"> | 235 | <message name="message"> |
225 | λ³Έν μ λμ°©νμΌλ―λ‘ νλ©΄ μ°μΈ‘ νλ¨μ μλ 보κ΄ν¨ λ²νΌμ ν΄λ¦ν λ€μ κ²½κ³ νμ ν΄λλ₯Ό μ ννμ¬ μμΉ '[NAME]'μκ² ν λ ν¬ν ν μ μμ΅λλ€. | 236 | λ©μΈλλμ λμ°©νμΌλ―λ‘ νλ©΄ μ°μΈ‘ νλ¨μ μλ μΈλ²€ν 리 λ²νΌμ ν΄λ¦ν λ€μ λλλ§ν¬ ν΄λλ₯Ό μ ννμ¬ μμΉ '[NAME]'(μ)κ² ν λ ν¬ν ν μ μμ΅λλ€. |
226 | μ§μ νμλ₯Ό λλΈ ν΄λ¦νκ³ ν λ ν¬ν μ ν΄λ¦νμ¬ μ΄λν©λλ€. | 237 | λλλ§ν¬λ₯Ό λλΈ ν΄λ¦νκ³ ν λ ν¬ν μ ν΄λ¦νμ¬ μ΄λν©λλ€. |
227 | </message> | 238 | </message> |
228 | </notify> | 239 | </notify> |
229 | <notify name="TeleportToPerson"> | 240 | <notify name="TeleportToPerson"> |
230 | <message name="message"> | 241 | <message name="message"> |
231 | λ³Έν μ λμ°©νμΌλ―λ‘ νλ©΄ μ°μΈ‘ νλ¨μ μλ 보κ΄ν¨ λ²νΌμ ν΄λ¦ν λ€μ λͺ ν¨ ν΄λλ₯Ό μ ννμ¬ μ£Όλ―Ό '[NAME]'μκ² μ°λ½ν μ μμ΅λλ€. | 242 | λ©μΈλλμ λμ°©νμΌλ―λ‘ νλ©΄ μ°μΈ‘ νλ¨μ μλ μΈλ²€ν 리 λ²νΌμ ν΄λ¦ν λ€μ νλ‘ν ν΄λλ₯Ό μ ννμ¬ μ£Όλ―Ό '[NAME]'μκ² μ°λ½ν μ μμ΅λλ€. |
232 | μΉ΄λλ₯Ό λλΈ ν΄λ¦ν λ€μ λ©μ μ λ₯Ό ν΄λ¦νκ³ λ©μμ§λ₯Ό μ λ ₯ν©λλ€. | 243 | μΉ΄λλ₯Ό λλΈ ν΄λ¦ν λ€μ λ©μ μ λ₯Ό ν΄λ¦νκ³ λ©μμ§λ₯Ό μ λ ₯ν©λλ€. |
233 | </message> | 244 | </message> |
234 | </notify> | 245 | </notify> |
235 | <notify name="CantSelectLandFromMultipleRegions"> | 246 | <notify name="CantSelectLandFromMultipleRegions"> |
236 | <message name="message"> | 247 | <message name="message"> |
237 | μλ² κ²½κ³λ₯Ό λμ΄ ν μ§λ₯Ό μ νν μ μμ΅λλ€. | 248 | μλ² κ²½κ³λ₯Ό λμ΄ ν μ§λ₯Ό μ νν μ μμ΅λλ€. |
238 | μμ ν μ§λ₯Ό μ ννλλ‘ νμμμ€. | 249 | μμ λ©΄μ μ μ ννμμμ€. |
239 | </message> | 250 | </message> |
240 | </notify> | 251 | </notify> |
241 | <notify name="GenerticNotify"> | 252 | <notify name="GenerticNotify"> |
242 | <message name="message"> | 253 | <message name="message"> |
243 | [λ©μμ§] | 254 | [MESSAGE] |
244 | </message> | 255 | </message> |
245 | </notify> | 256 | </notify> |
246 | <notify name="GroupVote"> | 257 | <notify name="GroupVote"> |
247 | <message name="message"> | 258 | <message name="message"> |
248 | [NAME]μ΄(κ°) λ€μμ ν¬ννλλ‘ μ μνμ΅λλ€. | 259 | [NAME]λμ΄ ν¬νλ₯Ό μ μνμ΅λλ€: |
249 | [MESSAGE] | 260 | [MESSAGE] |
250 | </message> | 261 | </message> |
251 | <option name="VoteNow"> | 262 | <option name="VoteNow"> |
@@ -257,7 +268,7 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
257 | </notify> | 268 | </notify> |
258 | <notify name="GroupElection"> | 269 | <notify name="GroupElection"> |
259 | <message name="message"> | 270 | <message name="message"> |
260 | [NAME]μ΄(κ°) ν¬νλ₯Ό μμνμ΅λλ€. | 271 | [NAME]λμ΄ μ κ±°λ₯Ό μμνμ΅λλ€: |
261 | [MESSAGE] | 272 | [MESSAGE] |
262 | </message> | 273 | </message> |
263 | <option name="VoteNow"> | 274 | <option name="VoteNow"> |
@@ -269,12 +280,12 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
269 | </notify> | 280 | </notify> |
270 | <notify name="SystemMessage"> | 281 | <notify name="SystemMessage"> |
271 | <message name="message"> | 282 | <message name="message"> |
272 | [λ©μμ§] | 283 | [MESSAGE] |
273 | </message> | 284 | </message> |
274 | </notify> | 285 | </notify> |
275 | <notify name="EventNotification"> | 286 | <notify name="EventNotification"> |
276 | <message name="message"> | 287 | <message name="message"> |
277 | μ΄λ²€νΈ μλ¦Όμ΄: | 288 | μ΄λ²€νΈ μλ¦Ό: |
278 | 289 | ||
279 | [NAME] | 290 | [NAME] |
280 | [DATE] | 291 | [DATE] |
@@ -291,10 +302,10 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
291 | </notify> | 302 | </notify> |
292 | <notify name="TransferObjectsHighlighted"> | 303 | <notify name="TransferObjectsHighlighted"> |
293 | <message name="message"> | 304 | <message name="message"> |
294 | μ΄ κ΅¬νμ ꡬ맀μμκ² μλλ μ΄ κ΅¬νμ | 305 | μ΄ κ΅¬ν ꡬ맀μμκ² μλλλ μ΄ κ΅¬ν λ΄μ |
295 | λͺ¨λ μμ΄ν μ΄ κ°μ‘° νμλμμ΅λλ€. | 306 | λͺ¨λ μ€λΈμ νΈκ° κ°μ‘° νμλ©λλ€. |
296 | 307 | ||
297 | * μλν λ무μ μλλ κ°μ‘° νμλμ§ μμμ΅λλ€. | 308 | * μλλλ λ무μ μλλ κ°μ‘° νμλμ§ μμ΅λλ€. |
298 | </message> | 309 | </message> |
299 | <option name="Done"> | 310 | <option name="Done"> |
300 | μλ£ | 311 | μλ£ |
@@ -302,75 +313,74 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
302 | </notify> | 313 | </notify> |
303 | <notify name="DeactivatedGesturesTrigger"> | 314 | <notify name="DeactivatedGesturesTrigger"> |
304 | <message name="message"> | 315 | <message name="message"> |
305 | λμΌν νΈλ¦¬κ±°λ‘ λΉνμ±νν μ μ€μ²: | 316 | λμΌν λ°λ‘ κ°κΈ°λ‘ μΈν΄ λΉνμ±λ μ μ€μ²: |
306 | [NAME] | 317 | [NAMES] |
307 | </message> | 318 | </message> |
308 | </notify> | 319 | </notify> |
309 | <notify name="InventoryNetworkCorruption"> | 320 | <notify name="InventoryNetworkCorruption"> |
310 | <message name="message"> | 321 | <message name="message"> |
311 | λ€νΈμν¬ μμμΌλ‘ 보κ΄ν¨λ₯Ό λ‘λν μ μμ΅λλ€. μ΄κ²μ λ€νΈμν¬ μ°κ²°μ΄ μ’μ§ μλ€λ κ²μ μλ―Έν©λλ€. | 322 | λ€νΈμν¬ μμμΌλ‘ μΈλ²€ν 리λ₯Ό λ‘λν μ μμ΅λλ€. μ΄λ λ€νΈμν¬ μ°κ²°μ΄ μ’μ§ μλ€λ κ²μ μλ―Έν©λλ€. |
312 | </message> | 323 | </message> |
313 | </notify> | 324 | </notify> |
314 | <notify name="NoQuickTime"> | 325 | <notify name="NoQuickTime"> |
315 | <message name="message"> | 326 | <message name="message"> |
316 | Appleμ QuickTime μννΈμ¨μ΄κ° μ¬μ©μμ μμ€ν μ μ€μΉλμ§ μμμ΅λλ€. | 327 | Appleμ QuickTime μννΈμ¨μ΄κ° μ¬μ©μμ μμ€ν μ μ€μΉλμ§ μμμ΅λλ€. |
317 | μ€νΈλ¦¬λ° λ―Έλμ΄λ₯Ό μ§μνλ ꡬνμ μ€νΈλ¦¬λ° λ―Έλμ΄μμ λ³΄λ €λ©΄ QuickTime μ¬μ΄νΈ(http://www.apple.com/quicktime)λ‘ κ°μ QuickTime νλ μ΄μ΄λ₯Ό μ€μΉν΄μΌ ν©λλ€. | 328 | μ€νΈλ¦¬λ° λ―Έλμ΄λ₯Ό μ§μνλ ꡬνμ μ€νΈλ¦¬λ° λ―Έλμ΄λ₯Ό λ³΄λ €λ©΄ QuickTime μ¬μ΄νΈ(http://www.apple.com/quicktime)λ‘ κ°μ QuickTime νλ μ΄μ΄λ₯Ό μ€μΉν΄μΌ ν©λλ€. |
318 | </message> | 329 | </message> |
319 | </notify> | 330 | </notify> |
320 | <notify name="OwnedObjectsReturned"> | 331 | <notify name="OwnedObjectsReturned"> |
321 | <message name="message"> | 332 | <message name="message"> |
322 | ν μ§μ μ νν ꡬνμ μμ΄ν μ΄ | 333 | μ νν ꡬνλ΄μ λ³ΈμΈ μμ μ μ€λΈμ νΈκ° |
323 | μ¬μ©μμ 보κ΄ν¨μΌλ‘ λ°νλμμ΅λλ€. | 334 | 보κ΄ν¨μΌλ‘ λ°νλμμ΅λλ€. |
324 | </message> | 335 | </message> |
325 | </notify> | 336 | </notify> |
326 | <notify name="OtherObjectsReturned"> | 337 | <notify name="OtherObjectsReturned"> |
327 | <message name="message"> | 338 | <message name="message"> |
328 | ν μ§μ μ νν ꡬνμ μμ΄ν μ€ | 339 | μ νλ ꡬνμ μ€λΈμ νΈ μ€ μμ μ£Ό |
329 | [LAST] [FIRST]μ΄(κ°) μμ ν κ²μ | 340 | [LAST][FIRST]μ΄(κ°) μμ ν κ²μ |
330 | μμ μ£Όμ 보κ΄ν¨μΌλ‘ λ°νλμμ΅λλ€. | 341 | μμ μ£Όμ 보κ΄ν¨μΌλ‘ λ°ν λμμ΅λλ€. |
331 | </message> | 342 | </message> |
332 | </notify> | 343 | </notify> |
333 | <notify name="OtherObjectsReturned2"> | 344 | <notify name="OtherObjectsReturned2"> |
334 | <message name="message"> | 345 | <message name="message"> |
335 | ν μ§μ μ νν ꡬνμ μμ΄ν μ€ | 346 | ν μ§μ μ νλ ꡬνμμ '[NAME]'μ΄(κ°) μμ ν μ€λΈμ νΈκ° |
336 | μ£Όλ―Ό '[NAME]'μ΄(κ°) μμ ν κ²μ | 347 | μμ μ£Όμκ² λ°ν λμμ΅λλ€. |
337 | μμ μ£Όμκ² λ°νλμμ΅λλ€. | ||
338 | </message> | 348 | </message> |
339 | </notify> | 349 | </notify> |
340 | <notify name="GroupObjectsReturned"> | 350 | <notify name="GroupObjectsReturned"> |
341 | <message name="message"> | 351 | <message name="message"> |
342 | κ·Έλ£Ή [GROUPNAME]μ(κ³Ό) 곡μ ν μ νλ ν μ§ κ΅¬νμ μμ΄ν μ΄ μμ μ£Όμ 보κ΄ν¨μΌλ‘ λ€μ λμκ°μ΅λλ€. | 352 | ν μ§μ μ νλ ꡬνμμ κ·Έλ£Ή [GROUPNAME]μ(κ³Ό) 곡μ ν μ€λΈμ νΈκ° μμ μ£Όμ 보κ΄ν¨μΌλ‘ λ°ν λμμ΅λλ€. |
343 | μλλ μλ κ°λ₯ μμ΄ν μ΄ μ΄μ μμ μ£Όμκ² λ°νλμμ΅λλ€. | 353 | μλλ μλ κ°λ₯ μ€λΈμ νΈκ° μ΄μ μμ μ£Όμκ² λ°ν λμμ΅λλ€. |
344 | κ·Έλ£Ήμκ² μλλ λΉμλμ± μμ΄ν μ΄ μμ λμμ΅λλ€. | 354 | κ·Έλ£Ήμκ² μλλ λΉμλμ± μ€λΈμ νΈκ° μμ λμμ΅λλ€. |
345 | </message> | 355 | </message> |
346 | </notify> | 356 | </notify> |
347 | <notify name="UnOwnedObjectsReturned"> | 357 | <notify name="UnOwnedObjectsReturned"> |
348 | <message name="message"> | 358 | <message name="message"> |
349 | μ νν ꡬνμ μμ΄ν μ€ μ¬μ©μκ° μμ νμ§ μμ κ²μ μμ΄ν μ μμ μ£Όμκ² λ°νλμμ΅λλ€. | 359 | μ νν ꡬνμ μ€λΈμ νΈ μ€ λ³ΈμΈ μμ λ¬Όμ΄ μμΈ κ²μ μ€λΈμ νΈμ μμ μ£Όμκ² λ°ν λμμ΅λλ€. |
350 | </message> | 360 | </message> |
351 | </notify> | 361 | </notify> |
352 | <notify name="NotSafe"> | 362 | <notify name="NotSafe"> |
353 | <message name="message"> | 363 | <message name="message"> |
354 | μ΄ ν μ§λ λ°λ―Έμ§ νμ±ν μ§μμ λλ€('μμ νμ§ μμ'). | 364 | μ΄ ν μ§λ λ°λ―Έμ§ νμ±ν μ§μμ λλ€('μμ νμ§ μμ'). |
355 | μ¬κΈ°μλ λ°λ―Έμ§λ₯Ό λ°μ μ μμΌλ©°, μ£½μΌλ©΄ ν μΌλ‘ ν λ ν¬ν λ©λλ€. | 365 | μ΄ μ§μμμλ λ°λ―Έμ§λ₯Ό μ μ μ μμΌλ©°, μ£½μΌλ©΄ νμΌλ‘ ν λ ν¬νΈλ©λλ€. |
356 | </message> | 366 | </message> |
357 | </notify> | 367 | </notify> |
358 | <notify name="NoFly"> | 368 | <notify name="NoFly"> |
359 | <message name="message"> | 369 | <message name="message"> |
360 | μ΄ ν μ§λ λΉν λΉνμ±ν μ§μμ λλ€('λΉν κΈμ§'). | 370 | μ΄ ν μ§λ λΉν λΉνμ±ν μ§μμ λλ€('λΉν κΈμ§'). |
361 | μ¬κΈ°μμλ λΉνν μ μμ΅λλ€. | 371 | μ¬κΈ°μλ λΉνν μ μμ΅λλ€. |
362 | </message> | 372 | </message> |
363 | </notify> | 373 | </notify> |
364 | <notify name="PushRestricted"> | 374 | <notify name="PushRestricted"> |
365 | <message name="message"> | 375 | <message name="message"> |
366 | μ΄ ν μ§λ 'llPushObject μ ν' ꡬμ μ λλ€. | 376 | μ΄ ν μ§λ 'llPushObject μ ν' ꡬμμ λλ€. |
367 | ν μ§λ₯Ό μμ νμ§ μμλ€λ©΄ μ¬κΈ°μμ λ€λ₯Έ μ¬λμ μ μ©ν μ μμ΅λλ€. | 377 | ν μ§λ₯Ό μμ νμ§ μμλ€λ©΄ μ΄ μ§μμμ λ€λ₯Έ μ£Όλ―Όμκ² μ μ©ν μ μμ΅λλ€. |
368 | </message> | 378 | </message> |
369 | </notify> | 379 | </notify> |
370 | <notify name="NoBuild"> | 380 | <notify name="NoBuild"> |
371 | <message name="message"> | 381 | <message name="message"> |
372 | μ΄ ν μ§λ κ±΄μΆ λΉνμ±ν μ§μμ λλ€('κ±΄μΆ κΈμ§'). | 382 | μ΄ ν μ§λ λ§λ€κΈ° λΉνμ±ν μ§μμ λλ€('λ§λ€κΈ° κΈμ§'). |
373 | μ¬κΈ°μμλ μμ΄ν μ μ μν μ μμ΅λλ€. | 383 | μ€λΈμ νΈλ₯Ό μ μν μ μμ΅λλ€. |
374 | </message> | 384 | </message> |
375 | </notify> | 385 | </notify> |
376 | <notify name="ScriptsStopped"> | 386 | <notify name="ScriptsStopped"> |
@@ -380,20 +390,20 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
380 | </notify> | 390 | </notify> |
381 | <notify name="ScriptsNotRunning"> | 391 | <notify name="ScriptsNotRunning"> |
382 | <message name="message"> | 392 | <message name="message"> |
383 | μ΄ μμμμλ μ€ν¬λ¦½νΈκ° μ μ©λμ§ μμ΅λλ€. | 393 | μ΄ μ§μμμλ μ€ν¬λ¦½νΈκ° μ μ©λμ§ μμ΅λλ€. |
384 | </message> | 394 | </message> |
385 | </notify> | 395 | </notify> |
386 | <notify name="NoOutsideScripts"> | 396 | <notify name="NoOutsideScripts"> |
387 | <message name="message"> | 397 | <message name="message"> |
388 | μ΄ ν μ§λ μΈλΆ μ€ν¬λ¦½νΈ λΉνμ±ν μ§μμ λλ€ | 398 | μ΄ ν μ§λ μΈλΆ μ€ν¬λ¦½νΈ λΉνμ±ν μ§μμ λλ€ |
389 | ('μΈλΆ μ€ν¬λ¦½νΈ μμ'). | 399 | ('μΈλΆ μ€ν¬λ¦½νΈ κΈμ§'). |
390 | ν μ§ μμ μ£Όκ° μμ ν μ€ν¬λ¦½νΈλ₯Ό μ μΈνκ³ μΈλΆ μ€ν¬λ¦½νΈλ₯Ό μ€ννμ§ μμ΅λλ€. | 400 | ν μ§ μμ μ£Όκ° μμ ν μ€ν¬λ¦½νΈλ₯Ό μ μΈνκ³ μΈλΆ μ€ν¬λ¦½νΈλ μ€νλμ§ μμ΅λλ€. |
391 | . | ||
392 | </message> | 401 | </message> |
393 | </notify> | 402 | </notify> |
394 | <notify name="ApproveURL"> | 403 | <notify name="ApproveURL"> |
395 | <message name="message"> | 404 | <message name="message"> |
396 | μ΄λ€ μ¬λ¬Όμ΄ μμ μ νλ©΄μ λ€μ μΉ νμ΄μ§λ₯Ό νμνλ € ν©λλ€. | 405 | μ€λΈμ νΈμ νλ©΄μ λ€μ μΉ νμ΄μ§λ₯Ό νμν©λλ€. |
406 | [URL] | ||
397 | </message> | 407 | </message> |
398 | <option name="LoadPage"> | 408 | <option name="LoadPage"> |
399 | νμ΄μ§ λ‘λ | 409 | νμ΄μ§ λ‘λ |
@@ -404,49 +414,49 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
404 | </notify> | 414 | </notify> |
405 | <notify name="ClaimPublicLand"> | 415 | <notify name="ClaimPublicLand"> |
406 | <message name="message"> | 416 | <message name="message"> |
407 | νμ¬ μ§μμμλ 곡곡 ν μ§λ§ κΆλ¦¬ μ€μ ν μ μμ΅λλ€. | 417 | νμ¬ μ§μμμλ 곡μ μ§μλ§ κΆλ¦¬ μ€μ μν μ μμ΅λλ€. |
408 | </message> | 418 | </message> |
409 | </notify> | 419 | </notify> |
410 | <notify name="ObjectGiveItem"> | 420 | <notify name="ObjectGiveItem"> |
411 | <message name="message"> | 421 | <message name="message"> |
412 | [LAST] [FIRST]μ΄(κ°) μμ ν [OBJECTFROMNAME](μ΄)λΌλ μ΄λ¦μ μμ΄ν μ΄ μ¬μ©μμκ² '[OBJECTNAME]'(μ΄)λΌλ μ΄λ¦μ [OBJECTTYPE]μ(λ₯Ό) μ£Όμμ΅λλ€. | 422 | [FIRST] [LAST] μμ μ μ€λΈμ νΈ [OBJECTFROMNAME]μ΄(κ°) λΉμ μκ² '[OBJECTNAME]'(μ΄)λΌλ [OBJECTTYPE]μ(λ₯Ό) μ£Όμμ΅λλ€. |
413 | </message> | 423 | </message> |
414 | <option name="Keep"> | 424 | <option name="Keep"> |
415 | μ μ§ | 425 | μ μ§ |
416 | </option> | 426 | </option> |
417 | <option name="Discard"> | 427 | <option name="Discard"> |
418 | λ²λ¦¬κΈ° | 428 | μ·¨μ |
419 | </option> | 429 | </option> |
420 | <option name="Mute"> | 430 | <option name="Mute"> |
421 | μμκ±° | 431 | μ°¨λ¨ |
422 | </option> | 432 | </option> |
423 | </notify> | 433 | </notify> |
424 | <notify name="ObjectGiveItemUnknownUser"> | 434 | <notify name="ObjectGiveItemUnknownUser"> |
425 | <message name="message"> | 435 | <message name="message"> |
426 | (μλ €μ§μ§ μμ μ¬μ©μ)κ° μμ ν [OBJECTFROMNAME](μ΄)λΌλ μ΄λ¦μ μμ΄ν μ΄ μ¬μ©μμκ² '[OBJECTNAME]'(μ΄)λΌλ μ΄λ¦μ [OBJECTTYPE]μ(λ₯Ό) μ£Όμμ΅λλ€. | 436 | μ μ μλ μ¬μ©μ μμ μ μ€λΈμ νΈ [OBJECTFROMNAME]μ΄(κ°) λΉμ μκ² '[OBJECTNAME]'(μ΄)λΌλ [OBJECTTYPE]μ(λ₯Ό) μ£Όμμ΅λλ€. |
427 | </message> | 437 | </message> |
428 | <option name="Keep"> | 438 | <option name="Keep"> |
429 | μ μ§ | 439 | μ μ§ |
430 | </option> | 440 | </option> |
431 | <option name="Discard"> | 441 | <option name="Discard"> |
432 | λ²λ¦¬κΈ° | 442 | μ·¨μ |
433 | </option> | 443 | </option> |
434 | <option name="Mute"> | 444 | <option name="Mute"> |
435 | μμκ±° | 445 | μ°¨λ¨ |
436 | </option> | 446 | </option> |
437 | </notify> | 447 | </notify> |
438 | <notify name="UserGiveItem"> | 448 | <notify name="UserGiveItem"> |
439 | <message name="message"> | 449 | <message name="message"> |
440 | [NAME]μ΄(κ°) '[OBJECTNAME]'μ΄λΌλ [OBJECTTYPE]μ μ£Όμμ΅λλ€. | 450 | [NAME]λμ΄ '[OBJECTNAME]'(μ΄)λΌλ [OBJECTTYPE]μ(λ₯Ό) μ£Όμμ΅λλ€. |
441 | </message> | 451 | </message> |
442 | <option name="Keep"> | 452 | <option name="Keep"> |
443 | μ μ§ | 453 | μ μ§ |
444 | </option> | 454 | </option> |
445 | <option name="Discard"> | 455 | <option name="Discard"> |
446 | λ²λ¦¬κΈ° | 456 | μ·¨μ |
447 | </option> | 457 | </option> |
448 | <option name="Mute"> | 458 | <option name="Mute"> |
449 | μμκ±° | 459 | μ°¨λ¨ |
450 | </option> | 460 | </option> |
451 | </notify> | 461 | </notify> |
452 | <notify name="GodMessage"> | 462 | <notify name="GodMessage"> |
@@ -457,62 +467,66 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
457 | </notify> | 467 | </notify> |
458 | <notify name="JoinGroup"> | 468 | <notify name="JoinGroup"> |
459 | <message name="message"> | 469 | <message name="message"> |
460 | [λ©μμ§] | 470 | [MESSAGE] |
461 | </message> | 471 | </message> |
462 | <option name="Join"> | 472 | <option name="Join"> |
463 | μ°Έμ¬ | 473 | κ°μ |
464 | </option> | 474 | </option> |
465 | <option name="Decline"> | 475 | <option name="Decline"> |
466 | κ±°μ | 476 | κ±°λΆ |
467 | </option> | 477 | </option> |
468 | </notify> | 478 | </notify> |
469 | <notify name="JoinGroupOfficerNoFee"> | 479 | <notify name="JoinGroupOfficerNoFee"> |
470 | <message name="message"> | 480 | <message name="message"> |
471 | [NAME)κ° κ·νλ₯Ό λ©€λ²λ‘ κ°μ μ΄μ²νμ΅λλ€. | 481 | [NAME]λμ΄ κ·νλ₯Ό |
482 | κ·Έλ£Ή μ΄μμ§μΌλ‘ κ°μ νλλ‘ μ΄λνμ΅λλ€. | ||
472 | μ΄ κ·Έλ£Ήμ μ°Έμ¬νλ λΉμ©μ μμ΅λλ€. | 483 | μ΄ κ·Έλ£Ήμ μ°Έμ¬νλ λΉμ©μ μμ΅λλ€. |
473 | 484 | ||
474 | [MESSAGE] | 485 | [MESSAGE] |
475 | </message> | 486 | </message> |
476 | <option name="Join"> | 487 | <option name="Join"> |
477 | μ°Έμ¬ | 488 | κ°μ |
478 | </option> | 489 | </option> |
479 | <option name="Decline"> | 490 | <option name="Decline"> |
480 | κ±°μ | 491 | κ±°λΆ |
481 | </option> | 492 | </option> |
482 | </notify> | 493 | </notify> |
483 | <notify name="JoinGroupMember"> | 494 | <notify name="JoinGroupMember"> |
484 | <message name="message"> | 495 | <message name="message"> |
485 | [NAME]μ΄(κ°) κ·νλ₯Ό λ©€λ²λ‘ | 496 | [NAME]λμ΄ κ·νλ₯Ό |
486 | κ°μ μ΄μ²νμ΅λλ€. | 497 | κ·Έλ£Ή νμμΌλ‘ κ°μ νλλ‘ μ΄λνμ΅λλ€. |
487 | μ΄ κ·Έλ£Ήμ κ°μ νλ €λ©΄ κ°μ μμλ£ L$[COST]μ(λ₯Ό) μ§λΆν΄μΌ ν©λλ€ | 498 | μ΄ κ·Έλ£Ήμ κ°μ νλ €λ©΄ κ°μ μμλ£ L$[COST]λ₯Ό μ§λΆν΄μΌ ν©λλ€. |
488 | 499 | ||
489 | [MESSAGE] | 500 | [MESSAGE] |
490 | </message> | 501 | </message> |
491 | <option name="Join"> | 502 | <option name="Join"> |
492 | μ°Έμ¬ | 503 | κ°μ |
493 | </option> | 504 | </option> |
494 | <option name="Decline"> | 505 | <option name="Decline"> |
495 | κ±°μ | 506 | κ±°λΆ |
496 | </option> | 507 | </option> |
497 | </notify> | 508 | </notify> |
498 | <notify name="JoinGroupMemberNoFee"> | 509 | <notify name="JoinGroupMemberNoFee"> |
499 | <message name="message"> | 510 | <message name="message"> |
500 | [NAME]μ΄(κ°) κ·νλ₯Ό λ©€λ²λ‘ | 511 | [NAME]λμ΄ |
501 | κ°μ μ΄μ²νμ΅λλ€. | 512 | κ·Έλ£Ή νμμΌλ‘ κ°μ νλλ‘ μ΄λνμ΅λλ€. |
502 | μ΄ κ·Έλ£Ήμ μ°Έμ¬νλ λΉμ©μ μμ΅λλ€. | 513 | μ΄ κ·Έλ£Ήμ μ°Έμ¬νλ λΉμ©μ μμ΅λλ€. |
503 | 514 | ||
504 | [MESSAGES] | 515 | [MESSAGE] |
505 | </message> | 516 | </message> |
506 | <option name="Join"> | 517 | <option name="Join"> |
507 | μ°Έμ¬ | 518 | κ°μ |
508 | </option> | 519 | </option> |
509 | <option name="Decline"> | 520 | <option name="Decline"> |
510 | κ±°μ | 521 | κ±°λΆ |
511 | </option> | 522 | </option> |
512 | </notify> | 523 | </notify> |
513 | <notify name="OfferTeleport"> | 524 | <notify name="OfferTeleport"> |
514 | <message name="message"> | 525 | <message name="message"> |
515 | [NAME] λκ»μ ν λ ν¬νΈλ₯Ό μ μ νμ ¨μ΅λλ€:[MESSAGE] | 526 | [NAME]λμ΄ μμ μ μμΉλ‘ |
527 | κ·νλ₯Ό ν λ ν¬νΈνλ €κ³ μ μνμ΅λλ€: | ||
528 | |||
529 | [MESSAGE] | ||
516 | </message> | 530 | </message> |
517 | <option name="Teleport"> | 531 | <option name="Teleport"> |
518 | ν 리ν¬νΈ | 532 | ν 리ν¬νΈ |
@@ -535,61 +549,60 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
535 | </notify> | 549 | </notify> |
536 | <notify name="OfferFriendship"> | 550 | <notify name="OfferFriendship"> |
537 | <message name="message"> | 551 | <message name="message"> |
538 | [NAME]μ΄(κ°) μ°μ μ μ 곡νκ³ μμ΅λλ€. | 552 | [NAME]λμ΄ μ°μ μ μ μν©λλ€. |
539 | 553 | ||
540 | μ§λμμ μλ‘ μΆμ ν μ μμΌλ©° | 554 | κΈ°λ³Έμ μΌλ‘ μ¬μ©μλ |
541 | μ¨λΌμΈ μνλ₯Ό μ λ°μ΄νΈ | 555 | μλ‘μ μ¨λΌμΈ μνλ₯Ό νμΈν μ μμ΅λλ€. |
542 | λ°κ² λ©λλ€. | ||
543 | </message> | 556 | </message> |
544 | <option name="Accept"> | 557 | <option name="Accept"> |
545 | λμ | 558 | λμ |
546 | </option> | 559 | </option> |
547 | <option name="Decline"> | 560 | <option name="Decline"> |
548 | κ±°μ | 561 | κ±°λΆ |
549 | </option> | 562 | </option> |
550 | </notify> | 563 | </notify> |
551 | <notify name="FriendshipAccepted"> | 564 | <notify name="FriendshipAccepted"> |
552 | <message name="message"> | 565 | <message name="message"> |
553 | [NAME]μ΄(κ°) μ°μ μ μλ½νμ΅λλ€. | 566 | [NAME]λμ΄ μ°μ μ μλ½νμ΅λλ€. |
554 | </message> | 567 | </message> |
555 | </notify> | 568 | </notify> |
556 | <notify name="FriendshipDeclined"> | 569 | <notify name="FriendshipDeclined"> |
557 | <message name="message"> | 570 | <message name="message"> |
558 | [NAME]μ΄(κ°) μ°μ μ κ±°λΆνμ΅λλ€. | 571 | [NAME]λμ΄ μ°μ μ κ±°λΆνμ΅λλ€. |
559 | </message> | 572 | </message> |
560 | </notify> | 573 | </notify> |
561 | <notify name="OfferCallingCard"> | 574 | <notify name="OfferCallingCard"> |
562 | <message name="message"> | 575 | <message name="message"> |
563 | [LAST] [FIRST]μ΄(κ°) λͺ ν¨μ μ 곡νκ³ μμ΅λλ€. | 576 | [FIRST] [LAST]λμ΄ νλ‘νμ μ 곡ν©λλ€. |
564 | μ΄λ‘μ¨ λ³΄κ΄ν¨μ λΆλ§ν¬λ₯Ό μΆκ°νμ¬ | 577 | μΈλ²€ν 리μ λΆλ§ν¬λ₯Ό μΆκ°νμ¬ μ΄ μ£Όλ―Όμκ² |
565 | μ΄ μ£Όλ―Όκ³Ό μ μνκ² IMν μ μμ΅λλ€. | 578 | μ μνκ² λ©μ μ λ₯Ό λ³΄λΌ μ μμ΅λλ€. |
566 | </message> | 579 | </message> |
567 | <option name="Accept"> | 580 | <option name="Accept"> |
568 | λμ | 581 | λμ |
569 | </option> | 582 | </option> |
570 | <option name="Decline"> | 583 | <option name="Decline"> |
571 | κ±°μ | 584 | κ±°λΆ |
572 | </option> | 585 | </option> |
573 | </notify> | 586 | </notify> |
574 | <notify name="RegionRestartMinutes"> | 587 | <notify name="RegionRestartMinutes"> |
575 | <message name="message"> | 588 | <message name="message"> |
576 | μ§μμ΄ [MINUTES]λΆ μ΄λ΄μ μ¬μμλ©λλ€. | 589 | μ§μμ΄ [MINUTES] λΆ μ΄λ΄μ λ€μ μμλ©λλ€. |
577 | μ΄ μ§μμ λ¨μ κ²½μ° λ‘κ·Έμμλ©λλ€. | 590 | μ΄ μ§μμ λ¨μ κ²½μ° λ‘κ·Έμμλ©λλ€. |
578 | </message> | 591 | </message> |
579 | </notify> | 592 | </notify> |
580 | <notify name="RegionRestartSeconds"> | 593 | <notify name="RegionRestartSeconds"> |
581 | <message name="message"> | 594 | <message name="message"> |
582 | μ§μμ΄ [SECONDS]μ΄ μ΄λ΄μ μ¬μμλ©λλ€. | 595 | μ§μμ΄[SECONDS] μ΄ μ΄λ΄μ λ€μ μμλ©λλ€. |
583 | μ΄ μ§μμ λ¨μ κ²½μ° λ‘κ·Έμμλ©λλ€. | 596 | μ΄ μ§μμ λ¨μ κ²½μ° λ‘κ·Έμμλ©λλ€. |
584 | </message> | 597 | </message> |
585 | </notify> | 598 | </notify> |
586 | <notify name="LoadWebPage"> | 599 | <notify name="LoadWebPage"> |
587 | <message name="message"> | 600 | <message name="message"> |
588 | μΉ νμ΄μ§ [URL]μ(λ₯Ό) λ‘λνμκ² μ΅λκΉ? | 601 | μΉ νμ΄μ§[URL](μ)λ₯Ό λ‘λν©λκΉ? |
589 | 602 | ||
590 | [MESSAGE] | 603 | [MESSAGE] |
591 | 604 | ||
592 | λμ μ¬λ¬Ό: [OBJECTNAME], μμ μ£Ό: [NAME]? | 605 | λμ μ€λΈμ νΈ: [OBJECTNAME], μμ μ: [NAME]? |
593 | </message> | 606 | </message> |
594 | <option name="Gotopage"> | 607 | <option name="Gotopage"> |
595 | νμ΄μ§λ‘ μ΄λ | 608 | νμ΄μ§λ‘ μ΄λ |
@@ -601,28 +614,28 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
601 | <notify name="FailedToLoadWearableUnnamed"> | 614 | <notify name="FailedToLoadWearableUnnamed"> |
602 | <message name="message"> | 615 | <message name="message"> |
603 | [TYPE]μ(λ₯Ό) λ‘λνμ§ λͺ»νμ΅λλ€. | 616 | [TYPE]μ(λ₯Ό) λ‘λνμ§ λͺ»νμ΅λλ€. |
604 | μ΄ μμ΄ν μ ꡬμ ν ν맀μμκ² μ리μμμ€. | 617 | μ΄ μ€λΈμ νΈμ ν맀μμκ² μ리μμμ€. |
605 | </message> | 618 | </message> |
606 | </notify> | 619 | </notify> |
607 | <notify name="FailedToLoadWearable"> | 620 | <notify name="FailedToLoadWearable"> |
608 | <message name="message"> | 621 | <message name="message"> |
609 | [DESC](μ΄)λΌλ μ΄λ¦μ [TYPE]μ(λ₯Ό) λ‘λνμ§ λͺ»νμ΅λλ€. | 622 | [DESC](μ΄)λΌλ [TYPE]μ(λ₯Ό) λ‘λνμ§ λͺ»νμ΅λλ€. |
610 | μ΄ μμ΄ν μ ꡬμ ν ν맀μμκ² μ리μμμ€. | 623 | μ΄ μ€λΈμ νΈλ₯Ό ꡬμ ν ν맀μμκ² μ리μμμ€. |
611 | </message> | 624 | </message> |
612 | </notify> | 625 | </notify> |
613 | <notify name="FailedToFindWearableUnnamed"> | 626 | <notify name="FailedToFindWearableUnnamed"> |
614 | <message name="message"> | 627 | <message name="message"> |
615 | λ°μ΄ν°λ² μ΄μ€μμ [TYPE]μ(λ₯Ό) μ°ΎμΉ λͺ»νμ΅λλ€. | 628 | λ°μ΄ν°λ² μ΄μ€μμ [TYPE]μ(λ₯Ό) μ°Ύμ§ λͺ»νμ΅λλ€. |
616 | </message> | 629 | </message> |
617 | </notify> | 630 | </notify> |
618 | <notify name="FailedToFindWearable"> | 631 | <notify name="FailedToFindWearable"> |
619 | <message name="message"> | 632 | <message name="message"> |
620 | λ°μ΄ν°λ² μ΄μ€μμ [DESC](μ΄)λΌλ μ΄λ¦μ [TYPE]μ(λ₯Ό) μ°ΎμΉ λͺ»νμ΅λλ€. | 633 | λ°μ΄ν°λ² μ΄μ€μμ [DESC](μ΄)λΌλ [TYPE]μ(λ₯Ό) μ°Ύμ§ λͺ»νμ΅λλ€. |
621 | </message> | 634 | </message> |
622 | </notify> | 635 | </notify> |
623 | <notify name="ScriptTakeMoney"> | 636 | <notify name="ScriptTakeMoney"> |
624 | <message name="message"> | 637 | <message name="message"> |
625 | λ¦°λ λ¬λ¬(L$) μΈμΆ | 638 | μ¬μ©μλ‘λΆν° λ¦°λ λ¬λ¬(L$) κ°μ Έμ€κΈ° |
626 | </message> | 639 | </message> |
627 | </notify> | 640 | </notify> |
628 | <notify name="ActOnControlInputs"> | 641 | <notify name="ActOnControlInputs"> |
@@ -642,7 +655,7 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
642 | </notify> | 655 | </notify> |
643 | <notify name="AttachToYourAvatar"> | 656 | <notify name="AttachToYourAvatar"> |
644 | <message name="message"> | 657 | <message name="message"> |
645 | μμ μ μλ°νμ λΆμ°© | 658 | μμ μ μλ°νμ μ°©μ© |
646 | </message> | 659 | </message> |
647 | </notify> | 660 | </notify> |
648 | <notify name="ReleaseOwnership"> | 661 | <notify name="ReleaseOwnership"> |
@@ -652,12 +665,12 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
652 | </notify> | 665 | </notify> |
653 | <notify name="LinkAndDelink"> | 666 | <notify name="LinkAndDelink"> |
654 | <message name="message"> | 667 | <message name="message"> |
655 | λ€λ₯Έ μ¬λ¬Όκ³Όμ μ°κ²° λ° μ°κ²° ν΄μ | 668 | λ€λ₯Έ μ€λΈμ νΈμμ μ°κ²° λ° μ°κ²° ν΄μ |
656 | </message> | 669 | </message> |
657 | </notify> | 670 | </notify> |
658 | <notify name="AddAndRemoveJoints"> | 671 | <notify name="AddAndRemoveJoints"> |
659 | <message name="message"> | 672 | <message name="message"> |
660 | λ€λ₯Έ μ¬λ¬Όκ³Ό ν¨κ» μΆκ° λ° μμ | 673 | λ€λ₯Έ μ€λΈμ νΈμ ν¨κ» μΆκ° λ° μμ |
661 | </message> | 674 | </message> |
662 | </notify> | 675 | </notify> |
663 | <notify name="ChangePermissions"> | 676 | <notify name="ChangePermissions"> |
@@ -677,10 +690,10 @@ passwordμ μν₯μ μ£Όλ―λ‘ Caps Lock ν€λ₯Ό κΊΌμΌ ν©λλ€. | |||
677 | </notify> | 690 | </notify> |
678 | <notify name="ScriptQuestion"> | 691 | <notify name="ScriptQuestion"> |
679 | <message name="message"> | 692 | <message name="message"> |
680 | '[OBJECTNAME]', μμ΄ν μμ μ£Ό '[NAME]', ν΄μ£Όμκ² μ΅λκΉ: | 693 | '[OBJECTNAME]' μ€λΈμ νΈ('[NAME]'λ μμ )κ° λ€μμ μν©λλ€: |
681 | 694 | ||
682 | [QUESTIONS] | 695 | [QUESTIONS] |
683 | OKμ λκΉ?? | 696 | κ΄μ°μ΅λκΉ? |
684 | </message> | 697 | </message> |
685 | <option name="Yes"> | 698 | <option name="Yes"> |
686 | μ | 699 | μ |
@@ -691,7 +704,7 @@ OKμ λκΉ?? | |||
691 | </notify> | 704 | </notify> |
692 | <notify name="ScriptDialog"> | 705 | <notify name="ScriptDialog"> |
693 | <message name="message"> | 706 | <message name="message"> |
694 | [LAST] [FIRST]μ '[TITLE]' | 707 | [FIRST] [LAST]λμ '[TITLE]' |
695 | [MESSAGE] | 708 | [MESSAGE] |
696 | </message> | 709 | </message> |
697 | <option name="Ignore"> | 710 | <option name="Ignore"> |
@@ -709,93 +722,102 @@ OKμ λκΉ?? | |||
709 | </notify> | 722 | </notify> |
710 | <notify name="FirstBalanceIncrease"> | 723 | <notify name="FirstBalanceIncrease"> |
711 | <message name="message"> | 724 | <message name="message"> |
712 | L$[AMOUNT] λ¦°λ λ¬λ¬λ₯Ό λ°μΌμ ¨μ΅λλ€. μμ΄ν μ΄λ λ€λ₯Έ μ μ κ° λΉμ μκ² L$λ₯Ό μ§λΆν κ²μ λλ€. λ³ΈμΈμ λ¦°λ λ¬λ¬ λ°Έλ°μ€λ μ€ν¬λ¦°μ μ€λ₯Έμͺ½ μλ¨μ λ³΄μ¬ μ§λλ€ . | 725 | L$[AMOUNT]μ(λ₯Ό) μλ Ήνμ ¨μ΅λλ€. |
726 | μ€λΈμ νΈ ν맀 λ° λ€λ₯Έ μ¬μ©μμ κΈ°λΆλ‘ λ¦°λ λ¬λ¬(L$)λ₯Ό λ² μ μμ΅λλ€. | ||
727 | νλ©΄μ μ°μΈ‘ μλ¨ μ½λμ νμ¬ μμ μκ³ κ° | ||
728 | νμλ©λλ€. | ||
713 | </message> | 729 | </message> |
714 | </notify> | 730 | </notify> |
715 | <notify name="FirstBalanceDecrease"> | 731 | <notify name="FirstBalanceDecrease"> |
716 | <message name="message"> | 732 | <message name="message"> |
717 | L$[AMOUNT]μ μ§λΆνμ΅λλ€. | 733 | L$[AMOUNT]μ(λ₯Ό) κ²°μ νμ ¨μ΅λλ€. |
718 | μμ‘μ νλ©΄μ μ°μΈ‘ μλ¨ μ½λμ | 734 | νλ©΄μ μ°μΈ‘ μλ¨ μ½λμ νμ¬ μμ μκ³ κ° |
719 | νμλμ΄ μμ΅λλ€. | 735 | νμλ©λλ€. |
720 | </message> | 736 | </message> |
721 | </notify> | 737 | </notify> |
722 | <notify name="FirstSit"> | 738 | <notify name="FirstSit"> |
723 | <message name="message"> | 739 | <message name="message"> |
724 | μμ μμ΅λλ€. | 740 | μμ μλ λμ |
725 | νμ΄ν ν€(λλ AWSD)λ₯Ό μ¬μ©νμ¬ μμ λ₯Ό λ³κ²½ν©λλ€. | 741 | νμ΄ν ν€(λλ AWSD)λ₯Ό μ¬μ©νμ¬ μμ μ λ³κ²½ν©λλ€. |
726 | 'μκΈ°' λ²νΌμ ν΄λ¦νμ¬ μΌμ΄μλλ€. | 742 | μΌμ΄μλ €λ©΄ 'μκΈ°' λ²νΌμ ν΄λ¦ν©λλ€. |
727 | </message> | 743 | </message> |
728 | </notify> | 744 | </notify> |
729 | <notify name="FirstMap"> | 745 | <notify name="FirstMap"> |
730 | <message name="message"> | 746 | <message name="message"> |
731 | μ§λλ₯Ό ν΄λ¦νκ³ λμ΄ μ€ν¬λ‘€ν©λλ€. | 747 | μ§λλ₯Ό ν΄λ¦νκ³ λμ΄ μ€ν¬λ‘€ ν©λλ€. |
732 | λλΈν΄λ¦νμ¬ ν 리ν¬νΈ ν©λλ€. | 748 | λλΈ ν΄λ¦νμ¬ ν λ ν¬νΈν©λλ€. |
733 | μ€λ₯Έμͺ½μ 컨νΈλ‘€μ μ¬μ©νμ¬ μ¬λ¬Όμ μ°Ύκ³ | 749 | μ€λ₯Έμͺ½μ 컨νΈλ‘€μ μ¬μ©νμ¬ μ€λΈμ νΈλ₯Ό μ°Ύκ³ |
734 | λ€μν λ°°κ²½μ νμν©λλ€. | 750 | λ€λ₯Έ λ°°κ²½μ νμν©λλ€. |
735 | </message> | 751 | </message> |
736 | </notify> | 752 | </notify> |
737 | <notify name="FirstBuild"> | 753 | <notify name="FirstBuild"> |
738 | <message name="message"> | 754 | <message name="message"> |
739 | μλ‘μ΄ μμ΄ν μ [SECOND_LIFE]μμ μ μν μ μμ΅λλ€. | 755 | μλ‘μ΄ μ€λΈμ νΈλ₯Ό [SECOND_LIFE]μμ μ μν μ μμ΅λλ€. |
740 | μΌμͺ½ μλ¨μ λꡬλ₯Ό μ¬μ©νμ¬ μ μνκ³ | 756 | μΌμͺ½ μλ¨μ λꡬλ₯Ό μ¬μ©νμ¬ μ μνκ³ |
741 | Ctrl λλ Altλ₯Ό λλ₯Έ μνμμ μ μνκ² λꡬλ₯Ό μ ννμμμ€. | 757 | Ctrl λλ Alt ν€λ₯Ό λλ₯Έ μνμμ μ μνκ² λꡬλ₯Ό μ ννμμμ€. |
742 | Escλ₯Ό λλ¬ μ μνκΈ°λ₯Ό μ€μ§ν©λλ€. | 758 | μ μμ μ€λ¨νλ €λ©΄ Esc ν€λ₯Ό λλ₯΄μμμ€. |
743 | </message> | 759 | </message> |
744 | </notify> | 760 | </notify> |
745 | <notify name="FirstLeftClickNoHit"> | 761 | <notify name="FirstLeftClickNoHit"> |
746 | <message name="message"> | 762 | <message name="message"> |
747 | λ§μ°μ€ μΌμͺ½μ ν΄λ¦νλ©΄ νΉλ³ μμ΄ν κ³Ό μνΈμμ©ν©λλ€. | 763 | λ§μ°μ€ μΌμͺ½ ν΄λ¦νμ¬ νΉμ μ μ€λΈμ νΈμ μνΈμμ© ν©λλ€. |
748 | λ§μ°μ€ ν¬μΈν°κ° μλͺ¨μμΌλ‘ λ°λλ©΄ | 764 | λ§μ°μ€ ν¬μΈν°κ° μμΌλ‘ λ°λλ©΄ |
749 | ν΄λΉ μμ΄ν κ³Ό μνΈμμ©μ ν μ μμ΅λλ€. | 765 | μ€λΈμ νΈμ μνΈμμ©ν μ μμ΅λλ€. |
750 | λ§μ°μ€ μ€λ₯Έμͺ½μ ν΄λ¦νλ©΄ μ¬μ©ν μ μλ λ©λ΄κ° λνλ©λλ€. | 766 | λ§μ°μ€ μ€λ₯Έμͺ½μ ν΄λ¦νλ©΄ μ¬μ©ν μ μλ λ©λ΄κ° λνλ©λλ€. |
751 | </message> | 767 | </message> |
752 | </notify> | 768 | </notify> |
753 | <notify name="FirstTeleport"> | 769 | <notify name="FirstTeleport"> |
754 | <message name="message"> | 770 | <message name="message"> |
755 | λ°©κΈ ν λ ν¬νΈ λμμ΅λλ€. | 771 | λ°©κΈ ν λ ν¬νΈλμμ΅λλ€. |
756 | λͺ©μ μ§μμ κ°μ₯ κ°κΉμ΄ Infohubμ μμ΅λλ€. | 772 | λͺ©μ μ§μμ κ°μ₯ κ°κΉμ΄ μΈν¬νλΈμ μμ΅λλ€. |
757 | λͺ©μ μ§λ ν° λΉ¨κ°μ νμ§λ‘ νμλμ΄ μμ΅λλ€. | 773 | λͺ©μ μ§λ ν° λΉ¨κ°μ νμ§λ‘ νμλμ΄ μμ΅λλ€. |
758 | </message> | 774 | </message> |
759 | </notify> | 775 | </notify> |
760 | <notify name="FirstOverrideKeys"> | 776 | <notify name="FirstOverrideKeys"> |
761 | <message name="message"> | 777 | <message name="message"> |
762 | μ΄λ ν€λ μμ΄ν μμν΄ μ‘°μ λκ³ μμ΅λλ€. | 778 | μ΄μ μ€λΈμ νΈμ μν΄ μ΄λ ν€κ° μ‘°μ λ©λλ€. |
763 | νμ΄ν ν€ λλ AWSDλ₯Ό μ¬μ©νμ¬ μμ΄ν μ μμ§μμ νμΈνμμμ€. | 779 | νμ΄ν ν€ λλ AWSD ν€λ₯Ό μ¬μ©νμ¬ μ€λΈμ νΈμ μμ§μμ νμΈνμμμ€. |
764 | μΌλΆ μμ΄ν (μ΄κ°μ μμ΄ν )μ μ¬μ©νλ €λ©΄ λ§μ°μ€ μμ μ μ΄μ©ν΄μΌ ν©λλ€. | 780 | μΌλΆ μ€λΈμ νΈ(μ: μ΄)λ₯Ό μ¬μ©νλ €λ©΄ 1μΈμΉμμ μ μ΄μ©ν΄μΌ ν©λλ€. |
765 | λ§μ°μ€ μμ μ μ΄μ© νλ €λ©΄ 'M'μ λλ¦ λλ€. | 781 | 1μΈμΉ μμ μ μ΄μ©νλ €λ©΄ 'M'μ λλ₯΄μμμ€. |
766 | </message> | 782 | </message> |
767 | </notify> | 783 | </notify> |
768 | <notify name="FirstAppearance"> | 784 | <notify name="FirstAppearance"> |
769 | <message name="message"> | 785 | <message name="message"> |
770 | μΈν νΈμ§μ€ μ λλ€. | 786 | λ΄ λͺ¨μ΅μ νΈμ§νλ μ€μ λλ€. |
771 | μμ λ₯Ό νμ νκ³ μ€νλ €λ©΄ νμ΄ν ν€λ₯Ό μ¬μ©νμμμ€. | 787 | μμ λ₯Ό νμ νκ³ νλ/μΆμνλ €λ©΄ νμ΄ν ν€λ₯Ό μ¬μ©νμμμ€. |
772 | μμ μ μλ£νμΌλ©΄ 'μ 체 μ μ₯'μ | 788 | λλλ©΄ 'λͺ¨λ μ μ₯'μ λλ¬ |
773 | λλ¬ μΈμμ μ μ₯νκ³ μ’ λ£ν©λλ€. | 789 | λͺ¨μ΅μ μ μ₯νκ³ μ’ λ£νμμμ€. |
774 | μΈνμ μΈμ λ νΈμ§ν μ μμ΅λλ€. | 790 | λ΄ λͺ¨μ΅μ μΈμ λ μ§ νΈμ§ν μ μμ΅λλ€. |
775 | </message> | 791 | </message> |
776 | </notify> | 792 | </notify> |
777 | <notify name="FirstInventory"> | 793 | <notify name="FirstInventory"> |
778 | <message name="message"> | 794 | <message name="message"> |
779 | μ΄κ³³μ μ¬λ¬Ό, λ ΈνΈμΉ΄λ, κΈ°ν μμ λ¬Όμ 보κ΄νλ 보κ΄ν¨ μ λλ€. | 795 | μ΄κ³³μ μ€λΈμ νΈ, μ°Έκ³ μΉ΄λ, κΈ°ν μμ λ¬Όμ 보κ΄νλ μΈλ²€ν 리 μ λλ€. |
780 | * μμ΄ν λλ 볡μ₯ ν΄λλ₯Ό μ μΌλ €λ©΄ μμ μ μλ°νμκ² λλκ·Έ ν©λλ€. | 796 | * μ€λΈμ νΈ λλ 볡μ₯ ν΄λλ₯Ό μ μΌλ €λ©΄ μμ μ μλ°νλ‘ λλκ·Έν©λλ€. |
781 | * μμ΄ν μ 보κ΄ν¨μΌλ‘λΆν° κΊΌλ΄λ €λ©΄ λ μΌλ‘ λλκ·Έ ν©λλ€. | 797 | * μ€λΈμ νΈλ₯Ό μΈλ²€ν λ¦¬λ‘ λΆν° κΊΌλ΄λ €λ©΄ λ μΌλ‘ λλκ·Έν©λλ€. |
782 | * λ ΈνΈμΉ΄λλ₯Ό μ½μΌλ €λ©΄ λλΈν΄λ¦ν©λλ€. | 798 | * λ ΈνΈ μΉ΄λλ₯Ό μ½μΌλ €λ©΄ λλΈν΄λ¦ν©λλ€. |
783 | </message> | 799 | </message> |
784 | </notify> | 800 | </notify> |
785 | <notify name="FirstSandbox"> | 801 | <notify name="FirstSandbox"> |
786 | <message name="message"> | 802 | <message name="message"> |
787 | μ΄κ³³μ Sandbox μ§μμ λλ€. | 803 | μ΄κ³³μ μλλ°μ€ μ§μμ λλ€. |
788 | μ¬κΈ°μ μ μ, λ°°μΉλ μμ΄ν μ μ΄ μμμ λ λ νμ μμ λ μ μμΌλ©° | 804 | μ¬κΈ°μ λ¨κ²¨μ§ μ€λΈμ νΈλ |
789 | ν΄λΉ μμμ μμ κ²μ΄μ 맀 [HOURS]μκ°λ§λ€ ννμ μκ°μΌλ‘ [TIME]AMμ μμλ©λλ€. | 805 | μ κΈ°μ μΌλ‘ μ 리λ ν μμ λ μ μμ΅λλ€. νλ©΄ μλ¨μ μ§μλͺ μμ μ 보λ₯Ό μ°Έμ‘°νμμμ€. |
790 | 806 | ||
791 | Sandbox μ§μμ ννμ§ μμΌλ©° κΈ°νΈλ‘ νμλ©λλ€. | 807 | μλλ°μ€ μ§μμ μλλ°μ€ μλ¦Ό μ¬μΈμ΄ μμ΅λλ€. |
792 | </message> | 808 | </message> |
793 | </notify> | 809 | </notify> |
794 | <notify name="FirstFlexible"> | 810 | <notify name="FirstFlexible"> |
795 | <message name="message"> | 811 | <message name="message"> |
796 | μ΄ μ¬λ¬Όμ μ μΆμ±μ΄ μμ΅λλ€. | 812 | μ΄ μ€λΈμ νΈλ μ μΆμ±μ΄ μμ΅λλ€. |
797 | μ μΆμ±μ΄ μλ μ¬λ¬Όμ μ€μ λ‘ μ μΆμ±μ΄ μμ μ μμΌλ©° | 813 | μ μΆμ±μ΄ μλ μ€λΈμ νΈλ 물리μ μν₯μ΄ μμΌλ©° |
798 | μ μΆμ± νμΈλμ μ²΄ν¬ νμκ° μμ κ²½μ° λ°λμ μ λ Ήμ΄μ΄μΌ ν©λλ€ . | 814 | μ μΆμ± 체ν¬κ° λμ΄ μμ κ²½μ° λ°λμ ν¬ν μ΄μ΄μΌ ν©λλ€. |
815 | </message> | ||
816 | </notify> | ||
817 | <notify name="MaxListSelectMessage"> | ||
818 | <message name="message"> | ||
819 | μ΄ λͺ©λ‘μμ μ΅λ [MAX_SELECT]κ°μ μμ΄ν μ | ||
820 | μ νν μ μμ΅λλ€. | ||
799 | </message> | 821 | </message> |
800 | </notify> | 822 | </notify> |
801 | </notifications> | 823 | </notifications> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_avatar.xml b/linden/indra/newview/skins/xui/ko/panel_avatar.xml index c15d06e..baf1a04 100644 --- a/linden/indra/newview/skins/xui/ko/panel_avatar.xml +++ b/linden/indra/newview/skins/xui/ko/panel_avatar.xml | |||
@@ -1,7 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="Panel Avatar"> | 2 | <panel name="Panel Avatar"> |
3 | <tab_container name="tab"> | 3 | <tab_container name="tab"> |
4 | <panel label="2nd Life" name="2nd Life"> | 4 | <panel label="μ¨λΌμΈ" name="2nd Life"> |
5 | <text name="CaptionTextAcctInfo"> | 5 | <text name="CaptionTextAcctInfo"> |
6 | [ACCTTYPE] | 6 | [ACCTTYPE] |
7 | [PAYMENTINFO] | 7 | [PAYMENTINFO] |
@@ -13,31 +13,25 @@ | |||
13 | λ¬΄λ£ μν μ¬μ© | 13 | λ¬΄λ£ μν μ¬μ© |
14 | </text> | 14 | </text> |
15 | <text name="AcctTypeCharterMember"> | 15 | <text name="AcctTypeCharterMember"> |
16 | μ€λ¦½ λ©€λ² | 16 | μ€λ¦½ νμ |
17 | </text> | 17 | </text> |
18 | <text name="AcctTypeEmployee"> | 18 | <text name="AcctTypeEmployee"> |
19 | Linden Lab μ§μ | 19 | λ¦°λ λ© μ§μ |
20 | </text> | 20 | </text> |
21 | <text name="PaymentInfoUsed"> | 21 | <text name="PaymentInfoUsed"> |
22 | μ¬μ©ν μ§λΆ μ 보 | 22 | μ¬μ©ν κ²°μ μλ¨ |
23 | </text> | 23 | </text> |
24 | <text name="PaymentInfoOnFile"> | 24 | <text name="PaymentInfoOnFile"> |
25 | νμΌμ μ§λΆ μ 보 | 25 | κ²°μ μλ¨ λ±λ‘μ |
26 | </text> | 26 | </text> |
27 | <text name="NoPaymentInfoOnFile"> | 27 | <text name="NoPaymentInfoOnFile"> |
28 | νμΌμ μ§λΆ μ 보 μμ | 28 | κ²°μ μλ¨ λ―Έλ±λ‘μ |
29 | </text> | 29 | </text> |
30 | <text name="Name:"> | 30 | <text name="Name:"> |
31 | μ΄λ¦: | 31 | μ΄λ¦: |
32 | </text> | 32 | </text> |
33 | <text name="online_yes"> | 33 | <text name="online_yes"> |
34 | μ¨λΌμΈ: μ | 34 | νμ¬ μ¨λΌμΈ |
35 | </text> | ||
36 | <text name="online_no"> | ||
37 | μ¨λΌμΈ: μλμ€ | ||
38 | </text> | ||
39 | <text name="online_unknown"> | ||
40 | μ¨λΌμΈ: μλ €μ§μ§ μμ | ||
41 | </text> | 35 | </text> |
42 | <text name="label"> | 36 | <text name="label"> |
43 | νμ: | 37 | νμ: |
@@ -46,17 +40,18 @@ | |||
46 | κ³μ : | 40 | κ³μ : |
47 | </text> | 41 | </text> |
48 | <text name="partner_label" | 42 | <text name="partner_label" |
49 | tool_tip="Second Life ννΈλ. μμΈν μ€μ λ°©λ²μ www.secondlife.com/partnerλ₯Ό μ°Έκ³ νμμμ€"> | 43 | tool_tip="μΈμ»¨λλΌμ΄ν ννΈλ. μμΈν μ€μ λ°©λ²μ www.secondlife.com/partnerλ₯Ό μ°Έκ³ ν¨"> |
50 | ννΈλ: | 44 | ννΈλ: |
51 | </text> | 45 | </text> |
46 | <button label="?" label_selected="?" name="partner_help" /> | ||
52 | <line_editor name="partner_edit" | 47 | <line_editor name="partner_edit" |
53 | tool_tip="Second Life ννΈλ. μμΈν μ€μ λ°©λ²μ www.secondlife.com/partnerλ₯Ό μ°Έκ³ νμμμ€"> | 48 | tool_tip="μΈμ»¨λλΌμ΄ν ννΈλ. μμΈν μ€μ λ°©λ²μ www.secondlife.com/partnerλ₯Ό μ°Έκ³ ν¨"> |
54 | [LAST] [FIRST] | 49 | [FIRST] [LAST] |
55 | </line_editor> | 50 | </line_editor> |
56 | <text name="Photo:"> | 51 | <text name="Photo:"> |
57 | μ¬μ§: | 52 | μ¬μ§: |
58 | </text> | 53 | </text> |
59 | <texture_picker label="" name="img" tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 54 | <texture_picker label="" name="img" tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> |
60 | <text name="Ratings:"> | 55 | <text name="Ratings:"> |
61 | λ±κΈ: | 56 | λ±κΈ: |
62 | </text> | 57 | </text> |
@@ -64,130 +59,136 @@ | |||
64 | κ·Έλ£Ή: | 59 | κ·Έλ£Ή: |
65 | </text> | 60 | </text> |
66 | <text name="About:"> | 61 | <text name="About:"> |
67 | μκ°: | 62 | μ 보: |
68 | </text> | 63 | </text> |
69 | <text name="(500 chars)"> | 64 | <text name="(500 chars)"> |
70 | (500 κΈμ) | 65 | (250μ) |
71 | </text> | 66 | </text> |
72 | <text name="Give item:"> | 67 | <text name="Give item:"> |
73 | μμ΄ν μ 곡: | 68 | μμ΄ν μ£ΌκΈ°: |
74 | </text> | 69 | </text> |
75 | <text name="Give inventory" | 70 | <text name="Give inventory" |
76 | tool_tip="보κ΄ν¨ μμ΄ν μ μ΄ μ¬λμκ² μ£Όλ €λ©΄ μ¬κΈ° λ¨μ΄λ¨λ¦½λλ€."> | 71 | tool_tip="μΈλ²€ν 리 μμ΄ν μ μ¬κΈ°μ λμ μ΄ μ¬λμκ² μ€λλ€."> |
77 | μ μ₯κ³ μμ΄ν μ μ¬κΈ° λλ‘νμμμ€. | 72 | μμ΄ν μ μ¬κΈ° λλ‘νμΈμ. |
78 | </text> | 73 | </text> |
79 | <check_box label="μΉμ κ²μ" name="allow_publish" | 74 | <check_box label="μΉμ κ²μ" name="allow_publish" |
80 | tool_tip="λ΄ νλ‘ν μ 보λ₯Ό μΉμ κ²μ." /> | 75 | tool_tip="λ΄ νλ‘ν μ 보λ₯Ό μΉμ κ²μ." /> |
81 | <button label="?" label_selected="?" name="?" /> | 76 | <button label="?" label_selected="?" name="?" /> |
82 | <button label="μ§λμ νμνκΈ°" label_selected="μ§λμ νμνκΈ°" | 77 | <button label="μ§λμ νμ" label_selected="μ§λμ νμ" name="Show on Map" /> |
83 | name="Show on Map" /> | 78 | <button label="ν λ ν¬νΈ μ 곡.." label_selected="ν λ ν¬νΈ μ 곡.." |
84 | <button label="ν 리ν¬νΈ μ 곡..." label_selected="ν 리ν¬νΈ μ 곡..." | ||
85 | name="Offer Teleport..." /> | 79 | name="Offer Teleport..." /> |
86 | <button label="μ§λΆ..." label_selected="μ§λΆ..." name="Pay..." /> | 80 | <button label="νκ°β¦" label_selected="νκ°β¦" name="Rate..." /> |
87 | <button label="λ©μ μ ..." label_selected="λ©μ μ ..." name="Instant Message..." /> | 81 | <button label="μ§λΆβ¦" label_selected="μ§λΆβ¦" name="Pay..." /> |
88 | <button label="μμκ±°" label_selected="μμκ±°" name="Mute" /> | 82 | <button label="λ©μ μ β¦" label_selected="λ©μ μ β¦" name="Instant Message..." /> |
83 | <button label="μ°¨λ¨" label_selected="μ°¨λ¨" name="Mute" /> | ||
89 | </panel> | 84 | </panel> |
90 | <panel label="μΉ" name="WebProfile"> | 85 | <panel label="μΉ" name="WebProfile"> |
91 | <button label="μ§" label_selected="μ§" name="home" /> | 86 | <button label="ν" label_selected="ν" name="home" /> |
92 | <button label="Load" label_selected="Load" name="load" | 87 | <button label="λΆλ¬μ€κΈ°" label_selected="λΆλ¬μ€κΈ°" name="load" |
93 | tool_tip="Load this profile page with embedded web browser." /> | 88 | tool_tip="μΉ λΈλΌμ°μ λ‘ μ΄ νλ‘ν νμ΄μ§λ₯Ό λ‘λν©λλ€." /> |
94 | <button label="Open..." label_selected="Open..." name="open" | 89 | <button label="μ΄κΈ°β¦" label_selected="μ΄κΈ°β¦" name="open" |
95 | tool_tip="Open this profile page in your default external web browser." /> | 90 | tool_tip="λ΄ κΈ°λ³Έ μΈλΆ μΉ λΈλΌμ°μ μμ μ΄ νλ‘ν νμ΄μ§λ₯Ό μ½λλ€." /> |
96 | <button label="?" label_selected="?" name="web_profile_help" /> | 91 | <button label="?" label_selected="?" name="web_profile_help" /> |
97 | <check_box label="Automatically load web profiles" name="auto_load" | 92 | <check_box label="μΉ νλ‘ν μλμΌλ‘ λΆλ¬μ€κΈ°" name="auto_load" |
98 | tool_tip="Automatically load ALL profile webpages without asking first." /> | 93 | tool_tip="μ¬μ©μμκ² νμΈνμ§ μκ³ μΉ νλ‘νμ μλμΌλ‘ λΆλ¬μ΅λλ€." /> |
99 | <text name="status_text"> | 94 | <text name="status_text"> |
100 | μλ£ | 95 | μλ£ |
101 | </text> | 96 | </text> |
102 | </panel> | 97 | </panel> |
103 | <panel label="κ΄μ¬μ¬ν" name="Interests"> | 98 | <panel label="κ΄μ¬μ¬ν" name="Interests"> |
104 | <text name="I Want To:"> | 99 | <text name="I Want To:"> |
105 | μνλ κ²: | 100 | λ΄ κ΄μ¬μ¬: |
106 | </text> | 101 | </text> |
107 | <check_box label="μ§κΈ°" name="chk0" /> | 102 | <check_box label="λ§λ€κΈ°" name="chk0" /> |
108 | <check_box label="μ΄ν΄λ³΄κΈ°" name="chk1" /> | 103 | <check_box label="νν" name="chk1" /> |
109 | <check_box label="λ§λκΈ°" name="chk2" /> | 104 | <check_box label="λ§λ¨" name="chk2" /> |
110 | <check_box label="μ·¨μ§νλ€" name="chk6" /> | 105 | <check_box label="ꡬμ§" name="chk6" /> |
111 | <check_box label="κ·Έλ£Ή" name="chk3" /> | 106 | <check_box label="κ·Έλ£Ή" name="chk3" /> |
112 | <check_box label="ꡬ맀" name="chk4" /> | 107 | <check_box label="ꡬ맀" name="chk4" /> |
113 | <check_box label="ν맀" name="chk5" /> | 108 | <check_box label="ν맀" name="chk5" /> |
114 | <check_box label="κ³ μ©" name="chk7" /> | 109 | <check_box label="κ³ μ©" name="chk7" /> |
115 | <text name="Skills:"> | 110 | <text name="Skills:"> |
116 | κΈ°μ : | 111 | λ΄ κΈ°μ : |
117 | </text> | 112 | </text> |
118 | <check_box label="ν μ€μ²" name="schk0" /> | 113 | <check_box label="ν μ€μ²" name="schk0" /> |
119 | <check_box label="건μΆ" name="schk1" /> | 114 | <check_box label="건μΆ" name="schk1" /> |
120 | <check_box label="μ΄λ²€νΈ κ³ν" name="schk2" /> | 115 | <check_box label="μ΄λ²€νΈ κ³ν" name="schk2" /> |
121 | <check_box label="λͺ¨λΈλ§" name="schk3" /> | 116 | <check_box label="λͺ¨λΈλ§" name="schk3" /> |
122 | <check_box label="μ€ν¬λ¦½ν " name="schk4" /> | 117 | <check_box label="μ€ν¬λ¦½ν " name="schk4" /> |
123 | <check_box label="λ§μΆ€ μΊλ¦ν°" name="schk5" /> | 118 | <check_box label="μλ°ν κ°λ°" name="schk5" /> |
124 | <text name="Languages:"> | 119 | <text name="Languages:"> |
125 | Languages: | 120 | μΈμ΄: |
126 | </text> | 121 | </text> |
127 | </panel> | 122 | </panel> |
128 | <panel label="κ΄μ¬μ₯μ" name="Picks"> | 123 | <panel label="κ΄μ¬μ₯μ" name="Picks"> |
129 | <text name="Tell everyone about your favorite places in Second Life."> | 124 | <text name="Tell everyone about your favorite places in Second Life."> |
130 | μ¬λλ€νν Second Lifeμμ λ§μμ λλ μ₯μμ λν΄ μκΈ°νμΈμ. | 125 | μΈμ»¨λλΌμ΄νμμ κ°μ₯ μ¦κ²¨μ°Ύλ μ₯μμ λν΄ μλ €μ£Όμμμ€. |
131 | </text> | 126 | </text> |
132 | <button label="μ κ·..." label_selected="μ κ·..." name="New..." /> | 127 | <button label="μ κ·β¦" label_selected="μ κ·β¦" name="New..." /> |
133 | <button label="μμ ..." label_selected="μμ ..." name="Delete..." /> | 128 | <button label="μμ ..." label_selected="μμ ..." name="Delete..." /> |
129 | <text name="loading_text"> | ||
130 | λ‘λ© μ€β¦ | ||
131 | </text> | ||
134 | </panel> | 132 | </panel> |
135 | <panel label="κ΄κ³ " name="Classified"> | 133 | <panel label="κ΄κ³ " name="Classified"> |
136 | <text name="Place an ad in Second Life's classified listings."> | 134 | <text name="Place an ad in Second Life's classified listings."> |
137 | Second Life' κ΄κ³ μ§μ κ΄κ³ λ₯Ό κ²μ¬ν©λλ€. | 135 | μΈμ»¨λλΌμ΄ν κ΄κ³ λͺ©λ‘μ κ΄κ³ λ΄κΈ° |
138 | </text> | 136 | </text> |
139 | <button label="μ κ·..." label_selected="μ κ·..." name="New..." /> | 137 | <button label="μ κ·β¦" label_selected="μ κ·β¦" name="New..." /> |
140 | <button label="μμ ..." label_selected="μμ ..." name="Delete..." /> | 138 | <button label="μμ ..." label_selected="μμ ..." name="Delete..." /> |
139 | <text name="loading_text"> | ||
140 | λ‘λ© μ€β¦ | ||
141 | </text> | ||
141 | </panel> | 142 | </panel> |
142 | <panel label="1st Life" name="1st Life"> | 143 | <panel label="μ€νλΌμΈ" name="1st Life"> |
143 | <text name="Photo:"> | 144 | <text name="Photo:"> |
144 | μ¬μ§: | 145 | μ¬μ§: |
145 | </text> | 146 | </text> |
146 | <texture_picker label="" name="img" tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 147 | <texture_picker label="" name="img" tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> |
147 | <text name="Info:"> | 148 | <text name="Info:"> |
148 | μ 보: | 149 | μ 보 |
149 | </text> | 150 | </text> |
150 | <text name="(250 chars)"> | 151 | <text name="(250 chars)"> |
151 | (250 κΈμ) | 152 | (125μ) |
152 | </text> | 153 | </text> |
153 | </panel> | 154 | </panel> |
154 | <panel label="λμ λ©λͺ¨" name="My Notes"> | 155 | <panel label="λμ λ©λͺ¨" name="My Notes"> |
155 | <text name="label"> | 156 | <text name="label"> |
156 | μ΄ κ³΅κ°μ μ΄μ©ν΄ μ΄ μ¬λμ λν λ ΈνΈλ₯Ό κΈ°λ‘νμμμ€. μ§νμ€μΈ κ±°λ, | 157 | μ΄ κ³΅λμ μ¬μ©νμ¬ μ΄ μ¬λμ κ΄ν μ°Έκ³ μ 보λ₯Ό κΈ°λ‘ν©λλ€. μ§ν μ€μΈ |
157 | 곡λ νλ‘μ νΈ λ±μ μ§ν μν©μ κΈ°λ‘νμμμ€. μ΄ λ ΈνΈλ κ·νλ§ | 158 | κ±°λ, 곡λ νλ‘μ νΈ λ±μ μΆμ ν©λλ€. μ¬μ©μλ μ΄λ¬ν |
158 | λ³΄μ€ μ μμ΅λλ€. μ΄ μ¬λμ΄λ λ€λ₯Έ μ¬λλ€μ λ ΈνΈλ₯Ό λ³Ό μ μμ΅λλ€. | 159 | μ°Έκ³ μ λ³΄λ§ λ³Ό μ μμ΅λλ€. μ΄ μ¬λμ μ°Έκ³ μ 보λ₯Ό λ³Ό μ μμΌλ©° λ€λ₯Έ μ¬λλ€λ λ§μ°¬κ°μ§μ λλ€. |
159 | </text> | 160 | </text> |
160 | </panel> | 161 | </panel> |
161 | </tab_container> | 162 | </tab_container> |
162 | <button label="νμΈ" label_selected="νμΈ" name="OK" /> | 163 | <button label="νμΈ" label_selected="νμΈ" name="OK" /> |
163 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Cancel" /> | 164 | <button label="μ·¨μ" label_selected="μ·¨μ" name="Cancel" /> |
164 | <button label="μ«μλ΄κΈ°" label_selected="μ«μλ΄κΈ°" name="Kick" /> | 165 | <button label="μΆλ°©νκΈ°" label_selected="μΆλ°©νκΈ°" name="Kick" /> |
165 | <button label="λκ²°" label_selected="λκ²°" name="Freeze" | 166 | <button label="μ 체" label_selected="μ 체" name="Freeze" |
166 | tool_tip="μ΄ μ£Όλ―Όμ μμ§μ λ° μ±ν μ€μ§." /> | 167 | tool_tip="μ΄ μ£Όλ―Όμ μμ§μ λ° μ±ν μ€μ§." /> |
167 | <button label="λκ²° ν΄μ " label_selected="λκ²° ν΄μ " name="Unfreeze" | 168 | <button label="κ³ μ ν΄μ " label_selected="κ³ μ ν΄μ " name="Unfreeze" |
168 | tool_tip="μ£Όλ―Ό ν΄λ" /> | 169 | tool_tip="μ£Όλ―Ό ν΄λ" /> |
169 | <button label="CSR" label_selected="CSR" name="csr_btn" | 170 | <button label="CSR" label_selected="CSR" name="csr_btn" |
170 | tool_tip="νμ¬ μ£Όλ―Όμ μν κ³ κ° μλΉμ€ λꡬ μ΄κΈ°" /> | 171 | tool_tip="νμ¬ μ£Όλ―Όμ μν κ³ κ° μλΉμ€ λꡬ μ΄κΈ°" /> |
171 | <text name="ShowOnMapNonFriend"> | 172 | <text name="ShowOnMapNonFriend"> |
172 | μ§λμμ μμΉλ₯Ό νμ. | 173 | μ§λμμ μμΉλ₯Ό νμ. |
173 | μ°μ μ νμ±νμ§ μμκΈ° λλ¬Έμ | 174 | μ°μ μ λ§Ίμ§ μμκΈ° λλ¬Έμ |
174 | λΉνμ±ν λμμ΅λλ€. | 175 | λΉνμ±νλμμ΅λλ€. |
175 | </text> | 176 | </text> |
176 | <text name="ShowOnMapFriendOffline"> | 177 | <text name="ShowOnMapFriendOffline"> |
177 | μ§λμμ μμΉλ₯Ό νμ. | 178 | μ§λμμ μμΉλ₯Ό νμ. |
178 | μ¨λΌμΈ μνκ° μλλ―λ‘ λΉνμ±ν λμμ΅λλ€. | 179 | μ¨λΌμΈ μνκ° μλλ―λ‘ λΉνμ±νλμμ΅λλ€. |
179 | </text> | 180 | </text> |
180 | <text name="ShowOnMapFriendOnline"> | 181 | <text name="ShowOnMapFriendOnline"> |
181 | μ§λμμ μμΉλ₯Ό νμ | 182 | μ§λμμ μμΉλ₯Ό νμ. |
182 | </text> | 183 | </text> |
183 | <text name="TeleportGod"> | 184 | <text name="TeleportGod"> |
184 | νμ¬ μμΉλ‘ ν λ ν¬ν . | 185 | νμ¬ μμΉλ‘ ν λ ν¬νΈ |
185 | </text> | 186 | </text> |
186 | <text name="TeleportPrelude"> | 187 | <text name="TeleportPrelude"> |
187 | νμ¬ μμΉλ‘ ν λ ν¬ν μ μ 곡ν©λλ€. | 188 | λ΄ μμΉλ‘ ν λ ν¬νΈλ₯Ό μ 곡ν©λλ€. |
188 | μ€λ¦¬μν μ΄μ μμΌλλλ₯Ό μ’ λ£ν λκΉμ§ λΉνμ±νλ©λλ€. | 189 | μ€λ¦¬μν μ΄μ μμΌλλλ₯Ό μ’ λ£ν λκΉμ§ λΉνμ±νλ©λλ€. |
189 | </text> | 190 | </text> |
190 | <text name="TeleportNormal"> | 191 | <text name="TeleportNormal"> |
191 | νμ¬ μμΉλ‘ ν λ ν¬ν μ μ 곡ν©λλ€. | 192 | λ΄ μμΉλ‘ ν λ ν¬ν μ μ 곡ν©λλ€. |
192 | </text> | 193 | </text> |
193 | </panel> | 194 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_avatar_classified.xml b/linden/indra/newview/skins/xui/ko/panel_avatar_classified.xml index fcda31e..ca337a7 100644 --- a/linden/indra/newview/skins/xui/ko/panel_avatar_classified.xml +++ b/linden/indra/newview/skins/xui/ko/panel_avatar_classified.xml | |||
@@ -4,22 +4,22 @@ | |||
4 | tool_tip="μ΄λ¦μ λ¬Έμ₯ λΆνΈκ° μλ λ¬Έμ λλ μ«μλ‘ μμλμ΄μΌ ν©λλ€." /> | 4 | tool_tip="μ΄λ¦μ λ¬Έμ₯ λΆνΈκ° μλ λ¬Έμ λλ μ«μλ‘ μμλμ΄μΌ ν©λλ€." /> |
5 | <line_editor name="location_editor" | 5 | <line_editor name="location_editor" |
6 | tool_tip="νμ¬ κ΄κ³ μ λν μμΉλ₯Ό νμ¬ μμΉλ‘ μ€μ ν©λλ€." /> | 6 | tool_tip="νμ¬ κ΄κ³ μ λν μμΉλ₯Ό νμ¬ μμΉλ‘ μ€μ ν©λλ€." /> |
7 | <button label="μ₯μ μ€μ " name="set_location_btn" /> | 7 | <button label="νμμΉ λ±λ‘" name="set_location_btn" /> |
8 | <button label="ν 리ν¬νΈ" name="classified_teleport_btn" /> | 8 | <button label="ν 리ν¬νΈ" name="classified_teleport_btn" /> |
9 | <button label="μ§λ" name="classified_map_btn" /> | 9 | <button label="μ§λ" name="classified_map_btn" /> |
10 | <combo_box label="" name="classified_category_combo" /> | 10 | <combo_box label="" name="classified_category_combo" /> |
11 | <check_box label="μ±μΈμ©" name="classified_mature_check" /> | 11 | <check_box label="μ±μΈμ©" name="classified_mature_check" /> |
12 | <text name="classified_info_text" | 12 | <text name="classified_info_text" |
13 | tool_tip="κ΄κ³ μ λν μ§λΆμ‘μ΄ λμμλ‘ λͺ©λ‘μμ λ μμ νμλ©λλ€."> | 13 | tool_tip="κ΄κ³ μ λν μ§λΆμ‘μ΄ λμμλ‘ λͺ©λ‘μ μμμ νμλ©λλ€."> |
14 | κ²μ¬ κ΄κ³ : κ²μ μμ | 14 | κ²μ¬ κ΄κ³ : κ²μμμ |
15 | </text> | 15 | </text> |
16 | <text name="click_through_text" | 16 | <text name="click_through_text" |
17 | tool_tip="κ΄κ³ κ° κ²μ¬λ μ΄ν κ° λ²νΌμ ν΄λ¦ν μ 체 μ."> | 17 | tool_tip="κ΄κ³ κ° κ²μ¬λ μ΄ν κ° λ²νΌμ ν΄λ¦ν μ 체 μ."> |
18 | ν΄λ¦: | 18 | ν΄λ¦: |
19 | </text> | 19 | </text> |
20 | <button label="κ²μ..." name="classified_update_btn" /> | 20 | <button label="κ²μνκΈ°β¦" name="classified_update_btn" /> |
21 | <check_box label="맀주 μλ κ°±μ " name="auto_renew_check" /> | 21 | <check_box label="맀주 μλ κ°±μ " name="auto_renew_check" /> |
22 | <text name="ad_placed_paid"> | 22 | <text name="ad_placed_paid"> |
23 | κ΄κ³ κ³΅κ³ : [DATE], κ΄κ³ κΈ°μ λ₯Ό μν΄ L$[AMT] μ§λΆ. | 23 | κ²μ¬ κ΄κ³ : [DATE], κ²μ¬ λΉμ© L$[AMT]λ₯Ό μ§λΆνμ΅λλ€. |
24 | </text> | 24 | </text> |
25 | </panel> | 25 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_avatar_pick.xml b/linden/indra/newview/skins/xui/ko/panel_avatar_pick.xml index edca112..89afde4 100644 --- a/linden/indra/newview/skins/xui/ko/panel_avatar_pick.xml +++ b/linden/indra/newview/skins/xui/ko/panel_avatar_pick.xml | |||
@@ -1,10 +1,10 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="Pick" title="μ ν"> | 2 | <panel name="Pick" title="μ ν"> |
3 | <button label="μ₯μ μ€μ " name="set_location_btn" /> | 3 | <button label="νμμΉ λ±λ‘" name="set_location_btn" /> |
4 | <button label="ν 리ν¬νΈ" name="pick_teleport_btn" /> | 4 | <button label="ν 리ν¬νΈ" name="pick_teleport_btn" /> |
5 | <button label="μ§λμ νμνκΈ°" name="pick_map_btn" /> | 5 | <button label="μ§λμ νμ" name="pick_map_btn" /> |
6 | <text name="sort_order_text"> | 6 | <text name="sort_order_text"> |
7 | μ λ ¬: | 7 | λΆλ₯: |
8 | </text> | 8 | </text> |
9 | <check_box label="μΌμ§" name="enabled_check" /> | 9 | <check_box label="νμ±νλ¨" name="enabled_check" /> |
10 | </panel> | 10 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_chat_bar.xml b/linden/indra/newview/skins/xui/ko/panel_chat_bar.xml index b61c498..f494366 100644 --- a/linden/indra/newview/skins/xui/ko/panel_chat_bar.xml +++ b/linden/indra/newview/skins/xui/ko/panel_chat_bar.xml | |||
@@ -1,10 +1,12 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="chat"> | 2 | <panel name="chat"> |
3 | <button label="κΈ°λ‘" label_selected="κΈ°λ‘" name="History" /> | 3 | <button label="κΈ°λ‘" label_selected="κΈ°λ‘" name="History" |
4 | <line_editor name="Chat Editor" | 4 | tool_tip="λν λ΄μ©μ λ³΄λ €λ©΄ μ¬κΈ°λ₯Ό ν΄λ¦νμμμ€." /> |
5 | tool_tip="Enterλ₯Ό λλ¬ λ§νκ³ , Ctrl-Enterλ₯Ό λλ¬ μ리칩λλ€." /> | 5 | <line_editor label="μ±ν νλ €λ©΄ μ¬κΈ°λ₯Ό ν΄λ¦νμμμ€." name="Chat Editor" |
6 | <button label="λ§νκΈ°" label_selected="λ§νκΈ°" name="Say" /> | 6 | tool_tip="Enterλ₯Ό λλ¬ λ§νκ³ , Ctrl-Enterλ₯Ό λλ¬ μΈμΉ©λλ€." /> |
7 | <button label="μ리 μΉκΈ°" label_selected="μ리 μΉκΈ°" name="Shout" /> | 7 | <button label="λ§νκΈ°" label_selected="λ§νκΈ°" name="Say" tool_tip="(Enter ν€)" /> |
8 | <button label="μΈμΉκΈ°" label_selected="μΈμΉκΈ°" name="Shout" | ||
9 | tool_tip="(Ctrl-Enter ν€)" /> | ||
8 | <combo_box label="μ μ€μ²" name="Gesture"> | 10 | <combo_box label="μ μ€μ²" name="Gesture"> |
9 | <combo_item name="Gestures"> | 11 | <combo_item name="Gestures"> |
10 | μ μ€μ² | 12 | μ μ€μ² |
diff --git a/linden/indra/newview/skins/xui/ko/panel_classified.xml b/linden/indra/newview/skins/xui/ko/panel_classified.xml index b432b3d..72b5c03 100644 --- a/linden/indra/newview/skins/xui/ko/panel_classified.xml +++ b/linden/indra/newview/skins/xui/ko/panel_classified.xml | |||
@@ -6,7 +6,7 @@ | |||
6 | tool_tip="νμ¬ κ΄κ³ μ λν μμΉλ₯Ό νμ¬ μμΉλ‘ μ€μ ν©λλ€." /> | 6 | tool_tip="νμ¬ κ΄κ³ μ λν μμΉλ₯Ό νμ¬ μμΉλ‘ μ€μ ν©λλ€." /> |
7 | <button label="μ€μ " name="set_location_btn" /> | 7 | <button label="μ€μ " name="set_location_btn" /> |
8 | <button label="ν 리ν¬νΈ" name="classified_teleport_btn" /> | 8 | <button label="ν 리ν¬νΈ" name="classified_teleport_btn" /> |
9 | <button label="μ§λμ νμνκΈ°" name="classified_map_btn" /> | 9 | <button label="μ§λμ νμ" name="classified_map_btn" /> |
10 | <button label="νλ‘ν" name="classified_profile_btn" /> | 10 | <button label="νλ‘ν" name="classified_profile_btn" /> |
11 | <check_box label="μ±μΈμ©" name="classified_mature_check" /> | 11 | <check_box label="μ±μΈμ©" name="classified_mature_check" /> |
12 | <combo_box label="" name="classified_category_combo" /> | 12 | <combo_box label="" name="classified_category_combo" /> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_event.xml b/linden/indra/newview/skins/xui/ko/panel_event.xml index b2eab19..4e57bec 100644 --- a/linden/indra/newview/skins/xui/ko/panel_event.xml +++ b/linden/indra/newview/skins/xui/ko/panel_event.xml | |||
@@ -13,10 +13,10 @@ | |||
13 | (μμ) | 13 | (μμ) |
14 | </text> | 14 | </text> |
15 | <text name="event_mature_label"> | 15 | <text name="event_mature_label"> |
16 | μ±μΈμ© 컨ν μΈ : | 16 | μ±μΈμ© 컨ν μΈ |
17 | </text> | 17 | </text> |
18 | <text name="event_mature"> | 18 | <text name="event_mature"> |
19 | (μλ €μ§μ§ μμ) | 19 | (μ μ μμ) |
20 | </text> | 20 | </text> |
21 | <text name="event_date_label"> | 21 | <text name="event_date_label"> |
22 | λ μ§: | 22 | λ μ§: |
@@ -31,19 +31,19 @@ | |||
31 | (μμ) | 31 | (μμ) |
32 | </text> | 32 | </text> |
33 | <text name="event_runby_label"> | 33 | <text name="event_runby_label"> |
34 | μ€ν νλ‘κ·Έλ¨: | 34 | μ€νμ: |
35 | </text> | 35 | </text> |
36 | <text name="event_runby"> | 36 | <text name="event_runby"> |
37 | (μμ) | 37 | (μμ) |
38 | </text> | 38 | </text> |
39 | <text name="event_location_label"> | 39 | <text name="event_location_label"> |
40 | μ₯μ: | 40 | μμΉ: |
41 | </text> | 41 | </text> |
42 | <text name="event_location"> | 42 | <text name="event_location"> |
43 | (μμ) | 43 | (μμ) |
44 | </text> | 44 | </text> |
45 | <text name="event_cover_label"> | 45 | <text name="event_cover_label"> |
46 | μ»€λ² λΉμ©: | 46 | μ²λ¦¬ λΉμ©: |
47 | </text> | 47 | </text> |
48 | <text name="event_cover"> | 48 | <text name="event_cover"> |
49 | (μμ) | 49 | (μμ) |
@@ -52,7 +52,7 @@ | |||
52 | μ€λͺ : | 52 | μ€λͺ : |
53 | </text> | 53 | </text> |
54 | <button label="ν 리ν¬νΈ" name="teleport_btn" /> | 54 | <button label="ν 리ν¬νΈ" name="teleport_btn" /> |
55 | <button label="μ§λμ νμνκΈ°" name="map_btn" /> | 55 | <button label="μ§λμ νμ" name="map_btn" /> |
56 | <button label="μλ¦Ό" name="notify_btn" /> | 56 | <button label="μλ €μ£ΌκΈ°" name="notify_btn" /> |
57 | <button label="μ΄λ²€νΈ μμ±..." name="create_event_btn" /> | 57 | <button label="μ΄λ²€νΈ λ§λ€κΈ°..." name="create_event_btn" /> |
58 | </panel> | 58 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_group.xml b/linden/indra/newview/skins/xui/ko/panel_group.xml index 5e6fc76..5957e12 100644 --- a/linden/indra/newview/skins/xui/ko/panel_group.xml +++ b/linden/indra/newview/skins/xui/ko/panel_group.xml | |||
@@ -1,5 +1,5 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="GroupInfo" title="GroupInfo"> | 2 | <panel name="GroupInfo" title="κ·Έλ£Ή μ 보"> |
3 | <text name="default_needs_apply_text"> | 3 | <text name="default_needs_apply_text"> |
4 | νμ¬ νμ μ μ©λμ§ μμ λ³κ²½ μ¬νμ΄ μμ΅λλ€. | 4 | νμ¬ νμ μ μ©λμ§ μμ λ³κ²½ μ¬νμ΄ μμ΅λλ€. |
5 | </text> | 5 | </text> |
@@ -9,6 +9,6 @@ | |||
9 | <button label="μ μ©" label_selected="μ μ©" name="btn_apply" /> | 9 | <button label="μ μ©" label_selected="μ μ©" name="btn_apply" /> |
10 | <button label="μ·¨μ" label_selected="μ·¨μ" name="btn_cancel" /> | 10 | <button label="μ·¨μ" label_selected="μ·¨μ" name="btn_cancel" /> |
11 | <button label="νμΈ" label_selected="νμΈ" name="btn_ok" /> | 11 | <button label="νμΈ" label_selected="νμΈ" name="btn_ok" /> |
12 | <button label="μλ²λ‘λΆν° μλ‘ κ³ μΉ¨" | 12 | <button label="μλ‘ κ³ μΉ¨" label_selected="μλ²λ‘λΆν° μλ‘ κ³ μΉ¨" |
13 | label_selected="μλ²λ‘λΆν° μλ‘ κ³ μΉ¨" name="btn_refresh" /> | 13 | name="btn_refresh" /> |
14 | </panel> | 14 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_group_finder.xml b/linden/indra/newview/skins/xui/ko/panel_group_finder.xml index 1f86588..68ed91b 100644 --- a/linden/indra/newview/skins/xui/ko/panel_group_finder.xml +++ b/linden/indra/newview/skins/xui/ko/panel_group_finder.xml | |||
@@ -1,5 +1,5 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="GroupInfoFinder" title="GroupInfoFinder"> | 2 | <panel name="GroupInfoFinder" title="κ·Έλ£Ή μ 보 μ°ΎκΈ°"> |
3 | <text name="default_needs_apply_text"> | 3 | <text name="default_needs_apply_text"> |
4 | νμ¬ νμ μ μ©λμ§ μμ λ³κ²½ μ¬νμ΄ μμ΅λλ€. | 4 | νμ¬ νμ μ μ©λμ§ μμ λ³κ²½ μ¬νμ΄ μμ΅λλ€. |
5 | </text> | 5 | </text> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_group_general.xml b/linden/indra/newview/skins/xui/ko/panel_group_general.xml index 0fe05b6..d427ddb 100644 --- a/linden/indra/newview/skins/xui/ko/panel_group_general.xml +++ b/linden/indra/newview/skins/xui/ko/panel_group_general.xml | |||
@@ -1,9 +1,11 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="μΌλ°μ¬ν" name="general_tab"> | 2 | <panel label="μΌλ°" name="general_tab"> |
3 | <text name="help_text"> | 3 | <text name="help_text"> |
4 | μΌλ° νμλ λ³Έ κ·Έλ£Ή, μμ μ£Ό λ° κ°μκΆλ΄ λ©€λ², μΌλ° κ·Έλ£Ή νκ²½ μ€μ , λ©€λ² μ΅μ λ±μ λν μΌλ°μ μΈ μ λ³΄κ° ν¬ν¨λμ΄ μμ΅λλ€. | 4 | μΌλ° νμλ λ³Έ κ·Έλ£Ή, μμ μ£Ό λ° κ°μκΆλ΄ νμ, μΌλ° |
5 | κ·Έλ£Ή νκ²½ μ€μ , νμ μ΅μ λ±μ λν | ||
6 | μΌλ°μ μΈ μ λ³΄κ° ν¬ν¨λμ΄ μμ΅λλ€. | ||
5 | 7 | ||
6 | μμΈν λμλ§μ λ§μ°μ€λ₯Ό μ΅μ μλ‘ κ°μ Έκ°λ©΄ νμλ¨λλ€ | 8 | λ§μ°μ€λ₯Ό μ΅μ μλ‘ κ°μ Έκ°λ©΄ μμΈν λμλ§μ΄ νμλ©λλ€. |
7 | </text> | 9 | </text> |
8 | <button label="?" label_selected="?" name="help_button" /> | 10 | <button label="?" label_selected="?" name="help_button" /> |
9 | <line_editor name="group_name_editor"> | 11 | <line_editor name="group_name_editor"> |
@@ -16,23 +18,23 @@ | |||
16 | μ€λ¦½μ | 18 | μ€λ¦½μ |
17 | </text> | 19 | </text> |
18 | <text name="founder_name"> | 20 | <text name="founder_name"> |
19 | (λκΈ°) | 21 | (λκΈ° μ€) |
20 | </text> | 22 | </text> |
21 | <text name="group_charter_label"> | 23 | <text name="group_charter_label"> |
22 | κ·Έλ£Ή μ€λ¦½ μ‘°ν | 24 | κ·Έλ£Ή μ€λ¦½ μ‘°ν |
23 | </text> | 25 | </text> |
24 | <texture_picker label="κ·Έλ£Ή νμ₯" name="insignia" | 26 | <texture_picker label="λ‘κ³ " name="insignia" |
25 | tool_tip="ν΄λ¦ν΄ κ·Έλ¦Όμ μ ννμμμ€" /> | 27 | tool_tip="κ·Έλ¦Όμ μ ννλ €λ©΄ ν΄λ¦ νμμμ€." /> |
26 | <text_editor name="charter"> | 28 | <text_editor name="charter"> |
27 | κ·Έλ£Ή μ€λ¦½ μ‘°ν | 29 | κ·Έλ£Ή μ€λ¦½ μ‘°ν |
28 | </text_editor> | 30 | </text_editor> |
29 | <button label="κ²°ν©(L$0)" label_selected="κ²°ν©(L$0)" name="join_button" /> | 31 | <button label="κ°μ (L$0)" label_selected="κ°μ (L$0)" name="join_button" /> |
30 | <button label="μμΈ λ³΄κΈ°" label_selected="μμΈ λ³΄κΈ°" name="info_button" /> | 32 | <button label="μμΈ λ³΄κΈ°" label_selected="μμΈ λ³΄κΈ°" name="info_button" /> |
31 | <text> | 33 | <text> |
32 | μμ μ£Ό λ° κ°μκΆλ΄ λ©€λ² | 34 | μμ μ λ° κ°μκΆ λ΄ νμ |
33 | </text> | 35 | </text> |
34 | <text> | 36 | <text> |
35 | (μμ μλ κ΅΅μ κΈμ¨λ‘ νμ) | 37 | (μμ μ£Όλ κ΅΅μ κΈμ¨λ‘ νμ) |
36 | </text> | 38 | </text> |
37 | <name_list name="visible_members"> | 39 | <name_list name="visible_members"> |
38 | <column label="Member Name" name="name" /> | 40 | <column label="Member Name" name="name" /> |
@@ -40,36 +42,36 @@ | |||
40 | <column label="Last Login" name="online" /> | 42 | <column label="Last Login" name="online" /> |
41 | </name_list> | 43 | </name_list> |
42 | <text name="incomplete_member_data_str"> | 44 | <text name="incomplete_member_data_str"> |
43 | λ©€λ² λ°μ΄ν°λ₯Ό κ°μ Έμ€λ μ€ | 45 | νμ λ°μ΄ν°λ₯Ό κ°μ Έμ€λ μ€ |
44 | </text> | 46 | </text> |
45 | <text name="confirm_group_create_str"> | 47 | <text name="confirm_group_create_str"> |
46 | μ΄ κ·Έλ£Ήμ μμ±νλ λ°λ L$100μ λΉμ©μ΄ λλλ€. | 48 | μ΄ κ·Έλ£Ήμ μμ±νλ €λ©΄ L$100κ° λλλ€. |
47 | κ·Έλ£Ή λ³κ²½μ L$100λ₯Ό μ§λΆν μμ¬κ° μμ΅λκΉ? | 49 | μ΄ κ·Έλ£Ήμ λ§λλ λ° L$100λ₯Ό μ§λΆν μμ¬κ° μλμ§ μ μκ°ν΄ 보μμμ€. |
48 | </text> | 50 | </text> |
49 | <text> | 51 | <text> |
50 | κ·Έλ£Ή νκ²½ μ€μ | 52 | κ·Έλ£Ή νκ²½ μ€μ |
51 | </text> | 53 | </text> |
52 | <panel name="preferences_container"> | 54 | <panel name="preferences_container"> |
53 | <check_box label="κ·Έλ£Ή λͺ©λ‘μ νμνκΈ°" name="show_in_group_list" | 55 | <check_box label="κ·Έλ£Ή λͺ©λ‘μ νμνκΈ°" name="show_in_group_list" |
54 | tool_tip="Sets whether this group shows up in the Search Groups window and in member profiles." /> | 56 | tool_tip="κ·Έλ£Ή κ²μ μ°½κ³Ό νμ νλ‘νμΌμ μ΄ κ·Έλ£Ήμ νμν μ§ μ¬λΆλ₯Ό μ€μ ν©λλ€." /> |
55 | <check_box label="μΉμ κ²μ" name="publish_on_web" | 57 | <check_box label="μΉμ κ²μ" name="publish_on_web" |
56 | tool_tip="λ³Έ κ·Έλ£Ήμ μ 보λ₯Ό μΉμ κ²μν μ μμμ§ μ€μ ν©λλ€." /> | 58 | tool_tip="κ·Έλ£Ήμ μ 보λ₯Ό μΉμ κ²μν μ μμμ§ μ¬λΆλ₯Ό μ€μ ν©λλ€." /> |
57 | <check_box label="λ±λ‘ μ΄κΈ°" name="open_enrollement" | 59 | <check_box label="μμ κ°μ " name="open_enrollement" |
58 | tool_tip="Sets whether this group allows new members to join without being invited." /> | 60 | tool_tip="μλ‘μ΄ νμμ΄ μ΄λ λ°μ§ μκ³ λ κ°μ μ νμ©ν μ§ μ¬λΆλ₯Ό μ€μ ν©λλ€." /> |
59 | <check_box label="μ μ² μμλ£: L$"" name="check_enrollment_fee" | 61 | <check_box label="κ°μ λΉ: L$" name="check_enrollment_fee" |
60 | tool_tip="κ·Έλ£Ήμ κ°μ νλ €λ©΄ κ°μ μμλ£λ₯Ό λ΄μΌνλμ§ μ€μ ν©λλ€." /> | 62 | tool_tip="κ·Έλ£Ήμ κ°μ νκΈ° μν΄ κ°μ μμλ£λ₯Ό λ΄μΌ νλμ§ μ¬λΆλ₯Ό μ€μ ν©λλ€." /> |
61 | <spinner name="spin_enrollment_fee" | 63 | <spinner name="spin_enrollment_fee" |
62 | tool_tip="New members must pay this fee to join the group when Enrollment Fee is checked." /> | 64 | tool_tip="μ μ² μμλ£λ₯Ό μ νν κ²½μ° κ·Έλ£Ήμ μ°Έμ¬νλ €λ©΄ μλ‘μ΄ νμμ μ΄ μμλ£λ₯Ό μ§λΆν΄μΌ ν©λλ€." /> |
63 | <check_box label="μ±μΈμ©" name="mature" | 65 | <check_box label="μ±μΈ κ·Έλ£Ή" name="mature" |
64 | tool_tip="κ·Έλ£Ή μ 보λ₯Ό μ±μΈμ©μΌλ‘ κ°μ£Όν μ§λ₯Ό μ€μ ν©λλ€." /> | 66 | tool_tip="κ·Έλ£Ή μ 보λ₯Ό μ±μΈ μ μ©μΌλ‘ κ°μ£Όν μ§λ₯Ό μ¬λΆλ₯Ό μ€μ ν©λλ€." /> |
65 | <panel name="title_container"> | 67 | <panel name="title_container"> |
66 | <text name="active_title_label"> | 68 | <text name="active_title_label"> |
67 | λ΄ νμ± νμ΄ν | 69 | 보μ¬μ§ νμ΄ν |
68 | </text> | 70 | </text> |
69 | <combo_box name="active_title" | 71 | <combo_box name="active_title" |
70 | tool_tip="Sets the title that appears in your avatar's name tag when this group is active." /> | 72 | tool_tip="Sets the title that appears in your avatar's name tag when this group is active." /> |
71 | </panel> | 73 | </panel> |
72 | <check_box label="κ·Έλ£Ή ν΅μ§ μλ Ή" name="receive_notices" | 74 | <check_box label="κ·Έλ£Ή κ³΅μ§ μλ Ή" name="receive_notices" |
73 | tool_tip="Sets whether you want to receive Notices from this group. Uncheck this box if this group is spamming you." /> | 75 | tool_tip="κ·Έλ£ΉμΌλ‘λΆν° 곡μ§λ₯Ό μμ ν μ§λ₯Ό μ¬λΆλ₯Ό μ€μ ν©λλ€. λ³Έ κ·Έλ£Ήμ΄ μ€νΈ λ©μΌμ λ³΄λΌ κ²½μ° μ΄ μμλ₯Ό μ ν ν΄μ ν©λλ€." /> |
74 | </panel> | 76 | </panel> |
75 | </panel> | 77 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_group_invite.xml b/linden/indra/newview/skins/xui/ko/panel_group_invite.xml index 1796be7..47a39f7 100644 --- a/linden/indra/newview/skins/xui/ko/panel_group_invite.xml +++ b/linden/indra/newview/skins/xui/ko/panel_group_invite.xml | |||
@@ -1,20 +1,20 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="λ§΄λ² μ΄λ" name="invite_panel"> | 2 | <panel label="νμ μ΄λ" name="invite_panel"> |
3 | <text> | 3 | <text> |
4 | κ·νμ κ·Έλ£Ήμ μ΄λν | 4 | μ¬λ¬ μ£Όλ―Όμ μ ννμ¬ |
5 | μ£Όλ―Όμ μ¬λ¬λͺ μ νν μ μμ΅λλ€. 'μ¬λ | 5 | κ·Έλ£Ήμ μ΄λν μ μμ΅λλ€. 'μ£Όλ―Ό |
6 | μ νκΈ° μ΄κΈ°'λ₯Ό ν΄λ¦νμ¬ μμν©λλ€. | 6 | μ νκΈ° μ΄κΈ°'λ₯Ό ν΄λ¦νμ¬ μμν©λλ€. |
7 | </text> | 7 | </text> |
8 | <button label="μ¬λ μ νκΈ° μ΄κΈ°" name="add_button" tool_tip="" /> | 8 | <button label="μ¬λ μ νκΈ° μ΄κΈ°" name="add_button" tool_tip="" /> |
9 | <name_list name="invitee_list" | 9 | <name_list name="invitee_list" |
10 | tool_tip="Hold the Ctrl key and click resident names to multi-select." /> | 10 | tool_tip="μ¬λ¬ λͺ μ μ ννκΈ° μν΄μλ Ctrl ν€λ₯Ό λλ₯΄κ³ μ΄λ¦μ ν΄λ¦νλ©΄ λ©λλ€." /> |
11 | <button label="λͺ©λ‘μμ μ ν μμ΄ν μ κ±°" name="remove_button" | 11 | <button label="λͺ©λ‘μμ μ ν μ€λΈμ νΈ μ κ±°" name="remove_button" |
12 | tool_tip="μμμ μ νν μ£Όλ―Όμ μ΄μ² λͺ©λ‘μμ μμ ν©λλ€." /> | 12 | tool_tip="μμμ μ νν μ£Όλ―Όμ μ΄λ λͺ©λ‘μμ μ κ±°ν©λλ€." /> |
13 | <text> | 13 | <text> |
14 | ν λΉν μν μ μ ννμμμ€: | 14 | ν λΉν μν μ μ ν νμμμ€: |
15 | </text> | 15 | </text> |
16 | <combo_box name="role_name" | 16 | <combo_box name="role_name" |
17 | tool_tip="Choose from the list of Roles you are allowed to assign members to." /> | 17 | tool_tip="Choose from the list of Roles you are allowed to assign members to." /> |
18 | <button label="μ΄μ²μ₯ μ μ‘" name="ok_button" /> | 18 | <button label="μ΄λμ₯ μ μ‘" name="ok_button" /> |
19 | <button label="μ·¨μ" name="cancel_button" /> | 19 | <button label="μ·¨μ" name="cancel_button" /> |
20 | </panel> | 20 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_group_land_money.xml b/linden/indra/newview/skins/xui/ko/panel_group_land_money.xml index 0a0e86c..77f9301 100644 --- a/linden/indra/newview/skins/xui/ko/panel_group_land_money.xml +++ b/linden/indra/newview/skins/xui/ko/panel_group_land_money.xml | |||
@@ -1,11 +1,10 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="ν μ§ &λ¦°λ λ¬λ¬" name="land_money_tab"> | 2 | <panel label="ν μ§ & L$" name="land_money_tab"> |
3 | <text name="help_text"> | 3 | <text name="help_text"> |
4 | κ·Έλ£Ήμ΄ μμ ν ꡬνμ΄ κΈ°μ¬ μΈλΆ μ¬νκ³Ό ν¨κ» | 4 | κ·Έλ£Ήμ΄ μμ ν ꡬνμ΄ κΈ°μ¬ μΈλΆμ¬νκ³Ό ν¨κ» μ΄κ±°λ©λλ€. μ΄ μ¬μ© ν μ§κ° μ΄ κΈ°μ¬λ³΄λ€ |
5 | μ΄κ±°λ©λλ€. μ΄ μ¬μ© ν μ§κ° μ΄ κΈ°μ¬λ³΄λ€ | 5 | μκ±°λ κ°μΌλ©΄ κ²½κ³ κ° |
6 | μκ±°λ κ°μΌλ©΄ κ²½κ³ κ° | 6 | νμλ©λλ€.κΈ°ν, μΈλΆ μ¬ν λ° λ§€λ§€ νμ |
7 | νμλ©λλ€. κΈ°ν, μΈλΆ μ¬ν λ° λ§€λ§€ νμ | 7 | κ·Έλ£Ήμ μ¬μ μ λν μ 보λ₯Ό μ 곡ν©λλ€. |
8 | κ·Έλ£Ήμ μ¬μ μ λν μ 보λ₯Ό μ 곡ν©λλ€. | ||
9 | </text> | 8 | </text> |
10 | <button label="?" name="help_button" /> | 9 | <button label="?" name="help_button" /> |
11 | <text name="cant_view_group_land_text"> | 10 | <text name="cant_view_group_land_text"> |
@@ -23,43 +22,42 @@ | |||
23 | <column label="Area" name="area" /> | 22 | <column label="Area" name="area" /> |
24 | <column label="" name="hidden" /> | 23 | <column label="" name="hidden" /> |
25 | </scroll_list> | 24 | </scroll_list> |
26 | <button label="μ§λμ νμνκΈ°" label_selected="μ§λμ νμνκΈ°" | 25 | <button label="μ§λμ νμ" label_selected="μ§λμ νμ" name="map_button" /> |
27 | name="map_button" /> | ||
28 | <text name="total_contributed_land_label"> | 26 | <text name="total_contributed_land_label"> |
29 | μ΄ κΈ°μ¬: | 27 | μ΄ κΈ°μ¬: |
30 | </text> | 28 | </text> |
31 | <text name="total_contributed_land_value"> | 29 | <text name="total_contributed_land_value"> |
32 | 0 νλ°© λ―Έν° | 30 | 0 μ κ³±λ―Έν° |
33 | </text> | 31 | </text> |
34 | <text name="total_land_in_use_label"> | 32 | <text name="total_land_in_use_label"> |
35 | μ¬μ©μ€μΈ μ΄ ν μ§: | 33 | μ¬μ© μ€μΈ ν μ§: |
36 | </text> | 34 | </text> |
37 | <text name="total_land_in_use_value"> | 35 | <text name="total_land_in_use_value"> |
38 | 0 νλ°© λ―Έν° | 36 | 0 μ κ³±λ―Έν° |
39 | </text> | 37 | </text> |
40 | <text name="land_available_label"> | 38 | <text name="land_available_label"> |
41 | κ°μ© ν μ§: | 39 | λ―Έμ¬μ©μ€μΈ ν μ§: |
42 | </text> | 40 | </text> |
43 | <text name="land_available_value"> | 41 | <text name="land_available_value"> |
44 | 0 νλ°© λ―Έν° | 42 | 0 μ κ³±λ―Έν° |
45 | </text> | 43 | </text> |
46 | <text name="your_contribution_label"> | 44 | <text name="your_contribution_label"> |
47 | κ·νμ κΈ°μ¬: | 45 | κΈ°μ¬: |
48 | </text> | 46 | </text> |
49 | <text name="your_contribution_max_value_append"> | 47 | <text name="your_contribution_max_value_append"> |
50 | νλ°© λ―Έν° | 48 | νλ°© λ―Έν° |
51 | </text> | 49 | </text> |
52 | <text name="your_contribution_max_value"> | 50 | <text name="your_contribution_max_value"> |
53 | (λκΈ°) | 51 | (λκΈ° μ€) |
54 | </text> | 52 | </text> |
55 | <text name="group_over_limit_text"> | 53 | <text name="group_over_limit_text"> |
56 | κ·Έλ£Ή λ©€λ²λ μ¬μ© μ€μΈ ν μ§λ₯Ό μ§μνκΈ° μν΄ λ λ§μ ν μ§ μ μ©μ κΈ°μ¬ν΄μΌ ν©λλ€. | 54 | κ·Έλ£Ή νμμ μ¬μ© μ€μΈ ν μ§λ₯Ό μ§μνκΈ° μν΄ λ λ§μ ν μ§ μ μ©μ κΈ°μ¬ν΄μΌ ν©λλ€. |
57 | </text> | 55 | </text> |
58 | <text name="group_money_heading"> | 56 | <text name="group_money_heading"> |
59 | κ·Έλ£Ή L$ | 57 | κ·Έλ£Ή λ¦°λ λ¬λ¬(L$) |
60 | </text> | 58 | </text> |
61 | <tab_container name="group_money_tab_container"> | 59 | <tab_container name="group_money_tab_container"> |
62 | <panel label="Planning" name="group_money_planning_tab"> | 60 | <panel label="λ³΄κ³ μ" name="group_money_planning_tab"> |
63 | <text_editor name="group_money_planning_text"> | 61 | <text_editor name="group_money_planning_text"> |
64 | μ»΄ν¨ν ... | 62 | μ»΄ν¨ν ... |
65 | </text_editor> | 63 | </text_editor> |
@@ -70,17 +68,17 @@ | |||
70 | </text_editor> | 68 | </text_editor> |
71 | <button label="< μ΄μ " label_selected="< μ΄μ " name="earlier_details_button" | 69 | <button label="< μ΄μ " label_selected="< μ΄μ " name="earlier_details_button" |
72 | tool_tip="μκ°μ κ±°μ¬λ¬ κ°λλ€" /> | 70 | tool_tip="μκ°μ κ±°μ¬λ¬ κ°λλ€" /> |
73 | <button label="λμ€μ >" label_selected="λμ€μ >" | 71 | <button label="λμ€μ>" label_selected="λμ€μ>" |
74 | name="later_details_button" tool_tip="μκ°μ μμ κ°λλ€" /> | 72 | name="later_details_button" tool_tip="μκ°μ μμ κ°λλ€" /> |
75 | </panel> | 73 | </panel> |
76 | <panel label="ν맀" name="group_money_sales_tab"> | 74 | <panel label="ν맀λ΄μ" name="group_money_sales_tab"> |
77 | <text_editor name="group_money_sales_text"> | 75 | <text_editor name="group_money_sales_text"> |
78 | μ»΄ν¨ν ... | 76 | μ»΄ν¨ν ... |
79 | </text_editor> | 77 | </text_editor> |
80 | <button label="< μ΄μ " label_selected="< μ΄μ " name="earlier_sales_button" | 78 | <button label="< μ΄μ " label_selected="< μ΄μ " name="earlier_sales_button" |
81 | tool_tip="μκ°μ κ±°μ¬λ¬ κ°λλ€" /> | 79 | tool_tip="μκ°μ κ±°μ¬λ¬ κ°λλ€" /> |
82 | <button label="λμ€μ >" label_selected="λμ€μ >" | 80 | <button label="λμ€μ>" label_selected="λμ€μ>" name="later_sales_button" |
83 | name="later_sales_button" tool_tip="μκ°μ μμ κ°λλ€" /> | 81 | tool_tip="μκ°μ μμ κ°λλ€" /> |
84 | </panel> | 82 | </panel> |
85 | </tab_container> | 83 | </tab_container> |
86 | </panel> | 84 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_group_notices.xml b/linden/indra/newview/skins/xui/ko/panel_group_notices.xml index 10ff12f..9682eea 100644 --- a/linden/indra/newview/skins/xui/ko/panel_group_notices.xml +++ b/linden/indra/newview/skins/xui/ko/panel_group_notices.xml | |||
@@ -1,22 +1,23 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="곡μ§" name="notices_tab"> | 2 | <panel label="곡μ§" name="notices_tab"> |
3 | <text name="help_text"> | 3 | <text name="help_text"> |
4 | 곡μ§λ λ©μμ§λ₯Ό λ°©μ‘νκ±°λ 첨λΆν μμ΄ν μ μ μ‘νμ¬ κ·Έλ£Ή μ¬μ΄μμ μμ¬μν΅μ 빨리 | 4 | 곡μ§λ λ©μμ§λ₯Ό λ°©μ‘νκ±°λ 첨λΆν μμ΄ν μ μ μ‘νμ¬ |
5 | ν μ μλ λ°©λ²μ λλ€. 곡μ§λ 곡μ§λ₯Ό | 5 | κ·Έλ£Ή μ¬μ΄μμ μμ¬μν΅μ 빨리 |
6 | λ°μ μ μλ μν μ κ°μ§ κ·Έλ£Ή λ©€λ²μκ²λ§ | 6 | ν μ μλ λ°©λ²μ λλ€.곡μ§λ |
7 | μ μ‘λ¨λλ€. μΌλ° νμμ | 7 | 곡μ§λ₯Ό λ°μ μ μλ μν μ κ°μ§ κ·Έλ£Ή νμμκ²λ§ |
8 | 곡μ§λ₯Ό λ μ μμ΅λλ€. | 8 | μ μ‘λ©λλ€.μΌλ° νμμ |
9 | 곡μ§λ₯Ό λ μ μμ΅λλ€. | ||
9 | </text> | 10 | </text> |
10 | <text name="no_notices_text"> | 11 | <text name="no_notices_text"> |
11 | κ³Όκ±° 곡μ§κ° μμ΅λλ€. | 12 | κ³Όκ±° 곡μ§κ° μμ΅λλ€. |
12 | </text> | 13 | </text> |
13 | <button label="?" label_selected="?" name="help_button" /> | 14 | <button label="?" label_selected="?" name="help_button" /> |
14 | <text name="lbl"> | 15 | <text name="lbl"> |
15 | κ·Έλ£Ή κ³΅μ§ μμΉ΄μ΄λΈ | 16 | κ·Έλ£Ή κ³΅μ§ |
16 | </text> | 17 | </text> |
17 | <text name="lbl2"> | 18 | <text name="lbl2"> |
18 | 곡μ§λ 30μΌ λμ 보κ΄λ©λλ€. λ³΄λ €λ 곡μ§λ₯Ό λ€μμμ ν΄λ¦νμμμ€. | 19 | 곡μ§λ 30μΌ λμ 보κ΄λ©λλ€. λ³΄λ €λ 곡μ§λ₯Ό λ€μμμ ν΄λ¦νμμμ€. |
19 | μλ‘μ΄ κ³΅μ§λ₯Ό μλ Ήν κ²½μ° 'λͺ©λ‘ μλ‘κ³ μΉ¨' λ²νΌμ ν΄λ¦νμμμ€. | 20 | μλ‘μ΄ κ³΅μ§λ₯Ό μλ Ήν κ²½μ° 'μλ‘κ³ μΉ¨' λ²νΌμ ν΄λ¦νμμμ€. |
20 | </text> | 21 | </text> |
21 | <scroll_list name="notice_list"> | 22 | <scroll_list name="notice_list"> |
22 | <column label="" name="icon" /> | 23 | <column label="" name="icon" /> |
@@ -25,51 +26,50 @@ | |||
25 | <column label="Date" name="date" /> | 26 | <column label="Date" name="date" /> |
26 | </scroll_list> | 27 | </scroll_list> |
27 | <text name="notice_list_none_found"> | 28 | <text name="notice_list_none_found"> |
28 | μ°Ύμ κ²μ΄ μμ΅λλ€. | 29 | λ°κ²¬λμ§ μμ. |
29 | </text> | 30 | </text> |
30 | <button label="μ κ³΅μ§ μμ±" label_selected="μ κ³΅μ§ μμ±" | 31 | <button label="μ κ³΅μ§ λ§λ€κΈ°" label_selected="μ κ³΅μ§ λ§λ€κΈ°" |
31 | name="create_new_notice" /> | 32 | name="create_new_notice" /> |
32 | <button label="λͺ©λ‘ μλ‘ κ³ μΉ¨" label_selected="λͺ©λ‘ μλ‘ κ³ μΉ¨" | 33 | <button label="μλ‘ κ³ μΉ¨" label_selected="λͺ©λ‘ μλ‘ κ³ μΉ¨" |
33 | name="refresh_notices" /> | 34 | name="refresh_notices" /> |
34 | <panel label="μ κ³΅μ§ μμ±" name="panel_create_new_notice"> | 35 | <panel label="μ κ³΅μ§ λ§λ€κΈ°" name="panel_create_new_notice"> |
35 | <text name="lbl"> | 36 | <text name="lbl"> |
36 | κ³΅μ§ μμ± | 37 | κ³΅μ§ λ§λ€κΈ° |
37 | </text> | 38 | </text> |
38 | <text name="lbl2"> | 39 | <text name="lbl2"> |
39 | 곡μ§λ₯Ό μ μ‘νλ €λ©΄ μ λͺ©μ μ λ ₯ν΄μΌ ν©λλ€. μμ΄ν μ 보κ΄ν¨μμ | 40 | 곡μ§λ₯Ό μ μ‘νλ €λ©΄ μ λͺ©μ μ λ ₯ν΄μΌ ν©λλ€. μΈλ²€ν 리μμ μ΄ μ°½μΌλ‘ |
40 | μ΄ ν¨λκΉμ§ λμ΄μ ν΅μ§μ | 41 | μμ΄ν μ λλκ·Ένμ¬ κ³΅μ§ μμ±μ°½μ λ¨μΌ μμ΄ν μ 첨λΆν μ |
41 | μΆκ°ν μ μμ΅λλ€. 첨λΆν μμ΄ν μ λ³΅μ¬ λ° μ μ‘μ΄ κ°λ₯ν΄μΌ νλ©°, | 42 | μμ΅λλ€. 첨λΆν μμ΄ν μ λ³΅μ¬ λ° μ μ‘ν μ μμ§λ§ |
42 | ν΄λλ₯Ό μ μ‘ν μλ μμ΅λλ€. | 43 | μ 체 ν΄λλ₯Ό μ μ‘ν μλ μμ΅λλ€. |
43 | </text> | 44 | </text> |
44 | <text name="lbl3"> | 45 | <text name="lbl3"> |
45 | μ£Όμ : | 46 | μ λͺ©: |
46 | </text> | 47 | </text> |
47 | <text name="lbl4"> | 48 | <text name="lbl4"> |
48 | λ©μμ§: | 49 | λ©μμ§: |
49 | </text> | 50 | </text> |
50 | <text name="lbl5"> | 51 | <text name="lbl5"> |
51 | 첨λΆ: | 52 | μ°©μ©: |
52 | </text> | 53 | </text> |
53 | <button label="λΆμ°©λ¬Ό μμ " label_selected="λΆμ°©λ¬Ό μμ " | 54 | <button label="μ°©μ©λ¬Ό μμ " label_selected="μ°©μ©λ¬Ό μμ " |
54 | name="remove_attachment" /> | 55 | name="remove_attachment" /> |
55 | <button label="κ³΅μ§ μ μ‘" label_selected="κ³΅μ§ μ μ‘" name="send_notice" /> | 56 | <button label="κ³΅μ§ μ μ‘" label_selected="κ³΅μ§ μ μ‘" name="send_notice" /> |
56 | <panel name="drop_target2" | 57 | <panel name="drop_target" |
57 | tool_tip="Drag an inventory item onto the message box to send it with the notice. You must have permission to copy and transfer the object to send it with the notice." /> | 58 | tool_tip="Drag an inventory item onto the message box to send it with the notice. You must have permission to copy and transfer the object to send it with the notice." /> |
58 | </panel> | 59 | </panel> |
59 | <panel label="μ§λ ν΅λ³΄ 보기" name="panel_view_past_notice"> | 60 | <panel label="κ³Όκ±° κ³΅μ§ λ³΄κΈ°" name="panel_view_past_notice"> |
60 | <text name="lbl"> | 61 | <text name="lbl"> |
61 | 보κ΄λ κ³΅μ§ | 62 | κ³΅μ§ λ³΄κ΄ν¨ |
62 | </text> | 63 | </text> |
63 | <text name="lbl2"> | 64 | <text name="lbl2"> |
64 | μλ‘μ΄ κ³΅μ§λ₯Ό μ μ‘νλ €λ©΄ μμ 'μ κ³΅μ§ μμ±' λ²νΌμ ν΄λ¦νμμμ€. | 65 | μλ‘μ΄ κ³΅μ§λ₯Ό μ μ‘νλ €λ©΄ μμ 'μ κ³΅μ§ λ§λ€κΈ°' λ²νΌμ ν΄λ¦νμμμ€. |
65 | </text> | 66 | </text> |
66 | <text name="lbl3"> | 67 | <text name="lbl3"> |
67 | μ£Όμ : | 68 | μ λͺ©: |
68 | </text> | 69 | </text> |
69 | <text name="lbl4"> | 70 | <text name="lbl4"> |
70 | λ©μμ§: | 71 | λ©μμ§: |
71 | </text> | 72 | </text> |
72 | <button label="λΆμ°©λ¬Ό μ΄κΈ°" label_selected="λΆμ°©λ¬Ό μ΄κΈ°" | 73 | <button label="μ²¨λΆ μ΄κΈ°" label_selected="μ²¨λΆ μ΄κΈ°" name="open_attachment" /> |
73 | name="open_attachment" /> | ||
74 | </panel> | 74 | </panel> |
75 | </panel> | 75 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_group_roles.xml b/linden/indra/newview/skins/xui/ko/panel_group_roles.xml index 74db0e2..0a9070a 100644 --- a/linden/indra/newview/skins/xui/ko/panel_group_roles.xml +++ b/linden/indra/newview/skins/xui/ko/panel_group_roles.xml | |||
@@ -1,5 +1,5 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="λ©€λ² λ° μν " name="roles_tab"> | 2 | <panel label="νμ λ° μν " name="roles_tab"> |
3 | <text name="default_needs_apply_text"> | 3 | <text name="default_needs_apply_text"> |
4 | νμ¬ νμ νμ μ μ©λμ§ μμ λ³κ²½ μ¬νμ΄ μμ΅λλ€. | 4 | νμ¬ νμ νμ μ μ©λμ§ μμ λ³κ²½ μ¬νμ΄ μμ΅λλ€. |
5 | </text> | 5 | </text> |
@@ -12,10 +12,11 @@ | |||
12 | <button label="?" name="help_button" /> | 12 | <button label="?" name="help_button" /> |
13 | <panel name="members_header"> | 13 | <panel name="members_header"> |
14 | <text name="static"> | 14 | <text name="static"> |
15 | λ©€λ² λ° μν | 15 | νμ λ° μν |
16 | </text> | 16 | </text> |
17 | <text name="static2"> | 17 | <text name="static2"> |
18 | κ·Έλ£Ή λ©€λ²μκ² λ₯λ ₯κ³Ό μν μ΄ ν λΉλμμ΅λλ€. μ΄ μ€μ μ λ λμ ꡬμ±κ³Ό μ΅ν΅μ±μ κ°μΆ μ μλλ‘ κ°νΈν μ¬μ©μ μ§μ μ΄ κ°λ₯ν©λλ€. | 18 | κ·Έλ£Ή νμμκ² κΆνκ³Ό μν μ΄ ν λΉλμμ΅λλ€. μ΄ μ€μ μ |
19 | λ λμ ꡬμ±κ³Ό μ΅ν΅μ±μ μν΄ μ¬μ©μ μ§μ μ΄ κ°λ₯ν©λλ€. | ||
19 | </text> | 20 | </text> |
20 | </panel> | 21 | </panel> |
21 | <panel name="roles_header"> | 22 | <panel name="roles_header"> |
@@ -23,29 +24,29 @@ | |||
23 | μν | 24 | μν |
24 | </text> | 25 | </text> |
25 | <text name="role_properties_modifiable"> | 26 | <text name="role_properties_modifiable"> |
26 | λ€μ μν μ μ ννμμμ€. μ΄λ¦, μ€λͺ λ° λ©€λ² νμ΄νμ μμ ν μ μμ΅λλ€. | 27 | λ€μ μν μ μ ννμμμ€. μ΄λ¦, μ€λͺ λ° νμ νμ΄νμ μμ ν μ μμ΅λλ€. |
27 | </text> | 28 | </text> |
28 | <text name="role_properties_not_modifiable"> | 29 | <text name="role_properties_not_modifiable"> |
29 | λ€μ μν μ μ ννμ¬ νΉμ±, λ©€λ² λ° νμ©λ λ₯λ ₯μ νμΈνμμμ€. | 30 | λ€μ μν μ μ ννμ¬ νΉμ±, νμ λ° νμ©λ κΆνμ νμΈνμμμ€. |
30 | </text> | 31 | </text> |
31 | <text name="role_actions_modifiable"> | 32 | <text name="role_actions_modifiable"> |
32 | μν μ λ₯λ ₯μ ν λΉν μ μμ΅λλ€. | 33 | μν μ κΆνμ ν λΉν μ μμ΅λλ€. |
33 | </text> | 34 | </text> |
34 | <text name="role_actions_not_modifiable"> | 35 | <text name="role_actions_not_modifiable"> |
35 | ν λΉλ λ₯λ ₯μ λ³Ό μλ μμ§λ§ μμ ν μλ μμ΅λλ€. | 36 | ν λΉλ κΆνμ λ³Ό μ μμ§λ§ μμ ν μλ μμ΅λλ€. |
36 | </text> | 37 | </text> |
37 | </panel> | 38 | </panel> |
38 | <panel name="actions_header"> | 39 | <panel name="actions_header"> |
39 | <text name="static"> | 40 | <text name="static"> |
40 | λ₯λ ₯ | 41 | κΆν |
41 | </text> | 42 | </text> |
42 | <text name="static2"> | 43 | <text name="static2"> |
43 | λ₯λ ₯μ λν μ€λͺ μ λ³΄κ³ λ₯λ ₯μ μ€νν μ μλ μν λ° λ©€λ²λ₯Ό | 44 | κΆνμ λν μ€λͺ μ λ³΄κ³ κΆνμ μ€νν μ μλ μν λ° νμμ |
44 | λ³Ό μ μμ΅λλ€. | 45 | λ³Ό μ μμ΅λλ€. |
45 | </text> | 46 | </text> |
46 | </panel> | 47 | </panel> |
47 | <tab_container name="roles_tab_container"> | 48 | <tab_container name="roles_tab_container"> |
48 | <panel label="맴λ²" name="members_sub_tab" tool_tip="Members"> | 49 | <panel label="νμ" name="members_sub_tab" tool_tip="Members"> |
49 | <button label="κ²μ" name="search_button" /> | 50 | <button label="κ²μ" name="search_button" /> |
50 | <button label="λͺ¨λ νμ" name="show_all_button" /> | 51 | <button label="λͺ¨λ νμ" name="show_all_button" /> |
51 | <name_list name="member_list"> | 52 | <name_list name="member_list"> |
@@ -53,12 +54,12 @@ | |||
53 | <column label="Donated Tier" name="donated" /> | 54 | <column label="Donated Tier" name="donated" /> |
54 | <column label="Last Login" name="online" /> | 55 | <column label="Last Login" name="online" /> |
55 | </name_list> | 56 | </name_list> |
56 | <button label="μλ‘μ΄ μ¬λ μ΄λ ..." name="member_invite" /> | 57 | <button label="μλ‘μ΄ μ¬λ μ΄λβ¦" name="member_invite" /> |
57 | <button label="κ·Έλ£Ήμμ κ°ν΄" name="member_eject" /> | 58 | <button label="κ·Έλ£Ήμμ κ°ν΄" name="member_eject" /> |
58 | <text name="help_text"> | 59 | <text name="help_text"> |
59 | λ©€λ²μκ² ν λΉλ μν μ μΆκ° λλ μμ νκ±°λ | 60 | νμμκ² ν λΉλ μν μ μΆκ° λλ μ κ±°ν μ μμ΅λλ€. |
60 | Control ν€λ₯Ό λλ₯΄κ³ ν΄λΉ μ΄λ¦μ ν΄λ¦νμ¬ | 61 | Ctrl ν€λ₯Ό λλ₯Έ μνλ‘ ν΄λΉνλ νμ μ΄λ¦μ ν΄λ¦νλ©΄ |
61 | μ¬λ¬ λ©€λ²λ₯Ό μ νν μ μμ΅λλ€. | 62 | μ¬λ¬ νμμ μ νν μ μμ΅λλ€. |
62 | </text> | 63 | </text> |
63 | </panel> | 64 | </panel> |
64 | <panel label="μν " name="roles_sub_tab"> | 65 | <panel label="μν " name="roles_sub_tab"> |
@@ -69,13 +70,15 @@ Control ν€λ₯Ό λλ₯΄κ³ ν΄λΉ μ΄λ¦μ ν΄λ¦νμ¬ | |||
69 | <column label="Title" name="title" /> | 70 | <column label="Title" name="title" /> |
70 | <column label="Members" name="members" /> | 71 | <column label="Members" name="members" /> |
71 | </scroll_list> | 72 | </scroll_list> |
72 | <button label="μ μν μμ±β¦" name="role_create" /> | 73 | <button label="μ μν μμ± β¦" name="role_create" /> |
73 | <button label="μν μμ " name="role_delete" /> | 74 | <button label="μν μμ " name="role_delete" /> |
74 | <text name="help_text"> | 75 | <text name="help_text"> |
75 | μν μλ νμ΄νμ΄ μμΌλ©° λ©€λ²κ° ν μ μλ λ₯λ ₯ λͺ©λ‘μ΄ μμ΅λλ€. λ©€λ²λ νλ μ΄μμ μν μ μμλ μ μμ΅λλ€. ν κ·Έλ£Ήμ λͺ¨λ μ¬λ λ° μμ μ£Ό μν μ ν¬ν¨νμ¬ μ΅κ³ 10κ°μ§μ μν κΉμ§ κ°μ§ μ μμ΅λλ€ | 76 | μν μλ νμμ΄ μνν μ μλ κΆνμ νμ΄νκ³Ό νκ° λͺ©λ‘μ΄ μμ΅λλ€.νμλ€μ ν κ°μ§ μ΄μμ μν μ |
77 | μν μ μμ΅λλ€.ν κ·Έλ£Ήμ λͺ¨λ μ¬λ λ° μμ μ£Ό μν μ ν¬ν¨νμ¬ | ||
78 | μ΅κ³ 10κ°μ§μ μν κΉμ§ κ°μ§ μ μμ΅λλ€. | ||
76 | </text> | 79 | </text> |
77 | </panel> | 80 | </panel> |
78 | <panel label="λ₯λ ₯" name="actions_sub_tab"> | 81 | <panel label="κΆν" name="actions_sub_tab"> |
79 | <button label="κ²μ" name="search_button" /> | 82 | <button label="κ²μ" name="search_button" /> |
80 | <button label="λͺ¨λ νμ" name="show_all_button" /> | 83 | <button label="λͺ¨λ νμ" name="show_all_button" /> |
81 | <scroll_list name="action_list" tool_tip="Select an Ability to view more details."> | 84 | <scroll_list name="action_list" tool_tip="Select an Ability to view more details."> |
@@ -83,8 +86,8 @@ Control ν€λ₯Ό λλ₯΄κ³ ν΄λΉ μ΄λ¦μ ν΄λ¦νμ¬ | |||
83 | <column label="" name="action" /> | 86 | <column label="" name="action" /> |
84 | </scroll_list> | 87 | </scroll_list> |
85 | <text name="help_text"> | 88 | <text name="help_text"> |
86 | λ₯λ ₯μ μν μ κ°μ§ λ©€λ²κ° μ΄ κ·Έλ£Ή λ΄μμ | 89 | κΆνμ μν νμμ΄ μ΄ κ·Έλ£Ή λ΄ νΉμ μμ μ μνν |
87 | νΉμ ν μΌμ ν μ μκ² ν΄μ€λλ€. λ₯λ ₯μ μ’ λ₯λ λ€μν©λλ€. | 90 | μ μλλ‘ νμ©ν©λλ€. κΆνμ μ’ λ₯λ λ€μν©λλ€. |
88 | </text> | 91 | </text> |
89 | </panel> | 92 | </panel> |
90 | </tab_container> | 93 | </tab_container> |
@@ -93,7 +96,7 @@ Control ν€λ₯Ό λλ₯΄κ³ ν΄λΉ μ΄λ¦μ ν΄λ¦νμ¬ | |||
93 | ν λΉλ μν | 96 | ν λΉλ μν |
94 | </text> | 97 | </text> |
95 | <text name="static2"> | 98 | <text name="static2"> |
96 | νμ©λ λ₯λ ₯ | 99 | νμ©λ κΆν |
97 | </text> | 100 | </text> |
98 | <scroll_list name="member_assigned_roles"> | 101 | <scroll_list name="member_assigned_roles"> |
99 | <column label="" name="checkbox" /> | 102 | <column label="" name="checkbox" /> |
@@ -119,20 +122,20 @@ Control ν€λ₯Ό λλ₯΄κ³ ν΄λΉ μ΄λ¦μ ν΄λ¦νμ¬ | |||
119 | νμ΄ν | 122 | νμ΄ν |
120 | </text> | 123 | </text> |
121 | <line_editor name="role_title"> | 124 | <line_editor name="role_title"> |
122 | (λκΈ°) | 125 | (λκΈ° μ€) |
123 | </line_editor> | 126 | </line_editor> |
124 | <text_editor name="role_description"> | 127 | <text_editor name="role_description"> |
125 | (λκΈ°) | 128 | (λκΈ° μ€) |
126 | </text_editor> | 129 | </text_editor> |
127 | <text name="static4"> | 130 | <text name="static4"> |
128 | ν λΉλ λ©€λ² | 131 | ν λΉλ νμ |
129 | </text> | 132 | </text> |
130 | <text name="static5" | 133 | <text name="static5" |
131 | tool_tip="νμ¬ μ νν μν μ λ₯λ ₯ λͺ©λ‘μ μνν μ μμ΅λλ€."> | 134 | tool_tip="νμ¬ μ νλ μν μ΄ μνν μ μλ κΆν λͺ©λ‘μ λλ€."> |
132 | νμ©λ λ₯λ ₯ | 135 | νμ©λ κΆν |
133 | </text> | 136 | </text> |
134 | <check_box label="λ©€λ²κ° νμλμμ΅λλ€" name="role_visible_in_list" | 137 | <check_box label="νμμ΄ νμλμμ΅λλ€." name="role_visible_in_list" |
135 | tool_tip="Sets whether members of this role are visible in the General tab to people outside of the group." /> | 138 | tool_tip="μν μ νμμ΄ μΌλ° νμμ κ·Έλ£Ή λ°μ μ¬λλ€μκ² λ³΄μ΄λμ§ μ¬λΆλ₯Ό μ€μ ν©λλ€." /> |
136 | <scroll_list name="role_allowed_actions" | 139 | <scroll_list name="role_allowed_actions" |
137 | tool_tip="For Details of each Allowed Ability see the Abilities tab."> | 140 | tool_tip="For Details of each Allowed Ability see the Abilities tab."> |
138 | <column label="" name="icon" /> | 141 | <column label="" name="icon" /> |
@@ -145,13 +148,13 @@ Control ν€λ₯Ό λλ₯΄κ³ ν΄λΉ μ΄λ¦μ ν΄λ¦νμ¬ | |||
145 | μ€λͺ | 148 | μ€λͺ |
146 | </text> | 149 | </text> |
147 | <text_editor name="action_description"> | 150 | <text_editor name="action_description"> |
148 | μ΄ κΈ°λ₯μ 'μ΄ κ·Έλ£Ήμμ λ©€λ² κ°ν΄'μ λλ€. μμ μ£Όλ§ λ€λ₯Έ μμ μ£Όλ₯Ό νν΄ μν¬ μ μμ΅λλ€. | 151 | μ΄ κΈ°λ₯μ 'μ΄ κ·Έλ£Ήμμ νμ μΆμΆ'μ λλ€. μμ μ£Όλ§ λ€λ₯Έ μμ μ£Όλ₯Ό νν΄ μν¬ μ μμ΅λλ€. |
149 | </text_editor> | 152 | </text_editor> |
150 | <text name="static2"> | 153 | <text name="static2"> |
151 | λ₯λ ₯μ ν¬ν¨ν μν | 154 | κΆνμ ν¬ν¨ν μν |
152 | </text> | 155 | </text> |
153 | <text name="static3"> | 156 | <text name="static3"> |
154 | λ₯λ ₯μ κ°μ§ λ©€λ² | 157 | κΆνμ κ°μ§ νμ |
155 | </text> | 158 | </text> |
156 | </panel> | 159 | </panel> |
157 | </panel> | 160 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_group_voting.xml b/linden/indra/newview/skins/xui/ko/panel_group_voting.xml index 255a480..d18865a 100644 --- a/linden/indra/newview/skins/xui/ko/panel_group_voting.xml +++ b/linden/indra/newview/skins/xui/ko/panel_group_voting.xml | |||
@@ -1,11 +1,11 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="μ μμ" name="voting_tab"> | 2 | <panel label="μ μ" name="voting_tab"> |
3 | <text name="help_text"> | 3 | <text name="help_text"> |
4 | κ·Έλ£Ή μ μμ κ·Έλ£Ήμ ν¬λ§μ¬νμ μκ³ | 4 | κ·Έλ£Ή μ μμ κ·Έλ£Ήμ ν¬λ§μ¬νμ μκ³ |
5 | κ·Έλ£Ήμ΄ μ΄λ»κ² μκ°νλμ§λ₯Ό νμ νλ λ° | 5 | κ·Έλ£Ήμ΄ μ΄λ»κ² μκ°νλμ§λ₯Ό νμ νλ λ° |
6 | μ¬μ©ν μ μμ΅λλ€. μ μ ν κΆνμ΄ | 6 | μ¬μ©ν μ μμ΅λλ€.μ μ ν κΆνμ΄ μλ€λ©΄ |
7 | μλ€λ©΄ μ μμ μμ±, μ μ 곡κ°, | 7 | μ μμ μμ±νκ³ , |
8 | μ μμλν ν¬ν, κ³Όκ±°μ μ μμ λ³Ό μ μμ΅λλ€. | 8 | μ μμ λν ν¬νμ κ³Όκ±°μ μ μμ λ³Ό μ μμ΅λλ€. |
9 | </text> | 9 | </text> |
10 | <button label="?" name="help_button" /> | 10 | <button label="?" name="help_button" /> |
11 | <text name="proposal_header"> | 11 | <text name="proposal_header"> |
@@ -15,21 +15,21 @@ | |||
15 | κ·Έλ£Ή μ μ μ΄κΈ° | 15 | κ·Έλ£Ή μ μ μ΄κΈ° |
16 | </text> | 16 | </text> |
17 | <text name="proposals_header_create_txt"> | 17 | <text name="proposals_header_create_txt"> |
18 | μ μ μμ± | 18 | μ μ λ§λ€κΈ° |
19 | </text> | 19 | </text> |
20 | <text name="proposals_header_vote_txt"> | 20 | <text name="proposals_header_vote_txt"> |
21 | μ μ ν¬ν | 21 | μ μ ν¬ν |
22 | </text> | 22 | </text> |
23 | <text name="empty_proposal_txt"> | 23 | <text name="empty_proposal_txt"> |
24 | μμ±νλ €λ μ μμ λΉμ΄ μμ΅λλ€. μ μμ μμ±νκΈ° μ μ μμ±νμμμ€. | 24 | λ§λ€λ €λ μ μμ λΉμ΄ μμ΅λλ€. μ μμ λ§λ€κΈ° μ μ μμ±νμ μΌ ν©λλ€. |
25 | </text> | 25 | </text> |
26 | <text name="proposal_instructions"> | 26 | <text name="proposal_instructions"> |
27 | ν¬ννλ €λ μ μμ λλΈ ν΄λ¦νκ±°λ μ μ μμ±μ λλ¬ μλ‘μ΄ μ μμ μμ±ν©λλ€. | 27 | ν¬ννλ €λ μ μμ λλΈ ν΄λ¦νκ±°λ λ§λ€κΈ°λ₯Ό λλ¬ μλ‘μ΄ μ μμ μμ±ν©λλ€. |
28 | </text> | 28 | </text> |
29 | <text name="proposal_lbl"> | 29 | <text name="proposal_lbl"> |
30 | μ μμ: | 30 | μ μ: |
31 | </text> | 31 | </text> |
32 | <button label="μ μ μμ±" label_selected="μ μ μμ±" name="btn_proposal" /> | 32 | <button label="μ μ λ§λ€κΈ°" label_selected="μ μ λ§λ€κΈ°" name="btn_proposal" /> |
33 | <button label="μ μ 보기" label_selected="μ μ 보기" | 33 | <button label="μ μ 보기" label_selected="μ μ 보기" |
34 | name="btn_view_proposal_item" /> | 34 | name="btn_view_proposal_item" /> |
35 | <button label="λͺ©λ‘ 보기" label_selected="λͺ©λ‘ 보기" | 35 | <button label="λͺ©λ‘ 보기" label_selected="λͺ©λ‘ 보기" |
@@ -40,7 +40,7 @@ | |||
40 | <spinner name="quorum" | 40 | <spinner name="quorum" |
41 | tool_tip="μ κ±° κ²°κ³Όκ° ν¨λ ₯μ λ°ννλ €λ©΄ μ΄ #λͺ μ ν¬ν μΈμμ΄ νμν©λλ€." /> | 41 | tool_tip="μ κ±° κ²°κ³Όκ° ν¨λ ₯μ λ°ννλ €λ©΄ μ΄ #λͺ μ ν¬ν μΈμμ΄ νμν©λλ€." /> |
42 | <text name="quorum_text"> | 42 | <text name="quorum_text"> |
43 | μ΄ κ·Έλ£Ή λ©€λ² xλͺ μ€. | 43 | μ΄ κ·Έλ£Ή νμ xλͺ μ€. |
44 | </text> | 44 | </text> |
45 | <text name="duration_lbl"> | 45 | <text name="duration_lbl"> |
46 | κΈ°κ°: | 46 | κΈ°κ°: |
@@ -55,10 +55,10 @@ | |||
55 | λ§μ₯μΌμΉ | 55 | λ§μ₯μΌμΉ |
56 | </radio_group> | 56 | </radio_group> |
57 | <text name="start_lbl"> | 57 | <text name="start_lbl"> |
58 | ν¬ν μμ: | 58 | ν¬ν μμμΌ: |
59 | </text> | 59 | </text> |
60 | <text name="end_lbl"> | 60 | <text name="end_lbl"> |
61 | ν¬ν μ’ λ£: | 61 | ν¬ν μ’ λ£μΌ: |
62 | </text> | 62 | </text> |
63 | <button label="μ μ μ μΆ" label_selected="μ μ μ μΆ" name="btn_submit" /> | 63 | <button label="μ μ μ μΆ" label_selected="μ μ μ μΆ" name="btn_submit" /> |
64 | <button label="μ·¨μ" label_selected="μ·¨μ" name="btn_cancel" /> | 64 | <button label="μ·¨μ" label_selected="μ·¨μ" name="btn_cancel" /> |
@@ -69,7 +69,7 @@ | |||
69 | κ·Έλ£Ή ν¬ν κΈ°λ‘ | 69 | κ·Έλ£Ή ν¬ν κΈ°λ‘ |
70 | </text> | 70 | </text> |
71 | <text name="instructions"> | 71 | <text name="instructions"> |
72 | κ³Όκ±°μ ν¬νλ₯Ό λλΈ ν΄λ¦νκ±°λ νλλ₯Ό μ ννκ³ νλͺ© 보기λ₯Ό ν΄λ¦νμ¬ κ²°κ³Όλ₯Ό λ΄ λλ€. | 72 | μ§λ ν¬νλ₯Ό λλΈ ν΄λ¦νκ±°λ νλλ₯Ό μ ννκ³ κ²°κ³Όλ³΄κΈ°λ₯Ό ν΄λ¦νμ¬ κ²°κ³Όλ₯Ό λ΄ λλ€. |
73 | </text> | 73 | </text> |
74 | <text name="history_list_lbl"> | 74 | <text name="history_list_lbl"> |
75 | κ³Όκ±°μ ν¬ν ν¬ν μ’ λ£ | 75 | κ³Όκ±°μ ν¬ν ν¬ν μ’ λ£ |
diff --git a/linden/indra/newview/skins/xui/ko/panel_land_covenant.xml b/linden/indra/newview/skins/xui/ko/panel_land_covenant.xml index 10e5b46..1dc1268 100644 --- a/linden/indra/newview/skins/xui/ko/panel_land_covenant.xml +++ b/linden/indra/newview/skins/xui/ko/panel_land_covenant.xml | |||
@@ -1,39 +1,39 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="Covenant" title="κ³μ½ μ‘°ν"> | 2 | <panel name="Covenant" title="μν κ·μΉ"> |
3 | <text name="region_name_lbl"> | 3 | <text name="region_name_lbl"> |
4 | μ§μ: | 4 | μ§μ: |
5 | </text> | 5 | </text> |
6 | <text name="region_name_text"> | 6 | <text name="region_name_text"> |
7 | (μλ €μ§μ§ μμ) | 7 | (μ μ μμ) |
8 | </text> | 8 | </text> |
9 | <text name="estate_name_lbl"> | 9 | <text name="estate_name_lbl"> |
10 | μμ μ§: | 10 | μ¬μ μ§: |
11 | </text> | 11 | </text> |
12 | <text name="estate_name_text"> | 12 | <text name="estate_name_text"> |
13 | (μλ €μ§μ§ μμ) | 13 | (μ μ μμ) |
14 | </text> | 14 | </text> |
15 | <text name="estate_owner_lbl"> | 15 | <text name="estate_owner_lbl"> |
16 | μμ μ§ μμ μ: | 16 | μ¬μ μ§ μμ μ: |
17 | </text> | 17 | </text> |
18 | <text name="estate_owner_text"> | 18 | <text name="estate_owner_text"> |
19 | (μλ €μ§μ§ μμ) | 19 | (μ μ μμ) |
20 | </text> | 20 | </text> |
21 | <text name="resellable_clause"> | 21 | <text name="resellable_clause"> |
22 | μ΄ μ§μμμ ꡬμ ν ν μ§λ μ¬ν맀ν μ μλ κ²½μ°λ μμ΅λλ€. | 22 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ μ¬ν맀 ν μ μλ κ²½μ°λ μμ΅λλ€. |
23 | </text> | 23 | </text> |
24 | <text name="changeable_clause"> | 24 | <text name="changeable_clause"> |
25 | μ΄ μ§μμμ ꡬμ ν ν μ§λ κ²°ν© λλ λΆν ν μ μλ κ²½μ°λ μμ΅λλ€. | 25 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ κ²°ν© λλ λΆν ν μ μλ κ²½μ°λ μμ΅λλ€. |
26 | </text> | 26 | </text> |
27 | <text name="can_resell"> | 27 | <text name="can_resell"> |
28 | μ΄ μ§μμμ ꡬμ ν ν μ§λ μ¬ν맀ν μ μμ΅λλ€. | 28 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ μ¬ν맀 ν μ μμ΅λλ€. |
29 | </text> | 29 | </text> |
30 | <text name="can_not_resell"> | 30 | <text name="can_not_resell"> |
31 | μ΄ μ§μμμ ꡬμ ν ν μ§λ μ¬ν맀ν μ μμ΅λλ€. | 31 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ μ¬ν맀 ν μ μμ΅λλ€. |
32 | </text> | 32 | </text> |
33 | <text name="can_change"> | 33 | <text name="can_change"> |
34 | μ΄ μ§μμμ ꡬμ ν ν μ§λ κ²°ν© λλ λΆν ν μ μμ΅λλ€. | 34 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ κ²°ν© λλ λΆν κ°λ₯ ν©λλ€. |
35 | </text> | 35 | </text> |
36 | <text name="can_not_change"> | 36 | <text name="can_not_change"> |
37 | μ΄ μ§μμμ ꡬμ ν ν μ§λ κ²°ν© λλ λΆν ν μ μμ΅λλ€. | 37 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ κ²°ν© λλ λΆν λΆκ°λ₯ ν©λλ€. |
38 | </text> | 38 | </text> |
39 | </panel> | 39 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_login.xml b/linden/indra/newview/skins/xui/ko/panel_login.xml index 4fb89cd..591a859 100644 --- a/linden/indra/newview/skins/xui/ko/panel_login.xml +++ b/linden/indra/newview/skins/xui/ko/panel_login.xml | |||
@@ -7,35 +7,35 @@ | |||
7 | μ΄λ¦: | 7 | μ΄λ¦: |
8 | </text> | 8 | </text> |
9 | <text name="last_name_text"> | 9 | <text name="last_name_text"> |
10 | μ±: | 10 | μ± |
11 | </text> | 11 | </text> |
12 | <text name="password_text"> | 12 | <text name="password_text"> |
13 | μνΈ: | 13 | λΉλ°λ²νΈ: |
14 | </text> | 14 | </text> |
15 | <text name="start_location_text"> | 15 | <text name="start_location_text"> |
16 | μμ μμΉ: | 16 | μμ μμΉ: |
17 | </text> | 17 | </text> |
18 | <combo_box name="start_location_combo"> | 18 | <combo_box name="start_location_combo"> |
19 | <combo_item name="MyHome"> | 19 | <combo_item name="MyHome"> |
20 | μ°λ¦¬ μ§ | 20 | ν |
21 | </combo_item> | 21 | </combo_item> |
22 | <combo_item name="MyLastLocation"> | 22 | <combo_item name="MyLastLocation"> |
23 | λ΄ μ΅ν μμΉ | 23 | μ΅μ’ λ°©λ¬Έμ§ |
24 | </combo_item> | 24 | </combo_item> |
25 | <combo_item name="<Typeregionname>"> | 25 | <combo_item name="Typeregionname"> |
26 | <μ§μλͺ μ λ ₯> | 26 | <μ§μλͺ μ λ ₯> |
27 | </combo_item> | 27 | </combo_item> |
28 | </combo_box> | 28 | </combo_box> |
29 | <check_box label="μνΈ μ μ₯νκΈ°" name="remember_check" /> | 29 | <check_box label="λΉλ°λ²νΈ κΈ°μ΅" name="remember_check" /> |
30 | <text name="full_screen_text"> | 30 | <text name="full_screen_text"> |
31 | λ‘κ·ΈμΈνλ©΄ λ·°μ΄λ μ 체 νλ©΄μΌλ‘ νμλ©λλ€. | 31 | λ‘κ·ΈμΈν λ λ·°μ΄μ μ 체 νλ©΄μ΄ νμλ©λλ€. |
32 | </text> | 32 | </text> |
33 | <button label="μ κ· κ³μ ..." label_selected="μ κ· κ³μ ..." | 33 | <button label="μ κ· κ³μ " label_selected="μ κ· κ³μ " |
34 | name="new_account_btn" /> | 34 | name="new_account_btn" /> |
35 | <button label="μ°κ²°" label_selected="μ°κ²°" name="connect_btn" /> | 35 | <button label="νκ²½ μ€μ " label_selected="νκ²½ μ€μ " |
36 | <button label="νκ²½ μ€μ ..." label_selected="νκ²½ μ€μ ..." | ||
37 | name="preferences_btn" /> | 36 | name="preferences_btn" /> |
38 | <button label="λλ΄κΈ°" label_selected="λλ΄κΈ°" name="quit_btn" /> | 37 | <button label="μ°κ²°" label_selected="μ°κ²°" name="connect_btn" /> |
38 | <button label="μ’ λ£" label_selected="μ’ λ£" name="quit_btn" /> | ||
39 | <text name="version_text"> | 39 | <text name="version_text"> |
40 | 1.23.4 (5) | 40 | 1.23.4 (5) |
41 | </text> | 41 | </text> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_media_remote.xml b/linden/indra/newview/skins/xui/ko/panel_media_remote.xml index 8cec895..a1e0c36 100644 --- a/linden/indra/newview/skins/xui/ko/panel_media_remote.xml +++ b/linden/indra/newview/skins/xui/ko/panel_media_remote.xml | |||
@@ -1,13 +1,13 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="music_remote"> | 2 | <panel name="music_remote"> |
3 | <text type="string" length="1" name="text"> | 3 | <text type="string" length="6" name="text"> |
4 | μ΄λ μ μ΄ | 4 | μν |
5 | </text> | 5 | </text> |
6 | <volume_slider name="volume_slider" | ||
7 | tool_tip="μ΄ μ¬λΌμ΄λλ₯Ό μ¬μ©νμ¬ λ³Όλ₯¨μ λ³κ²½" /> | ||
6 | <button label="" label_selected="" name="stop_btn" tool_tip="λ―Έλμ΄ μ€μ§" /> | 8 | <button label="" label_selected="" name="stop_btn" tool_tip="λ―Έλμ΄ μ€μ§" /> |
7 | <button label="" label_selected="" name="play_btn" | 9 | <button label="" label_selected="" name="play_btn" |
8 | tool_tip="λ―Έλμ΄ μ€νΈλ¦Ό μ¬μ" /> | 10 | tool_tip="λ―Έλμ΄ μ€νΈλ¦Ό μ¬μ" /> |
9 | <button label="" label_selected="" name="pause_btn" | 11 | <button label="" label_selected="" name="pause_btn" |
10 | tool_tip="λ―Έλμ΄ μ€νΈλ¦Ό μΌμ μ μ§" /> | 12 | tool_tip="λ―Έλμ΄ μ€νΈλ¦Ό μΌμ μ μ§" /> |
11 | <volume_slider name="volume_slider" | ||
12 | tool_tip="μ΄ μ¬λΌμ΄λλ₯Ό μ¬μ©νμ¬ λ³Όλ₯¨μ λ³κ²½" /> | ||
13 | </panel> | 13 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_music_remote.xml b/linden/indra/newview/skins/xui/ko/panel_music_remote.xml index 3ec3a0f..c1c8bc5 100644 --- a/linden/indra/newview/skins/xui/ko/panel_music_remote.xml +++ b/linden/indra/newview/skins/xui/ko/panel_music_remote.xml | |||
@@ -1,13 +1,13 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="music_remote"> | 2 | <panel name="music_remote"> |
3 | <text type="string" length="1" name="text"> | 3 | <text type="string" length="6" name="text"> |
4 | μμ μ μ΄ | 4 | μμ |
5 | </text> | 5 | </text> |
6 | <volume_slider name="volume_slider" | ||
7 | tool_tip="μ΄ μ¬λΌμ΄λλ₯Ό μ¬μ©νμ¬ λ³Όλ₯¨μ λ³κ²½" /> | ||
6 | <button label="" label_selected="" name="stop_btn" tool_tip="λ―Έλμ΄ μ€μ§" /> | 8 | <button label="" label_selected="" name="stop_btn" tool_tip="λ―Έλμ΄ μ€μ§" /> |
7 | <button label="" label_selected="" name="play_btn" | 9 | <button label="" label_selected="" name="play_btn" |
8 | tool_tip="λ―Έλμ΄ μ€νΈλ¦Ό μ¬μ" /> | 10 | tool_tip="λ―Έλμ΄ μ€νΈλ¦Ό μ¬μ" /> |
9 | <button label="" label_selected="" name="pause_btn" | 11 | <button label="" label_selected="" name="pause_btn" |
10 | tool_tip="λ―Έλμ΄ μ€νΈλ¦Ό μΌμ μ μ§" /> | 12 | tool_tip="λ―Έλμ΄ μ€νΈλ¦Ό μΌμ μ μ§" /> |
11 | <volume_slider name="volume_slider" | ||
12 | tool_tip="μ΄ μ¬λΌμ΄λλ₯Ό μ¬μ©νμ¬ λ³Όλ₯¨μ λ³κ²½" /> | ||
13 | </panel> | 13 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_overlaybar.xml b/linden/indra/newview/skins/xui/ko/panel_overlaybar.xml index 39e7a73..143fc26 100644 --- a/linden/indra/newview/skins/xui/ko/panel_overlaybar.xml +++ b/linden/indra/newview/skins/xui/ko/panel_overlaybar.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 | <panel name="overlay"> | 2 | <panel name="overlay"> |
3 | <button label="IM μλ Ή" label_selected="IM μλ Ή" name="IM Received" | 3 | <button label="λ©μ μ μλ Ή" label_selected="λ©μ μ μλ Ή" name="IM Received" |
4 | tool_tip="λκΈ° μ€μΈ λ©μΈμ§κ° μμ΅λλ€. λ©μ μ§λ₯Ό νμΈ νμλ €λ©΄ λ©μ μ λ²νΌμ ν΄λ¦ νμμμ." /> | 4 | tool_tip="λκΈ° μ€μΈ λ©μμ§κ° μμ΅λλ€. λ©μ μ§λ₯Ό νμΈ νμλ €λ©΄ λ©μ μ λ²νΌμ ν΄λ¦νμμμ€." /> |
5 | <button label="μ©λ¬΄ μμμΌλ‘ μ€μ " label_selected="μ©λ¬΄ μμμΌλ‘ μ€μ " | 5 | <button label="μ©λ¬΄ μμμΌλ‘ μ€μ " label_selected="μ©λ¬΄ μμμΌλ‘ μ€μ " |
6 | name="Set Not Busy" | 6 | name="Set Not Busy" |
7 | tool_tip="μ±ν κ³Ό λ©μ μ κ° μ¨κ²¨μ Έ μμ΅λλ€. μ¬κΈ°λ₯Ό ν΄λ¦νμ¬ μ©λ¬΄ μμμΌλ‘ μ€μ ν©λλ€." /> | 7 | tool_tip="μ±ν κ³Ό λ©μ μ κ° μ¨κ²¨μ Έ μμ΅λλ€. λ€λ₯Έ μ©λ¬΄ μ€μ ν΄μ νλ €λ©΄ μ¬κΈ°λ₯Ό ν΄λ¦νμμμ€." /> |
8 | <button label="ν€ ν΄μ " label_selected="ν€ ν΄μ " name="Release Keys" | 8 | <button label="ν€ ν΄μ " label_selected="ν€ ν΄μ " name="Release Keys" |
9 | tool_tip="μ€ν¬λ¦½νΈκ° ν€λ₯Ό μ μ΄νμ΅λλ€. μ¬κΈ°λ₯Ό ν΄λ¦νμ¬ ν€λ₯Ό ν΄μ νμμμ€." /> | 9 | tool_tip="μ€ν¬λ¦½νΈμ μν΄ ν€κ° μ μ΄λ©λλ€. μ€μ μ ν΄μ νλ €λ©΄ μ¬κΈ°λ₯Ό ν΄λ¦νμμμ€." /> |
10 | <button label="λ§μ°μ€ μμ " label_selected="λ§μ°μ€ μμ " name="Mouselook" | 10 | <button label="1μΈμΉ μμ " label_selected="1μΈμΉ μμ " name="Mouselook" |
11 | tool_tip="보기λ₯Ό μ‘°μ ν λ λ§μ°μ€λ₯Ό μ¬μ©ν©λλ€. μ΄μ΄ μλ€λ©΄ ν΄λ¦ν λ μκ² λ©λλ€." /> | 11 | tool_tip="λ§μ°μ€λ₯Ό μ¬μ©νμ¬ λ³΄κΈ°λ₯Ό μ‘°μ ν©λλ€. μ΄μ΄ μλ κ²½μ° ν΄λ¦νλ©΄ λ°μ¬λ©λλ€." /> |
12 | <button label="μκΈ°" label_selected="μκΈ°" name="Stand Up" | 12 | <button label="μκΈ°" label_selected="μκΈ°" name="Stand Up" |
13 | tool_tip="μλ €λ©΄ μ¬κΈ°λ₯Ό ν΄λ¦νμμμ€." /> | 13 | tool_tip="μΌμ΄μλ €λ©΄ μ¬κΈ°λ₯Ό ν΄λ¦νμμμ€." /> |
14 | </panel> | 14 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_place.xml b/linden/indra/newview/skins/xui/ko/panel_place.xml index 9a64055..b88ba33 100644 --- a/linden/indra/newview/skins/xui/ko/panel_place.xml +++ b/linden/indra/newview/skins/xui/ko/panel_place.xml | |||
@@ -1,6 +1,6 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="Place" title="μ₯μ"> | 2 | <panel name="Place" title="μ₯μ"> |
3 | <button label="ν 리ν¬νΈ" name="teleport_btn" /> | 3 | <button label="ν 리ν¬νΈ" name="teleport_btn" /> |
4 | <button label="μ§λμ νμνκΈ°" name="map_btn" /> | 4 | <button label="μ§λμ νμ" name="map_btn" /> |
5 | <button label="μ μ°°..." name="auction_btn" /> | 5 | <button label="μ μ²..." name="auction_btn" /> |
6 | </panel> | 6 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_place_small.xml b/linden/indra/newview/skins/xui/ko/panel_place_small.xml index 9a64055..b88ba33 100644 --- a/linden/indra/newview/skins/xui/ko/panel_place_small.xml +++ b/linden/indra/newview/skins/xui/ko/panel_place_small.xml | |||
@@ -1,6 +1,6 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="Place" title="μ₯μ"> | 2 | <panel name="Place" title="μ₯μ"> |
3 | <button label="ν 리ν¬νΈ" name="teleport_btn" /> | 3 | <button label="ν 리ν¬νΈ" name="teleport_btn" /> |
4 | <button label="μ§λμ νμνκΈ°" name="map_btn" /> | 4 | <button label="μ§λμ νμ" name="map_btn" /> |
5 | <button label="μ μ°°..." name="auction_btn" /> | 5 | <button label="μ μ²..." name="auction_btn" /> |
6 | </panel> | 6 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_audio.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_audio.xml index d44243f..fd6e8b3 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_audio.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_audio.xml | |||
@@ -4,35 +4,33 @@ | |||
4 | μμκ±°: | 4 | μμκ±°: |
5 | </text> | 5 | </text> |
6 | <check_box label="μ€λμ€ μμκ±°" name="disable audio" /> | 6 | <check_box label="μ€λμ€ μμκ±°" name="disable audio" /> |
7 | <check_box label="μ°½μ μ΅μνν λ μ€λμ€ μμκ±°" name="mute_when_minimized" /> | 7 | <check_box label="μ°½μ μ΅μν ν λ μ€λμ€ μμκ±°" name="mute_when_minimized" /> |
8 | <text type="string" length="1" name="streaming_text"> | 8 | <text type="string" length="1" name="streaming_text"> |
9 | μ€νΈλ¦¬λ°: | 9 | μ€νΈλ¦¬λ°: |
10 | </text> | 10 | </text> |
11 | <check_box | 11 | <check_box label="μ€νΈλ¦¬λ° μμ μ¬μ(λ λ§μ λμν μ¬μ©)" |
12 | label="κ°λ₯ν κ²½μ° μ€νΈλ¦¬λ° μμ μ¬μ(λ λ§μ λμν μ¬μ©)" | ||
13 | name="streaming_music" /> | 12 | name="streaming_music" /> |
14 | <check_box | 13 | <check_box label="μ€νΈλ¦¬λ° λΉλμ€ μ¬μ(λ λ§μ λμν μ¬μ©)" |
15 | label="κ°λ₯ν κ²½μ° μ€νΈλ¦¬λ° λΉλμ€ μ¬μ(λ λ§μ λμν μ¬μ©)" | ||
16 | name="streaming_video" /> | 14 | name="streaming_video" /> |
17 | <text type="string" length="1" name="system_volume_text"> | 15 | <text type="string" length="1" name="system_volume_text"> |
18 | μ¬μ΄λ ν¨κ³Ό: | 16 | μ¬μ΄λ ν¨κ³Ό: |
19 | </text> | 17 | </text> |
20 | <text type="string" length="1" name="wind_volume_text"> | 18 | <text type="string" length="1" name="wind_volume_text"> |
21 | λ°λμ μ: | 19 | λ°λ μ리: |
22 | </text> | 20 | </text> |
23 | <text type="string" length="1" name="footsteps_volume_text"> | 21 | <text type="string" length="1" name="footsteps_volume_text"> |
24 | λ°μκ΅ λ³Όλ₯¨: | 22 | λ°μκ΅ μ리: |
25 | </text> | 23 | </text> |
26 | <text type="string" length="1" name="ui_volume_text"> | 24 | <text type="string" length="1" name="ui_volume_text"> |
27 | UI λ³Όλ₯¨: | 25 | λ©λ΄ ν¨κ³Όμ: |
28 | </text> | 26 | </text> |
29 | <spinner label="L$ λ³ν μκ³κ°" name="L$ Change Threshold" /> | 27 | <spinner label="L$ λ³ν μλ¦Ό" name="L$ Change Threshold" /> |
30 | <spinner label="κ±΄κ° λ³ν μκ³κ°" name="Health Change Threshold" /> | 28 | <spinner label="건κ°λ³ν μλ¦Ό" name="Health Change Threshold" /> |
31 | <text type="string" length="1" name="doppler_effect_text"> | 29 | <text type="string" length="1" name="doppler_effect_text"> |
32 | λνλ¬ ν¨κ³Ό: | 30 | λνλ¬ ν¨κ³Ό: |
33 | </text> | 31 | </text> |
34 | <text type="string" length="1" name="distance_factor_text"> | 32 | <text type="string" length="1" name="distance_factor_text"> |
35 | 거리 μμΈ: | 33 | 거리 μ€μ : |
36 | </text> | 34 | </text> |
37 | <text type="string" length="1" name="rolloff_factor_text"> | 35 | <text type="string" length="1" name="rolloff_factor_text"> |
38 | λ‘€μ€ν μμΈ: | 36 | λ‘€μ€ν μμΈ: |
@@ -42,16 +40,16 @@ | |||
42 | </text> | 40 | </text> |
43 | <radio_group name="bitrate"> | 41 | <radio_group name="bitrate"> |
44 | <radio_item type="string" length="1" name="32kbps"> | 42 | <radio_item type="string" length="1" name="32kbps"> |
45 | 32 kbps | 43 | 32kbps |
46 | </radio_item> | 44 | </radio_item> |
47 | <radio_item type="string" length="1" name="64kbps"> | 45 | <radio_item type="string" length="1" name="64kbps"> |
48 | 64 kbps | 46 | 64kbps |
49 | </radio_item> | 47 | </radio_item> |
50 | <radio_item type="string" length="1" name="96kbps"> | 48 | <radio_item type="string" length="1" name="96kbps"> |
51 | 96 kbps | 49 | 96kbps |
52 | </radio_item> | 50 | </radio_item> |
53 | <radio_item type="string" length="1" name="128kbps"> | 51 | <radio_item type="string" length="1" name="128kbps"> |
54 | 128 kbps | 52 | 128kbps |
55 | </radio_item> | 53 | </radio_item> |
56 | </radio_group> | 54 | </radio_group> |
57 | </panel> | 55 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_chat.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_chat.xml index 3e00922..358d551 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_chat.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_chat.xml | |||
@@ -1,7 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="μ±ν " name="chat"> | 2 | <panel label="μ±ν " name="chat"> |
3 | <text type="string" length="1" name="text_box"> | 3 | <text type="string" length="1" name="text_box"> |
4 | μ±ν κΈμ ν¬κΈ°: | 4 | κΈμ ν¬κΈ°: |
5 | </text> | 5 | </text> |
6 | <radio_group name="chat font size"> | 6 | <radio_group name="chat font size"> |
7 | <radio_item type="string" length="1" name="radio"> | 7 | <radio_item type="string" length="1" name="radio"> |
@@ -15,39 +15,37 @@ | |||
15 | </radio_item> | 15 | </radio_item> |
16 | </radio_group> | 16 | </radio_group> |
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="system" /> | 20 | <color_swatch label="μμ€ν " name="system" /> |
21 | <color_swatch label="μ¬μ©μ" name="users" /> | 21 | <color_swatch label="μ¬μ©μ" name="users" /> |
22 | <color_swatch label="μ¬λ¬Ό" name="objects" /> | 22 | <color_swatch label="μ€λΈμ νΈ" name="objects" /> |
23 | <color_swatch label="κ±°ν" name="background" /> | 23 | <color_swatch label="λ§νμ " name="background" /> |
24 | <color_swatch label="URLs" name="links" /> | 24 | <color_swatch label="URL" name="links" /> |
25 | <text type="string" length="1" name="text_box3"> | 25 | <text type="string" length="1" name="text_box3"> |
26 | μ±ν μ½μ: | 26 | μ½μ: |
27 | </text> | 27 | </text> |
28 | <spinner label="μ΄ν μ±ν νμ΄λ" name="fade_chat_time" /> | 28 | <spinner label="μ±ν μ°½ μ¬λΌμ§" name="fade_chat_time" /> |
29 | <text type="string" length="1" name="text_box4"> | 29 | <text type="string" length="1" name="text_box4"> |
30 | (μ΄) | 30 | (μ΄) |
31 | </text> | 31 | </text> |
32 | <text type="string" length="1" name="text_box5"> | 32 | <text type="string" length="1" name="text_box5"> |
33 | (#ν) | 33 | (#ν) |
34 | </text> | 34 | </text> |
35 | <slider label="λΆν¬λͺ λ" name="console_opacity" /> | 35 | <slider label="ν¬λͺ λ" name="console_opacity" /> |
36 | <text type="string" length="1" name="text_box6"> | 36 | <text type="string" length="1" name="text_box6"> |
37 | μ±ν μ΅μ : | 37 | μ΅μ : |
38 | </text> | 38 | </text> |
39 | <check_box label="μ±ν μ (μ¬μμ ν) μ 체 νλ©΄μ μ¬μ©ν©λλ€" | 39 | <check_box label="μ 체νλ©΄ μ¬μ©(μ¬μμ νμ)" name="chat_full_width_check" /> |
40 | name="chat_full_width_check" /> | 40 | <check_box label="Enter ν€ λλ₯Έ ν μ±ν μ°½ λ«κΈ°" name="close_chat_on_return_check" /> |
41 | <check_box label="λμμ€κΈ° λλ₯Έ ν μ±ν μ°½ λ«κΈ°" | 41 | <check_box label="νμ΄ν ν€λ μ±ν μ μλ°νλ₯Ό μμ§μ΄λλ° μ¬μ©" |
42 | name="close_chat_on_return_check" /> | ||
43 | <check_box label="νμ΄νλ μ±ν μ μλ°ν μμ§μ΄λλ° μ¬μ©" | ||
44 | name="arrow_keys_move_avatar_check" /> | 42 | name="arrow_keys_move_avatar_check" /> |
45 | <check_box label="μ±ν μ νμμ€ν¬ν νμνκΈ°" name="show_timestamps_check" /> | 43 | <check_box label="μ±ν μκ° νμνκΈ°" name="show_timestamps_check" /> |
46 | <text type="string" length="1" name="text_box7"> | 44 | <text type="string" length="1" name="text_box7"> |
47 | λ§νμ μ±ν : | 45 | λ§νμ μ±ν : |
48 | </text> | 46 | </text> |
49 | <check_box label="λ§νμ νμνκΈ°" name="bubble_text_chat" /> | 47 | <check_box label="λ§νμ νμνκΈ°" name="bubble_text_chat" /> |
50 | <slider label="λΆν¬λͺ λ" name="bubble_chat_opacity" /> | 48 | <slider label="ν¬λͺ λ" name="bubble_chat_opacity" /> |
51 | <text type="string" length="1" name="text_box8"> | 49 | <text type="string" length="1" name="text_box8"> |
52 | μ€ν¬λ¦½νΈ μ€λ₯: | 50 | μ€ν¬λ¦½νΈ μ€λ₯: |
53 | </text> | 51 | </text> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_general.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_general.xml index 801f02c..d6bfebf 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_general.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_general.xml | |||
@@ -1,19 +1,39 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="μΌλ°μ¬ν" name="general_panel"> | 2 | <panel label="μΌλ°" name="general_panel"> |
3 | <check_box label="λ‘κ·ΈμΈ νλ©΄μ μμ μμΉ νμ" name="show_location_checkbox" /> | 3 | <combo_box name="location_combobox"> |
4 | <check_box label="λ΄ νλ©΄μ λ΄ μ΄λ¦ μ¨κΈ°κΈ°" name="show_my_name_checkbox" /> | 4 | <combo_item name="MyHome"> |
5 | <check_box label="λ΄ κ·Έλ£Ή νμ΄ν μ¨κΈ°κΈ°" name="show_my_title_checkbox" /> | 5 | ν |
6 | </combo_item> | ||
7 | <combo_item name="MyLastLocation"> | ||
8 | μ΅μ’ λ°©λ¬Έμ§ | ||
9 | </combo_item> | ||
10 | </combo_box> | ||
11 | <check_box label="λ‘κ·ΈμΈ νλ©΄μ μμμμΉ νμ" name="show_location_checkbox" /> | ||
12 | <radio_group name="fade_out_radio"> | ||
13 | <radio_item type="string" length="1" name="Never"> | ||
14 | μν¨ | ||
15 | </radio_item> | ||
16 | <radio_item type="string" length="1" name="Temporarily"> | ||
17 | μμλ‘ νμ | ||
18 | </radio_item> | ||
19 | <radio_item type="string" length="1" name="Always"> | ||
20 | νμ | ||
21 | </radio_item> | ||
22 | </radio_group> | ||
23 | <check_box label="λ΄ νλ©΄μμ λ΄ μ΄λ¦ μ¨κΈ°κΈ°" name="show_my_name_checkbox" /> | ||
24 | <check_box label="λ΄ κ·Έλ£Ήλͺ μ¨κΈ°κΈ°" name="show_my_title_checkbox" /> | ||
6 | <check_box label="μμ μλ°ν μ΄λ¦" name="small_avatar_names_checkbox" /> | 25 | <check_box label="μμ μλ°ν μ΄λ¦" name="small_avatar_names_checkbox" /> |
7 | <check_box label="μ¨λΌμΈ μΉκ΅¬ κ³΅μ§ νμ" name="friends_online_notify_checkbox" /> | 26 | <color_swatch label="" name="effect_color_swatch" |
27 | tool_tip="μ κ΄λ¦¬κΈ°λ₯Ό μ΄λ €λ©΄ ν΄λ¦ νμμμ€." /> | ||
28 | <spinner label="μ리λΉμ μκ°μ΄κ³Ό:" name="afk_timeout_spinner" /> | ||
29 | <check_box label="μ¨λΌμΈ μΉκ΅¬ 보μ¬μ£ΌκΈ°" name="friends_online_notify_checkbox" /> | ||
8 | <check_box label="λ―Έλ μ§λ νμ " name="rotate_mini_map_checkbox" /> | 30 | <check_box label="λ―Έλ μ§λ νμ " name="rotate_mini_map_checkbox" /> |
9 | <check_box label="λ¦°λ λ¬λ¬ μ§μΆκ³Ό κΈ°λΆ ν΅λ³΄" | 31 | <check_box label="L$ μ§μΆκ³Ό κΈ°λΆ μλ €μ£ΌκΈ°" name="notify_money_change_checkbox" /> |
10 | name="notify_money_change_checkbox" /> | 32 | <check_box label="λ€μ μμν λ κ·Έλν½ νλμ¨μ΄ μλ κ°μ§" |
11 | <check_box label="λ€μ μμν λ κ·Έλν½ νλμ¨μ΄λ₯Ό μλ κ°μ§" | ||
12 | name="probe_hardware_checkbox" | 33 | name="probe_hardware_checkbox" |
13 | tool_tip="Second Lifeλ μ¬μ©μμ νλμ¨μ΄μ λ°λΌ μΌλΆ κ·Έλν½ μ€μ μ μλμΌλ‘ ꡬμ±ν©λλ€. μλ‘μ΄ νλμ¨μ΄λ₯Ό μ€μΉνλ €λ κ²½μ° Second Lifeκ° μ΄λ₯Ό λ€μ κ°μ§νλλ‘ ν΄μΌ ν©λλ€." /> | 34 | tool_tip="μΈμ»¨λλΌμ΄νλ μ¬μ©μμ νλμ¨μ΄μ λ°λΌ μΌλΆ κ·Έλν½ μ€μ μ μλμΌλ‘ ꡬμ±ν©λλ€. μλ‘μ΄ νλμ¨μ΄λ₯Ό μ€μΉνλ €λ κ²½μ°, μΈμ»¨λλΌμ΄νκ° μ΄λ₯Ό λ€μ κ°μ§νλλ‘ ν΄μΌ ν©λλ€." /> |
14 | <check_box label="κΈ°λ³Έ μμ€ν μ νΌμ»€ μ¬μ©" | 35 | <check_box label="μμ€ν μ κ΄λ¦¬ μ¬μ©" name="use_system_color_picker_checkbox" |
15 | name="use_system_color_picker_checkbox" | 36 | tool_tip="μΈμ»¨λλΌμ΄νμμ μ 곡νλ κ² λμ κΈ°λ³Έ μμ€ν μκ΄λ¦¬λ₯Ό μ¬μ©ν©λλ€." /> |
16 | tool_tip="Second Lifeμμ μ 곡νλ κ² λμ κΈ°λ³Έ μμ€ν μ»¬λ¬ νΌμ»€λ₯Ό μ¬μ©ν©λλ€." /> | ||
17 | <text type="string" length="1" name="start_location_textbox"> | 37 | <text type="string" length="1" name="start_location_textbox"> |
18 | μμ μμΉ: | 38 | μμ μμΉ: |
19 | </text> | 39 | </text> |
@@ -27,57 +47,55 @@ | |||
27 | μ΄ | 47 | μ΄ |
28 | </text> | 48 | </text> |
29 | <text type="string" length="1" name="crash_report_textbox"> | 49 | <text type="string" length="1" name="crash_report_textbox"> |
30 | μΆ©λ μ κ³ : | 50 | μ€λ₯ λ³΄κ³ : |
31 | </text> | 51 | </text> |
32 | <text type="string" length="1" name="language_textbox"> | 52 | <text type="string" length="1" name="language_textbox"> |
33 | μΈμ΄: | 53 | μΈμ΄: |
34 | </text> | 54 | </text> |
35 | <text type="string" length="1" name="language_textbox2"> | 55 | <text type="string" length="1" name="language_textbox2"> |
36 | (μλ‘μ΄ ν¨κ³Όλ₯Ό μν΄μλ μ¬μλμ΄ νμν©λλ€.) | 56 | (μ¬μλ νμ) |
37 | </text> | 57 | </text> |
38 | <radio_group name="fade_out_radio"> | ||
39 | <radio_item type="string" length="1" name="Never"> | ||
40 | μν¨ | ||
41 | </radio_item> | ||
42 | <radio_item type="string" length="1" name="Temporarily"> | ||
43 | μμλ‘ λ³΄κΈ° | ||
44 | </radio_item> | ||
45 | <radio_item type="string" length="1" name="Always"> | ||
46 | νμ | ||
47 | </radio_item> | ||
48 | </radio_group> | ||
49 | <color_swatch label="" name="effect_color_swatch" | ||
50 | tool_tip="ν΄λ¦ν΄ μ νΌμ»€λ₯Ό μ¬μμμ€" /> | ||
51 | <spinner label="μ리λΉμ μκ°μ΄κ³Ό:" name="afk_timeout_spinner" /> | ||
52 | <text name="region_name_prompt"> | 58 | <text name="region_name_prompt"> |
53 | <μ§μλͺ μ λ ₯> | 59 | <μ§μλͺ μ λ ₯> |
54 | </text> | 60 | </text> |
55 | <combo_box name="crash_behavior_combobox"> | 61 | <combo_box name="crash_behavior_combobox"> |
56 | <combo_item type="string" length="1" name="Askbeforesending"> | 62 | <combo_item type="string" length="1" name="Askbeforesending"> |
57 | μ μ‘νκΈ° μ μ νμΈ | 63 | 보λ΄κΈ° μ μ νμΈ |
58 | </combo_item> | 64 | </combo_item> |
59 | <combo_item type="string" length="1" name="Alwayssend"> | 65 | <combo_item type="string" length="1" name="Alwayssend"> |
60 | νμ μ μ‘ | 66 | νμ 보λ΄κΈ° |
61 | </combo_item> | 67 | </combo_item> |
62 | <combo_item type="string" length="1" name="Neversend"> | 68 | <combo_item type="string" length="1" name="Neversend"> |
63 | μ μ‘ μ ν¨ | 69 | 보λ΄μ§ μμ |
64 | </combo_item> | 70 | </combo_item> |
65 | </combo_box> | 71 | </combo_box> |
66 | <combo_box name="language_combobox"> | 72 | <combo_box name="language_combobox"> |
73 | <combo_item type="string" length="1" name="System Default Language"> | ||
74 | μμ€ν κΈ°λ³Έκ° | ||
75 | </combo_item> | ||
67 | <combo_item type="string" length="1" name="English"> | 76 | <combo_item type="string" length="1" name="English"> |
68 | μμ΄ | 77 | μμ΄(English) |
78 | </combo_item> | ||
79 | <combo_item type="string" length="1" name="Chinese"> | ||
80 | μ€κ΅μ΄(Chinese) β λ² ν | ||
69 | </combo_item> | 81 | </combo_item> |
70 | <combo_item type="string" length="1" name="Deutsch(German)"> | 82 | <combo_item type="string" length="1" name="Deutsch(German)"> |
71 | Deutsch (German) | 83 | λ μΌμ΄(German) β λ² ν |
84 | </combo_item> | ||
85 | <combo_item type="string" length="1" name="French"> | ||
86 | λΆμ΄(French) β λ² ν | ||
72 | </combo_item> | 87 | </combo_item> |
73 | <combo_item type="string" length="1" name="(Japanese)"> | 88 | <combo_item type="string" length="1" name="(Japanese)"> |
74 | ζ₯ζ¬θͺ (Japanese) | 89 | μΌλ³Έμ΄ (Japanese) - Beta |
75 | </combo_item> | 90 | </combo_item> |
76 | <combo_item type="string" length="1" name="(Korean)"> | 91 | <combo_item type="string" length="1" name="(Korean)"> |
77 | νκ΅μ΄ (Korean) | 92 | νκ΅μ΄ (Korean) - Beta |
78 | </combo_item> | 93 | </combo_item> |
79 | <combo_item type="string" length="1" name="Chinese"> | 94 | <combo_item type="string" length="1" name="Portugese"> |
80 | μ€κ΅μ΄ | 95 | ν¬λ₯΄ν¬κ°μ΄ βλ² ν |
96 | </combo_item> | ||
97 | <combo_item type="string" length="1" name="Spanish"> | ||
98 | EspaΓ±ol (μ€νμΈμ΄) - λ² ν | ||
81 | </combo_item> | 99 | </combo_item> |
82 | </combo_box> | 100 | </combo_box> |
83 | </panel> | 101 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_graphics1.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_graphics1.xml index cf2fd31..f00beb1 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_graphics1.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_graphics1.xml | |||
@@ -1,27 +1,29 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="κ·Έλν½" name="Display panel"> | 2 | <panel label="κ·Έλν½" name="Display panel"> |
3 | <combo_box name="aspect_ratio"> | ||
4 | <combo_item type="string" length="1" name="4:3(StandardCRT)"> | ||
5 | 4:3 (νμ€ CRT) | ||
6 | </combo_item> | ||
7 | <combo_item type="string" length="1" name="5:4(1280x1024LCD)"> | ||
8 | 5:4 (1280x1024 LCD) | ||
9 | </combo_item> | ||
10 | <combo_item type="string" length="1" name="16:9(Widescreen)"> | ||
11 | 16:9 (μμ΄λ μ€ν¬λ¦°) | ||
12 | </combo_item> | ||
13 | </combo_box> | ||
14 | <text type="string" length="1" name="text"> | 3 | <text type="string" length="1" name="text"> |
15 | λμ€νλ μ΄ ν΄μλ: | 4 | λμ€νλ μ΄ ν΄μλ: |
16 | </text> | 5 | </text> |
6 | <check_box label="νλμ μ°½μμ μ€ν" name="windowed mode" /> | ||
17 | <text type="string" length="1" name="Fullscreen Aspect Ratio:"> | 7 | <text type="string" length="1" name="Fullscreen Aspect Ratio:"> |
18 | μ 체 νλ©΄ λΉμ¨: | 8 | μ 체 νλ©΄ λΉμ¨: |
19 | </text> | 9 | </text> |
20 | <text type="string" length="1" name="(width / height)"> | 10 | <text type="string" length="1" name="(width / height)"> |
21 | (ν / λμ΄) | 11 | (ν/λμ΄) |
22 | </text> | 12 | </text> |
13 | <combo_box name="aspect_ratio"> | ||
14 | <combo_item type="string" length="1" name="4:3(StandardCRT)"> | ||
15 | 4:3(νμ€ CRT) | ||
16 | </combo_item> | ||
17 | <combo_item type="string" length="1" name="5:4(1280x1024LCD)"> | ||
18 | 5:4(1280x1024 LCD) | ||
19 | </combo_item> | ||
20 | <combo_item type="string" length="1" name="16:9(Widescreen)"> | ||
21 | 16:9(μμ΄λμ€ν¬λ¦°) | ||
22 | </combo_item> | ||
23 | </combo_box> | ||
24 | <check_box label="μλ κ°μ§" name="aspect_auto_detect" /> | ||
23 | <text type="string" length="1" name="UI Size:"> | 25 | <text type="string" length="1" name="UI Size:"> |
24 | UI ν¬κΈ°: | 26 | λ©λ΄μ°½ κΈ°λ³Έ ν¬κΈ°: |
25 | </text> | 27 | </text> |
26 | <text type="string" length="1" name="(meters, lower is faster)"> | 28 | <text type="string" length="1" name="(meters, lower is faster)"> |
27 | (λ―Έν°, λμμλ‘ λΉ λ¦) | 29 | (λ―Έν°, λμμλ‘ λΉ λ¦) |
@@ -29,13 +31,11 @@ | |||
29 | <text type="string" length="1" name="text2"> | 31 | <text type="string" length="1" name="text2"> |
30 | λμ€νλ μ΄ μ΅μ : | 32 | λμ€νλ μ΄ μ΅μ : |
31 | </text> | 33 | </text> |
32 | <check_box label="νλμ μ°½μμ μ€ν" name="windowed mode" /> | 34 | <check_box label="ν΄μλ λ 립 μ€μΌμΌ μ¬μ©" name="ui_auto_scale" /> |
33 | <check_box label="μλ κ°μ§" name="aspect_auto_detect" /> | 35 | <spinner label="λ λλ§ κ±°λ¦¬ μ ν:" name="draw_distance" /> |
34 | <check_box label="ν΄μλ λ 립 ν¬κΈ° μ‘°μ μ¬μ©" name="ui_auto_scale" /> | 36 | <check_box label="1μΈμΉ μμ μΌλ‘ μμ" name="avfp" /> |
35 | <check_box label="μλ°νλ₯Ό λ§μ°μ€ μμ μ νμ" name="avfp" /> | ||
36 | <spinner label="그리기 거리:" name="draw_distance" /> | ||
37 | <text name="resolution_format"> | 37 | <text name="resolution_format"> |
38 | [RES_X] x [RES_Y] | 38 | [RES_X]x[RES_Y] |
39 | </text> | 39 | </text> |
40 | <text name="aspect_ratio_text"> | 40 | <text name="aspect_ratio_text"> |
41 | [NUM]:[DEN] | 41 | [NUM]:[DEN] |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_graphics2.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_graphics2.xml index 9f56b3a..06c3ec1 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_graphics2.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_graphics2.xml | |||
@@ -1,23 +1,23 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="κ·Έλν½ μΈλΆμ¬ν" name="Display panel 3"> | 2 | <panel label="κ·Έλν½ λν μΌ" name="Display panel 3"> |
3 | <text type="string" length="1" name="text"> | 3 | <text type="string" length="1" name="text"> |
4 | μ °μ΄λ: | 4 | μμ΄λ: |
5 | </text> | 5 | </text> |
6 | <check_box label="λ²ν맀ν λ° κ΄ν μ¬μ©" name="bumpshiny" /> | 6 | <check_box label="λ²ν맀ν λ° κ΄ν 보μ΄κΈ°" name="bumpshiny" /> |
7 | <check_box label="μλ¬Όκ²° μ¬μ©" name="ripple" /> | 7 | <check_box label="μλ¬Όκ²° 보μ΄κΈ°" name="ripple" /> |
8 | <check_box label="μλ°ν λ² λ₯΄ν μ€ νλ‘κ·Έλ¨" name="avatarvp" /> | 8 | <check_box label="μλ°ν λ²ν μ€ νλ‘κ·Έλ¨" name="avatarvp" /> |
9 | <text type="string" length="1" name="Avatar Rendering:"> | 9 | <text type="string" length="1" name="Avatar Rendering:"> |
10 | μλ°ν λ λλ§: | 10 | μλ°ν λ λλ§: |
11 | </text> | 11 | </text> |
12 | <radio_group name="Avatar Appearance"> | 12 | <radio_group name="Avatar Appearance"> |
13 | <radio_item type="string" length="1" name="Normal"> | 13 | <radio_item type="string" length="1" name="Normal"> |
14 | μΌλ°μ μ | 14 | μΌλ° |
15 | </radio_item> | 15 | </radio_item> |
16 | <radio_item type="string" length="1" name="Bump"> | 16 | <radio_item type="string" length="1" name="Bump"> |
17 | Bump Mapped | 17 | λ²ν 맡 |
18 | </radio_item> | 18 | </radio_item> |
19 | <radio_item type="string" length="1" name="Cloth"> | 19 | <radio_item type="string" length="1" name="Cloth"> |
20 | Bump Mapped & μλ₯ | 20 | λ²ν 맡 & μ·κ° |
21 | </radio_item> | 21 | </radio_item> |
22 | </radio_group> | 22 | </radio_group> |
23 | <text type="string" length="1" name="Lighting Detail:"> | 23 | <text type="string" length="1" name="Lighting Detail:"> |
@@ -25,10 +25,10 @@ | |||
25 | </text> | 25 | </text> |
26 | <radio_group name="lighting detail radio"> | 26 | <radio_group name="lighting detail radio"> |
27 | <radio_item type="string" length="1" name="SunMoon"> | 27 | <radio_item type="string" length="1" name="SunMoon"> |
28 | ν΄μ λ¬ | 28 | μμ°κ΄λ§ νμ |
29 | </radio_item> | 29 | </radio_item> |
30 | <radio_item type="string" length="1" name="LocalLights"> | 30 | <radio_item type="string" length="1" name="LocalLights"> |
31 | κ·Όμ μ§μ κ΄ | 31 | κ·Όμ κ΄μ νμ |
32 | </radio_item> | 32 | </radio_item> |
33 | </radio_group> | 33 | </radio_group> |
34 | <text type="string" length="1" name="Terrain Detail:"> | 34 | <text type="string" length="1" name="Terrain Detail:"> |
@@ -43,15 +43,15 @@ | |||
43 | </radio_item> | 43 | </radio_item> |
44 | </radio_group> | 44 | </radio_group> |
45 | <text type="string" length="1" name="Object Mesh Detail:"> | 45 | <text type="string" length="1" name="Object Mesh Detail:"> |
46 | μμ΄ν λ©μ¬ μΈλΆ μ¬ν: | 46 | μ€λΈμ νΈ λ©μ¬ λν μΌ: |
47 | </text> | 47 | </text> |
48 | <text type="string" length="1" name="Flexible Mesh Detail:"> | 48 | <text type="string" length="1" name="Flexible Mesh Detail:"> |
49 | μ μΆμ± μλ λ©μ¬ μΈλΆ μ¬ν: | 49 | νλ μλΈ λ©μ¬ λν μΌ: |
50 | </text> | 50 | </text> |
51 | <text type="string" length="1" name="Tree Mesh Detail:"> | 51 | <text type="string" length="1" name="Tree Mesh Detail:"> |
52 | λ무 λ©μ¬ μΈλΆ μ¬ν: | 52 | λ무 λ©μ¬ λν μΌ: |
53 | </text> | 53 | </text> |
54 | <text type="string" length="1" name="Avatar Mesh Detail:"> | 54 | <text type="string" length="1" name="Avatar Mesh Detail:"> |
55 | μλ°ν λ©μ¬ μΈλΆ μ¬ν: | 55 | μλ°ν λ©μ¬ λν μΌ: |
56 | </text> | 56 | </text> |
57 | </panel> | 57 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_graphics3.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_graphics3.xml index 81874ff..c03812d 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_graphics3.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_graphics3.xml | |||
@@ -1,23 +1,22 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="κ·Έλν½ κ³ κΈμ¬ν" name="Display panel 2"> | 2 | <panel label="κ·Έλν½ κ³ κΈ μ¬ν" name="Display panel 2"> |
3 | <text type="string" length="1" name="Filtering:"> | 3 | <text type="string" length="1" name="Filtering:"> |
4 | νν°λ§: | 4 | νν°λ§: |
5 | </text> | 5 | </text> |
6 | <check_box label="μ΄λ°©μ± νν°λ§(μΌμ§ κ²½μ° λλ €μ§)" name="ani" /> | 6 | <check_box label="Anisotropic νν°λ§(μ¬μ©μ λλ €μ§)" name="ani" /> |
7 | <spinner label="κ°λ§:" name="gamma" /> | 7 | <spinner label="κ°λ§:" name="gamma" /> |
8 | <text type="string" length="1" name="(brightness, lower is brighter)"> | 8 | <text type="string" length="1" name="(brightness, lower is brighter)"> |
9 | (λ°κΈ°, λμμλ‘ λ°μ, 0=κΈ°λ³Έ μ€μ μ¬μ©) | 9 | (λ°κΈ°, λμ μλ‘ λ°μ, κΈ°λ³Έ μ€μ κ° 0) |
10 | </text> | 10 | </text> |
11 | <spinner label="μΌκ° λ°κΈ°:" name="nighttime_brightness" /> | 11 | <spinner label="μΌκ° λ°κΈ°:" name="nighttime_brightness" /> |
12 | <text type="string" length="1" name="(higher is brighter, 1.0 is default)"> | 12 | <text type="string" length="1" name="(higher is brighter, 1.0 is default)"> |
13 | (λμμλ‘ λ°μ, 1.0μ΄ κΈ°λ³Έ μ€μ ) | 13 | (λμ μλ‘ λ°μ, κΈ°λ³Έ μ€μ κ° 1.0) |
14 | </text> | 14 | </text> |
15 | <text type="string" length="1" name="AGP Graphics Card:"> | 15 | <text type="string" length="1" name="Enable VBO:"> |
16 | AGP κ·Έλν½ μΉ΄λ: | 16 | VBO μ¬μ©: |
17 | </text> | 17 | </text> |
18 | <check_box label="AGP μ¬μ©(AGP κ·Έλν½ μΉ΄λλ₯Ό μ¬μ©ν κ²½μ° λΉ¨λΌμ§)" | 18 | <check_box label="OpenGL λ²ν μ€ λ²νΌ μ€λΈμ νΈ μ¬μ©" name="vbo" |
19 | name="agp" | 19 | tool_tip="νμ±ννλ©΄ OpenGL λλΌμ΄λ²μ μ€λ₯κ° λ°μν μ μμ΅λλ€." /> |
20 | tool_tip="νμ±νν κ²½μ° μ±λ₯μ΄ μ νλκ³ νμ€ PC κ·Έλν½ μΉ΄λλ₯Ό μ¬μ©ν κ²½μ° λ λ§μ λμ μ°κ²λ©λλ€." /> | ||
21 | <text type="string" length="1" name="Graphics Card Memory:"> | 20 | <text type="string" length="1" name="Graphics Card Memory:"> |
22 | κ·Έλν½ μΉ΄λ λ©λͺ¨λ¦¬: | 21 | κ·Έλν½ μΉ΄λ λ©λͺ¨λ¦¬: |
23 | </text> | 22 | </text> |
@@ -41,11 +40,11 @@ | |||
41 | 512MB | 40 | 512MB |
42 | </radio_item> | 41 | </radio_item> |
43 | </radio_group> | 42 | </radio_group> |
44 | <spinner label="μκ° κ±°λ¦¬ λΉμ¨:" name="fog" /> | 43 | <spinner label="μκ° λλ:" name="fog" /> |
45 | <spinner label="μ΅λ μ‘°κ° μ:" name="particles" /> | 44 | <spinner label="μ΅λ νν°ν΄ μ:" name="particles" /> |
46 | <spinner label="볡μ₯ κ΅¬μ± μ ν:" name="comp limit" | 45 | <spinner label="볡μ₯ κ΅¬μ± μ ν:" name="comp limit" |
47 | tool_tip="λμ€νλ μ΄ν μ΅κ·Ό λ³κ²½ 볡μ₯μ μ" /> | 46 | tool_tip="λμ€νλ μ΄ν μ΅κ·Ό λ³κ²½ 볡μ₯μ μ" /> |
48 | <text type="string" length="1" name="(lower is faster)"> | 47 | <text type="string" length="1" name="(lower is faster)"> |
49 | (λμμλ‘ λΉ λ¦) | 48 | (λμ μλ‘ λΉ λ¦) |
50 | </text> | 49 | </text> |
51 | </panel> | 50 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_im.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_im.xml index 3f4d55d..54e2dac 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_im.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_im.xml | |||
@@ -1,19 +1,23 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="λ©μ μ " name="im"> | 2 | <panel label="λ©μ μ " name="im"> |
3 | <text type="string" length="1" name="text_box"> | 3 | <text type="string" length="1" name="text_box"> |
4 | νλ‘ν μ¨λΌμΈ μν: | ||
5 | </text> | ||
6 | <check_box label="μΉκ΅¬λ€μκ² λ΄ μ¨λΌμΈ μν μλ¦Ό" name="online_visibility" /> | ||
7 | <text type="string" length="1" name="text_box2"> | ||
4 | λ©μ μ μ΅μ : | 8 | λ©μ μ μ΅μ : |
5 | </text> | 9 | </text> |
6 | <text name="log_in_to_change"> | 10 | <text name="log_in_to_change"> |
7 | λ‘κ·ΈμΈνμ¬ λ³κ²½ | 11 | λ‘κ·ΈμΈνμ¬ λ³κ²½ |
8 | </text> | 12 | </text> |
9 | <check_box label="IMμ μ΄λ©μΌ([EMAIL])λ‘ μ μ‘" name="send_im_to_email" /> | 13 | <check_box label="μͺ½μ§λ₯Ό μ΄λ©μΌ([EMAIL])λ‘ μ μ‘" name="send_im_to_email" /> |
10 | <check_box label="μ±ν κΈ°λ‘μ λ©μ μ ν¬ν¨" name="include_im_in_chat_history" /> | 14 | <check_box label="μ±ν κΈ°λ‘μ μͺ½μ§ ν¬ν¨" name="include_im_in_chat_history" /> |
11 | <check_box label="λ©μ μ μ νμμ€ν¬ν νμνκΈ°" name="show_timestamps_check" /> | 15 | <check_box label="λ©μ μ μ μ±ν μκ° νμνκΈ°" name="show_timestamps_check" /> |
12 | <check_box label="Log Instant Messages" name="log_instant_messages" /> | 16 | <check_box label="λ©μ μ μͺ½μ§ μ μ₯" name="log_instant_messages" /> |
13 | <check_box label="Log Chat" name="log_chat" /> | 17 | <check_box label="μ±ν μ μ₯" name="log_chat" /> |
14 | <check_box label="Show end of last IM conversation" name="log_show_history" /> | 18 | <check_box label="μ§λ λν 보μ¬μ£ΌκΈ°" name="log_show_history" /> |
15 | <button label="Change Path" label_selected="Change Path" name="log_path_button" /> | 19 | <button label="κ²½λ‘ λ³κ²½" label_selected="κ²½λ‘ λ³κ²½" name="log_path_button" /> |
16 | <text type="string" length="1" name="text_box2"> | 20 | <text type="string" length="1" name="text_box3"> |
17 | λ€λ₯Έ μ©λ¬΄ μ€ λͺ¨λ λμ: | 21 | λΆμ¬μ€ λ΅λ³: |
18 | </text> | 22 | </text> |
19 | </panel> | 23 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_input.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_input.xml index e960d48..befc9b4 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_input.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_input.xml | |||
@@ -1,24 +1,25 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="μΉ΄λ©λΌ λ·° μ‘°μ " name="Input panel"> | 2 | <panel label="μ λ ₯μ₯μΉ/μΉ΄λ©λΌ" name="Input panel"> |
3 | <text type="string" length="1" name=" Mouselook Options:"> | 3 | <text type="string" length="1" name=" Mouselook Options:"> |
4 | λ§μ°μ€ μμ μ΅μ : | 4 | 1μΈμΉ μμ μ΅μ : |
5 | </text> | 5 | </text> |
6 | <text type="string" length="1" name=" Mouse Sensitivity:"> | 6 | <text type="string" length="1" name=" Mouse Sensitivity:"> |
7 | λ§μ°μ€ λ―Όκ°μ±: | 7 | λ§μ°μ€ λ―Όκ°μ±: |
8 | </text> | 8 | </text> |
9 | <check_box label="λ§μ°μ€ λ°μ " name="invert mouse" /> | ||
9 | <text type="string" length="1" name=" Auto Fly Options:"> | 10 | <text type="string" length="1" name=" Auto Fly Options:"> |
10 | μλ λΉν μ΅μ : | 11 | μλ λΉν μ΅μ : |
11 | </text> | 12 | </text> |
13 | <check_box label="PageUp/Down ν€λ‘ μ΄μ°©λ₯" name="automatic fly" /> | ||
12 | <text type="string" length="1" name=" Camera Options:"> | 14 | <text type="string" length="1" name=" Camera Options:"> |
13 | μΉ΄λ©λΌ μ΅μ : | 15 | μΉ΄λ©λΌ μ΅μ : |
14 | </text> | 16 | </text> |
15 | <text type="string" length="1" name="Camera Springiness:"> | 17 | <text type="string" length="1" name="Camera Springiness:"> |
16 | μΉ΄λ©λΌ μ μΆμ±: | 18 | μΉ΄λ©λΌ μ μΆμ±: |
17 | </text> | 19 | </text> |
18 | <check_box label="λ§μ°μ€ λ°μ " name="invert mouse" /> | 20 | <check_box label="μλνΈμ§ μΉ΄λ©λΌ μμ§μ" name="edit camera movement" |
19 | <check_box label="μλ‘ μ¬λ¦¬κ³ μλλ‘ λ΄λ € λΉν/μ°©λ₯" name="automatic fly" /> | 21 | tool_tip="νΈμ§ λͺ¨λλ₯Ό μμνκ±°λ μ’ λ£ν λ μΉ΄λ©λΌ μλ μμΉ μ€μ μ¬μ©" /> |
20 | <check_box label="μλ νΈμ§ μΉ΄λ©λΌ μμ§μ" name="edit camera movement" | 22 | <check_box label="λ΄ λͺ¨μ΅ λ³κ²½μ μΉ΄λ©λΌ μλ μ€μ " |
21 | tool_tip="νΈμ§ λͺ¨λλ₯Ό μμνκ±°λ μ’ λ£ν λ μΉ΄λ©λΌ μλ μμΉ μ€μ μ μ¬μ©" /> | 23 | name="appearance camera movement" |
22 | <check_box label="μλ μΈμ μΉ΄λ©λΌ μμ§μ" name="appearance camera movement" | ||
23 | tool_tip="νΈμ§ λͺ¨λμΌ λ μΉ΄λ©λΌ μλ μμΉ μ€μ μ¬μ©" /> | 24 | tool_tip="νΈμ§ λͺ¨λμΌ λ μΉ΄λ©λΌ μλ μμΉ μ€μ μ¬μ©" /> |
24 | </panel> | 25 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_network.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_network.xml index 9ba9638..e1210fb 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_network.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_network.xml | |||
@@ -4,24 +4,17 @@ | |||
4 | μ΅λ λμν: | 4 | μ΅λ λμν: |
5 | </text> | 5 | </text> |
6 | <text type="string" length="1" name="text_box2"> | 6 | <text type="string" length="1" name="text_box2"> |
7 | kbps(μ΄λΉ ν¬λ‘λ°μ΄νΈ) | 7 | kbps (kilobits per second) |
8 | </text> | 8 | </text> |
9 | <text type="string" length="1" name="text_box3"> | 9 | <text type="string" length="1" name="cache_size_label_l"> |
10 | λμ€ν¬ μΊμ ν¬κΈ°: | 10 | λμ€ν¬ μΊμ ν¬κΈ°(MB): |
11 | </text> | 11 | </text> |
12 | <radio_group name="disk cache"> | 12 | <button label="μΊμ λΉμ°κΈ°" name="clear_cache" /> |
13 | <radio_item type="string" length="1" name="radio"> | 13 | <text type="string" length="1" name="cache_location_label"> |
14 | 50 MB | 14 | λμ€ν¬ μΊμ μμΉ: |
15 | </radio_item> | 15 | </text> |
16 | <radio_item type="string" length="1" name="radio2"> | 16 | <button label="μ€μ " label_selected="μ€μ " name="set_cache" /> |
17 | 200 MB | 17 | <button label="μ΄κΈ°ν" label_selected="μ€μ " name="reset_cache" /> |
18 | </radio_item> | 18 | <check_box label="μ¬μ©μ μ§μ ν¬νΈ" name="connection_port_enabled" /> |
19 | <radio_item type="string" length="1" name="radio3"> | 19 | <spinner label="ν¬νΈ λ²νΈ:" name="connection_port" /> |
20 | 500 MB | ||
21 | </radio_item> | ||
22 | <radio_item type="string" length="1" name="radio4"> | ||
23 | 1000 MB | ||
24 | </radio_item> | ||
25 | </radio_group> | ||
26 | <button label="μΊμ λΉμ°κΈ°" label_selected="μΊμ λΉμ°κΈ°" name="clear_cache" /> | ||
27 | </panel> | 20 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_popups.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_popups.xml index 22a9e66..87b9c1e 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_popups.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_popups.xml | |||
@@ -1,14 +1,13 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="νμ " name="popups"> | 2 | <panel label="νμ " name="popups"> |
3 | <text type="string" length="1" name="text_box"> | 3 | <text type="string" length="1" name="text_box"> |
4 | νμ νμ κΈμ§: | 4 | νμ μ°¨λ¨: |
5 | </text> | 5 | </text> |
6 | <button label="μ΄ νμ μΌκΈ°" label_selected="μ΄ νμ μΌκΈ°" | 6 | <button label="νμ 보기" label_selected="νμ 보기" name="enable_popup" /> |
7 | name="enable_popup" /> | ||
8 | <text type="string" length="1" name="text_box2"> | 7 | <text type="string" length="1" name="text_box2"> |
9 | νμ νμνκΈ°: | 8 | νμ©λ νμ : |
10 | </text> | 9 | </text> |
11 | <button label="'λ€μμ νμ' λν μ¬μ€μ ..." | 10 | <button label="λμ€μ μλ¦Ό' μ΄κΈ°νβ¦" |
12 | label_selected="'λ€μμ νμ' λν μ¬μ€μ ..." | 11 | label_selected="λμ€μ μλ¦Ό' μ΄κΈ°νβ¦" |
13 | name="reset_dialogs_btn" /> | 12 | name="reset_dialogs_btn" /> |
14 | </panel> | 13 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_region_covenant.xml b/linden/indra/newview/skins/xui/ko/panel_region_covenant.xml index d4a9fd2..b9e8341 100644 --- a/linden/indra/newview/skins/xui/ko/panel_region_covenant.xml +++ b/linden/indra/newview/skins/xui/ko/panel_region_covenant.xml | |||
@@ -1,52 +1,52 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="κ³μ½ μ‘°ν" name="Covenant"> | 2 | <panel label="μν κ·μΉ" name="Covenant"> |
3 | <text name="covenant_help_text"> | 3 | <text name="covenant_help_text"> |
4 | κ³μ½ μ 보λ₯Ό λ³κ²½νλ©΄ μμ μ§μ λͺ¨λ ꡬνμ΄ νμλ©λλ€. | 4 | μν κ·μΉ μ 보λ₯Ό λ³κ²½νλ©΄ μ¬μ μ§ λ΄ λͺ¨λ ꡬνμ νμ λ©λλ€. |
5 | </text> | 5 | </text> |
6 | <text name="region_name_lbl"> | 6 | <text name="region_name_lbl"> |
7 | μ§μ: | 7 | μ§μ: |
8 | </text> | 8 | </text> |
9 | <text name="region_name_text"> | 9 | <text name="region_name_text"> |
10 | (μλ €μ§μ§ μμ) | 10 | (μ μ μμ) |
11 | </text> | 11 | </text> |
12 | <text name="estate_name_lbl"> | 12 | <text name="estate_name_lbl"> |
13 | μμ μ§: | 13 | μ¬μ μ§: |
14 | </text> | 14 | </text> |
15 | <text name="estate_name_text"> | 15 | <text name="estate_name_text"> |
16 | (μλ €μ§μ§ μμ) | 16 | (μ μ μμ) |
17 | </text> | 17 | </text> |
18 | <text name="covenent_instructions"> | 18 | <text name="covenent_instructions"> |
19 | λ ΈνΈμΉ΄λλ₯Ό λλκ·Έλλν΄μ | 19 | λ ΈνΈμΉ΄λλ₯Ό λμ΄λ€ λμμ |
20 | μ΄ μμ μ§μ λν κ³μ½ μ‘°νμ | 20 | μ΄ μ¬μ μ§μ λν μν κ·μΉμ |
21 | λ³κ²½ν©λλ€. | 21 | λ³κ²½ν©λλ€. |
22 | </text> | 22 | </text> |
23 | <button label="?" name="covenant_help" /> | 23 | <button label="?" name="covenant_help" /> |
24 | <button label="μ¬μ€μ " name="reset_covenant" /> | 24 | <button label="μ΄κΈ°ν" name="reset_covenant" /> |
25 | <text name="estate_owner_lbl"> | 25 | <text name="estate_owner_lbl"> |
26 | μμ μ§ μμ μ: | 26 | μ¬μ μ§ μμ μ: |
27 | </text> | 27 | </text> |
28 | <text name="estate_owner_text"> | 28 | <text name="estate_owner_text"> |
29 | (μλ €μ§μ§ μμ) | 29 | (μ μ μμ) |
30 | </text> | 30 | </text> |
31 | <text name="resellable_clause"> | 31 | <text name="resellable_clause"> |
32 | μ΄ μ§μμμ ꡬμ ν ν μ§λ μ¬ν맀ν μ μλ κ²½μ°λ μμ΅λλ€. | 32 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ μ¬ν맀 ν μ μλ κ²½μ°λ μμ΅λλ€. |
33 | </text> | 33 | </text> |
34 | <text name="changeable_clause"> | 34 | <text name="changeable_clause"> |
35 | μ΄ μ§μμμ ꡬμ ν ν μ§λ κ²°ν© λλ λΆν ν μ μλ κ²½μ°λ μμ΅λλ€. | 35 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ κ²°ν© λλ λΆν ν μ μλ κ²½μ°λ μμ΅λλ€. |
36 | </text> | 36 | </text> |
37 | <text_editor name="covenant_editor"> | 37 | <text_editor name="covenant_editor"> |
38 | λ‘λ©μ€... | 38 | λ‘λ© μ€β¦ |
39 | </text_editor> | 39 | </text_editor> |
40 | <text name="can_resell"> | 40 | <text name="can_resell"> |
41 | μ΄ μ§μμμ ꡬμ ν ν μ§λ μ¬ν맀ν μ μμ΅λλ€. | 41 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ μ¬ν맀 ν μ μμ΅λλ€. |
42 | </text> | 42 | </text> |
43 | <text name="can_not_resell"> | 43 | <text name="can_not_resell"> |
44 | μ΄ μ§μμμ ꡬμ ν ν μ§λ μ¬ν맀ν μ μμ΅λλ€. | 44 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ μ¬ν맀 ν μ μμ΅λλ€. |
45 | </text> | 45 | </text> |
46 | <text name="can_change"> | 46 | <text name="can_change"> |
47 | μ΄ μ§μμμ ꡬμ ν ν μ§λ κ²°ν© λλ λΆν ν μ μμ΅λλ€. | 47 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ κ²°ν© λλ λΆν κ°λ₯ ν©λλ€. |
48 | </text> | 48 | </text> |
49 | <text name="can_not_change"> | 49 | <text name="can_not_change"> |
50 | μ΄ μ§μμμ ꡬμ ν ν μ§λ κ²°ν© λλ λΆν ν μ μμ΅λλ€. | 50 | μ΄ μ§μμμ ꡬ맀ν ν μ§λ κ²°ν© λλ λΆν λΆκ°λ₯ ν©λλ€. |
51 | </text> | 51 | </text> |
52 | </panel> | 52 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_region_debug.xml b/linden/indra/newview/skins/xui/ko/panel_region_debug.xml index 8baaee1..abe8d8d 100644 --- a/linden/indra/newview/skins/xui/ko/panel_region_debug.xml +++ b/linden/indra/newview/skins/xui/ko/panel_region_debug.xml | |||
@@ -1,32 +1,29 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="λ²κ·Έ μ κ±°" name="Debug"> | 2 | <panel label="λλ²κ·Έ" name="Debug"> |
3 | <text name="region_text_lbl"> | 3 | <text name="region_text_lbl"> |
4 | μ§μ: | 4 | μ§μ: |
5 | </text> | 5 | </text> |
6 | <text name="region_text"> | 6 | <text name="region_text"> |
7 | μλ €μ§μ§ μμ | 7 | μ μ μμ |
8 | </text> | 8 | </text> |
9 | <check_box label="μ€ν¬λ¦½νΈ λκΈ°" name="disable_scripts_check" | 9 | <check_box label="μ€ν¬λ¦½νΈ λκΈ°" name="disable_scripts_check" |
10 | tool_tip="μ΄ μ§μλ΄ λͺ¨λ μ€ν¬λ¦½νΈλ₯Ό λλλ€" /> | 10 | tool_tip="μ΄ μ§μ λ΄ λͺ¨λ μ€ν¬λ¦½νΈ λκΈ°" /> |
11 | <button label="?" name="disable_scripts_help" /> | 11 | <button label="?" name="disable_scripts_help" /> |
12 | <check_box label="μΆ©λ λκΈ°" name="disable_collisions_check" | 12 | <check_box label="μΆ©λ λκΈ°" name="disable_collisions_check" |
13 | tool_tip="μ΄ μ§μλ΄ λΉμλ°ν μΆ©λμ λλλ€" /> | 13 | tool_tip="μ΄ μ§μ λ΄ λΉμλ°ν μΆ©λ λκΈ°" /> |
14 | <button label="?" name="disable_collisions_help" /> | 14 | <button label="?" name="disable_collisions_help" /> |
15 | <check_box label="물리 λκΈ°" name="disable_physics_check" | 15 | <check_box label="물리μμ§ λκΈ°" name="disable_physics_check" |
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 | <button label="μλ°ν μ ν..." name="choose_avatar_btn" /> |
20 | <button | 20 | <button label="μ€ν¬λ¦½νΈ μ€λΈμ νΈ μ κ±°" name="return_scripted_other_land_btn" /> |
21 | label="λ€λ₯Έ μ¬λ μμ ν μ§μμ μλ°ν μμ μ€ν¬λ¦½νΈ μ¬λ¬Ό λ°ν" | 21 | <button label="λͺ¨λ μ€ν¬λ¦½νΈ μ€λΈμ νΈ μ κ±°" name="return_scripted_all_btn" /> |
22 | name="return_scripted_other_land_btn" /> | 22 | <button label="λμ©λ μ½λΌμ΄λ 보기β¦" name="top_colliders_btn" |
23 | <button label="μλ°ν μμ μ€ν¬λ¦½νΈ μ¬λ¬Ό μ 체 λ°ν" | 23 | tool_tip="μΆ©λ κ°λ₯ν μ΅μμ μ€λΈμ νΈ λͺ©λ‘" /> |
24 | name="return_scripted_all_btn" /> | ||
25 | <button label="ν 컬λΌμ΄λ κ°μ Έμ€κΈ°..." name="top_colliders_btn" | ||
26 | tool_tip="μ΅κ³ μμ€μ μΆ©λ κ°λ₯μ±μ κ²½ννλ μμ΄ν λͺ©λ‘" /> | ||
27 | <button label="?" name="top_colliders_help" /> | 24 | <button label="?" name="top_colliders_help" /> |
28 | <button label="ν μ€ν¬λ¦½νΈ κ°μ Έμ€κΈ°..." name="top_scripts_btn" | 25 | <button label="λμ©λ μ€ν¬λ¦½νΈ 보기β¦" name="top_scripts_btn" |
29 | tool_tip="μ€ν¬λ¦½νΈ μ€νμ κ°μ₯ λ§μ μκ°μ μλͺ¨νλ μμ΄ν λͺ©λ‘" /> | 26 | tool_tip="μ€ν¬λ¦½νΈ μ€νμ κ°μ₯ λ§μ μκ°μ μλͺ¨νλ μ€λΈμ νΈ λͺ©λ‘" /> |
30 | <button label="?" name="top_scripts_help" /> | 27 | <button label="?" name="top_scripts_help" /> |
31 | <button label="μ§μ μ¬μμ" name="restart_btn" | 28 | <button label="μ§μ μ¬μμ" name="restart_btn" |
32 | tool_tip="2λΆκ° μΉ΄μ΄νΈλ€μ΄ν ν μ§μμ μ¬μμν©λλ€" /> | 29 | tool_tip="2λΆκ° μΉ΄μ΄νΈλ€μ΄ν ν μ§μμ μ¬μμν©λλ€" /> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_region_estate.xml b/linden/indra/newview/skins/xui/ko/panel_region_estate.xml index 96588c5..86b7c2a 100644 --- a/linden/indra/newview/skins/xui/ko/panel_region_estate.xml +++ b/linden/indra/newview/skins/xui/ko/panel_region_estate.xml | |||
@@ -1,63 +1,63 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="μμ μ§" name="Estate"> | 2 | <panel label="μ¬μ μ§" name="Estate"> |
3 | <text name="estate_help_text"> | 3 | <text name="estate_help_text"> |
4 | μ΄ ν λ΄μ©μ λ³κ²½ν κ²½μ° μμ μ§λ΄ μ 체 μ§μμ μν₯μ λ―ΈμΉ©λλ€. | 4 | μ΄ νμμ μ€μ μ λ³κ²½νλ©΄ μ¬μ μ§ λ΄ λͺ¨λ μ§μμ μ μ© λ©λλ€. |
5 | </text> | 5 | </text> |
6 | <text name="estate_text"> | 6 | <text name="estate_text"> |
7 | μμ μ§: | 7 | μ¬μ μ§: |
8 | </text> | 8 | </text> |
9 | <text name="estate_name"> | 9 | <text name="estate_name"> |
10 | (μλ €μ§μ§ μμ) | 10 | (μ μ μμ) |
11 | </text> | 11 | </text> |
12 | <text name="owner_text"> | 12 | <text name="owner_text"> |
13 | μμ μ£Ό: | 13 | μμ μ: |
14 | </text> | 14 | </text> |
15 | <text name="estate_owner"> | 15 | <text name="estate_owner"> |
16 | (μλ €μ§μ§ μμ) | 16 | (μ μ μμ) |
17 | </text> | 17 | </text> |
18 | <text name="estate_manager_label"> | 18 | <text name="estate_manager_label"> |
19 | μμ μ§ κ΄λ¦¬μ: | 19 | μ¬μ μ§ κ΄λ¦¬μ: |
20 | </text> | 20 | </text> |
21 | <button label="?" name="estate_manager_help" /> | 21 | <button label="?" name="estate_manager_help" /> |
22 | <button label="μΆκ°..." name="add_estate_manager_btn" /> | 22 | <button label="μΆκ°..." name="add_estate_manager_btn" /> |
23 | <button label="μ κ±°..." name="remove_estate_manager_btn" /> | 23 | <button label="μ κ±°β¦" name="remove_estate_manager_btn" /> |
24 | <check_box label="μΈκ³ μκ° μ¬μ©" name="use_global_time_check" /> | 24 | <check_box label="νμ€μκ° μ¬μ©" name="use_global_time_check" /> |
25 | <button label="?" name="use_global_time_help" /> | 25 | <button label="?" name="use_global_time_help" /> |
26 | <check_box label="κ³ μ νμ" name="fixed_sun_check" /> | 26 | <check_box label="νμ κ³ μ " name="fixed_sun_check" /> |
27 | <button label="?" name="fixed_sun_help" /> | 27 | <button label="?" name="fixed_sun_help" /> |
28 | <slider label="λ¨κ³" name="sun_hour_slider" /> | 28 | <slider label="λ¨κ³" name="sun_hour_slider" /> |
29 | <check_box label="λ³Έν μμ κ°μκΆλ΄" name="externally_visible_check" /> | 29 | <check_box label="μΌλ° 곡κ°" name="externally_visible_check" /> |
30 | <button label="?" name="externally_visible_help" /> | 30 | <button label="?" name="externally_visible_help" /> |
31 | <check_box label="μ¬κΈ°μ λ³Έν λ κ°μκΆλ΄" name="mainland_visible_check" /> | 31 | <check_box label="μ§μ ν λ ν¬νΈ νμ©" name="allow_direct_teleport" /> |
32 | <button label="?" name="mainland_visible_help" /> | ||
33 | <check_box label="μ§μ ν 리ν¬νΈ νμ©" name="allow_direct_teleport" /> | ||
34 | <button label="?" name="allow_direct_teleport_help" /> | 32 | <button label="?" name="allow_direct_teleport_help" /> |
35 | <text name="region_text_lbl"> | 33 | <text name="region_text_lbl"> |
36 | μ§λΆ μνμ μ‘μΈμ€ κ±°λΆ: | 34 | μ§λΆ μνλ³λ‘ μΆμ κ±°λΆ |
35 | </text> | ||
36 | <check_box label="κ²°μ μλ¨ λ―Έλ±λ‘μ μΆμ κ±°λΆ" name="deny_anonymous" /> | ||
37 | <check_box label="κ²°μ μλ¨ λ±λ‘μ μΆμ κ±°λΆ" name="deny_identified" /> | ||
38 | <check_box label="κ²°μ μλ¨ μ¬μ©μ μΆμ κ±°λΆ" name="deny_transacted" /> | ||
39 | <text name="abuse_email_text"> | ||
40 | [Abuse E-mail Beta] | ||
37 | </text> | 41 | </text> |
38 | <check_box label="νμΌμ λ―Έμ§λΆ μ 보 κ±°λΆ" name="deny_anonymous" /> | ||
39 | <check_box label="νμΌμ μ§λΆ μ 보 κ±°λΆ" name="deny_identified" /> | ||
40 | <check_box label="μ¬μ©ν μ§λΆ μ 보 κ±°λΆ" name="deny_transacted" /> | ||
41 | <button label="μ μ©" name="apply_btn" /> | 42 | <button label="μ μ©" name="apply_btn" /> |
42 | <text name="allow_resident_label"> | 43 | <text name="allow_resident_label"> |
43 | νμ© μ£Όλ―Ό: | 44 | νμ©λ μ£Όλ―Ό: |
44 | </text> | 45 | </text> |
45 | <button label="?" name="allow_resident_help" /> | 46 | <button label="?" name="allow_resident_help" /> |
46 | <button label="μΆκ°..." name="add_allowed_avatar_btn" /> | 47 | <button label="μΆκ°..." name="add_allowed_avatar_btn" /> |
47 | <button label="μ κ±°..." name="remove_allowed_avatar_btn" /> | 48 | <button label="μ κ±°β¦" name="remove_allowed_avatar_btn" /> |
48 | <text name="allow_group_label"> | 49 | <text name="allow_group_label"> |
49 | νμ© κ·Έλ£Ή: | 50 | νμ©λ κ·Έλ£Ή: |
50 | </text> | 51 | </text> |
51 | <button label="?" name="allow_group_help" /> | 52 | <button label="?" name="allow_group_help" /> |
52 | <button label="μΆκ°..." name="add_allowed_group_btn" /> | 53 | <button label="μΆκ°..." name="add_allowed_group_btn" /> |
53 | <button label="μ κ±°..." name="remove_allowed_group_btn" /> | 54 | <button label="μ κ±°β¦" name="remove_allowed_group_btn" /> |
54 | <text name="ban_resident_label"> | 55 | <text name="ban_resident_label"> |
55 | κΈμ§ μ£Όλ―Ό: | 56 | μΆμ κΈμ§λ μ£Όλ―Ό: |
56 | </text> | 57 | </text> |
57 | <button label="?" name="ban_resident_help" /> | 58 | <button label="?" name="ban_resident_help" /> |
58 | <button label="μΆκ°..." name="add_banned_avatar_btn" /> | 59 | <button label="μΆκ°..." name="add_banned_avatar_btn" /> |
59 | <button label="μ κ±°..." name="remove_banned_avatar_btn" /> | 60 | <button label="μ κ±°β¦" name="remove_banned_avatar_btn" /> |
60 | <button label="μμ μ§μ λ©μμ§ λ³΄λ΄κΈ°..." name="message_estate_btn" /> | 61 | <button label="μ¬μ μ§μ λ©μμ§ λ³΄λ΄κΈ°β¦" name="message_estate_btn" /> |
61 | <button label="μμ μ§μμ μ¬μ©μ μ«μλ΄κΈ°..." | 62 | <button label="μΆλ°©νκΈ°β¦" name="kick_user_from_estate_btn" /> |
62 | name="kick_user_from_estate_btn" /> | ||
63 | </panel> | 63 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_region_general.xml b/linden/indra/newview/skins/xui/ko/panel_region_general.xml index c4e84fc..69b8b30 100644 --- a/linden/indra/newview/skins/xui/ko/panel_region_general.xml +++ b/linden/indra/newview/skins/xui/ko/panel_region_general.xml | |||
@@ -4,13 +4,13 @@ | |||
4 | μ§μ: | 4 | μ§μ: |
5 | </text> | 5 | </text> |
6 | <text name="region_text"> | 6 | <text name="region_text"> |
7 | μλ €μ§μ§ μμ | 7 | μ μ μμ |
8 | </text> | 8 | </text> |
9 | <check_box label="ν λΌνΌ κΈμ§" name="block_terraform_check" /> | 9 | <check_box label="μ§ν λ³κ²½ κΈμ§" name="block_terraform_check" /> |
10 | <button label="?" name="terraform_help" /> | 10 | <button label="?" name="terraform_help" /> |
11 | <check_box label="λΉν κΈμ§" name="block_fly_check" /> | 11 | <check_box label="λΉν κΈμ§" name="block_fly_check" /> |
12 | <button label="?" name="fly_help" /> | 12 | <button label="?" name="fly_help" /> |
13 | <check_box label="μν΄ κ°μ" name="allow_damage_check" /> | 13 | <check_box label="λ°λ―Έμ§ νμ©" name="allow_damage_check" /> |
14 | <button label="?" name="damage_help" /> | 14 | <button label="?" name="damage_help" /> |
15 | <check_box label="λ°κΈ° νμ " name="restrict_pushobject" /> | 15 | <check_box label="λ°κΈ° νμ " name="restrict_pushobject" /> |
16 | <button label="?" name="restrict_pushobject_help" /> | 16 | <button label="?" name="restrict_pushobject_help" /> |
@@ -20,14 +20,14 @@ | |||
20 | <button label="?" name="parcel_changes_help" /> | 20 | <button label="?" name="parcel_changes_help" /> |
21 | <spinner label="μμ΄μ νΈ μ ν" name="agent_limit_spin" /> | 21 | <spinner label="μμ΄μ νΈ μ ν" name="agent_limit_spin" /> |
22 | <button label="?" name="agent_limit_help" /> | 22 | <button label="?" name="agent_limit_help" /> |
23 | <spinner label="μ¬λ¬Ό 보λμ€" name="object_bonus_spin" /> | 23 | <spinner label="μ€λΈμ νΈ λ³΄λμ€" name="object_bonus_spin" /> |
24 | <button label="?" name="object_bonus_help" /> | 24 | <button label="?" name="object_bonus_help" /> |
25 | <text label="λ§κΈ°μΌ" name="access_text"> | 25 | <text label="μ±μΈμ©" name="access_text"> |
26 | μ±μΈμ©: | 26 | μ±μΈμ©: |
27 | </text> | 27 | </text> |
28 | <combo_box label="μ±μΈμ©" name="access_combo"> | 28 | <combo_box label="μ±μΈμ©" name="access_combo"> |
29 | <combo_item name="PG"> | 29 | <combo_item name="PG"> |
30 | PG(보νΈμ μ§λ νμ) | 30 | λ―Έμ±μΈ |
31 | </combo_item> | 31 | </combo_item> |
32 | <combo_item name="Mature"> | 32 | <combo_item name="Mature"> |
33 | μ±μΈμ© | 33 | μ±μΈμ© |
@@ -35,8 +35,8 @@ | |||
35 | </combo_box> | 35 | </combo_box> |
36 | <button label="?" name="access_help" /> | 36 | <button label="?" name="access_help" /> |
37 | <button label="μ μ©" name="apply_btn" /> | 37 | <button label="μ μ©" name="apply_btn" /> |
38 | <button label="μ¬μ©μ 1μΈ μ§μΌλ‘ ν 리ν¬νΈνκΈ°..." name="kick_btn" /> | 38 | <button label="ν λͺ μ μ¬μ©μλ₯Ό νμΌλ‘ ν 리ν¬νΈ..." name="kick_btn" /> |
39 | <button label="λͺ¨λ μ¬μ©μ μ§μΌλ‘ ν 리ν¬νΈνκΈ°..." name="kick_all_btn" /> | 39 | <button label="λͺ¨λ μ¬μ©μλ₯Ό νμΌλ‘ ν 리ν¬νΈ..." name="kick_all_btn" /> |
40 | <button label="μ§μμ λ©μμ§ λ³΄λ΄κΈ°..." name="im_btn" /> | 40 | <button label="μ¬μ μ§μ λ©μμ§ λ³΄λ΄κΈ°β¦" name="im_btn" /> |
41 | <button label="ν 리νλΈ κ΄λ¦¬..." name="manage_telehub_btn" /> | 41 | <button label="ν λ νλΈ κ΄λ¦¬β¦" name="manage_telehub_btn" /> |
42 | </panel> | 42 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_region_terrain.xml b/linden/indra/newview/skins/xui/ko/panel_region_terrain.xml index fdec2e4..4cc8f57 100644 --- a/linden/indra/newview/skins/xui/ko/panel_region_terrain.xml +++ b/linden/indra/newview/skins/xui/ko/panel_region_terrain.xml | |||
@@ -4,24 +4,24 @@ | |||
4 | μ§μ: | 4 | μ§μ: |
5 | </text> | 5 | </text> |
6 | <text name="region_text"> | 6 | <text name="region_text"> |
7 | μλ €μ§μ§ μμ | 7 | μ μ μμ |
8 | </text> | 8 | </text> |
9 | <spinner label="μλ©΄ λμ΄" name="water_height_spin" /> | 9 | <spinner label="μλ©΄ λμ΄" name="water_height_spin" /> |
10 | <button label="?" name="water_height_help" /> | 10 | <button label="?" name="water_height_help" /> |
11 | <spinner label="μ§ν λμ΄κΈ° νκ³" name="terrain_raise_spin" /> | 11 | <spinner label="μ§ν λμ΄ μ ν" name="terrain_raise_spin" /> |
12 | <button label="?" name="terrain_raise_help" /> | 12 | <button label="?" name="terrain_raise_help" /> |
13 | <spinner label="μ§ν λμΆκΈ° νκ³" name="terrain_lower_spin" /> | 13 | <spinner label="μ§ν κΉμ΄ μ ν" name="terrain_lower_spin" /> |
14 | <button label="?" name="terrain_lower_help" /> | 14 | <button label="?" name="terrain_lower_help" /> |
15 | <check_box label="μμ μ§ νμ μ¬μ©" name="use_estate_sun_check" /> | 15 | <check_box label="μ¬μ μ§ μ μ© νμ μ¬μ©" name="use_estate_sun_check" /> |
16 | <button label="?" name="use_estate_sun_help" /> | 16 | <button label="?" name="use_estate_sun_help" /> |
17 | <check_box label="κ³ μ νμ" name="fixed_sun_check" /> | 17 | <check_box label="νμ κ³ μ " name="fixed_sun_check" /> |
18 | <button label="?" name="fixed_sun_help" /> | 18 | <button label="?" name="fixed_sun_help" /> |
19 | <slider label="λ¨κ³" name="sun_hour_slider" /> | 19 | <slider label="λ¨κ³" name="sun_hour_slider" /> |
20 | <button label="μ μ©" name="apply_btn" /> | 20 | <button label="μ μ©" name="apply_btn" /> |
21 | <button label="RAW μ§ν λ€μ΄λ‘λ..." name="download_raw_btn" | 21 | <button label="RAW μ§ν λ€μ΄λ‘λ..." name="download_raw_btn" |
22 | tool_tip="κ΄λ¦¬μλ μ μΈ, μμ μ£Όλ§ μ΄μ© κ°λ₯" /> | 22 | tool_tip="κ΄λ¦¬μλ μ μΈ, μμ μ£Όλ§ μ΄μ© κ°λ₯" /> |
23 | <button label="?" name="download_raw_help" /> | 23 | <button label="?" name="download_raw_help" /> |
24 | <button label="RAW μ§ν μ λ‘λ..." name="upload_raw_btn" | 24 | <button label="RAW μ§ν μ λ‘λβ¦" name="upload_raw_btn" |
25 | tool_tip="κ΄λ¦¬μλ μ μΈ, μμ μ£Όλ§ μ΄μ© κ°λ₯" /> | 25 | tool_tip="κ΄λ¦¬μλ μ μΈ, μμ μ£Όλ§ μ΄μ© κ°λ₯" /> |
26 | <button label="?" name="upload_raw_help" /> | 26 | <button label="?" name="upload_raw_help" /> |
27 | <button label="μ§ν μ μ₯" name="bake_terrain_btn" | 27 | <button label="μ§ν μ μ₯" name="bake_terrain_btn" |
diff --git a/linden/indra/newview/skins/xui/ko/panel_region_texture.xml b/linden/indra/newview/skins/xui/ko/panel_region_texture.xml index 50303b7..6443b36 100644 --- a/linden/indra/newview/skins/xui/ko/panel_region_texture.xml +++ b/linden/indra/newview/skins/xui/ko/panel_region_texture.xml | |||
@@ -1,16 +1,16 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="κ·ΈλΌμ΄λ ν μ€μ²" name="Textures"> | 2 | <panel label="μ§λ©΄ ν μ€μ²" name="Textures"> |
3 | <text name="region_text_lbl"> | 3 | <text name="region_text_lbl"> |
4 | μ§μ: | 4 | μ§μ: |
5 | </text> | 5 | </text> |
6 | <text name="region_text"> | 6 | <text name="region_text"> |
7 | μλ €μ§μ§ μμ | 7 | μ μ μμ |
8 | </text> | 8 | </text> |
9 | <text name="base_texture_text"> | 9 | <text name="detail_texture_text"> |
10 | κΈ°λ³Έ ν μ€μ²(128x128, 24 λΉνΈ .tga νμΌ νμ) | 10 | μ§μ ν μ€μ²(512x512, 24λΉνΈ .tga νμΌ νμ) |
11 | </text> | 11 | </text> |
12 | <text name="height_text_lbl"> | 12 | <text name="height_text_lbl"> |
13 | 1(μ ) | 13 | 1(λμ) |
14 | </text> | 14 | </text> |
15 | <text name="height_text_lbl2"> | 15 | <text name="height_text_lbl2"> |
16 | 2 | 16 | 2 |
@@ -19,37 +19,22 @@ | |||
19 | 3 | 19 | 3 |
20 | </text> | 20 | </text> |
21 | <text name="height_text_lbl4"> | 21 | <text name="height_text_lbl4"> |
22 | 4(κ³ ) | 22 | 4(λμ) |
23 | </text> | ||
24 | <text name="detail_texture_text"> | ||
25 | κΈ°λ³Έ ν μ€μ²(512x512, 24 λΉνΈ .tga νμΌ νμ) | ||
26 | </text> | 23 | </text> |
27 | <text name="height_text_lbl5"> | 24 | <text name="height_text_lbl5"> |
28 | 1(μ ) | 25 | ν μ€μ² μμΉ λ²μ |
29 | </text> | 26 | </text> |
30 | <text name="height_text_lbl6"> | 27 | <text name="height_text_lbl6"> |
31 | 2 | 28 | λ¨μ |
32 | </text> | 29 | </text> |
33 | <text name="height_text_lbl7"> | 30 | <text name="height_text_lbl7"> |
34 | 3 | 31 | λΆμ |
35 | </text> | 32 | </text> |
36 | <text name="height_text_lbl8"> | 33 | <text name="height_text_lbl8"> |
37 | 4(κ³ ) | 34 | λλ¨ |
38 | </text> | 35 | </text> |
39 | <text name="height_text_lbl9"> | 36 | <text name="height_text_lbl9"> |
40 | ν μ€μ² μμΉ λ²μ | 37 | λΆλ |
41 | </text> | ||
42 | <text name="height_text_lbl10"> | ||
43 | λ¨μ | ||
44 | </text> | ||
45 | <text name="height_text_lbl11"> | ||
46 | μλΆ | ||
47 | </text> | ||
48 | <text name="height_text_lbl12"> | ||
49 | λ¨λ | ||
50 | </text> | ||
51 | <text name="height_text_lbl13"> | ||
52 | λλΆ | ||
53 | </text> | 38 | </text> |
54 | <spinner label="λμ" name="height_start_spin_0" /> | 39 | <spinner label="λμ" name="height_start_spin_0" /> |
55 | <spinner label="λμ" name="height_start_spin_1" /> | 40 | <spinner label="λμ" name="height_start_spin_1" /> |
@@ -59,14 +44,14 @@ | |||
59 | <spinner label="λμ" name="height_range_spin_1" /> | 44 | <spinner label="λμ" name="height_range_spin_1" /> |
60 | <spinner label="λμ" name="height_range_spin_2" /> | 45 | <spinner label="λμ" name="height_range_spin_2" /> |
61 | <spinner label="λμ" name="height_range_spin_3" /> | 46 | <spinner label="λμ" name="height_range_spin_3" /> |
62 | <text name="height_text_lbl14"> | 47 | <text name="height_text_lbl10"> |
63 | μ΄ κ°μ μ ν μ€μ²μ νΌν© λ²μλ₯Ό λνλ λλ€. | 48 | μ΄ κ°λ€μ μ ν μ€μ²μ νΌν© λ²μλ₯Ό λνλ λλ€. |
64 | </text> | 49 | </text> |
65 | <text name="height_text_lbl15"> | 50 | <text name="height_text_lbl11"> |
66 | λ―Έν° λ¨μλ‘ μΈ‘μ λλ©°, μ΅μ κ°μ ν μ€μ³ #1μ μ΅λ λμ΄μ λλ€, | 51 | λ―Έν°λ²μΌλ‘ μΈ‘μ νμ¬ μ΅μ κ°μ ν μ€μ² 1λ²μ μ΅κ³ λμ΄μ΄μ |
67 | </text> | 52 | </text> |
68 | <text name="height_text_lbl16"> | 53 | <text name="height_text_lbl12"> |
69 | κ·Έλ¦¬κ³ λμ κ°μ ν μ€μ² #4μ μ΅μ λμ΄μ λλ€. | 54 | μ΅κ³ κ°μ ν μ€μ² 4λ²μ μ΅μ λμ΄μ λλ€. |
70 | </text> | 55 | </text> |
71 | <button label="μ μ©" name="apply_btn" /> | 56 | <button label="μ μ©" name="apply_btn" /> |
72 | </panel> | 57 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_scrolling_param.xml b/linden/indra/newview/skins/xui/ko/panel_scrolling_param.xml index 7eb3202..39162f2 100644 --- a/linden/indra/newview/skins/xui/ko/panel_scrolling_param.xml +++ b/linden/indra/newview/skins/xui/ko/panel_scrolling_param.xml | |||
@@ -1,10 +1,10 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="LLScrollingPanelParam"> | 2 | <panel name="LLScrollingPanelParam"> |
3 | <text type="string" length="1" name="Loading..."> | 3 | <text type="string" length="1" name="Loading..."> |
4 | λ‘λ©μ€... | 4 | λ‘λ© μ€β¦ |
5 | </text> | 5 | </text> |
6 | <text type="string" length="1" name="Loading...2"> | 6 | <text type="string" length="1" name="Loading...2"> |
7 | λ‘λ©μ€... | 7 | λ‘λ© μ€β¦ |
8 | </text> | 8 | </text> |
9 | <button label="" label_selected="" name="less" /> | 9 | <button label="" label_selected="" name="less" /> |
10 | <button label="" label_selected="" name="more" /> | 10 | <button label="" label_selected="" name="more" /> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_settings_chat.xml b/linden/indra/newview/skins/xui/ko/panel_settings_chat.xml index 548988f..aac33de 100644 --- a/linden/indra/newview/skins/xui/ko/panel_settings_chat.xml +++ b/linden/indra/newview/skins/xui/ko/panel_settings_chat.xml | |||
@@ -1,7 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="chat" title="λν"> | 2 | <panel name="chat" title="λν"> |
3 | <text> | 3 | <text> |
4 | μ±ν κΈμ ν¬κΈ°: | 4 | κΈμ ν¬κΈ°: |
5 | </text> | 5 | </text> |
6 | <radio_group name="chat font size"> | 6 | <radio_group name="chat font size"> |
7 | <radio_item> | 7 | <radio_item> |
@@ -15,16 +15,16 @@ | |||
15 | </radio_item> | 15 | </radio_item> |
16 | </radio_group> | 16 | </radio_group> |
17 | <text> | 17 | <text> |
18 | μ±ν μ: | 18 | κΈμ μ: |
19 | </text> | 19 | </text> |
20 | <color_swatch label="μμ€ν " name="system" /> | 20 | <color_swatch label="μμ€ν " name="system" /> |
21 | <color_swatch label="μ¬μ©μ" name="users" /> | 21 | <color_swatch label="μ¬μ©μ" name="users" /> |
22 | <color_swatch label="μ¬λ¬Ό" name="objects" /> | 22 | <color_swatch label="μ€λΈμ νΈ" name="objects" /> |
23 | <color_swatch label="κ±°ν" name="background" /> | 23 | <color_swatch label="λ§νμ " name="background" /> |
24 | <text> | 24 | <text> |
25 | μ±ν μ½μ: | 25 | μ½μ: |
26 | </text> | 26 | </text> |
27 | <spinner label="μ΄ν μ±ν νμ΄λ" name="fade_chat_time" /> | 27 | <spinner label="μ±ν μ°½ μ¬λΌμ§" name="fade_chat_time" /> |
28 | <text> | 28 | <text> |
29 | (μ΄) | 29 | (μ΄) |
30 | </text> | 30 | </text> |
@@ -32,22 +32,20 @@ | |||
32 | <text> | 32 | <text> |
33 | (#ν) | 33 | (#ν) |
34 | </text> | 34 | </text> |
35 | <slider label="λΆν¬λͺ λ" name="console_opacity" /> | 35 | <slider label="ν¬λͺ λ" name="console_opacity" /> |
36 | <text> | 36 | <text> |
37 | μ±ν μ΅μ : | 37 | μ΅μ : |
38 | </text> | 38 | </text> |
39 | <check_box label="μ±ν μ (μ¬μμ ν) μ 체 νλ©΄μ μ¬μ©ν©λλ€" | 39 | <check_box label="μ 체νλ©΄ μ¬μ©(μ¬μμ νμ)" name="chat_full_width_check" /> |
40 | name="chat_full_width_check" /> | 40 | <check_box label="Enter ν€ λλ₯Έ ν μ±ν μ°½ λ«κΈ°" name="close_chat_on_return_check" /> |
41 | <check_box label="λμμ€κΈ° λλ₯Έ ν μ±ν μ°½ λ«κΈ°" | 41 | <check_box label="νμ΄ν ν€λ μ±ν μ μλ°νλ₯Ό μμ§μ" |
42 | name="close_chat_on_return_check" /> | ||
43 | <check_box label="νμ΄νλ μ±ν μ μλ°ν μμ§μ΄λλ° μ¬μ©" | ||
44 | name="arrow_keys_move_avatar_check" /> | 42 | name="arrow_keys_move_avatar_check" /> |
45 | <check_box label="μ±ν μ νμμ€ν¬ν νμνκΈ°" name="show_timestamps_check" /> | 43 | <check_box label="μ±ν μκ° νμνκΈ°" name="show_timestamps_check" /> |
46 | <text> | 44 | <text> |
47 | λ§νμ μ±ν : | 45 | λ§νμ μ±ν : |
48 | </text> | 46 | </text> |
49 | <check_box label="λ§νμ νμνκΈ°" name="bubble_text_chat" /> | 47 | <check_box label="λ§νμ νμνκΈ°" name="bubble_text_chat" /> |
50 | <slider label="λΆν¬λͺ λ" name="bubble_chat_opacity" /> | 48 | <slider label="ν¬λͺ λ" name="bubble_chat_opacity" /> |
51 | <text> | 49 | <text> |
52 | μ€ν¬λ¦½νΈ μ€λ₯: | 50 | μ€ν¬λ¦½νΈ μ€λ₯: |
53 | </text> | 51 | </text> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_settings_im.xml b/linden/indra/newview/skins/xui/ko/panel_settings_im.xml index f520066..985f2f6 100644 --- a/linden/indra/newview/skins/xui/ko/panel_settings_im.xml +++ b/linden/indra/newview/skins/xui/ko/panel_settings_im.xml | |||
@@ -3,11 +3,11 @@ | |||
3 | <text> | 3 | <text> |
4 | λ©μ μ μ΅μ : | 4 | λ©μ μ μ΅μ : |
5 | </text> | 5 | </text> |
6 | <check_box label="μ΄λ©μΌλ‘ λ©μ μ λ©μμ§ λ³΄λ΄κΈ°" name="send_im_to_email" | 6 | <check_box label="μͺ½μ§λ₯Ό μ΄λ©μΌλ‘ μ μ‘" name="send_im_to_email" |
7 | tool_tip="secondlife.comμμ μ΄λ©μΌ μ£Όμ λ³κ²½." /> | 7 | tool_tip="secondlife.comμμ μ΄λ©μΌ μ£Όμ λ³κ²½" /> |
8 | <check_box label="μ±ν κΈ°λ‘μ λ©μ μ ν¬ν¨" name="include_im_in_chat_history" /> | 8 | <check_box label="μ±ν κΈ°λ‘μ μͺ½μ§ ν¬ν¨" name="include_im_in_chat_history" /> |
9 | <check_box label="λ©μ μ μ νμμ€ν¬ν νμνκΈ°" name="show_timestamps_check" /> | 9 | <check_box label="λ©μ μ μ μ±ν μκ° νμνκΈ°" name="show_timestamps_check" /> |
10 | <text> | 10 | <text> |
11 | λ€λ₯Έ μ©λ¬΄ μ€ λͺ¨λ λμ: | 11 | λΆμ¬μ€ λ΅λ³: |
12 | </text> | 12 | </text> |
13 | </panel> | 13 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_settings_msgbox.xml b/linden/indra/newview/skins/xui/ko/panel_settings_msgbox.xml index d3e4ff2..6924e8b 100644 --- a/linden/indra/newview/skins/xui/ko/panel_settings_msgbox.xml +++ b/linden/indra/newview/skins/xui/ko/panel_settings_msgbox.xml | |||
@@ -1,12 +1,11 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="νμ " name="popups" title="νμ "> | 2 | <panel label="νμ " name="popups" title="νμ "> |
3 | <text> | 3 | <text> |
4 | νμ νμ κΈμ§: | 4 | νμ μ°¨λ¨: |
5 | </text> | 5 | </text> |
6 | <button label="μ΄ νμ μΌκΈ°" name="enable_popup" /> | 6 | <button label="νμ 보기" name="enable_popup" /> |
7 | <text> | 7 | <text> |
8 | νμ νμνκΈ°: | 8 | νμ©λ νμ : |
9 | </text> | 9 | </text> |
10 | <button label="'λ€μμ νμ' λν μ¬μ€μ ..." | 10 | <button label="λμ€μ μλ¦Ό' μ΄κΈ°νβ¦" name="reset_dialogs_btn" /> |
11 | name="reset_dialogs_btn" /> | ||
12 | </panel> | 11 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_settings_network.xml b/linden/indra/newview/skins/xui/ko/panel_settings_network.xml index b2ffd9e..30d2f8c 100644 --- a/linden/indra/newview/skins/xui/ko/panel_settings_network.xml +++ b/linden/indra/newview/skins/xui/ko/panel_settings_network.xml | |||
@@ -5,53 +5,53 @@ | |||
5 | </text> | 5 | </text> |
6 | <slider label="" name="max_bandwidth" /> | 6 | <slider label="" name="max_bandwidth" /> |
7 | <text> | 7 | <text> |
8 | kbps(μ΄λΉ ν¬λ‘λ°μ΄νΈ) | 8 | kbps (kilobits per second) |
9 | </text> | 9 | </text> |
10 | <text> | 10 | <text> |
11 | λμ€ν¬ μΊμ ν¬κΈ°: | 11 | λμ€ν¬ μΊμ ν¬κΈ°: |
12 | </text> | 12 | </text> |
13 | <radio_group name="disk cache"> | 13 | <radio_group name="disk cache"> |
14 | <radio_item> | 14 | <radio_item> |
15 | 50 MB | 15 | 50MB |
16 | </radio_item> | 16 | </radio_item> |
17 | <radio_item> | 17 | <radio_item> |
18 | 200 MB | 18 | 200MB |
19 | </radio_item> | 19 | </radio_item> |
20 | <radio_item> | 20 | <radio_item> |
21 | 500 MB | 21 | 500MB |
22 | </radio_item> | 22 | </radio_item> |
23 | <radio_item> | 23 | <radio_item> |
24 | 1000 MB | 24 | 1000MB |
25 | </radio_item> | 25 | </radio_item> |
26 | </radio_group> | 26 | </radio_group> |
27 | <button label="μΊμ λΉμ°κΈ°" name="clear_cache" /> | 27 | <button label="μΊμ λΉμ°κΈ°" name="clear_cache" /> |
28 | <text> | 28 | <text> |
29 | νλ‘μ μ€μ : | 29 | νλ‘μ ꡬμ±: |
30 | </text> | 30 | </text> |
31 | <check_box label="νλ‘μ μ¬μ©" name="proxy_enabled" tool_tip="νλ‘μ μ€μ " /> | 31 | <check_box label="νλ‘μ μ¬μ©" name="proxy_enabled" |
32 | tool_tip="νλ‘μ κ΅¬μ± μ§μ " /> | ||
32 | <text> | 33 | <text> |
33 | νλ‘μ: | 34 | νλ‘μ: |
34 | </text> | 35 | </text> |
35 | <line_editor name="proxy_address" | 36 | <line_editor name="proxy_address" tool_tip="μ¬μ©ν νλ‘μ μ΄λ¦ λλ IP μ£Όμ" /> |
36 | tool_tip="μ¬μ©νκ³ μ νλ νλ‘μμ μ΄λ¦ λλ IP μ£Όμ" /> | ||
37 | <text> | 37 | <text> |
38 | ν¬νΈ: | 38 | ν¬νΈ: |
39 | </text> | 39 | </text> |
40 | <line_editor name="proxy_port" tool_tip="μ¬μ©νκ³ μ νλ νλ‘μμ ν¬νΈ λ²νΈ" /> | 40 | <line_editor name="proxy_port" tool_tip="μ¬μ©ν νλ‘μμ ν¬νΈ λ²νΈ" /> |
41 | <text> | 41 | <text> |
42 | Socks: | 42 | μλ§: |
43 | </text> | 43 | </text> |
44 | <radio_group name="socks_4_5"> | 44 | <radio_group name="socks_4_5"> |
45 | <radio_item> | 45 | <radio_item> |
46 | Socks v4 | 46 | μλ§ v4 |
47 | </radio_item> | 47 | </radio_item> |
48 | <radio_item> | 48 | <radio_item> |
49 | Socks v5 | 49 | μλ§ v5 |
50 | </radio_item> | 50 | </radio_item> |
51 | </radio_group> | 51 | </radio_group> |
52 | <text> | 52 | <text> |
53 | νλ‘μ μμ: | 53 | νλ‘μ μμ: |
54 | </text> | 54 | </text> |
55 | <line_editor name="proxy_exclusions" | 55 | <line_editor name="proxy_exclusions" |
56 | tool_tip="μ¬μ©νκΈ°λ₯Ό μμΉ μλ νλ‘μμ μ΄λ¦ λλ IP μ£Όμ" /> | 56 | tool_tip="λ€μμ λν΄ νλ‘μλ₯Ό μ¬μ©νμ§ μμ μ΄λ¦ λλ IP μ£Όμ" /> |
57 | </panel> | 57 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_settings_web.xml b/linden/indra/newview/skins/xui/ko/panel_settings_web.xml index 1e76ffc..b60b43c 100644 --- a/linden/indra/newview/skins/xui/ko/panel_settings_web.xml +++ b/linden/indra/newview/skins/xui/ko/panel_settings_web.xml | |||
@@ -1,52 +1,50 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="web" title="μΉ"> | 2 | <panel name="web" title="μΉ"> |
3 | <check_box | 3 | <check_box label="μΈλΆ μΉ λΈλΌμ°μ μ¬μ©(Firefox, Safari, Internet Explorer)" |
4 | label="μΈλΆ μΉλΈλΌμ°μ μ¬μ©(νμ΄μ΄νμ€, μ¬ν리, μΈν°λ· μ΅μ€νλ‘λ¬)" | ||
5 | name="external_browser_check" | 4 | name="external_browser_check" |
6 | tool_tip="λμλ§, μΉλ§ν¬ λ±μ μΈλΆ μΉλΈλΌμ°μ λ₯Ό μ¬μ©νμμμ€.\nμ 체 νλ©΄ λͺ¨λμμλ κΆμ₯νμ§ μμ΅λλ€." /> | 5 | tool_tip="λμλ§, μΉ λ§ν¬ λ±μ κ²½μ° μΈλΆ μΉ λΈλΌμ°μ λ₯Ό μ¬μ©νμμμ€.\nμ 체 νλ©΄μ μ€ν μ€μΈ κ²½μ°μλ κΆμ₯λμ§ μμ΅λλ€." /> |
7 | <text> | 6 | <text> |
8 | λΈλΌμ°μ ννμ΄μ§: | 7 | νλΌμ°μ ννμ΄μ§: |
9 | </text> | 8 | </text> |
10 | <line_editor name="home_page" | 9 | <line_editor name="home_page" |
11 | tool_tip="μ΅μ΄λ‘ Second Life λΈλΌμ°μ λ₯Ό μ΄ λ λ°©λ¬Ένλ μΉνμ΄μ§" /> | 10 | tool_tip="μΈμ»¨λλΌμ΄ν λΈλΌμ°μ λ₯Ό μ΄ λ μ²μμΌλ‘ λ°©λ¬Ένλ μΉ νμ΄μ§" /> |
12 | <text> | 11 | <text> |
13 | νλ‘μ μ€μ : | 12 | νλ‘μ ꡬμ±: |
14 | </text> | 13 | </text> |
15 | <check_box label="λ΄λΆ μΉλΈλΌμ°μ μ© νλ‘μ μ¬μ©" name="proxy_enabled" | 14 | <check_box label="λ΄λΆ μΉ λΈλΌμ°μ μ λν΄ νλ‘μ μ¬μ©" name="proxy_enabled" |
16 | tool_tip="λ΄λΆ μΉλΈλΌμ°μ μ© νλ‘μ μ€μ " /> | 15 | tool_tip="λ΄λΆ μΉ λΈλΌμ°μ μ λν νλ‘μ κ΅¬μ± μ§μ " /> |
17 | <text> | 16 | <text> |
18 | νλ‘μ: | 17 | νλ‘μ: |
19 | </text> | 18 | </text> |
20 | <line_editor name="proxy_address" | 19 | <line_editor name="proxy_address" tool_tip="μ¬μ©ν νλ‘μ μ΄λ¦ λλ IP μ£Όμ" /> |
21 | tool_tip="μ¬μ©νκ³ μ νλ νλ‘μμ μ΄λ¦ λλ IP μ£Όμ" /> | ||
22 | <text> | 20 | <text> |
23 | ν¬νΈ: | 21 | ν¬νΈ: |
24 | </text> | 22 | </text> |
25 | <line_editor name="proxy_port" tool_tip="μ¬μ©νκ³ μ νλ νλ‘μμ ν¬νΈ λ²νΈ" /> | 23 | <line_editor name="proxy_port" tool_tip="μ¬μ©ν νλ‘μμ ν¬νΈ λ²νΈ" /> |
26 | <text> | 24 | <text> |
27 | Socks: | 25 | μλ§: |
28 | </text> | 26 | </text> |
29 | <radio_group name="socks_4_5"> | 27 | <radio_group name="socks_4_5"> |
30 | <radio_item> | 28 | <radio_item> |
31 | Socks v4 | 29 | μλ§ v4 |
32 | </radio_item> | 30 | </radio_item> |
33 | <radio_item> | 31 | <radio_item> |
34 | Socks v5 | 32 | μλ§ v5 |
35 | </radio_item> | 33 | </radio_item> |
36 | </radio_group> | 34 | </radio_group> |
37 | <text> | 35 | <text> |
38 | νλ‘μ μμ: | 36 | λ€μ νλ‘μ μμ: |
39 | </text> | 37 | </text> |
40 | <line_editor name="proxy_exclusions" | 38 | <line_editor name="proxy_exclusions" |
41 | tool_tip="μ¬μ©νκΈ°λ₯Ό μμΉ μλ νλ‘μμ μ΄λ¦ λλ IP μ£Όμ" /> | 39 | tool_tip="λ€μμ λν΄ νλ‘μλ₯Ό μ¬μ©νμ§ μμ μ΄λ¦ λλ IP μ£Όμ" /> |
42 | <check_box label="μ¬λ¬Ό κ΄λ ¨ μΉνμ΄μ§ νμνκΈ°(μνμ€, μ¬μμ νμ)" | 40 | <check_box |
41 | label="μ€λΈμ νΈμμ μΉ νμ΄μ§ νμ(μνμ©, μ»΄ν¨ν°λ₯Ό λ€μ μμν΄μΌ ν¨)" | ||
43 | name="web_pages_on_prims_check" /> | 42 | name="web_pages_on_prims_check" /> |
44 | <text> | 43 | <text> |
45 | μ λ’° μ¬μ΄νΈ: | 44 | νΈλ¬μ€νΈλ μ¬μ΄νΈ: |
46 | (λ‘κ·ΈμΈν΄μΌ λ³΄μ€ μ μμ΅λλ€) | 45 | (λ‘κ·ΈμΈνμ¬ λ³΄κΈ°) |
47 | </text> | 46 | </text> |
48 | <button label="μΆκ°" name="add_trusted" /> | 47 | <button label="μΆκ°" name="add_trusted" /> |
49 | <line_editor name="trusted_site_entry" | 48 | <line_editor name="trusted_site_entry" tool_tip="μ μ© λͺ©λ‘μ μΆκ°ν μ¬μ΄νΈ" /> |
50 | tool_tip="μ λ’° λͺ©λ‘μ μΆκ°νκ³ μ νλ μ¬μ΄νΈ" /> | ||
51 | <button label="μ κ±°" name="rem_trusted" /> | 49 | <button label="μ κ±°" name="rem_trusted" /> |
52 | </panel> | 50 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_status_bar.xml b/linden/indra/newview/skins/xui/ko/panel_status_bar.xml index fdcde45..a9d8f5b 100644 --- a/linden/indra/newview/skins/xui/ko/panel_status_bar.xml +++ b/linden/indra/newview/skins/xui/ko/panel_status_bar.xml | |||
@@ -1,13 +1,14 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="status"> | 2 | <panel name="status"> |
3 | <text type="string" length="1" name="ParcelNameText" | 3 | <text type="string" length="1" name="ParcelNameText" |
4 | tool_tip="λ³ΈμΈμ΄ μμλ κ³³μ λλμ μ΄λ¦μ About Landλ₯Ό ν΄λ¦ ν΄μ νμΈ κ°λ₯ ν©λλ€."> | 4 | tool_tip="νμ¬ μμλ ν μ§ κ΅¬νμ μ΄λ¦. ν μ§ μκ°λ₯Ό λ³΄λ €λ©΄ ν΄λ¦ν©λλ€."> |
5 | ꡬν μ΄λ¦ μ¬κΈ°μ μ λ ₯ | 5 | ꡬν μ΄λ¦ μ¬κΈ°μ μ λ ₯ |
6 | </text> | 6 | </text> |
7 | <text type="string" length="1" name="BalanceText" tool_tip="κ³μ μκ³ "> | 7 | <text type="string" length="1" name="BalanceText" tool_tip="μκ³ "> |
8 | L$" | 8 | L$ |
9 | </text> | 9 | </text> |
10 | <button label="" label_selected="" name="buycurrency" tool_tip="νν ꡬ맀" /> | 10 | <button label="" label_selected="" name="buycurrency" |
11 | tool_tip="λ¦°λ λ¬λ¬(L$) ꡬ맀" /> | ||
11 | <text type="string" length="12" name="TimeText" tool_tip="νμ¬ μκ°(ννμ νμ€μ)"> | 12 | <text type="string" length="12" name="TimeText" tool_tip="νμ¬ μκ°(ννμ νμ€μ)"> |
12 | 12:00 AM | 13 | 12:00 AM |
13 | </text> | 14 | </text> |
@@ -17,10 +18,10 @@ | |||
17 | <text type="string" length="1" name="HealthText" tool_tip="건κ°"> | 18 | <text type="string" length="1" name="HealthText" tool_tip="건κ°"> |
18 | 100% | 19 | 100% |
19 | </text> | 20 | </text> |
20 | <button label="" label_selected="" name="fly" tool_tip="λΉν κΈμ§" /> | 21 | <button label="" label_selected="" name="fly" tool_tip="λΉν μν¨" /> |
21 | <button label="" label_selected="" name="build" tool_tip="κ±΄μΆ κΈμ§" /> | 22 | <button label="" label_selected="" name="build" tool_tip="λ§λ€κΈ° μν¨" /> |
22 | <button label="" label_selected="" name="scripts" tool_tip="μ€ν¬λ¦½νΈ κΈμ§" /> | 23 | <button label="" label_selected="" name="scripts" tool_tip="μ€ν¬λ¦½νΈ μμ" /> |
23 | <button label="" label_selected="" name="restrictpush" tool_tip="llPushObject νμ " /> | 24 | <button label="" label_selected="" name="restrictpush" tool_tip="llPushObject νμ " /> |
24 | <button label="" label_selected="" name="buyland" tool_tip="νμ¬ κ΅¬ν ꡬ맀" /> | 25 | <button label="" label_selected="" name="buyland" tool_tip="νμ¬ κ΅¬ν ꡬ맀" /> |
25 | <text name="packet_loss_tooltip"> | 26 | <text name="packet_loss_tooltip"> |
26 | ν¨ν· μμ€ | 27 | ν¨ν· μμ€ |
diff --git a/linden/indra/newview/skins/xui/ko/panel_toolbar.xml b/linden/indra/newview/skins/xui/ko/panel_toolbar.xml index 43daa56..30e9ced 100644 --- a/linden/indra/newview/skins/xui/ko/panel_toolbar.xml +++ b/linden/indra/newview/skins/xui/ko/panel_toolbar.xml | |||
@@ -1,19 +1,19 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="panel_toolbar"> | 2 | <panel name="panel_toolbar"> |
3 | <button label="λ©μ μ " name="im_btn" | 3 | <button label="λ©μ μ " name="im_btn" tool_tip="μΉκ΅¬λ€κ³Ό λ©μ μ νκΈ°." /> |
4 | tool_tip="μΉκ΅¬μκ² λ©μ μ λ‘ μ°λ½νκΈ°." /> | ||
5 | <button label="μ±ν " name="chat_btn" | 4 | <button label="μ±ν " name="chat_btn" |
6 | tool_tip="λΆκ·Ό μ¬λλ€κ³Ό λνλ₯Ό λλλλ€. μ±ν μ ν΄λ¦ν ν νμ€ν 리μ λλ₯΄λ©΄ μ΄μ μ±ν λ΄μ©μ λ³Ό μ μμ΅λλ€." /> | 5 | tool_tip="λΆκ·Ό μ¬λλ€κ³Ό λνλ₯Ό λλλλ€. (μ λ ₯)" /> |
7 | <button label="μΉκ΅¬λ€" name="friends_btn" tool_tip="μΉκ΅¬ μ°Ύμ μ°λ½." /> | 6 | <button label="μΉκ΅¬" name="friends_btn" |
7 | tool_tip="μΉκ΅¬λ₯Ό μ°Ύμ μ΄μΌκΈ°ν©λλ€." /> | ||
8 | <button label="λΉν" label_selected="λΉν μ€μ§" name="fly_btn" | 8 | <button label="λΉν" label_selected="λΉν μ€μ§" name="fly_btn" |
9 | tool_tip="λΉν μμ. μ μλ μμΉ μ‘°μ μ E/C λλ PgUp/PgDnμ μ¬μ©νμμμ€." /> | 9 | tool_tip="λΉν μμ. μ, μλλ‘ λΉννλ €λ©΄ E/C λλ PgUp/PgDnμ μ¬μ©νμμμ€." /> |
10 | <button label="μ€λ μ·" name="snapshot_btn" | 10 | <button label="μ€λ μ·" name="snapshot_btn" |
11 | tool_tip="λμ€ν¬ λλ 보κ΄ν¨μ μ€ν¬λ¦°μ· μ μ₯." /> | 11 | tool_tip="λμ€ν¬ λλ μΈλ²€ν 리μ μ€ν¬λ¦°μ· μ μ₯." /> |
12 | <button label="κ²μ" name="directory_btn" | 12 | <button label="κ²μ" name="directory_btn" |
13 | tool_tip="μ₯μ, μ΄λ²€νΈ, μ¬λ, κ·Έλ¦¬κ³ λ λ§μ κ²μ μ°ΎμΌμ€ μ μμ΅λλ€." /> | 13 | tool_tip="μ₯μ, μ΄λ²€νΈ, μ¬λ, λ μμΈν λ±μ κ²μν μ μμ΅λλ€." /> |
14 | <button label="μ§κΈ°" name="build_btn" tool_tip="μ μ¬λ¬Ό μμ±." /> | 14 | <button label="λ§λ€κΈ°" name="build_btn" tool_tip="μ μ€λΈμ νΈκΈ°" /> |
15 | <button label="λ―Έλ μ§λ" name="radar_btn" | 15 | <button label="λ―Έλμ§λ" name="radar_btn" |
16 | tool_tip="λ΄ μ£Όμ μμ μ§λ. (Ctrl-Shift-M)" /> | 16 | tool_tip="λ΄ μ£Όλ³ μμμ μ§λ (Ctrl-Shift-M)" /> |
17 | <button label="μ§λ" name="map_btn" tool_tip="μΈκ³ μ§λ. (Ctrl-M)" /> | 17 | <button label="μ§λ" name="map_btn" tool_tip="μλ μ§λ (Ctrl-M)" /> |
18 | <button label="μ μ₯κ³ " name="inventory_btn" tool_tip="λ΄ μμ΄ν . (Ctrl-I)" /> | 18 | <button label="μΈλ²€ν 리" name="inventory_btn" tool_tip="μμ΄ν . (Ctrl-I)" /> |
19 | </panel> | 19 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_top_pick.xml b/linden/indra/newview/skins/xui/ko/panel_top_pick.xml index 4bd676a..021ef61 100644 --- a/linden/indra/newview/skins/xui/ko/panel_top_pick.xml +++ b/linden/indra/newview/skins/xui/ko/panel_top_pick.xml | |||
@@ -2,9 +2,9 @@ | |||
2 | <panel name="Pick" title="μ ν"> | 2 | <panel name="Pick" title="μ ν"> |
3 | <button label="μ€μ " name="set_location_btn" /> | 3 | <button label="μ€μ " name="set_location_btn" /> |
4 | <button label="ν 리ν¬νΈ" name="pick_teleport_btn" /> | 4 | <button label="ν 리ν¬νΈ" name="pick_teleport_btn" /> |
5 | <button label="μ§λμ νμνκΈ°" name="pick_map_btn" /> | 5 | <button label="μ§λμ νμ" name="pick_map_btn" /> |
6 | <text name="sort_order_text"> | 6 | <text name="sort_order_text"> |
7 | μ λ ¬: | 7 | λΆλ₯: |
8 | </text> | 8 | </text> |
9 | <check_box label="μΌμ§" name="enabled_check" /> | 9 | <check_box label="νμ±νλ¨" name="enabled_check" /> |
10 | </panel> | 10 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/role_actions.xml b/linden/indra/newview/skins/xui/ko/role_actions.xml index 7e2a285..848393e 100644 --- a/linden/indra/newview/skins/xui/ko/role_actions.xml +++ b/linden/indra/newview/skins/xui/ko/role_actions.xml | |||
@@ -1,183 +1,183 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <role_actions> | 2 | <role_actions> |
3 | <action_set | 3 | <action_set |
4 | description="μ΄λ¬ν λ₯λ ₯μ κ·Έλ£Ή λ©€λ²λ₯Ό μΆκ°νκ³ μμ νλ λ₯λ ₯μ΄ ν¬ν¨λλ©° μ΄λ μμ΄ μ 맴λ²λ₯Ό κ°μ μν¬ μ μμ΅λλ€." | 4 | description="μ΄λ¬ν κΆνμ κ·Έλ£Ή νμμ μΆκ°νκ³ μμ νλ κΆνμ΄ ν¬ν¨λλ©° μ΄λ μμ΄ μ νμμ κ°μ μν¬ μ μμ΅λλ€." |
5 | name="Membership"> | 5 | name="Membership"> |
6 | <action description="μ΄ κ·Έλ£Ήμ μ¬λλ€ μ΄λ" | 6 | <action description="μ΄ κ·Έλ£Ήμ μ¬λλ€ μ΄λ" |
7 | longdescription="Members & Roles tabμ μλΈ ν μΈ Membersμμμ 'Invite New Person...' λ²νΌμ μ νν΄μ λ€λ₯Έμ¬λ μ΄μ²ν μ μμ΅λλ€." | 7 | longdescription="νμ λ° μν ν > νμ νμ νμ μλ 'μλ‘μ΄ μ¬λ μ΄λβ λ²νΌμ μ¬μ©νμ¬ μ΄ κ·Έλ£Ήμ μ¬λλ€μ μ΄λν©λλ€." |
8 | name="member invite" /> | 8 | name="member invite" /> |
9 | <action description="μ΄ κ·Έλ£Ήμμ λ©€λ² κ°ν΄" | 9 | <action description="μ΄ κ·Έλ£Ήμμ νμ κ°ν΄" |
10 | longdescription="Members & Roles tab μμμMember ν μμ 'Eject From Group'λ²νΌμΌλ‘ λ³Έ ꡬ룹μμ νμ κ°μ νν΄ μν¬μ μμ΅λλ€. ꡬ룹μ μμ μλ ꡬ룹μ곡λ μμ μλ₯Ό μ μΈν λ€λ₯Έ νμλ€μ κ°μ νν΄ μν¬μ μμ΅λλ€ . λ§μ½ λ³ΈμΈμ΄Everyone Roleμ μν΄ μλ€λ©΄ 'Remove Members from Roles' κΆνμ΄ μλ Ownerλ‘ μΈν΄ κ·Έλ£Ήμμ κ°μ νν΄ λΉν μ μμ΅λλ€. Rolesλ‘λΆν° νμμ κ°μ νν΄ μν€κΈ° μν΄μλ 'Remove Members from Roles' κΆνμ΄ μμ΄μΌ ν©λλ€." | 10 | longdescription="νμ λ° μν ν > νμ νμ νμμ 'κ·Έλ£Ήμμ κ°ν΄' λ²νΌμ μ¬μ©νμ¬ μ΄ κ·Έλ£Ήμμ νμ κ°ν΄λ₯Ό μνν©λλ€. μμ μ£Όλ λ€λ₯Έ μμ μ£Όλ₯Ό μ μΈν λͺ¨λ μ¬λμ μΆλ°©ν μ μμ΅λλ€. μμ μ£Όκ° μλ νμμΈ κ²½μ°μλ λͺ¨λ μ¬λ μν μ μν κ²½μ°μλ§ κ·Έλ£Ήμμ κ°ν΄λλ©° λ€λ₯Έ μν μΈ κ²½μ°μλ μΆλ°©λμ§ μμ΅λλ€. νμμ μν μμ μ κ±°νλ €λ©΄ 'μν μμ νμ μμ ' κΆνμ΄ μμ΄μΌ ν©λλ€." |
11 | name="member eject" /> | 11 | name="member eject" /> |
12 | <action | 12 | <action |
13 | description="'μμ μ μ²'μ μ΄κ³ 'κ°μ μμλ£' λ³κ²½" | 13 | description="'μμ κ°μ ' ν κΈ λ° 'κ°μ μμλ£' λ³κ²½" |
14 | longdescription="Toggle 'Open Enrollment' λ μλ‘μ΄ νμμ μ΄μ² μμ΄ κ°μ μν€λ κΈ°λ₯μ λλ€. κ·Έλ¦¬κ³ , 'Signup Fee'λ₯Ό General tab μ Group Preferences section μμ λ°κΎΈμ€ μ μμ΅λλ€." | 14 | longdescription="μ΄λ μμ΄ μ νμμ κ°μ μν€λ €λ©΄ 'μμ κ°μ 'μ ν κΈνκ³ μΌλ° νμ κ·Έλ£Ή νκ²½ μ€μ μΉμ μμ 'κ°μ μμλ£'λ₯Ό λ³κ²½ν©λλ€." |
15 | name="member options" /> | 15 | name="member options" /> |
16 | </action_set> | 16 | </action_set> |
17 | <action_set | 17 | <action_set |
18 | description="μ΄λ¬ν λ₯λ ₯μλ κ·Έλ£Ή μν μ μΆκ°, μμ λ° λ³κ²½νλ λ₯λ ₯κ³Ό, μν μ λ©€λ²λ₯Ό μΆκ° λ° μμ νλ©° μν μ λ₯λ ₯μ ν λΉνλ λ₯λ ₯μ΄ ν¬ν¨λ©λλ€." | 18 | description="μ΄λ¬ν κΆνμλ κ·Έλ£Ή μν μ μΆκ°, μμ λ° λ³κ²½, νΉμ μν μ νμμ μΆκ° λ° μμ νλ©° νΉμ μν μ λ€λ₯Έ κΆνμ ν λΉνλ κ²μ ν¬ν¨ν©λλ€." |
19 | name="Roles"> | 19 | name="Roles"> |
20 | <action description="μ μν μμ±" | 20 | <action description="μ μν μμ±" |
21 | longdescription="Members & Roles tab > Roles sub-tab μμ μλ‘μ΄ Role λ§λ€κΈ°." | 21 | longdescription="νμ λ° μν ν > μν νμ νμμ μ μν μ μμ±ν©λλ€." |
22 | name="role create" /> | 22 | name="role create" /> |
23 | <action description="μν μμ " | 23 | <action description="μν μμ " |
24 | longdescription="Members & Roles tab > Roles sub-tab μμ Rolesμμ νκΈ°." | 24 | longdescription="νμ λ° μν ν > μν νμ νμμ μν μ μμ ν©λλ€." |
25 | name="role delete" /> | 25 | name="role delete" /> |
26 | <action description="μν μ΄λ¦, νμ΄ν, μ€λͺ λ±μ λ³κ²½" | 26 | <action description="μν μ΄λ¦, νμ΄ν λ° μ€λͺ λ³κ²½" |
27 | longdescription="Roleμ νν Members & Roles tab > Roles sub-tab μμ μ΄λ¦, νμ΄ν,μ€λͺ μ μμ ν μ μμ΅λλ€." | 27 | longdescription="μν μ μ νν ν νμ λ° μν ν > μν νμ ν 맨 μλμμ μν μ΄λ¦, νμ΄ν λ° μ€λͺ μ λ³κ²½ν©λλ€." |
28 | name="role properties" /> | 28 | name="role properties" /> |
29 | <action description="λ©€λ²μκ² ν λΉμμ μν ν λΉ" | 29 | <action description="νμμκ² ν λΉμμ μν ν λΉ" |
30 | longdescription="Members & Roles tab > Members sub-tab μAssigned RolesμΉμ μμ Assign Members to Roles. μ΄ κΆνμ 맴λ²λ€μ νμλ€μ roleμ μΆκ°μν¬ μ μμ΅λλ€." | 30 | longdescription="νμ λ° μν ν > νμ νμ νμ ν λΉλ μν μΉμ μμ νμμκ² μν μ ν λΉν©λλ€. μ΄ κΆνμ κ°μ§ νμμ ν λΉμκ° μ΄λ―Έ μν΄ μλ μν μλ§ νμμ μΆκ°ν μ μμ΅λλ€." |
31 | name="role assign member limited" /> | 31 | name="role assign member limited" /> |
32 | <action description="λ©€λ²μκ² λͺ¨λ μν ν λΉ" | 32 | <action description="νμμκ² λͺ¨λ μν ν λΉ" |
33 | longdescription="Members & Roles tab > Members sub-tab μ Assigned Rolesμμ Any Roleμ νμλ€ λΆμ¬νκΈ°. *μ£Όμ* λ³ΈRoleμ Abilityλ₯Ό κ°μ§ νμμ μκΈ° μμ μκ² λν μμ μ£Όκ° μλ λ€λ₯Έ νμλ€μκ² λΆμ¬ν μ μμ΅λλ€. λ³ΈAbilityλ μ μ€ν μ μ© νμ μΌ ν©λλ€." | 33 | longdescription="νμ λ° μν ν > νμ νμ νμ ν λΉλ μν μΉμ μμ νμμκ² λͺ¨λ μν ν λΉμ μνν©λλ€. *κ²½κ³ * μ΄ κΆνμ κ°μ§ μν νμμ μμ μκ° μλ λ€λ₯Έ νμ λ° μκΈ° μμ μκ² νμ¬ λ³΄μ ν κΆν μ΄μμ μν μ ν λΉνμ¬ μμ μμ νμ νλ κΆνμ κ°μ§λλ‘ ν μ μμ΅λλ€. μ΄ κΆνμ ν λΉνκΈ° μ μ νμ¬ μνμ λν΄ μ΄ν΄ ν΄μΌ ν©λλ€." |
34 | name="role assign member" /> | 34 | name="role assign member" /> |
35 | <action description="μν μμ λ©€λ² μμ " | 35 | <action description="μν μμ νμ μμ " |
36 | longdescription="Members & Roles tab > Members sub-tab μAssigned Roles sectionμRolesμμ νμμ μμ ν μ μμ΅λλ€. λ¨ ownerλ μμ λ μ μμ΅λλ€." | 36 | longdescription="νμ λ° μν ν > νμ νμ νμ ν λΉλ μν μμ νμλ€λ‘λΆν° μν μ κ±°. μμ μλ€μ μ κ±°λ μ μμ." |
37 | name="role remove member" /> | 37 | name="role remove member" /> |
38 | <action description="μν μ λ₯λ ₯μ ν λΉ λ° μμ " | 38 | <action description="μν μ κΆνμ ν λΉ λ° μμ " |
39 | longdescription="Members & Roles tab > Roles sub-tab μ Allowed Abilities μΉμ μμ Roles μ Assign and Remove Abilities. *μ£Όμ* λ³ΈRoleμ Abilityλ₯Ό κ°μ§ νμμ μκΈ° μμ μκ² λν μμ μ£Όκ° μλ λ€λ₯Έ νμλ€μκ² λΆμ¬ν μ μμ΅λλ€" | 39 | longdescription="νμ λ° μν ν > μν νμ νμ νμ©λ κΆν μΉμ μμ μν μ κΆνμ ν λΉ λ° μμ ν©λλ€. *κ²½κ³ * μ΄ κΆνμ κ°μ§ μν νμμ μμ μκ° μλ λ€λ₯Έ νμ λ° μκΈ° μμ μκ² λͺ¨λ κΆνμ ν λΉνμ¬ μμ μμ νμ νλ κΆνμ κ°μ§λλ‘ ν μ μμ΅λλ€. μ΄ κΆνμ ν λΉνκΈ° μ μ νμ¬ μνμ λν΄ μ΄ν΄ ν΄μΌ ν©λλ€." |
40 | name="role change actions" /> | 40 | name="role change actions" /> |
41 | </action_set> | 41 | </action_set> |
42 | <action_set | 42 | <action_set |
43 | description="μ΄λ¬ν λ₯λ ₯μλ 곡곡 κ°μμ±, μ€λ¦½ μ‘°ν, νμ₯ λ³κ²½κ³Ό κ°μ κ·Έλ£Ήμ μ λΆμ μμ ν λ₯λ ₯μ΄ ν¬ν¨λ©λλ€." | 43 | description="μ΄λ¬ν κΆνμλ 곡곡 κ°μμ±, μ€λ¦½ μ‘°ν, νμ₯ λ³κ²½κ³Ό κ°μ κ·Έλ£Ήμ μ λΆμ μμ ν κΆνμ΄ ν¬ν¨λ©λλ€." |
44 | name="Group Identity"> | 44 | name="Group Identity"> |
45 | <action | 45 | <action |
46 | description="μ€λ¦½μ‘°ν, νμ₯, 'μΉμ κ²μ', κ·Έλ£Ή μ 보μμ μΌλ°μΈμ΄ λ³Ό μ μλ λ©€λ² λ±μ λ³κ²½ν©λλ€." | 46 | description="μ€λ¦½ μ‘°ν, λ‘κ³ , 'μΉμ κ²μ', κ·Έλ£Ή μ 보μ νμλλ νμ λ±μ λ³κ²½ν©λλ€." |
47 | longdescription="νΉκΆ, κΈ°μ₯, 'μΉ λ°ν', Group Information μμμ 곡곡μ μΌλ‘ 보μ¬μ§λ λ§΄λ² μμ μ General tabμμ ν μ μμ΅λλ€." | 47 | longdescription="μ€λ¦½ μ‘°ν, λ‘κ³ , 'μΉμ κ²μ', κ·Έλ£Ή μ 보μ νμλλ νμ λ±μ λ³κ²½ν©λλ€. μΌλ° νμμ μνν©λλ€." |
48 | name="group change identity" /> | 48 | name="group change identity" /> |
49 | </action_set> | 49 | </action_set> |
50 | <action_set | 50 | <action_set |
51 | description="μ΄λ¬ν λ₯λ ₯μλ μ΄ κ·Έλ£Ήμ μμ μΈ ν μ§λ₯Ό μλ, μμ λ° ν맀νλ λ₯λ ₯μ΄ ν¬ν¨λ©λλ€. ν μ§ μκ° μ°½μ κ°λ €λ©΄ ν μ§μ μΌλΆλ₯Ό λ§μ°μ€ μ€λ₯Έμͺ½μΌλ‘ ν΄λ¦νκ³ 'ν μ§ μκ°...'λ₯Ό μ ννκ±°λ λ©λ΄ λ°μμ ꡬν μ 보λ₯Ό ν΄λ¦ν©λλ€." | 51 | description="μ΄λ¬ν κΆνμλ μ΄ κ·Έλ£Ή μμ ν μ§λ₯Ό μλ, μμ λ° ν맀νλ κΆνμ΄ ν¬ν¨λ©λλ€. ν μ§ μκ° μ°½μ κ°λ €λ©΄ ν μ§μ μΌλΆλ₯Ό λ§μ°μ€ μ€λ₯Έμͺ½ ν΄λ¦νκ³ 'ν μ§ μκ°...'λ₯Ό μ ννκ±°λ λ©λ΄ λ°μμ ꡬν μ 보λ₯Ό ν΄λ¦ν©λλ€." |
52 | name="Parcel Management"> | 52 | name="Parcel Management"> |
53 | <action description="ν μ§ μλ λ° κ·Έλ£Ήμ ν μ§ κ΅¬λ§€" | 53 | <action description="ν μ§ μλ λ° κ·Έλ£Ήμ μν ν μ§ κ΅¬λ§€" |
54 | longdescription="About Land > General tab μμ κ·Έλ£Ήμ μν ν μ§μ μλμ ꡬ맀." | 54 | longdescription="ν μ§λ₯Ό μλνκ³ κ·Έλ£Ήμ μν ν μ§λ₯Ό ꡬ맀ν©λλ€. ν μ§ μκ° > μΌλ° νμμ μνν©λλ€." |
55 | name="land deed" /> | 55 | name="land deed" /> |
56 | <action description="λ¦°λ μ£Όμ§μ¬μκ² ν μ§λ₯Ό ν¬κΈ°" | 56 | <action description="λ¦°λ μκ² ν μ§ λ²λ¦¬κΈ°" |
57 | longdescription="Land > General tab μμGovernor Lindenμ μΈ νκΈ°. *μ£Όμ* λ³ΈAbility λ‘ Roleλ΄μ λͺ¨λ 맴λ²λ€μ About Landμμ λ¨μ²΄μμ μ ν μ§λ₯Ό λ²λ¦΄ μ μμ΅λλ€. ν맀μμ΄ Lindenμμ λ‘ λ³΅κ·! λ³ΈAbilityλμ μ€ν μ μ© νμ μΌ ν©λλ€." | 57 | longdescription="λ¦°λ μκ² ν μ§λ₯Ό λ²λ¦½λλ€. *κ²½κ³ * μ΄ κΆνμ κ°μ§ μν νμμ ν μ§ μκ° > μΌλ° νμμ κ·Έλ£Ή μμ μ ν μ§λ₯Ό ν맀νμ§ μκ³ λ²λ € λ¦°λ μμ λ‘ λλ릴 μ μμ΅λλ€. μ΄ κΆνμ ν λΉνκΈ° μ μ νμ¬ μνμ λν΄ μ΄ν΄ν΄μΌ ν©λλ€." |
58 | name="land release" /> | 58 | name="land release" /> |
59 | <action description="ν μ§ ν맀 μ 보 μ€μ " | 59 | <action description="ν μ§ ν맀 μ 보 μ€μ " |
60 | longdescription="ν맀 μ 보λ₯Ό μν ν μ§ . *μ£Όμ*λ³ΈRoleμ Abilityλ₯Ό κ°μ§ λͺ¨λ νμμAbout Land > General tabμμ ꡬ룹μμ μ ν μ§λ₯Ό ν맀ν μ μμ΅λλ€! λ³ΈAbilityλ μ μ€ν μ μ© νμ μΌ ν©λλ€." | 60 | longdescription="ν μ§ ν맀 μ 보 μ€μ *κ²½κ³ * μν μ μ΄ κΆνμ΄ μλ νμμ ν μ§ μκ° > μΌλ° νμ μ¬μ©νμ¬ μνλ λλ‘ κ·Έλ£Ή μμ ν μ§λ₯Ό ν맀ν μ μμ΅λλ€! μ΄ κΆνμ ν λΉνκΈ° μ μ νμ¬ μνμ λν΄ μ΄ν΄ν΄μΌ ν©λλ€." |
61 | name="land set sale info" /> | 61 | name="land set sale info" /> |
62 | <action description="ꡬν λΆν λ° κ²°ν©" | 62 | <action description="ꡬν λΆν λ° κ²°ν©" |
63 | longdescription="Subdivide and join parcels. This is done by right-clicking the ground, 'Edit Terrain', and dragging your mouse on the land to make a selection. To subdivide, select what you want to split and click 'Subdivide...'. To join, select two or more contiguous parcels and click 'Join...'. " | 63 | longdescription="ꡬν λΆν λ° κ²°ν©. μ΄λ κ² νλ €λ©΄ ν μ§, 'μ§ν νΈμ§'μ λ§μ°μ€ μ€λ₯Έμͺ½ λ²νΌμΌλ‘ ν΄λ¦νκ³ μ νν ν μ§λ‘ λ§μ°μ€λ₯Ό λλκ·Ένμμμ€. ꡬνμ λΆν νλ €λ©΄ λΆν ν ꡬνμ μ ννκ³ 'μΈλΆβ¦'μ ν΄λ¦ν©λλ€. ꡬνμ κ²°ν©νλ €λ©΄ 2κ° μ΄μμ μΈμ ν ꡬνμ μ ννκ³ 'κ²°ν©β¦'μ ν΄λ¦ν©λλ€. " |
64 | name="land divide join" /> | 64 | name="land divide join" /> |
65 | </action_set> | 65 | </action_set> |
66 | <action_set | 66 | <action_set |
67 | description="μ΄λ¬ν λ₯λ ₯μλ ꡬν μ΄λ¦ λ° κ²μ μ€μ , μ°λ½μ² μ°ΎκΈ°, μ°©λ₯ μ§μ λ° ν 리ν¬νΈ κ²½λ‘ μ΅μ λ±μ λ³κ²½ν λ₯λ ₯μ΄ ν¬ν¨λ©λλ€." | 67 | description="μ΄λ¬ν κΆνμλ ꡬν μ΄λ¦ λ° κ²μ μ€μ , μ°λ½μ² μ°ΎκΈ°, μ°©λ₯ μ§μ λ° ν 리ν¬νΈ κ²½λ‘ μ΅μ λ±μ λ³κ²½ν μ μλ κΆνμ΄ ν¬ν¨λ©λλ€." |
68 | name="Parcel Identity"> | 68 | name="Parcel Identity"> |
69 | <action description="'μ₯μ μ°ΎκΈ°'λ₯Ό ν κΈνκ³ μΉ΄ν κ³ λ¦¬ μ€μ " | 69 | <action description="'μ₯μ μ°ΎκΈ°'λ₯Ό ν κΈ λ° μΉ΄ν κ³ λ¦¬ μ€μ " |
70 | longdescription="About Land > Options tab μμ Toggle 'Show in Find Places'λ₯Ό κ΅λλ‘ κ΅μ²΄ νκ³ parcelμ μΉ΄ν κ³ λ¦¬λ₯Ό μ ν ν¨." | 70 | longdescription="ν μ§ μκ° > μ΅μ νμμ 'μ₯μ μ°ΎκΈ°'λ₯Ό ν κΈνκ³ κ΅¬νμ μΉ΄ν κ³ λ¦¬λ₯Ό μ€μ ν©λλ€." |
71 | name="land find places" /> | 71 | name="land find places" /> |
72 | <action description="ꡬν μ΄λ¦, μ€λͺ , 'μΉμ κ²μ' μ€μ λ³κ²½" | 72 | <action description="ꡬν μ΄λ¦, μ€λͺ , 'μΉμ κ²μ' μ€μ λ³κ²½" |
73 | longdescription="About Land > Options tab μμ parcel μ΄λ¦, μ€λͺ , 'μΉ λ°ν' μ ν μμ νκΈ°." | 73 | longdescription="ꡬν μ΄λ¦, μ€λͺ λ° 'μΉμ κ²μ'μ λν μ€μ μ λ³κ²½ν©λλ€. ν μ§ μκ° > μ΅μ νμμ μνν©λλ€." |
74 | name="land change identity" /> | 74 | name="land change identity" /> |
75 | <action description="μ°©λ₯ μ§μ λ° ν λ ν¬νΈ κ²½λ‘ μ€μ " | 75 | <action description="ν λ ν¬νΈ λμ°©μ§ λ° ν λ ν¬νΈ κ²½λ‘ μ€μ " |
76 | longdescription="About Land > Options tabμμ ꡬ룹μμ μ parcelμ λν΄μ, λ³ΈRoleμ Abilityλ₯Ό κ°μ§ νμμν 리ν¬νΈλ₯Ό μν λλ© ν¬μΈνΈλ₯Ό μ§μ ν μ μμ΅λλ€. λ ν μ°¨νμ 컨νΈλ‘€μ μν΄ ν 리ν¬νΈ 루ν μ μ ν ν μ μμ΅λλ€." | 76 | longdescription="κ·Έλ£Ή μμ ꡬνμμ, μν μ μ΄ κΆνμ΄ μλ νμμ μμ ν λ ν¬νΈμ λμ°©μ§λ₯Ό μ€μ νκ³ , ν₯ν μ μ΄ν μ μλ ν λ ν¬νΈ μ°©μ μ νλ μ€μ ν μ μμ΅λλ€. μ΄λ ν μ§ μκ° > μ΅μ νμμ μ΄λ£¨μ΄ μ§λλ€." |
77 | name="land set landing point" /> | 77 | name="land set landing point" /> |
78 | </action_set> | 78 | </action_set> |
79 | <action_set | 79 | <action_set |
80 | description="μ΄λ¬ν κΈ°λ₯μλ 'μμ΄ν μμ±β, 'μ§ν νΈμ§', μμ κ³Ό λ―Έλμ΄ μ€μ κ³Ό κ°μ ꡬν μ΅μ μ μν₯μ μ£Όλ λ₯λ ₯μ΄ ν¬ν¨λ©λλ€." | 80 | description="μ΄λ¬ν κΈ°λ₯μλ 'μ€λΈμ νΈ λ§λ€κΈ°β, 'μ§ν νΈμ§', μμ κ³Ό λ―Έλμ΄ μ€μ κ³Ό κ°μ ꡬν μ΅μ μ μν₯μ μ£Όλ κΆνμ΄ ν¬ν¨λ©λλ€." |
81 | name="Parcel Settings"> | 81 | name="Parcel Settings"> |
82 | <action description="μμ λ° λ―Έλμ΄ μ€μ λ³κ²½" | 82 | <action description="μμ λ° λ―Έλμ΄ μ€μ λ³κ²½" |
83 | longdescription="About Land > Media tab μμ μ€νΈλ¦¬λ° μμ κ³Ό λ¬΄λΉ μ ν λ°κΎΈκΈ°" | 83 | longdescription="ν μ§ μκ° > λ―Έλμ΄ νμμ μ€νΈλ¦¬λ° μμ λ° λμμ μ€μ μ λ³κ²½ν©λλ€." |
84 | name="land change media" /> | 84 | name="land change media" /> |
85 | <action description="'μ§ν νΈμ§' ν κΈ" | 85 | <action description="'μ§ν νΈμ§' ν κΈ" |
86 | longdescription="Toggle 'Edit Terrain'. *μ£Όμ* About Land > Options tab > Edit Terrain μμ λ³ΈμΈμ ν μ§μ λν ννλ Lindenμλ¬Όμ μμΉλ₯Ό μμ ν μ μμ΅λλ€. λ³ΈAbilityλ μ μ€ν μ μ© νμ μΌ ν©λλ€. Editing terrain μ About Land > Options tabμμ κ΅λλ‘ κ΅μ²΄ λ©λλ€" | 86 | longdescription="'μ§ν νΈμ§' ν κΈ. *κ²½κ³ * ν μ§ μκ° > μ΅μ ν > μ§ν νΈμ§ κΈ°λ₯μ μ¬μ©νλ©΄ λ€λ₯Έ λͺ¨λ μ¬λλ€μ΄ κ·νμ ν μ§ λͺ¨μ΅μ λ³ννμ¬ λ¦°λ μμ€μ λ°°μΉ λ° μ΄λν μ μμ΅λλ€. μ΄ κΆνμ ν λΉνκΈ° μ μ νμ¬ μνμ λν΄ μ΄ν΄ν΄μΌ ν©λλ€. μ§ν νΈμ§ κΈ°λ₯μ ν μ§ μκ° > μ΅μ νμμ μ νν μ μμ΅λλ€." |
87 | name="land edit" /> | 87 | name="land edit" /> |
88 | <action description="ν μ§ μκ° > μ΅μ μ€μ μ ν κΈ" | 88 | <action description="ν μ§ μκ° > μ΅μ μ€μ ν κΈ" |
89 | longdescription="About Land > Options tabμμ Toggle 'Safe (no damage)', 'Fly'κ³Ό λ€λ₯Έ μ¬μ©μλ€μκ² κ·Έλ£Ή μμ μ ν μ§μ λν΄ 'Create Objects', 'Edit Terrain', 'Create Landmarks', and 'Run Scripts' μ κ°λ₯νκ² νλ€" | 89 | longdescription="μμ (λ°λ―Έμ§ μμ)', 'λΉν'μ ν κΈνλ©΄ λ€λ₯Έ μ£Όλ―Όλ€μ΄ ν μ§ μκ° > μ΅μ νμμ κ·Έλ£Ήμ΄ μμ ν ν μ§μ λν΄ 'μ€λΈμ νΈ λ§λ€κΈ°', 'μ§ν νΈμ§' λ° 'μ€ν¬λ¦½νΈ μ€ν' κΈ°λ₯μ μ¬μ©ν μ μμ΅λλ€." |
90 | name="land options" /> | 90 | name="land options" /> |
91 | </action_set> | 91 | </action_set> |
92 | <action_set | 92 | <action_set |
93 | description="μ΄λ¬ν λ₯λ ₯μλ λ©€λ²κ° κ·Έλ£Ή μμ μ ꡬνμμ μ μ½μ μ°νν μ μλ λ₯λ ₯μ΄ ν¬ν¨λ©λλ€." | 93 | description="μ΄λ¬ν κΆνμλ νμμ΄ κ·Έλ£Ή μμ μ ꡬνμμ μ μ½μ μ°νν μ μλ κΆνμ΄ ν¬ν¨λ©λλ€." |
94 | name="Parcel Powers"> | 94 | name="Parcel Powers"> |
95 | <action description="'μ§ν νΈμ§' νμ νμ©" | 95 | <action description="'μ§ν νΈμ§' νμ νμ©" |
96 | longdescription="About Land > Options tabμμ κΊΌμ Έ μλ κ²½μ°μλRoleμ Abilityλ₯Ό κ°μ§ νμμ ꡬ룹μμ parcelμ μ§νμ μμ ν μ μμ΅λλ€." | 96 | longdescription="μν μ μ΄ κΆνμ΄ μλ νμμ ν μ§ μκ° > μ΅μ νμμ κΊΌμ Έ μμ΄λ κ·Έλ£Ή μμ ꡬνμμ μ€λΈμ νΈλ₯Ό νΈμ§ν μ μμ΅λλ€." |
97 | name="land allow edit land" /> | 97 | name="land allow edit land" /> |
98 | <action description="'λΉν' νμ νμ©" | 98 | <action description="'λΉν' νμ νμ©" |
99 | longdescription="About Land > Options tabμμ κΊΌμ Έ μλ κ²½μ°μλRoleμ Abilityλ₯Ό κ°μ§ νμμ ꡬ룹μμ parcelμμ λΉνν μ μμ΅λλ€." | 99 | longdescription="μν μ μ΄ κΆνμ΄ μλ νμμ ν μ§ μκ° > μ΅μ νμμ κΊΌμ Έ μμ΄λ κ·Έλ£Ή μμ ꡬνμμ λΉνν μ μμ΅λλ€." |
100 | name="land allow fly" /> | 100 | name="land allow fly" /> |
101 | <action description="'μμ΄ν μ μ' νμ νμ©" | 101 | <action description="'μ€λΈμ νΈ λ§λ€κΈ°' νμ νμ©" |
102 | longdescription="About Land > Options tabμμ κΊΌμ Έ μλ κ²½μ°μλRoleμ Abilityλ₯Ό κ°μ§ νμμ ꡬ룹μμ μ μμ΄ν μ λ§λ€ μ μμ΅λλ€." | 102 | longdescription="μν μ μ΄ κΆνμ΄ μλ νμμ ν μ§ μκ° > μ΅μ νμμ κΊΌμ Έ μμ΄λ κ·Έλ£Ή μμ ꡬνμμ μ€λΈμ νΈλ₯Ό λ§λ€ μ μμ΅λλ€." |
103 | name="land allow create" /> | 103 | name="land allow create" /> |
104 | <action description="'κ²½κ³ νμ μμ±' νμ νμ©" | 104 | <action description="'λλλ§ν¬ λ§λ€κΈ°' νμ νμ©" |
105 | longdescription="About Land > Options tabμμ κΊΌμ Έ μλ κ²½μ°μλ λ³ΈRoleμ Abilityλ₯Ό κ°μ§ νμμ ꡬ룹μμ parcelμ κ²½κ³νμ ν μ μμ΅λλ€." | 105 | longdescription="μν μ μ΄ κΆνμ΄ μλ νμμ ν μ§ μκ° > μ΅μ νμμ κΊΌμ Έ μμ΄λ κ·Έλ£Ή μμ ꡬνμμ λλλ§ν¬ ν μ μμ΅λλ€." |
106 | name="land allow landmark" /> | 106 | name="land allow landmark" /> |
107 | <action description="κ·Έλ£Ή ν μ§μ 'μ΄κ³³μ μ§μΌλ‘ μ€μ ' νμ©" | 107 | <action description="κ·Έλ£Ή ν μ§μ 'μ΄κ³³μ νμΌλ‘ μ€μ ' νμ©" |
108 | longdescription="λ³ΈRoleμ Abilityλ₯Ό κ°μ§ νμμ ꡬ룹μμ parcelμμ World menu > Set Home to Here λ₯Ό μ¬μ©ν μ μμ΅λλ€.(λ³Έ ꡬ룹μΌλ‘μ ν μ§ μ μ΄λ μ¦μ¬)." | 108 | longdescription="μν μ μ΄ κΆνμ΄ μλ νμμ μ΄ κ·Έλ£Ήμ μλλ ꡬνμμ μλ λ©λ΄ > μ΄κ³³μ νμΌλ‘ μ€μ μ μ΄μ©ν μ μμ΅λλ€." |
109 | name="land allow set home" /> | 109 | name="land allow set home" /> |
110 | </action_set> | 110 | </action_set> |
111 | <action_set | 111 | <action_set |
112 | description="μ΄λ¬ν λ₯λ ₯μλ μ£Όλ―Ό μ μ§ λ° κ°ν΄λ₯Ό ν¬ν¨νμ¬ κ·Έλ£Ήμ΄ μμ ν ꡬνμ λν μ‘μΈμ€λ₯Ό νμ© λλ μ ννλ λ₯λ ₯μ΄ ν¬ν¨λ©λλ€." | 112 | description="μ΄λ¬ν κΆνμλ μ£Όλ―Ό λκ²° λ° κ°ν΄λ₯Ό ν¬ν¨νμ¬ κ·Έλ£Ή μμ ꡬνμ λν μ κ·Όμ νμ© λλ μ ννλ κ²μ΄ ν¬ν¨λ©λλ€." |
113 | name="Parcel Access"> | 113 | name="Parcel Access"> |
114 | <action description="ꡬν μ‘μΈμ€ λͺ©λ‘ κ΄λ¦¬" | 114 | <action description="ꡬν μ¬μ© κΆν λͺ©λ‘ κ΄λ¦¬" |
115 | longdescription="About Land > Access tabμμ parcel μμ 리μ€νΈ κ΄λ¦¬ νκΈ°." | 115 | longdescription="ν μ§ μκ° > μ¬μ© κΆν νμ ꡬν μ¬μ© κΆν λͺ©λ‘ κ΄λ¦¬" |
116 | name="land manage allowed" /> | 116 | name="land manage allowed" /> |
117 | <action description="ꡬν κΈμ§ λͺ©λ‘ κ΄λ¦¬" | 117 | <action description="ꡬν μ°¨λ¨ λͺ©λ‘ κ΄λ¦¬" |
118 | longdescription="About Land > Ban tab μμ parcel κΈμ§ 리μ€νΈ κ΄λ¦¬ νκΈ°." | 118 | longdescription="ν μ§ μκ° > μ°¨λ¨ νμ μλ ꡬν μ°¨λ¨ λͺ©λ‘μ κ΄λ¦¬ν©λλ€." |
119 | name="land manage banned" /> | 119 | name="land manage banned" /> |
120 | <action description="ꡬν 'ν¨μ€ ν맀...' μ€μ λ³κ²½" | 120 | <action description="ꡬν 'μμ ν΅νκΆ ν맀' μ€μ λ³κ²½" |
121 | longdescription="About Land > Access tab μμ parcel 'Sell passes...' μ ν μμ νκΈ°" | 121 | longdescription="ν μ§ μκ° > μ¬μ© κΆν νμμ ꡬν 'μμ ν΅νκΆ ν맀' μ€μ μ λ³κ²½ν©λλ€." |
122 | name="land manage passes" /> | 122 | name="land manage passes" /> |
123 | <action description="ꡬνμ μ£Όλ―Ό κ°ν΄ λ° μ μ§" | 123 | <action description="ꡬνμ μ£Όλ―Ό κ°ν΄ λ° μ μ§" |
124 | longdescription="Roleμ Abilityλ₯Ό κ°μ§ νμμ ꡬ룹μμ parcelμμ unwelcome μ£Όλ―Όλ€μ λ§μ°μ€ μ€λ₯Έμͺ½ ν΄λ¦ν Moreμμ 'Eject'λ 'Freeze..'λ₯Ό ν΅ν΄ κ΄λ¦¬ ν μ μμ΅λλ€." | 124 | longdescription="μν μ μ΄ κΆνμ΄ μλ νμμ κ·Έλ£Ή μμ ꡬνμμ νμνμ§ μλ μ£Όλ―Όμ λ§μ°μ€ μ€λ₯Έμͺ½ ν΄λ¦, λ 보기>, βμΆλ°©β, λλ βλκ²°βμ μ ννμ¬ ν΄λΉ μ£Όλ―Όμ μ²λ¦¬ν μ μμ΅λλ€." |
125 | name="land admin" /> | 125 | name="land admin" /> |
126 | </action_set> | 126 | </action_set> |
127 | <action_set | 127 | <action_set |
128 | description="μ΄λ¬ν λ₯λ ₯μλ λ©€λ²κ° μ¬λ¬Όκ³Ό μ₯μλ₯Ό λ°ννκ³ λ¦°λ μμ€λ€μ μμ ν μ μλ κΈ°λ₯μ΄ ν¬ν¨λ©λλ€. λ©€λ²κ° μ°λ κΈ°λ₯Ό μ²μνκ³ μ‘°κ²½ν λ μ μ©νμ§λ§ λ°ν μμ΄ν μ λν΄ μ·¨μλ₯Ό ν μ μμΌλ―λ‘ μ£Όμν΄μ μ¬μ©ν΄μΌ ν©λλ€." | 128 | description="μ΄λ¬ν κΆνμλ νμμ΄ μ€λΈμ νΈμ μ₯μλ₯Ό λ°ννκ³ λ¦°λ μμ€λ€μ μμ ν μ μλ κΈ°λ₯μ΄ ν¬ν¨λ©λλ€. νμμ΄ μ°λ κΈ°λ₯Ό μ²μνκ³ μ‘°κ²½ν λ μ μ©νμ§λ§ λ°ν μ€λΈμ νΈμ λν΄ μ·¨μλ₯Ό ν μ μμΌλ―λ‘ μ£Όμν΄μ μ¬μ©ν΄μΌ ν©λλ€." |
129 | name="Parcel Content"> | 129 | name="Parcel Content"> |
130 | <action description="κ·Έλ£Ή μμ μ μμ΄ν λ°ν" | 130 | <action description="Return objects owned by group" |
131 | longdescription="About Land > Objects tabμμ μμ΄ν λ€μ ꡬ룹μ μν΄ μμ λ ꡬ룹μμ μ parcelλ€λ‘ λλ릴 μ μμ΅λλ€." | 131 | longdescription="ν μ§ μκ° > μ€λΈμ νΈ νμ μλ κ·Έλ£Ή μμ μ μ€λΈμ νΈλ₯Ό κ·Έλ£Ή μμ ꡬνμ λ°νν©λλ€." |
132 | name="land return group owned" /> | 132 | name="land return group owned" /> |
133 | <action description="κ·Έλ£Ήμ μ€μ λ μμ΄ν λ°ν" | 133 | <action description="κ·Έλ£Ήμ μ€μ λ μ€λΈμ νΈ λ°ν" |
134 | longdescription="About Land > Objects tabμμ μμ΄ν λ€μ ꡬ룹μ μ ν λ ꡬ룹μμ μ parcelλ€λ‘ λλ릴 μ μμ΅λλ€." | 134 | longdescription="ν μ§ μκ° > μ€λΈμ νΈ νμμ κ·Έλ£Ήμ μ€μ λ μ€λΈμ νΈλ₯Ό κ·Έλ£Ή μμ ꡬνμ λ°νν©λλ€." |
135 | name="land return group set" /> | 135 | name="land return group set" /> |
136 | <action description="λΉκ·Έλ£Ή μμ΄ν λ°ν" | 136 | <action description="λΉκ·Έλ£Ή μ€λΈμ νΈ λ°ν" |
137 | longdescription="About Land > Objects tab μμ μμ΄ν λ€μ λΉκ΅¬λ£ΉμΈ ꡬ룹μμ μ parcelλ€λ‘ λλ릴 μ μμ΅λλ€." | 137 | longdescription="ν μ§ μκ° > μ€λΈμ νΈ νμ μλ λΉκ·Έλ£Ήμ μ€λΈμ νΈλ₯Ό κ·Έλ£Ή μμ ꡬνμ λ°νν©λλ€." |
138 | name="land return non group" /> | 138 | name="land return non group" /> |
139 | <action description="λ¦°λ μμ€μ μ¬μ©ν νκ²½" | 139 | <action description="λ¦°λ μλ¬Όμ μ¬μ©ν μ‘°κ²½" |
140 | longdescription="Landscaping ability λ‘ Linden λ무, νμ΄, μλλ₯Ό μ λ°°μΉ νκ±°λ μμ§μΌ μ μμ΅λλ€. Linden λ무, νμ΄, μλλ₯Όλ λ³ΈμΈμinventory's Library λ΄μObjectsν΄λ μμ μ°Ύμ μ μμ΅λλ€. λλ μ§μ μ μν μ μμ΅λλ€." | 140 | longdescription="λ¦°λ λ무, μλ¬Ό, μλμ μ‘°κ²½ κΆν. μ΄λ¬ν μμ΄ν μ μΈλ²€ν 리μ λΌμ΄λΈλ¬λ¦¬ > μ€λΈμ νΈ ν΄λμ μκ±°λ μ§μ λ§λ€ μ μμ΅λλ€." |
141 | name="land gardening" /> | 141 | name="land gardening" /> |
142 | </action_set> | 142 | </action_set> |
143 | <action_set | 143 | <action_set |
144 | description="These Abilities include powers to deed, modify, and sell group-owned objects. These changes are done in the Edit Tools > General Tab. Right-click an object and Edit to see its settings. " | 144 | description="μ΄λ¬ν κΆνμλ κ·Έλ£Ή μμ μ€λΈμ νΈλ₯Ό μλ, μμ , ν맀νλ κΆνμ΄ ν¬ν¨λ©λλ€. μ΄λ¬ν λ³κ²½μ 'νΈμ§ λꡬ > μΌλ° ν'μμ μνλ©λλ€. μ€λΈμ νΈλ₯Ό λ§μ°μ€ μ€λ₯Έμͺ½ ν΄λ¦νκ³ 'νΈμ§'μ μ νν΄ μ€μ μ λ΄ λλ€." |
145 | name="Object Management"> | 145 | name="Object Management"> |
146 | <action description="κ·Έλ£Ήμκ² μμ΄ν μλ" | 146 | <action description="κ·Έλ£Ήμκ² μ€λΈμ νΈ μλ" |
147 | longdescription="Edit Tools > General Tab μμ κ·Έλ£Ήμ μμ΄ν μλ." | 147 | longdescription="νΈμ§ λꡬ > μΌλ° νμμ μ€λΈμ νΈλ₯Ό κ·Έλ£Ήμ μλν©λλ€." |
148 | name="object deed" /> | 148 | name="object deed" /> |
149 | <action description="κ·Έλ£Ή μμ μ¬λ¬Ό μ‘°μ(μ΄λ, 볡μ¬, μμ )" | 149 | <action description="κ·Έλ£Ή μμ μ€λΈμ νΈ μ‘°μ(μ΄λ, 볡μ¬, μμ )" |
150 | longdescription="Edit Tools > General Tabμμ ꡬ룹μμ μ μμ΄ν μ‘°μνκΈ°(μ΄λ, 볡μ¬, μμ )" | 150 | longdescription="λꡬ νΈμ§ μΌλ° νμ μλ κ·Έλ£Ή μμ μ€λΈμ νΈλ₯Ό μ‘°μν©λλ€(μ΄λ, 볡μ¬, μμ )." |
151 | name="object manipulate" /> | 151 | name="object manipulate" /> |
152 | <action description="κ·Έλ£Ή μμ μμ΄ν μ ν맀 μμ΄ν μΌλ‘ μ€μ " | 152 | <action description="κ·Έλ£Ή μμ μ€λΈμ νΈλ₯Ό νλ§€λ‘ μ€μ " |
153 | longdescription="Edit Tools > General tabμμ ν맀λ₯Ό μν ꡬ룹μμ μ μμ΄ν μ μ νκΈ°." | 153 | longdescription="νΈμ§ λꡬ > μΌλ° νμμ κ·Έλ£Ή μμ μ€λΈμ νΈλ₯Ό ν맀 μ€λΈμ νΈλ‘ μ€μ νμμμ€." |
154 | name="object set sale" /> | 154 | name="object set sale" /> |
155 | </action_set> | 155 | </action_set> |
156 | <action_set | 156 | <action_set |
157 | description="μ΄λ¬ν λ₯λ ₯μλ λ©€λ²κ° κ·Έλ£Ή λΆμ±λ₯Ό μ§λΆνκ³ κ·Έλ£Ή λ°°λΉκΈμ μλ Ήν΄μΌ νλ©° κ·Έλ£Ή κ³μ κΈ°λ‘μ λν μ‘μΈμ€λ₯Ό μ ννλ λ₯λ ₯μ΄ ν¬ν¨λ©λλ€." | 157 | description="μ΄λ¬ν κΆνμλ νμμ΄ κ·Έλ£Ή λΆμ±λ₯Ό μ§λΆνκ³ κ·Έλ£Ή λ°°λΉκΈμ μλ Ήν΄μΌ νλ©° κ·Έλ£Ή κ³μ κΈ°λ‘μ λν μ κ·Όμ μ ννλ κΆνμ΄ ν¬ν¨λ©λλ€." |
158 | name="Accounting"> | 158 | name="Accounting"> |
159 | <action description="κ·Έλ£Ή λΆμ± μ§λΆ λ° κ·Έλ£Ή λ°°λΉκΈ μλ Ή" | 159 | <action description="κ·Έλ£Ή λΆμ± μ§λΆκ³Ό κ·Έλ£Ή λ°°λΉκΈ μλ Ή" |
160 | longdescription="Members in a Role with this Ability will automatically pay group liabilities and receive group dividends. This means they will receive a portion of group-owned land sales which are distributed daily, as well as contribute towards things like parcel listing fees. " | 160 | longdescription="μν μ μ΄ κΆνμ΄ μλ νμμ κ·Έλ£Ή λΆμ±λ₯Ό μλ μ§λΆνκ³ κ·Έλ£Ή λ°°λΉκΈμ μλ Ήν©λλ€. μ΄λ νμμ΄ κ·Έλ£Ή μμ ν μ§ ν맀μμ λ§€μΌ λΆλ°°λλ μΌμ λΆλΆμ μλ Ήνκ³ κ΅¬ν κ²μ¬ λΉμ© λ±μ κΈ°λΆν¨μ μλ―Έν©λλ€. " |
161 | name="accounting accountable" /> | 161 | name="accounting accountable" /> |
162 | </action_set> | 162 | </action_set> |
163 | <action_set | 163 | <action_set |
164 | description="μ΄λ¬ν λ₯λ ₯μλ λ©€λ²κ° κ·Έλ£Ή ν΅μ§λ₯Ό μ μ‘, μλ Ή λ° λ³Ό μ μκ² νλ λ₯λ ₯μ΄ ν¬ν¨λ©λλ€." | 164 | description="μ΄λ¬ν κΆνμλ νμμ΄ κ·Έλ£Ή ν΅μ§λ₯Ό μ μ‘, μλ Ή λ° λ³Ό μ μκ² νλ κ²μ΄ ν¬ν¨λ©λλ€." |
165 | name="Notices"> | 165 | name="Notices"> |
166 | <action description="κ³΅μ§ μ μ‘" | 166 | <action description="κ³΅μ§ μ μ‘" |
167 | longdescription="Group Information > Notices tab μμ λ³ΈRoleμ Abilityλ₯Ό κ°μ§ νμμ 곡μ§λ₯Ό 보λΌμ μμ΅λλ€." | 167 | longdescription="μν μ μ΄ κΆνμ΄ μλ νμμ κ·Έλ£Ή μ 보 > κ³΅μ§ νμμ 곡μ§λ₯Ό λ°μ‘ν μ μμ΅λλ€." |
168 | name="notices send" /> | 168 | name="notices send" /> |
169 | <action description="κ³΅μ§ μλ Ή λ° κ³Όκ±° κ³΅μ§ λ³΄κΈ°" | 169 | <action description="κ³΅μ§ μλ Ή λ° κ³Όκ±° κ³΅μ§ λ³΄κΈ°" |
170 | longdescription="Notices in Group Information > Notices tabμμ λ³Έ Roleμ Abilityλ₯Ό κ°μ§ νμμ 곡μ§λ₯Ό λ°κ±°λ μ΄λ, κ³΅κ³ ν μ μμ΅λλ€." | 170 | longdescription="μν μ μ΄ κΆνμ΄ μλ νμμ 곡μ§λ₯Ό μλ Ήνκ³ κ·Έλ£Ή μ 보 > κ³΅μ§ νμμ μ§λ κ³΅μ§ μ¬νμ λ³Ό μ μμ΅λλ€." |
171 | name="notices receive" /> | 171 | name="notices receive" /> |
172 | </action_set> | 172 | </action_set> |
173 | <action_set | 173 | <action_set |
174 | description="μ΄λ¬ν λ₯λ ₯μλ λ©€λ²κ° μ μμ μ€μ νκ³ μ μμ ν¬ννλ©° ν¬ν κΈ°λ‘μ λ³Ό μ μκ² νλ λ₯λ ₯μ΄ ν¬ν¨λ©λλ€." | 174 | description="μ΄λ¬ν κΆνμλ νμμ΄ μ μμ μ€μ νκ³ μ μμ ν¬ννλ©° ν¬ν κΈ°λ‘μ λ³Ό μ μκ² νλ κ²μ΄ ν¬ν¨λ©λλ€." |
175 | name="Proposals"> | 175 | name="Proposals"> |
176 | <action description="μ μ μμ±" | 176 | <action description="μ μ λ§λ€κΈ°" |
177 | longdescription="Group Information > Proposals tab μμ Roleμ Abilityλ₯Ό κ°μ§ νμμ ν¬ν κ°λ₯ν νλ‘ν¬μ μ λ§λ€μ μμ΅λλ€." | 177 | longdescription="μν μ μ΄ κΆνμ΄ μλ νμμ κ·Έλ£Ή μ 보 > μ μ νμμ ν¬ν κ°λ₯ν μ μμ λ§λ€ μ μμ΅λλ€." |
178 | name="proposal start" /> | 178 | name="proposal start" /> |
179 | <action description="μ μμ ν¬ν" | 179 | <action description="μ μμ ν¬ν" |
180 | longdescription="Group Information > Proposals tabμμ λ³ΈRoleμ Abilityλ₯Ό κ°μ§ νμμ νλ‘ν¬μ μ ν¬νν μ μμ΅λλ€." | 180 | longdescription="μν μ μ΄ κΆνμ΄ μλ νμμ κ·Έλ£Ή μ 보 > μ μ νμμ μ μμ κ΄ν ν¬νλ₯Ό ν μ μμ΅λλ€." |
181 | name="proposal vote" /> | 181 | name="proposal vote" /> |
182 | </action_set> | 182 | </action_set> |
183 | </role_actions> | 183 | </role_actions> |
diff --git a/linden/indra/newview/viewer.cpp b/linden/indra/newview/viewer.cpp index b71c6f2..2f05754 100644 --- a/linden/indra/newview/viewer.cpp +++ b/linden/indra/newview/viewer.cpp | |||
@@ -1856,7 +1856,44 @@ void main_loop() | |||
1856 | { | 1856 | { |
1857 | LLFastTimer t2(LLFastTimer::FTM_SLEEP); | 1857 | LLFastTimer t2(LLFastTimer::FTM_SLEEP); |
1858 | bool run_multiple_threads = gSavedSettings.getBOOL("RunMultipleThreads"); | 1858 | bool run_multiple_threads = gSavedSettings.getBOOL("RunMultipleThreads"); |
1859 | |||
1860 | // yield some time to the os based on command line option | ||
1861 | if(gYieldTime) | ||
1862 | { | ||
1863 | ms_sleep(gYieldMS); | ||
1864 | } | ||
1865 | |||
1866 | // yield cooperatively when not running as foreground window | ||
1867 | if ( gNoRender | ||
1868 | || !gViewerWindow->mWindow->getVisible() | ||
1869 | || !gFocusMgr.getAppHasFocus()) | ||
1870 | { | ||
1871 | // Sleep if we're not rendering, or the window is minimized. | ||
1872 | S32 milliseconds_to_sleep = llclamp(gSavedSettings.getS32("BackgroundYieldTime"), 0, 1000); | ||
1873 | // don't sleep when BackgroundYieldTime set to 0, since this will still yield to other threads | ||
1874 | // of equal priority on Windows | ||
1875 | if (milliseconds_to_sleep > 0) | ||
1876 | { | ||
1877 | ms_sleep(milliseconds_to_sleep); | ||
1878 | // also pause worker threads during this wait period | ||
1879 | gTextureCache->pause(); | ||
1880 | gImageDecodeThread->pause(); | ||
1881 | } | ||
1882 | } | ||
1859 | 1883 | ||
1884 | if (gRandomizeFramerate) | ||
1885 | { | ||
1886 | ms_sleep(rand() % 200); | ||
1887 | } | ||
1888 | |||
1889 | if (gPeriodicSlowFrame | ||
1890 | && (gFrameCount % 10 == 0)) | ||
1891 | { | ||
1892 | llinfos << "Periodic slow frame - sleeping 500 ms" << llendl; | ||
1893 | ms_sleep(500); | ||
1894 | } | ||
1895 | |||
1896 | |||
1860 | const F64 min_frame_time = 0.0; //(.0333 - .0010); // max video frame rate = 30 fps | 1897 | const F64 min_frame_time = 0.0; //(.0333 - .0010); // max video frame rate = 30 fps |
1861 | const F64 min_idle_time = 0.0; //(.0010); // min idle time = 1 ms | 1898 | const F64 min_idle_time = 0.0; //(.0010); // min idle time = 1 ms |
1862 | const F64 max_idle_time = run_multiple_threads ? min_idle_time : .005; // 5 ms | 1899 | const F64 max_idle_time = run_multiple_threads ? min_idle_time : .005; // 5 ms |
@@ -1874,30 +1911,6 @@ void main_loop() | |||
1874 | { | 1911 | { |
1875 | ms_sleep(llmin(io_pending/100,100)); // give the vfs some time to catch up | 1912 | ms_sleep(llmin(io_pending/100,100)); // give the vfs some time to catch up |
1876 | } | 1913 | } |
1877 | if ( gNoRender | ||
1878 | || !gViewerWindow->mWindow->getVisible() | ||
1879 | || !gViewerWindow->getActive() | ||
1880 | || gViewerWindow->mWindow->getMinimized() ) | ||
1881 | { | ||
1882 | // Sleep if we're not rendering, or the window is minimized. | ||
1883 | ms_sleep(20); | ||
1884 | } | ||
1885 | else | ||
1886 | { | ||
1887 | // ms_sleep(1); // sleep at least 1 ms | ||
1888 | } | ||
1889 | |||
1890 | if (gRandomizeFramerate) | ||
1891 | { | ||
1892 | ms_sleep(rand() % 200); | ||
1893 | } | ||
1894 | |||
1895 | if (gPeriodicSlowFrame | ||
1896 | && (gFrameCount % 10 == 0)) | ||
1897 | { | ||
1898 | llinfos << "Periodic slow frame - sleeping 500 ms" << llendl; | ||
1899 | ms_sleep(500); | ||
1900 | } | ||
1901 | 1914 | ||
1902 | F64 frame_time = frameTimer.getElapsedTimeF64(); | 1915 | F64 frame_time = frameTimer.getElapsedTimeF64(); |
1903 | F64 idle_time = idleTimer.getElapsedTimeF64(); | 1916 | F64 idle_time = idleTimer.getElapsedTimeF64(); |
@@ -3957,12 +3970,6 @@ void idle() | |||
3957 | gAudiop->idle(max_audio_decode_time); | 3970 | gAudiop->idle(max_audio_decode_time); |
3958 | } | 3971 | } |
3959 | 3972 | ||
3960 | // yield some time to the os if we are supposed to. | ||
3961 | if(gYieldTime) | ||
3962 | { | ||
3963 | ms_sleep(gYieldMS); | ||
3964 | } | ||
3965 | |||
3966 | // Handle shutdown process, for example, | 3973 | // Handle shutdown process, for example, |
3967 | // wait for floaters to close, send quit message, | 3974 | // wait for floaters to close, send quit message, |
3968 | // forcibly quit if it has taken too long | 3975 | // forcibly quit if it has taken too long |
@@ -6302,7 +6309,7 @@ void cleanup_app() | |||
6302 | 6309 | ||
6303 | llinfos << "Cleaning Up" << llendflush; | 6310 | llinfos << "Cleaning Up" << llendflush; |
6304 | 6311 | ||
6305 | LLKeyframeMotion::flushKeyframeCache(); | 6312 | LLKeyframeDataCache::clear(); |
6306 | 6313 | ||
6307 | // Must clean up texture references before viewer window is destroyed. | 6314 | // Must clean up texture references before viewer window is destroyed. |
6308 | LLHUDObject::cleanupHUDObjects(); | 6315 | LLHUDObject::cleanupHUDObjects(); |
@@ -6334,6 +6341,8 @@ void cleanup_app() | |||
6334 | delete gGlobalEconomy; | 6341 | delete gGlobalEconomy; |
6335 | gGlobalEconomy = NULL; | 6342 | gGlobalEconomy = NULL; |
6336 | 6343 | ||
6344 | LLNotifyBox::cleanup(); | ||
6345 | |||
6337 | llinfos << "Global stuff deleted" << llendflush; | 6346 | llinfos << "Global stuff deleted" << llendflush; |
6338 | 6347 | ||
6339 | #if !LL_RELEASE_FOR_DOWNLOAD | 6348 | #if !LL_RELEASE_FOR_DOWNLOAD |
@@ -6423,8 +6432,7 @@ void cleanup_app() | |||
6423 | 6432 | ||
6424 | // Clean up selection managers after UI is destroyed, as UI | 6433 | // Clean up selection managers after UI is destroyed, as UI |
6425 | // may be observing them. | 6434 | // may be observing them. |
6426 | delete gSelectMgr; | 6435 | LLSelectMgr::cleanupGlobals(); |
6427 | gSelectMgr = NULL; | ||
6428 | 6436 | ||
6429 | LLViewerObject::cleanupVOClasses(); | 6437 | LLViewerObject::cleanupVOClasses(); |
6430 | 6438 | ||
@@ -6445,8 +6453,7 @@ void cleanup_app() | |||
6445 | llwarns << "Remaining references in the volume manager!" << llendflush; | 6453 | llwarns << "Remaining references in the volume manager!" << llendflush; |
6446 | } | 6454 | } |
6447 | 6455 | ||
6448 | delete gParcelMgr; | 6456 | LLViewerParcelMgr::cleanupGlobals(); |
6449 | gParcelMgr = NULL; | ||
6450 | 6457 | ||
6451 | delete gViewerStats; | 6458 | delete gViewerStats; |
6452 | gViewerStats = NULL; | 6459 | gViewerStats = NULL; |
@@ -6562,8 +6569,12 @@ void cleanup_app() | |||
6562 | delete gVFS; | 6569 | delete gVFS; |
6563 | gVFS = NULL; | 6570 | gVFS = NULL; |
6564 | 6571 | ||
6572 | LLCurl::cleanup(); | ||
6573 | |||
6565 | // This will eventually be done in LLApp | 6574 | // This will eventually be done in LLApp |
6566 | LLCommon::cleanupClass(); | 6575 | LLCommon::cleanupClass(); |
6576 | |||
6577 | end_messaging_system(); | ||
6567 | } | 6578 | } |
6568 | 6579 | ||
6569 | const std::string& getLoginURI() | 6580 | const std::string& getLoginURI() |
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py index 2f4eb7c..d22a7b5 100755 --- a/linden/indra/newview/viewer_manifest.py +++ b/linden/indra/newview/viewer_manifest.py | |||
@@ -148,6 +148,7 @@ class WindowsManifest(ViewerManifest): | |||
148 | 148 | ||
149 | # Mozilla runtime DLLs (CP) | 149 | # Mozilla runtime DLLs (CP) |
150 | if self.prefix(src="../../libraries/i686-win32/lib_release", dst=""): | 150 | if self.prefix(src="../../libraries/i686-win32/lib_release", dst=""): |
151 | self.path("freebl3.dll") | ||
151 | self.path("gksvggdiplus.dll") | 152 | self.path("gksvggdiplus.dll") |
152 | self.path("js3250.dll") | 153 | self.path("js3250.dll") |
153 | self.path("nspr4.dll") | 154 | self.path("nspr4.dll") |
@@ -410,6 +411,7 @@ class Linux_i686Manifest(LinuxManifest): | |||
410 | self.end_prefix("res-sdl") | 411 | self.end_prefix("res-sdl") |
411 | 412 | ||
412 | self.path("featuretable_linux.txt") | 413 | self.path("featuretable_linux.txt") |
414 | self.path("secondlife-i686.supp") | ||
413 | 415 | ||
414 | self.path("app_settings/mozilla-runtime-linux-i686") | 416 | self.path("app_settings/mozilla-runtime-linux-i686") |
415 | 417 | ||
@@ -431,6 +433,8 @@ class Linux_i686Manifest(LinuxManifest): | |||
431 | self.path("libelfio.so") | 433 | self.path("libelfio.so") |
432 | self.path("libuuid.so", "libuuid.so.1") | 434 | self.path("libuuid.so", "libuuid.so.1") |
433 | self.path("libSDL-1.2.so.0") | 435 | self.path("libSDL-1.2.so.0") |
436 | self.path("libtcmalloc.so.0") | ||
437 | self.path("libstacktrace.so.0") | ||
434 | # self.path("libllkdu.so", "../bin/libllkdu.so") # llkdu goes in bin for some reason | 438 | # self.path("libllkdu.so", "../bin/libllkdu.so") # llkdu goes in bin for some reason |
435 | self.end_prefix("lib") | 439 | self.end_prefix("lib") |
436 | 440 | ||