diff options
Diffstat (limited to 'linden/indra/newview')
20 files changed, 88 insertions, 56 deletions
diff --git a/linden/indra/newview/lleventpoll.cpp b/linden/indra/newview/lleventpoll.cpp index 083c46c..6b95102 100644 --- a/linden/indra/newview/lleventpoll.cpp +++ b/linden/indra/newview/lleventpoll.cpp | |||
@@ -224,7 +224,12 @@ namespace | |||
224 | // IMs, teleports, about land, selecing land, region crossing and more will all fail. | 224 | // IMs, teleports, about land, selecing land, region crossing and more will all fail. |
225 | // They are essentially disconnected from the region even though some things may still work. | 225 | // They are essentially disconnected from the region even though some things may still work. |
226 | // Since things won't get better until they relog we force a disconnect now. | 226 | // Since things won't get better until they relog we force a disconnect now. |
227 | LLAppViewer::instance()->forceDisconnect("You have been disconnected from the region you were in."); | 227 | |
228 | // *NOTE:Mani - This force disconnect was causing logouts even when disconnected | ||
229 | // from neighboring regions. | ||
230 | // *FIX:Mani We may want to re enable forceDisconnect for the agents main region. | ||
231 | // *FIX:Mani If reimplemting Translate!!!! | ||
232 | // LLAppViewer::instance()->forceDisconnect("You have been disconnected from the region you were in."); | ||
228 | } | 233 | } |
229 | } | 234 | } |
230 | 235 | ||
diff --git a/linden/indra/newview/llfloaterdaycycle.cpp b/linden/indra/newview/llfloaterdaycycle.cpp index c0f8a48..6a6a430 100644 --- a/linden/indra/newview/llfloaterdaycycle.cpp +++ b/linden/indra/newview/llfloaterdaycycle.cpp | |||
@@ -109,7 +109,6 @@ void LLFloaterDayCycle::onClickHelp(void* data) | |||
109 | root_floater->addDependentFloater(dialogp); | 109 | root_floater->addDependentFloater(dialogp); |
110 | } | 110 | } |
111 | } | 111 | } |
112 | delete xml_alert; | ||
113 | } | 112 | } |
114 | 113 | ||
115 | void LLFloaterDayCycle::initHelpBtn(const std::string& name, const std::string& xml_alert) | 114 | void LLFloaterDayCycle::initHelpBtn(const std::string& name, const std::string& xml_alert) |
diff --git a/linden/indra/newview/llfloaterregioninfo.cpp b/linden/indra/newview/llfloaterregioninfo.cpp index 78d07cf..8a4f621 100644 --- a/linden/indra/newview/llfloaterregioninfo.cpp +++ b/linden/indra/newview/llfloaterregioninfo.cpp | |||
@@ -542,7 +542,6 @@ void LLPanelRegionInfo::onClickHelp(void* data) | |||
542 | { | 542 | { |
543 | const std::string* xml_alert = (std::string*)data; | 543 | const std::string* xml_alert = (std::string*)data; |
544 | gViewerWindow->alertXml(*xml_alert); | 544 | gViewerWindow->alertXml(*xml_alert); |
545 | delete xml_alert; | ||
546 | } | 545 | } |
547 | 546 | ||
548 | ///////////////////////////////////////////////////////////////////////////// | 547 | ///////////////////////////////////////////////////////////////////////////// |
diff --git a/linden/indra/newview/llfloaterreporter.cpp b/linden/indra/newview/llfloaterreporter.cpp index 78f5623..e8643c0 100644 --- a/linden/indra/newview/llfloaterreporter.cpp +++ b/linden/indra/newview/llfloaterreporter.cpp | |||
@@ -389,21 +389,36 @@ void LLFloaterReporter::onClickSend(void *userdata) | |||
389 | // only show copyright alert for abuse reports | 389 | // only show copyright alert for abuse reports |
390 | if ( self->mReportType != BUG_REPORT ) | 390 | if ( self->mReportType != BUG_REPORT ) |
391 | { | 391 | { |
392 | const int IP_CONTENT_REMOVAL = 66; | ||
393 | const int IP_PERMISSONS_EXPLOIT = 37; | ||
394 | LLComboBox* combo = self->getChild<LLComboBox>( "category_combo"); | ||
395 | int category_value = combo->getSelectedValue().asInteger(); | ||
396 | |||
392 | if ( ! self->mCopyrightWarningSeen ) | 397 | if ( ! self->mCopyrightWarningSeen ) |
393 | { | 398 | { |
399 | |||
394 | std::string details_lc = self->childGetText("details_edit"); | 400 | std::string details_lc = self->childGetText("details_edit"); |
395 | LLStringUtil::toLower( details_lc ); | 401 | LLStringUtil::toLower( details_lc ); |
396 | std::string summary_lc = self->childGetText("summary_edit"); | 402 | std::string summary_lc = self->childGetText("summary_edit"); |
397 | LLStringUtil::toLower( summary_lc ); | 403 | LLStringUtil::toLower( summary_lc ); |
398 | if ( details_lc.find( "copyright" ) != std::string::npos || | 404 | if ( details_lc.find( "copyright" ) != std::string::npos || |
399 | summary_lc.find( "copyright" ) != std::string::npos ) | 405 | summary_lc.find( "copyright" ) != std::string::npos || |
406 | category_value == IP_CONTENT_REMOVAL || | ||
407 | category_value == IP_PERMISSONS_EXPLOIT) | ||
400 | { | 408 | { |
401 | gViewerWindow->alertXml("HelpReportAbuseContainsCopyright"); | 409 | gViewerWindow->alertXml("HelpReportAbuseContainsCopyright"); |
402 | self->mCopyrightWarningSeen = TRUE; | 410 | self->mCopyrightWarningSeen = TRUE; |
403 | return; | 411 | return; |
404 | }; | 412 | } |
405 | }; | 413 | } |
406 | }; | 414 | else if (category_value == IP_CONTENT_REMOVAL) |
415 | { | ||
416 | // IP_CONTENT_REMOVAL *always* shows the dialog - | ||
417 | // ergo you can never send that abuse report type. | ||
418 | gViewerWindow->alertXml("HelpReportAbuseContainsCopyright"); | ||
419 | return; | ||
420 | } | ||
421 | } | ||
407 | 422 | ||
408 | LLUploadDialog::modalUploadDialog("Uploading...\n\nReport"); | 423 | LLUploadDialog::modalUploadDialog("Uploading...\n\nReport"); |
409 | // *TODO don't upload image if checkbox isn't checked | 424 | // *TODO don't upload image if checkbox isn't checked |
diff --git a/linden/indra/newview/llfloaterwater.cpp b/linden/indra/newview/llfloaterwater.cpp index 371f17a..025562a 100644 --- a/linden/indra/newview/llfloaterwater.cpp +++ b/linden/indra/newview/llfloaterwater.cpp | |||
@@ -185,7 +185,6 @@ void LLFloaterWater::onClickHelp(void* data) | |||
185 | root_floater->addDependentFloater(dialogp); | 185 | root_floater->addDependentFloater(dialogp); |
186 | } | 186 | } |
187 | } | 187 | } |
188 | delete xml_alert; | ||
189 | } | 188 | } |
190 | 189 | ||
191 | void LLFloaterWater::initHelpBtn(const std::string& name, const std::string& xml_alert) | 190 | void LLFloaterWater::initHelpBtn(const std::string& name, const std::string& xml_alert) |
diff --git a/linden/indra/newview/llfloaterwindlight.cpp b/linden/indra/newview/llfloaterwindlight.cpp index 8ed95da..f0d5480 100644 --- a/linden/indra/newview/llfloaterwindlight.cpp +++ b/linden/indra/newview/llfloaterwindlight.cpp | |||
@@ -243,7 +243,6 @@ void LLFloaterWindLight::onClickHelp(void* data) | |||
243 | root_floater->addDependentFloater(dialogp); | 243 | root_floater->addDependentFloater(dialogp); |
244 | } | 244 | } |
245 | } | 245 | } |
246 | delete xml_alert; | ||
247 | } | 246 | } |
248 | 247 | ||
249 | void LLFloaterWindLight::initHelpBtn(const std::string& name, const std::string& xml_alert) | 248 | void LLFloaterWindLight::initHelpBtn(const std::string& name, const std::string& xml_alert) |
diff --git a/linden/indra/newview/llpaneldirland.cpp b/linden/indra/newview/llpaneldirland.cpp index c67ee9e..6e8af5f 100644 --- a/linden/indra/newview/llpaneldirland.cpp +++ b/linden/indra/newview/llpaneldirland.cpp | |||
@@ -100,8 +100,6 @@ BOOL LLPanelDirLand::postBuild() | |||
100 | if (results) | 100 | if (results) |
101 | { | 101 | { |
102 | results->setSortChangedCallback(onClickSort); | 102 | results->setSortChangedCallback(onClickSort); |
103 | // primary sort key is mCurrentSortColumn, secondary is name | ||
104 | results->sortByColumn("name", TRUE); | ||
105 | results->sortByColumn(mCurrentSortColumn,mCurrentSortAscending); | 103 | results->sortByColumn(mCurrentSortColumn,mCurrentSortAscending); |
106 | } | 104 | } |
107 | 105 | ||
diff --git a/linden/indra/newview/skins/default/xui/en-us/alerts.xml b/linden/indra/newview/skins/default/xui/en-us/alerts.xml index f412f52..20b04db 100644 --- a/linden/indra/newview/skins/default/xui/en-us/alerts.xml +++ b/linden/indra/newview/skins/default/xui/en-us/alerts.xml | |||
@@ -4360,13 +4360,13 @@ Entering an accurate description helps us file and process bug reports. | |||
4360 | <message name="message"> | 4360 | <message name="message"> |
4361 | Dear Resident, | 4361 | Dear Resident, |
4362 | 4362 | ||
4363 | If you are reporting intellectual property infringement, please make sure you are reporting it correctly: | 4363 | You appear to be reporting intellectual property infringement. Please make sure you are reporting it correctly: |
4364 | 4364 | ||
4365 | (1) The Abuse Process. You may submit an abuse report if you believe a Resident is exploiting the Second Life permissions system, for example, by using CopyBot or similar copying tools, to infringe intellectual property rights. The Abuse Team investigates and issues appropriate disciplinary action for behavior that violates the Second Life Community Standards or Terms of Service. However, the Abuse Team does not handle and will not respond to requests to remove content from the Second Life world. | 4365 | (1) The Abuse Process. You may submit an abuse report if you believe a Resident is exploiting the Second Life permissions system, for example, by using CopyBot or similar copying tools, to infringe intellectual property rights. The Abuse Team investigates and issues appropriate disciplinary action for behavior that violates the Second Life Community Standards or Terms of Service. However, the Abuse Team does not handle and will not respond to requests to remove content from the Second Life world. |
4366 | 4366 | ||
4367 | (2) The DMCA or Content Removal Process. To request removal of content from Second Life, you must submit a valid notification of infringement as provided in our DMCA Policy at http://secondlife.com/corporate/dmca.php. | 4367 | (2) The DMCA or Content Removal Process. To request removal of content from Second Life, you MUST submit a valid notification of infringement as provided in our DMCA Policy at http://secondlife.com/corporate/dmca.php. |
4368 | 4368 | ||
4369 | If you still wish to continue with the abuse process, please close this window and finish submitting your report. | 4369 | If you still wish to continue with the abuse process, please close this window and finish submitting your report. You may need to select the specific category 'CopyBot or Permissions Exploit'. |
4370 | 4370 | ||
4371 | Thank you, | 4371 | Thank you, |
4372 | 4372 | ||
diff --git a/linden/indra/newview/skins/default/xui/en-us/floater_report_abuse.xml b/linden/indra/newview/skins/default/xui/en-us/floater_report_abuse.xml index 00ee9ac..1c4b359 100644 --- a/linden/indra/newview/skins/default/xui/en-us/floater_report_abuse.xml +++ b/linden/indra/newview/skins/default/xui/en-us/floater_report_abuse.xml | |||
@@ -96,12 +96,10 @@ Assault > Combat sandbox / unsafe area | |||
96 | Assault > Safe area | 96 | Assault > Safe area |
97 | </combo_item><combo_item name="Assault__Weapons_testing_sandbox" value="36"> | 97 | </combo_item><combo_item name="Assault__Weapons_testing_sandbox" value="36"> |
98 | Assault > Weapons testing sandbox | 98 | Assault > Weapons testing sandbox |
99 | </combo_item><combo_item name="Copyright_or_intellectual_property_violation" value="37"> | ||
100 | Copyright or intellectual property violation | ||
101 | </combo_item><combo_item name="Commerce__Failure_to_deliver_product_or_service" value="38"> | 99 | </combo_item><combo_item name="Commerce__Failure_to_deliver_product_or_service" value="38"> |
102 | Commerce > Failure to deliver product or service | 100 | Commerce > Failure to deliver product or service |
103 | </combo_item><combo_item name="Disclosure__First_Life_information" value="39"> | 101 | </combo_item><combo_item name="Disclosure__Real_world_information" value="39"> |
104 | Disclosure > First life information | 102 | Disclosure > Real world information |
105 | </combo_item><combo_item name="Disclosure__Remotely_monitoring chat" value="40"> | 103 | </combo_item><combo_item name="Disclosure__Remotely_monitoring chat" value="40"> |
106 | Disclosure > Remotely monitoring chat | 104 | Disclosure > Remotely monitoring chat |
107 | </combo_item><combo_item name="Disclosure__Second_Life_information_chat_IMs" value="41"> | 105 | </combo_item><combo_item name="Disclosure__Second_Life_information_chat_IMs" value="41"> |
@@ -144,6 +142,10 @@ Indecency > Broadly visible mature content | |||
144 | Indecency > Inappropriate avatar name | 142 | Indecency > Inappropriate avatar name |
145 | </combo_item><combo_item name="Indecency__Mature_content_in_PG_region" value="60"> | 143 | </combo_item><combo_item name="Indecency__Mature_content_in_PG_region" value="60"> |
146 | Indecency > Mature content in PG region | 144 | Indecency > Mature content in PG region |
145 | </combo_item><combo_item name="Intellectual_property_infringement_Content_Removal" value="66"> | ||
146 | Intellectual property infringement > Content Removal | ||
147 | </combo_item><combo_item name="Intellectual_property_infringement_CopyBot_or_Permissions_Exploit" value="37"> | ||
148 | Intellectual property infringement > CopyBot or Permissions Exploit | ||
147 | </combo_item><combo_item name="Intolerance" value="61"> | 149 | </combo_item><combo_item name="Intolerance" value="61"> |
148 | Intolerance | 150 | Intolerance |
149 | </combo_item><combo_item name="Land__Abuse_of_sandbox_resources" value="62"> | 151 | </combo_item><combo_item name="Land__Abuse_of_sandbox_resources" value="62"> |
@@ -154,8 +156,6 @@ Land > Encroachment > Objects/textures | |||
154 | Land > Encroachment > Particles | 156 | Land > Encroachment > Particles |
155 | </combo_item><combo_item name="Land__Encroachment__Trees_plants" value="65"> | 157 | </combo_item><combo_item name="Land__Encroachment__Trees_plants" value="65"> |
156 | Land > Encroachment > Trees/plants | 158 | Land > Encroachment > Trees/plants |
157 | </combo_item><combo_item name="Trademark_violation" value="66"> | ||
158 | Trademark violation | ||
159 | </combo_item><combo_item name="Wagering_gambling" value="67"> | 159 | </combo_item><combo_item name="Wagering_gambling" value="67"> |
160 | Wagering/gambling | 160 | Wagering/gambling |
161 | </combo_item><combo_item name="Other" value="68"> | 161 | </combo_item><combo_item name="Other" value="68"> |
diff --git a/linden/indra/newview/skins/default/xui/fr/floater_gesture.xml b/linden/indra/newview/skins/default/xui/fr/floater_gesture.xml index 9c55f50..d45d3e7 100644 --- a/linden/indra/newview/skins/default/xui/fr/floater_gesture.xml +++ b/linden/indra/newview/skins/default/xui/fr/floater_gesture.xml | |||
@@ -5,10 +5,10 @@ | |||
5 | et les sons. | 5 | et les sons. |
6 | </text> | 6 | </text> |
7 | <scroll_list bottom_delta="-385" height="360" name="gesture_list"> | 7 | <scroll_list bottom_delta="-385" height="360" name="gesture_list"> |
8 | <column label="Raccourci" name="trigger" width="75" /> | 8 | <column label="Déclencheur" name="trigger" width="85" /> |
9 | <column label="Touche" name="shortcut" /> | 9 | <column label="Touche" name="shortcut" /> |
10 | <column label="" name="key" /> | 10 | <column label="" name="key" /> |
11 | <column label="Nom" name="name" /> | 11 | <column label="Nom" name="name" width="145"/> |
12 | </scroll_list> | 12 | </scroll_list> |
13 | <button label="Nouveau" name="new_gesture_btn" /> | 13 | <button label="Nouveau" name="new_gesture_btn" /> |
14 | <button label="Inventaire" name="inventory_btn" /> | 14 | <button label="Inventaire" name="inventory_btn" /> |
diff --git a/linden/indra/newview/skins/default/xui/fr/floater_preview_gesture.xml b/linden/indra/newview/skins/default/xui/fr/floater_preview_gesture.xml index ee2fd18..e8441ea 100644 --- a/linden/indra/newview/skins/default/xui/fr/floater_preview_gesture.xml +++ b/linden/indra/newview/skins/default/xui/fr/floater_preview_gesture.xml | |||
@@ -13,7 +13,7 @@ | |||
13 | Description : | 13 | Description : |
14 | </text> | 14 | </text> |
15 | <text name="trigger_label"> | 15 | <text name="trigger_label"> |
16 | Raccourci : | 16 | Déclencheur : |
17 | </text> | 17 | </text> |
18 | <text name="replace_text" | 18 | <text name="replace_text" |
19 | tool_tip="Remplacer les raccourcis avec ces mots. Par exemple, remplacer le mot-clé « salut » par « bonjour » fera dire « je venais dire bonjour » au lieu de « je venais dire salut » dans le chat, et déclenchera le geste."> | 19 | tool_tip="Remplacer les raccourcis avec ces mots. Par exemple, remplacer le mot-clé « salut » par « bonjour » fera dire « je venais dire bonjour » au lieu de « je venais dire salut » dans le chat, et déclenchera le geste."> |
diff --git a/linden/indra/newview/skins/default/xui/fr/notify.xml b/linden/indra/newview/skins/default/xui/fr/notify.xml index 43b8a12..e9aefcb 100644 --- a/linden/indra/newview/skins/default/xui/fr/notify.xml +++ b/linden/indra/newview/skins/default/xui/fr/notify.xml | |||
@@ -42,7 +42,8 @@ | |||
42 | </notify> | 42 | </notify> |
43 | <notify name="UploadingAuctionSnapshot"> | 43 | <notify name="UploadingAuctionSnapshot"> |
44 | <message name="message"> | 44 | <message name="message"> |
45 | Importation de photos SL et Web en cours (prend environ 5 minutes…) | 45 | Importation de photos SL et Web en cours |
46 | (prend environ 5 minutes…) | ||
46 | </message> | 47 | </message> |
47 | </notify> | 48 | </notify> |
48 | <notify name="UploadPayment"> | 49 | <notify name="UploadPayment"> |
@@ -52,7 +53,8 @@ | |||
52 | </notify> | 53 | </notify> |
53 | <notify name="UploadingSnapshot"> | 54 | <notify name="UploadingSnapshot"> |
54 | <message name="message"> | 55 | <message name="message"> |
55 | Importation de photo SL en cours (prend une à deux minutes…) | 56 | Importation de photo SL en cours |
57 | (prend une à deux minutes…) | ||
56 | </message> | 58 | </message> |
57 | </notify> | 59 | </notify> |
58 | <notify name="UploadWebSnapshotDone"> | 60 | <notify name="UploadWebSnapshotDone"> |
@@ -104,7 +106,8 @@ Merci de réessayer. | |||
104 | <notify name="CapsKeyOn"> | 106 | <notify name="CapsKeyOn"> |
105 | <message name="message"> | 107 | <message name="message"> |
106 | La touche Verr.maj est activée. | 108 | La touche Verr.maj est activée. |
107 | Ce mode modifie le mot de passe que vous saisissez, vous devriez le quitter. | 109 | Ce mode modifie le mot de passe que vous |
110 | saisissez, vous devriez le quitter. | ||
108 | </message> | 111 | </message> |
109 | </notify> | 112 | </notify> |
110 | <notify name="NotecardMissing"> | 113 | <notify name="NotecardMissing"> |
@@ -145,7 +148,9 @@ Merci de réessayer. | |||
145 | </notify> | 148 | </notify> |
146 | <notify name="IncompleteInventory"> | 149 | <notify name="IncompleteInventory"> |
147 | <message name="message"> | 150 | <message name="message"> |
148 | Tous les éléments que vous souhaitez transférer ne sont pas encore disponibles sur le serveur. Merci d'essayer à nouveau dans une minute. | 151 | Tous les éléments que vous souhaitez transférer ne |
152 | sont pas encore disponibles sur le serveur. | ||
153 | Merci d'essayer à nouveau dans une minute. | ||
149 | </message> | 154 | </message> |
150 | </notify> | 155 | </notify> |
151 | <notify name="CannotModifyProtectedCategories"> | 156 | <notify name="CannotModifyProtectedCategories"> |
@@ -182,8 +187,8 @@ Merci de réessayer. | |||
182 | </notify> | 187 | </notify> |
183 | <notify name="CannotBuyObjectsFromDifferentOwners"> | 188 | <notify name="CannotBuyObjectsFromDifferentOwners"> |
184 | <message name="message"> | 189 | <message name="message"> |
185 | Impossible d'acheter simultanément des objets de propriétaires différents. | 190 | Impossible d'acheter simultanément des objets de |
186 | Veuillez sélectionner un seul objet. | 191 | propriétaires différents. Veuillez sélectionner un seul objet. |
187 | </message> | 192 | </message> |
188 | </notify> | 193 | </notify> |
189 | <notify name="ObjectNotForSale"> | 194 | <notify name="ObjectNotForSale"> |
@@ -260,7 +265,7 @@ Veuillez sélectionner un terrain plus petit. | |||
260 | [MESSAGE] | 265 | [MESSAGE] |
261 | </message> | 266 | </message> |
262 | <option name="VoteNow"> | 267 | <option name="VoteNow"> |
263 | Voter maintenant | 268 | Voter |
264 | </option> | 269 | </option> |
265 | <option name="Later"> | 270 | <option name="Later"> |
266 | Plus tard | 271 | Plus tard |
@@ -272,7 +277,7 @@ Veuillez sélectionner un terrain plus petit. | |||
272 | [MESSAGE] | 277 | [MESSAGE] |
273 | </message> | 278 | </message> |
274 | <option name="VoteNow"> | 279 | <option name="VoteNow"> |
275 | Voter maintenant | 280 | Voter |
276 | </option> | 281 | </option> |
277 | <option name="Later"> | 282 | <option name="Later"> |
278 | Plus tard | 283 | Plus tard |
@@ -302,7 +307,8 @@ Veuillez sélectionner un terrain plus petit. | |||
302 | </notify> | 307 | </notify> |
303 | <notify name="TransferObjectsHighlighted"> | 308 | <notify name="TransferObjectsHighlighted"> |
304 | <message name="message"> | 309 | <message name="message"> |
305 | Tous les objets sur cette parcelle qui seront transférés à l'acheteur sont maintenant mis en surbrillance. | 310 | Tous les objets sur cette parcelle qui seront |
311 | transférés à l'acheteur sont maintenant mis en surbrillance. | ||
306 | 312 | ||
307 | * Les arbres et la pelouse qui seront transférés ne sont pas mis en surbrillance. | 313 | * Les arbres et la pelouse qui seront transférés ne sont pas mis en surbrillance. |
308 | </message> | 314 | </message> |
@@ -329,17 +335,22 @@ Pour voir les vidéos sur les terrains qui le permettent, allez sur le site de Q | |||
329 | </notify> | 335 | </notify> |
330 | <notify name="OwnedObjectsReturned"> | 336 | <notify name="OwnedObjectsReturned"> |
331 | <message name="message"> | 337 | <message name="message"> |
332 | Les objets que vous possédez sur la parcelle de terrain sélectionnée ont été renvoyés dans votre inventaire. | 338 | Les objets que vous possédez sur la parcelle de |
339 | terrain sélectionnée ont été renvoyés dans votre inventaire. | ||
333 | </message> | 340 | </message> |
334 | </notify> | 341 | </notify> |
335 | <notify name="OtherObjectsReturned"> | 342 | <notify name="OtherObjectsReturned"> |
336 | <message name="message"> | 343 | <message name="message"> |
337 | Les objets que vous possédez sur la parcelle de terrain appartenant à [FIRST] [LAST] ont été renvoyés dans votre inventaire. | 344 | Les objets que vous possédez sur la parcelle de terrain |
345 | appartenant à [FIRST] [LAST] | ||
346 | ont été renvoyés dans votre inventaire. | ||
338 | </message> | 347 | </message> |
339 | </notify> | 348 | </notify> |
340 | <notify name="OtherObjectsReturned2"> | 349 | <notify name="OtherObjectsReturned2"> |
341 | <message name="message"> | 350 | <message name="message"> |
342 | Les objets sur la parcelle de terrain appartenant à [NAME] ont étés renvoyés à leur propriétaire. | 351 | Les objets sur la parcelle de terrain |
352 | appartenant à « [NAME] » | ||
353 | ont étés renvoyés à leur propriétaire. | ||
343 | </message> | 354 | </message> |
344 | </notify> | 355 | </notify> |
345 | <notify name="GroupObjectsReturned"> | 356 | <notify name="GroupObjectsReturned"> |
@@ -395,7 +406,8 @@ Vous ne pouvez pas créer d'objets ici. | |||
395 | </notify> | 406 | </notify> |
396 | <notify name="NoOutsideScripts"> | 407 | <notify name="NoOutsideScripts"> |
397 | <message name="message"> | 408 | <message name="message"> |
398 | Les scripts externes sont désactivés sur ce terrain (« pas de scripts externes »). | 409 | Les scripts externes sont désactivés sur ce terrain |
410 | (« pas de scripts externes »). | ||
399 | Aucun script n'est exécuté à part ceux du propriétaire du terrain. | 411 | Aucun script n'est exécuté à part ceux du propriétaire du terrain. |
400 | </message> | 412 | </message> |
401 | </notify> | 413 | </notify> |
@@ -480,7 +492,8 @@ Aucun script n'est exécuté à part ceux du propriétaire du terrain. | |||
480 | </notify> | 492 | </notify> |
481 | <notify name="JoinGroupOfficerNoFee"> | 493 | <notify name="JoinGroupOfficerNoFee"> |
482 | <message name="message"> | 494 | <message name="message"> |
483 | [NAME] vous invite à rejoindre un groupe comme officier. | 495 | [NAME] vous invite à |
496 | rejoindre un groupe comme officier. | ||
484 | L'adhésion est gratuite. | 497 | L'adhésion est gratuite. |
485 | 498 | ||
486 | [MESSAGE] | 499 | [MESSAGE] |
@@ -497,7 +510,8 @@ L'adhésion est gratuite. | |||
497 | </notify> | 510 | </notify> |
498 | <notify name="JoinGroupMember"> | 511 | <notify name="JoinGroupMember"> |
499 | <message name="message"> | 512 | <message name="message"> |
500 | [NAME] vous invite à rejoindre un groupe. | 513 | [NAME] vous invite à |
514 | rejoindre un groupe. | ||
501 | L'adhésion coûte [COST] $L. | 515 | L'adhésion coûte [COST] $L. |
502 | 516 | ||
503 | [MESSAGE] | 517 | [MESSAGE] |
@@ -514,7 +528,8 @@ L'adhésion coûte [COST] $L. | |||
514 | </notify> | 528 | </notify> |
515 | <notify name="JoinGroupMemberNoFee"> | 529 | <notify name="JoinGroupMemberNoFee"> |
516 | <message name="message"> | 530 | <message name="message"> |
517 | [NAME] vous invite à rejoindre un groupe. | 531 | [NAME] vous invite à |
532 | rejoindre un groupe. | ||
518 | L'adhésion est gratuite. | 533 | L'adhésion est gratuite. |
519 | 534 | ||
520 | [MESSAGE] | 535 | [MESSAGE] |
@@ -531,7 +546,8 @@ L'adhésion est gratuite. | |||
531 | </notify> | 546 | </notify> |
532 | <notify name="OfferTeleport"> | 547 | <notify name="OfferTeleport"> |
533 | <message name="message"> | 548 | <message name="message"> |
534 | [NAME] vous propose de le/la rejoindre par téléportation : | 549 | [NAME] vous propose de |
550 | le/la rejoindre par téléportation : | ||
535 | 551 | ||
536 | [MESSAGE] | 552 | [MESSAGE] |
537 | </message> | 553 | </message> |
@@ -596,7 +612,8 @@ voir quand vous êtes tous deux connectés) | |||
596 | <notify name="OfferCallingCard"> | 612 | <notify name="OfferCallingCard"> |
597 | <message name="message"> | 613 | <message name="message"> |
598 | [FIRST] [FIRST] [LAST] vous offre sa carte de visite. | 614 | [FIRST] [FIRST] [LAST] vous offre sa carte de visite. |
599 | Cela ajoute un marque-page dans votre inventaire, ce qui vous permet d'envoyer rapidement un IM à ce résident. | 615 | Cela ajoute un marque-page dans votre inventaire, ce qui |
616 | vous permet d'envoyer rapidement un IM à ce résident. | ||
600 | </message> | 617 | </message> |
601 | <option name="Accept"> | 618 | <option name="Accept"> |
602 | Accepter | 619 | Accepter |
@@ -768,7 +785,7 @@ Accepter cette requête ? | |||
768 | </notify> | 785 | </notify> |
769 | <notify name="ScriptDialog"> | 786 | <notify name="ScriptDialog"> |
770 | <message name="message"> | 787 | <message name="message"> |
771 | [TITLE][FIRST] [LAST] | 788 | [TITLE] [FIRST] [LAST] |
772 | [MESSAGE] | 789 | [MESSAGE] |
773 | </message> | 790 | </message> |
774 | <option name="Ignore"> | 791 | <option name="Ignore"> |
diff --git a/linden/indra/newview/skins/default/xui/fr/panel_avatar.xml b/linden/indra/newview/skins/default/xui/fr/panel_avatar.xml index e736d6a..548020c 100644 --- a/linden/indra/newview/skins/default/xui/fr/panel_avatar.xml +++ b/linden/indra/newview/skins/default/xui/fr/panel_avatar.xml | |||
@@ -105,7 +105,7 @@ | |||
105 | </panel> | 105 | </panel> |
106 | <panel label="Intérêts" name="Interests"> | 106 | <panel label="Intérêts" name="Interests"> |
107 | <text left="2" name="I Want To:"> | 107 | <text left="2" name="I Want To:"> |
108 | J'aimerais : | 108 | Je veux : |
109 | </text> | 109 | </text> |
110 | <check_box label="Construire" name="chk0" /> | 110 | <check_box label="Construire" name="chk0" /> |
111 | <check_box label="Explorer" left_delta="160" name="chk1" /> | 111 | <check_box label="Explorer" left_delta="160" name="chk1" /> |
diff --git a/linden/indra/newview/skins/default/xui/fr/panel_group_general.xml b/linden/indra/newview/skins/default/xui/fr/panel_group_general.xml index 61eb9ed..16e9890 100644 --- a/linden/indra/newview/skins/default/xui/fr/panel_group_general.xml +++ b/linden/indra/newview/skins/default/xui/fr/panel_group_general.xml | |||
@@ -46,8 +46,8 @@ Pour obtenir de l'aide, survolez les options avec votre souris. | |||
46 | </text> | 46 | </text> |
47 | <name_list name="visible_members"> | 47 | <name_list name="visible_members"> |
48 | <column label="Nom du membre" name="name" relwidth="0.40"/> | 48 | <column label="Nom du membre" name="name" relwidth="0.40"/> |
49 | <column label="Titre" name="title" relwidth="0.30"/> | 49 | <column label="Titre" name="title" relwidth="0.25"/> |
50 | <column label="Dernière connexion" name="online" relwidth="0.30"/> | 50 | <column label="Dernière connexion" name="online" relwidth="0.35"/> |
51 | </name_list> | 51 | </name_list> |
52 | <text name="text_group_preferences"> | 52 | <text name="text_group_preferences"> |
53 | Préférences du groupe | 53 | Préférences du groupe |
diff --git a/linden/indra/newview/skins/default/xui/fr/panel_group_notices.xml b/linden/indra/newview/skins/default/xui/fr/panel_group_notices.xml index fa93f7a..a065839 100644 --- a/linden/indra/newview/skins/default/xui/fr/panel_group_notices.xml +++ b/linden/indra/newview/skins/default/xui/fr/panel_group_notices.xml | |||
@@ -50,9 +50,10 @@ dossiers. | |||
50 | <text name="lbl5"> | 50 | <text name="lbl5"> |
51 | Attacher : | 51 | Attacher : |
52 | </text> | 52 | </text> |
53 | <line_editor name="create_inventory_name" width="206" /> | ||
53 | <button label="Supprimer pièce-jointe" label_selected="Supprimer pièce-jointe" | 54 | <button label="Supprimer pièce-jointe" label_selected="Supprimer pièce-jointe" |
54 | name="remove_attachment" /> | 55 | name="remove_attachment" left="274" width="140"/> |
55 | <button label="Envoyer note" label_selected="Envoyer note" name="send_notice" /> | 56 | <button label="Envoyer note" label_selected="Envoyer note" name="send_notice" left="274" width="140"/> |
56 | <panel name="drop_target2" | 57 | <panel name="drop_target2" |
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 name="drop_target" | 59 | <panel name="drop_target" |
diff --git a/linden/indra/newview/skins/default/xui/fr/panel_group_roles.xml b/linden/indra/newview/skins/default/xui/fr/panel_group_roles.xml index 1bcdd2f..ab32917 100644 --- a/linden/indra/newview/skins/default/xui/fr/panel_group_roles.xml +++ b/linden/indra/newview/skins/default/xui/fr/panel_group_roles.xml | |||
@@ -55,8 +55,8 @@ quels membres ces pouvoirs sont assignés. | |||
55 | <button label="Afficher tout" name="show_all_button" left_delta="80" /> | 55 | <button label="Afficher tout" name="show_all_button" left_delta="80" /> |
56 | <name_list name="member_list" height="104" bottom_delta="-105"> | 56 | <name_list name="member_list" height="104" bottom_delta="-105"> |
57 | <column label="Nom du membre" name="name" /> | 57 | <column label="Nom du membre" name="name" /> |
58 | <column label="Terrain donné" name="donated" /> | 58 | <column label="Terrain donné" name="donated" width="116"/> |
59 | <column label="Dernière connexion" name="online" /> | 59 | <column label="Dernière connexion" name="online" width="136"/> |
60 | </name_list> | 60 | </name_list> |
61 | <button label="Inviter nouvelle personne..." name="member_invite" width="165"/> | 61 | <button label="Inviter nouvelle personne..." name="member_invite" width="165"/> |
62 | <button label="Expulser du groupe" name="member_eject" /> | 62 | <button label="Expulser du groupe" name="member_eject" /> |
diff --git a/linden/indra/newview/skins/default/xui/fr/panel_preferences_general.xml b/linden/indra/newview/skins/default/xui/fr/panel_preferences_general.xml index e6e7726..34d3bda 100644 --- a/linden/indra/newview/skins/default/xui/fr/panel_preferences_general.xml +++ b/linden/indra/newview/skins/default/xui/fr/panel_preferences_general.xml | |||
@@ -23,11 +23,11 @@ | |||
23 | </combo_box> | 23 | </combo_box> |
24 | <check_box label="Masquer mon nom sur mon écran" name="show_my_name_checkbox" /> | 24 | <check_box label="Masquer mon nom sur mon écran" name="show_my_name_checkbox" /> |
25 | <text name="group_titles_textbox"> | 25 | <text name="group_titles_textbox"> |
26 | Titres au sein du groupe : | 26 | Titres de groupe : |
27 | </text> | 27 | </text> |
28 | <check_box label="Masquer tous les titres au sein du groupe" | 28 | <check_box label="Masquer tous les titres de groupe" |
29 | name="show_all_title_checkbox" /> | 29 | name="show_all_title_checkbox" /> |
30 | <check_box label="Masquer mon titre au sein du groupe" name="show_my_title_checkbox" /> | 30 | <check_box label="Masquer mon titre de groupe" name="show_my_title_checkbox" /> |
31 | <check_box label="Nom de l'avatar en petit" name="small_avatar_names_checkbox" /> | 31 | <check_box label="Nom de l'avatar en petit" name="small_avatar_names_checkbox" /> |
32 | <check_box label="M'avertir lorsque mes amis se connectent" | 32 | <check_box label="M'avertir lorsque mes amis se connectent" |
33 | name="friends_online_notify_checkbox" /> | 33 | name="friends_online_notify_checkbox" /> |
diff --git a/linden/indra/newview/skins/default/xui/fr/panel_preferences_im.xml b/linden/indra/newview/skins/default/xui/fr/panel_preferences_im.xml index cb5eee2..2640bd5 100644 --- a/linden/indra/newview/skins/default/xui/fr/panel_preferences_im.xml +++ b/linden/indra/newview/skins/default/xui/fr/panel_preferences_im.xml | |||
@@ -10,7 +10,7 @@ | |||
10 | </text> | 10 | </text> |
11 | <check_box label="Envoyer l'IM à une adresse e-mail ([EMAIL])" | 11 | <check_box label="Envoyer l'IM à une adresse e-mail ([EMAIL])" |
12 | name="send_im_to_email" /> | 12 | name="send_im_to_email" /> |
13 | <check_box label="Inclure les IM dans le chat vocal" name="include_im_in_chat_history" /> | 13 | <check_box label="Inclure les IM dans le chat local" name="include_im_in_chat_history" /> |
14 | <check_box label="Afficher les marques temporelles dans les IM" | 14 | <check_box label="Afficher les marques temporelles dans les IM" |
15 | name="show_timestamps_check" /> | 15 | name="show_timestamps_check" /> |
16 | <check_box label="Me prévenir quand des amis se connectent" | 16 | <check_box label="Me prévenir quand des amis se connectent" |
diff --git a/linden/indra/newview/skins/default/xui/fr/panel_preferences_input.xml b/linden/indra/newview/skins/default/xui/fr/panel_preferences_input.xml index 9e4183f..ae37dab 100644 --- a/linden/indra/newview/skins/default/xui/fr/panel_preferences_input.xml +++ b/linden/indra/newview/skins/default/xui/fr/panel_preferences_input.xml | |||
@@ -1,5 +1,5 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="Entrées et Caméra" name="Input panel"> | 2 | <panel label="Entrée et Caméra" name="Input panel"> |
3 | <text type="string" length="1" name=" Mouselook Options:"> | 3 | <text type="string" length="1" name=" Mouselook Options:"> |
4 | Vue subjective : | 4 | Vue subjective : |
5 | </text> | 5 | </text> |
diff --git a/linden/indra/newview/skins/default/xui/fr/strings.xml b/linden/indra/newview/skins/default/xui/fr/strings.xml index dc92be8..0c4b625 100644 --- a/linden/indra/newview/skins/default/xui/fr/strings.xml +++ b/linden/indra/newview/skins/default/xui/fr/strings.xml | |||
@@ -259,7 +259,7 @@ | |||
259 | Mépris | 259 | Mépris |
260 | </string> | 260 | </string> |
261 | <string name="anim_drink"> | 261 | <string name="anim_drink"> |
262 | Verre | 262 | Boire |
263 | </string> | 263 | </string> |
264 | <string name="anim_express_embarrased"> | 264 | <string name="anim_express_embarrased"> |
265 | Gêne | 265 | Gêne |
@@ -379,7 +379,7 @@ | |||
379 | Tirer la langue | 379 | Tirer la langue |
380 | </string> | 380 | </string> |
381 | <string name="anim_hello"> | 381 | <string name="anim_hello"> |
382 | Vague | 382 | Faire signe |
383 | </string> | 383 | </string> |
384 | <string name="anim_whisper"> | 384 | <string name="anim_whisper"> |
385 | Chuchoter | 385 | Chuchoter |