diff options
author | McCabe Maxsted | 2009-01-12 13:09:41 -0700 |
---|---|---|
committer | McCabe Maxsted | 2009-01-12 13:09:41 -0700 |
commit | 13c27361136819af0d0a0f72eeb807f56829337f (patch) | |
tree | 29c739c02c7c02c46d3679d7014bd1a43820bffc /linden | |
parent | Moved common options out of Advanced (diff) | |
parent | Buy and Take now separated in the pie menu. (diff) | |
download | meta-impy-13c27361136819af0d0a0f72eeb807f56829337f.zip meta-impy-13c27361136819af0d0a0f72eeb807f56829337f.tar.gz meta-impy-13c27361136819af0d0a0f72eeb807f56829337f.tar.bz2 meta-impy-13c27361136819af0d0a0f72eeb807f56829337f.tar.xz |
Various pie menu improvements.
Diffstat (limited to 'linden')
10 files changed, 676 insertions, 741 deletions
diff --git a/linden/doc/contributions.txt b/linden/doc/contributions.txt index 48c1429..ac24d99 100644 --- a/linden/doc/contributions.txt +++ b/linden/doc/contributions.txt | |||
@@ -209,6 +209,7 @@ Matthew Dowd | |||
209 | McCabe Maxsted | 209 | McCabe Maxsted |
210 | VWR-1318 | 210 | VWR-1318 |
211 | VWR-7893 | 211 | VWR-7893 |
212 | VWR-8689 | ||
212 | Michelle2 Zenovka | 213 | Michelle2 Zenovka |
213 | VWR-2652 | 214 | VWR-2652 |
214 | VWR-2834 | 215 | VWR-2834 |
diff --git a/linden/indra/newview/llviewermenu.cpp b/linden/indra/newview/llviewermenu.cpp index 0ea92f1..f99a324 100644 --- a/linden/indra/newview/llviewermenu.cpp +++ b/linden/indra/newview/llviewermenu.cpp | |||
@@ -305,8 +305,6 @@ void near_sit_object(); | |||
305 | void label_sit_or_stand(std::string& label, void*); | 305 | void label_sit_or_stand(std::string& label, void*); |
306 | // buy and take alias into the same UI positions, so these | 306 | // buy and take alias into the same UI positions, so these |
307 | // declarations handle this mess. | 307 | // declarations handle this mess. |
308 | BOOL is_selection_buy_not_take(); | ||
309 | S32 selection_price(); | ||
310 | BOOL enable_take(); | 308 | BOOL enable_take(); |
311 | void handle_take(); | 309 | void handle_take(); |
312 | void confirm_take(S32 option, void* data); | 310 | void confirm_take(S32 option, void* data); |
@@ -3912,7 +3910,7 @@ BOOL enable_take() | |||
3912 | return FALSE; | 3910 | return FALSE; |
3913 | } | 3911 | } |
3914 | 3912 | ||
3915 | class LLToolsBuyOrTake : public view_listener_t | 3913 | class LLToolsTake : public view_listener_t |
3916 | { | 3914 | { |
3917 | bool handleEvent(LLPointer<LLEvent> event, const LLSD& userdata) | 3915 | bool handleEvent(LLPointer<LLEvent> event, const LLSD& userdata) |
3918 | { | 3916 | { |
@@ -3920,115 +3918,24 @@ class LLToolsBuyOrTake : public view_listener_t | |||
3920 | { | 3918 | { |
3921 | return true; | 3919 | return true; |
3922 | } | 3920 | } |
3923 | |||
3924 | if (is_selection_buy_not_take()) | ||
3925 | { | ||
3926 | S32 total_price = selection_price(); | ||
3927 | |||
3928 | if (total_price <= gStatusBar->getBalance() || total_price == 0) | ||
3929 | { | ||
3930 | handle_buy(NULL); | ||
3931 | } | ||
3932 | else | ||
3933 | { | ||
3934 | LLFloaterBuyCurrency::buyCurrency( | ||
3935 | "Buying this costs", total_price); | ||
3936 | } | ||
3937 | } | ||
3938 | else | 3921 | else |
3939 | { | 3922 | { |
3940 | handle_take(); | 3923 | handle_take(); |
3924 | return true; | ||
3941 | } | 3925 | } |
3942 | return true; | ||
3943 | } | 3926 | } |
3944 | }; | 3927 | }; |
3945 | 3928 | ||
3946 | class LLToolsEnableBuyOrTake : public view_listener_t | 3929 | class LLToolsEnableTake : public view_listener_t |
3947 | { | 3930 | { |
3948 | bool handleEvent(LLPointer<LLEvent> event, const LLSD& userdata) | 3931 | bool handleEvent(LLPointer<LLEvent> event, const LLSD& userdata) |
3949 | { | 3932 | { |
3950 | bool is_buy = is_selection_buy_not_take(); | 3933 | bool new_value = enable_take(); |
3951 | bool new_value = is_buy ? enable_buy(NULL) : enable_take(); | ||
3952 | gMenuHolder->findControl(userdata["control"].asString())->setValue(new_value); | 3934 | gMenuHolder->findControl(userdata["control"].asString())->setValue(new_value); |
3953 | |||
3954 | // Update label | ||
3955 | std::string label; | ||
3956 | std::string buy_text; | ||
3957 | std::string take_text; | ||
3958 | std::string param = userdata["data"].asString(); | ||
3959 | std::string::size_type offset = param.find(","); | ||
3960 | if (offset != param.npos) | ||
3961 | { | ||
3962 | buy_text = param.substr(0, offset); | ||
3963 | take_text = param.substr(offset+1); | ||
3964 | } | ||
3965 | if (is_buy) | ||
3966 | { | ||
3967 | label = buy_text; | ||
3968 | } | ||
3969 | else | ||
3970 | { | ||
3971 | label = take_text; | ||
3972 | } | ||
3973 | gMenuHolder->childSetText("Pie Object Take", label); | ||
3974 | gMenuHolder->childSetText("Menu Object Take", label); | ||
3975 | |||
3976 | return true; | 3935 | return true; |
3977 | } | 3936 | } |
3978 | }; | 3937 | }; |
3979 | 3938 | ||
3980 | // This is a small helper function to determine if we have a buy or a | ||
3981 | // take in the selection. This method is to help with the aliasing | ||
3982 | // problems of putting buy and take in the same pie menu space. After | ||
3983 | // a fair amont of discussion, it was determined to prefer buy over | ||
3984 | // take. The reasoning follows from the fact that when users walk up | ||
3985 | // to buy something, they will click on one or more items. Thus, if | ||
3986 | // anything is for sale, it becomes a buy operation, and the server | ||
3987 | // will group all of the buy items, and copyable/modifiable items into | ||
3988 | // one package and give the end user as much as the permissions will | ||
3989 | // allow. If the user wanted to take something, they will select fewer | ||
3990 | // and fewer items until only 'takeable' items are left. The one | ||
3991 | // exception is if you own everything in the selection that is for | ||
3992 | // sale, in this case, you can't buy stuff from yourself, so you can | ||
3993 | // take it. | ||
3994 | // return value = TRUE if selection is a 'buy'. | ||
3995 | // FALSE if selection is a 'take' | ||
3996 | BOOL is_selection_buy_not_take() | ||
3997 | { | ||
3998 | for (LLObjectSelection::root_iterator iter = LLSelectMgr::getInstance()->getSelection()->root_begin(); | ||
3999 | iter != LLSelectMgr::getInstance()->getSelection()->root_end(); iter++) | ||
4000 | { | ||
4001 | LLSelectNode* node = *iter; | ||
4002 | LLViewerObject* obj = node->getObject(); | ||
4003 | if(obj && !(obj->permYouOwner()) && (node->mSaleInfo.isForSale())) | ||
4004 | { | ||
4005 | // you do not own the object and it is for sale, thus, | ||
4006 | // it's a buy | ||
4007 | return TRUE; | ||
4008 | } | ||
4009 | } | ||
4010 | return FALSE; | ||
4011 | } | ||
4012 | |||
4013 | S32 selection_price() | ||
4014 | { | ||
4015 | S32 total_price = 0; | ||
4016 | for (LLObjectSelection::root_iterator iter = LLSelectMgr::getInstance()->getSelection()->root_begin(); | ||
4017 | iter != LLSelectMgr::getInstance()->getSelection()->root_end(); iter++) | ||
4018 | { | ||
4019 | LLSelectNode* node = *iter; | ||
4020 | LLViewerObject* obj = node->getObject(); | ||
4021 | if(obj && !(obj->permYouOwner()) && (node->mSaleInfo.isForSale())) | ||
4022 | { | ||
4023 | // you do not own the object and it is for sale. | ||
4024 | // Add its price. | ||
4025 | total_price += node->mSaleInfo.getSalePrice(); | ||
4026 | } | ||
4027 | } | ||
4028 | |||
4029 | return total_price; | ||
4030 | } | ||
4031 | |||
4032 | void callback_show_buy_currency(S32 option, void*) | 3939 | void callback_show_buy_currency(S32 option, void*) |
4033 | { | 3940 | { |
4034 | if (0 == option) | 3941 | if (0 == option) |
@@ -9853,7 +9760,7 @@ void initialize_menus() | |||
9853 | addMenu(new LLToolsReleaseKeys(), "Tools.ReleaseKeys"); | 9760 | addMenu(new LLToolsReleaseKeys(), "Tools.ReleaseKeys"); |
9854 | addMenu(new LLToolsEnableReleaseKeys(), "Tools.EnableReleaseKeys"); | 9761 | addMenu(new LLToolsEnableReleaseKeys(), "Tools.EnableReleaseKeys"); |
9855 | addMenu(new LLToolsLookAtSelection(), "Tools.LookAtSelection"); | 9762 | addMenu(new LLToolsLookAtSelection(), "Tools.LookAtSelection"); |
9856 | addMenu(new LLToolsBuyOrTake(), "Tools.BuyOrTake"); | 9763 | addMenu(new LLToolsTake(), "Tools.Take"); |
9857 | addMenu(new LLToolsTakeCopy(), "Tools.TakeCopy"); | 9764 | addMenu(new LLToolsTakeCopy(), "Tools.TakeCopy"); |
9858 | addMenu(new LLToolsSaveToInventory(), "Tools.SaveToInventory"); | 9765 | addMenu(new LLToolsSaveToInventory(), "Tools.SaveToInventory"); |
9859 | addMenu(new LLToolsSaveToObjectInventory(), "Tools.SaveToObjectInventory"); | 9766 | addMenu(new LLToolsSaveToObjectInventory(), "Tools.SaveToObjectInventory"); |
@@ -9863,7 +9770,7 @@ void initialize_menus() | |||
9863 | addMenu(new LLToolsEnableToolNotPie(), "Tools.EnableToolNotPie"); | 9770 | addMenu(new LLToolsEnableToolNotPie(), "Tools.EnableToolNotPie"); |
9864 | addMenu(new LLToolsEnableLink(), "Tools.EnableLink"); | 9771 | addMenu(new LLToolsEnableLink(), "Tools.EnableLink"); |
9865 | addMenu(new LLToolsEnableUnlink(), "Tools.EnableUnlink"); | 9772 | addMenu(new LLToolsEnableUnlink(), "Tools.EnableUnlink"); |
9866 | addMenu(new LLToolsEnableBuyOrTake(), "Tools.EnableBuyOrTake"); | 9773 | addMenu(new LLToolsEnableTake(), "Tools.EnableTake"); |
9867 | addMenu(new LLToolsEnableTakeCopy(), "Tools.EnableTakeCopy"); | 9774 | addMenu(new LLToolsEnableTakeCopy(), "Tools.EnableTakeCopy"); |
9868 | addMenu(new LLToolsEnableSaveToInventory(), "Tools.SaveToInventory"); | 9775 | addMenu(new LLToolsEnableSaveToInventory(), "Tools.SaveToInventory"); |
9869 | addMenu(new LLToolsEnableSaveToObjectInventory(), "Tools.SaveToObjectInventory"); | 9776 | addMenu(new LLToolsEnableSaveToObjectInventory(), "Tools.SaveToObjectInventory"); |
diff --git a/linden/indra/newview/skins/default/xui/en-us/menu_pie_attachment.xml b/linden/indra/newview/skins/default/xui/en-us/menu_pie_attachment.xml index 85028d5..d16c22c 100644 --- a/linden/indra/newview/skins/default/xui/en-us/menu_pie_attachment.xml +++ b/linden/indra/newview/skins/default/xui/en-us/menu_pie_attachment.xml | |||
@@ -1,20 +1,46 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <pie_menu name="Attachment Pie"> | 2 | <pie_menu name="Attachment Pie"> |
3 | <menu_item_call enabled="false" label="Drop" mouse_opaque="true" name="Drop"> | 3 | <menu_item_call enabled="true" label="Profile..." name="Profile..."> |
4 | <on_click function="Attachment.Drop" /> | 4 | <on_click function="ShowAgentProfile" userdata="agent" /> |
5 | <on_enable function="Attachment.EnableDrop" /> | ||
6 | </menu_item_call> | 5 | </menu_item_call> |
7 | <menu_item_separator /> | 6 | <menu_item_call enabled="true" label="Groups..." name="Groups..."> |
8 | <menu_item_separator /> | 7 | <on_click function="ShowAgentGroups" userdata="agent" /> |
9 | <menu_item_separator /> | ||
10 | <menu_item_separator /> | ||
11 | <menu_item_separator /> | ||
12 | <menu_item_call enabled="false" label="Detach" mouse_opaque="true" name="Detach"> | ||
13 | <on_click function="Attachment.Detach" /> | ||
14 | <on_enable function="Attachment.EnableDetach" /> | ||
15 | </menu_item_call> | 8 | </menu_item_call> |
16 | <menu_item_call enabled="false" label="Edit" mouse_opaque="true" name="Edit"> | 9 | <menu_item_call enabled="false" label="Touch" mouse_opaque="true" name="Object Touch"> |
17 | <on_click function="Object.Edit" /> | 10 | <on_click function="Object.Touch" /> |
18 | <on_enable function="EnableEdit" /> | 11 | <on_enable function="Object.EnableTouch" userdata="Touch" /> |
12 | </menu_item_call> | ||
13 | <menu_item_call enabled="true" label="Stand Up" name="Stand Up"> | ||
14 | <on_click function="Self.StandUp" userdata="" /> | ||
15 | <on_enable function="Self.EnableStandUp" /> | ||
16 | </menu_item_call> | ||
17 | <menu_item_call enabled="true" label="Friends..." name="Friends..."> | ||
18 | <on_click function="ShowFloater" userdata="friends" /> | ||
19 | </menu_item_call> | ||
20 | <menu_item_call enabled="true" label="Gestures..." name="Gestures..."> | ||
21 | <on_click function="ShowFloater" userdata="gestures" /> | ||
22 | </menu_item_call> | ||
23 | <pie_menu label="More >" name="More >"> | ||
24 | <menu_item_call enabled="false" label="Detach" mouse_opaque="true" name="Detach"> | ||
25 | <on_click function="Attachment.Detach" /> | ||
26 | <on_enable function="Attachment.EnableDetach" /> | ||
27 | </menu_item_call> | ||
28 | <menu_item_separator /> | ||
29 | <menu_item_separator /> | ||
30 | <menu_item_separator /> | ||
31 | <menu_item_separator /> | ||
32 | <menu_item_separator /> | ||
33 | <menu_item_call enabled="false" label="Edit..." mouse_opaque="true" name="Edit..."> | ||
34 | <on_click function="Object.Edit" /> | ||
35 | <on_enable function="EnableEdit" /> | ||
36 | </menu_item_call> | ||
37 | <menu_item_call enabled="false" label="Drop" mouse_opaque="true" name="Drop"> | ||
38 | <on_click function="Attachment.Drop" /> | ||
39 | <on_enable function="Attachment.EnableDrop" /> | ||
40 | </menu_item_call> | ||
41 | </pie_menu> | ||
42 | <menu_item_call enabled="true" label="Appearance..." name="Appearance..."> | ||
43 | <on_click function="ShowFloater" userdata="appearance" /> | ||
44 | <on_enable function="Edit.EnableCustomizeAvatar" /> | ||
19 | </menu_item_call> | 45 | </menu_item_call> |
20 | </pie_menu> | 46 | </pie_menu> |
diff --git a/linden/indra/newview/skins/default/xui/en-us/menu_pie_avatar.xml b/linden/indra/newview/skins/default/xui/en-us/menu_pie_avatar.xml index 625b761..2d44dab 100644 --- a/linden/indra/newview/skins/default/xui/en-us/menu_pie_avatar.xml +++ b/linden/indra/newview/skins/default/xui/en-us/menu_pie_avatar.xml | |||
@@ -10,7 +10,7 @@ | |||
10 | <menu_item_call enabled="false" label="Go To" mouse_opaque="true" name="Go To"> | 10 | <menu_item_call enabled="false" label="Go To" mouse_opaque="true" name="Go To"> |
11 | <on_click function="GoToObject" /> | 11 | <on_click function="GoToObject" /> |
12 | </menu_item_call> | 12 | </menu_item_call> |
13 | <menu_item_call enabled="false" label="Report Abuse..." mouse_opaque="true" name="abuse"> | 13 | <menu_item_call enabled="false" label="Abuse..." mouse_opaque="true" name="abuse"> |
14 | <on_click function="Avatar.ReportAbuse" /> | 14 | <on_click function="Avatar.ReportAbuse" /> |
15 | </menu_item_call> | 15 | </menu_item_call> |
16 | <menu_item_call enabled="false" label="Add Friend..." mouse_opaque="true" name="Add Friend"> | 16 | <menu_item_call enabled="false" label="Add Friend..." mouse_opaque="true" name="Add Friend"> |
diff --git a/linden/indra/newview/skins/default/xui/en-us/menu_pie_land.xml b/linden/indra/newview/skins/default/xui/en-us/menu_pie_land.xml index dee0e1d..81ae04f 100644 --- a/linden/indra/newview/skins/default/xui/en-us/menu_pie_land.xml +++ b/linden/indra/newview/skins/default/xui/en-us/menu_pie_land.xml | |||
@@ -13,7 +13,7 @@ | |||
13 | <menu_item_call enabled="false" label="Sit Here" mouse_opaque="true" name="Sit Here"> | 13 | <menu_item_call enabled="false" label="Sit Here" mouse_opaque="true" name="Sit Here"> |
14 | <on_click function="Land.Sit" /> | 14 | <on_click function="Land.Sit" /> |
15 | </menu_item_call> | 15 | </menu_item_call> |
16 | <menu_item_call enabled="false" label="Create Landmark" mouse_opaque="true" name="Add Landmark"> | 16 | <menu_item_call enabled="false" label="Landmark..." mouse_opaque="true" name="Add Landmark"> |
17 | <on_click function="Land.NewLandmark" /> | 17 | <on_click function="Land.NewLandmark" /> |
18 | </menu_item_call> | 18 | </menu_item_call> |
19 | <menu_item_call enabled="false" label="Buy Pass..." mouse_opaque="true" name="Land Buy Pass"> | 19 | <menu_item_call enabled="false" label="Buy Pass..." mouse_opaque="true" name="Land Buy Pass"> |
diff --git a/linden/indra/newview/skins/default/xui/en-us/menu_pie_object.xml b/linden/indra/newview/skins/default/xui/en-us/menu_pie_object.xml index c5a04ce..b63e007 100644 --- a/linden/indra/newview/skins/default/xui/en-us/menu_pie_object.xml +++ b/linden/indra/newview/skins/default/xui/en-us/menu_pie_object.xml | |||
@@ -4,9 +4,9 @@ | |||
4 | <on_click function="Object.Open" /> | 4 | <on_click function="Object.Open" /> |
5 | <on_enable function="Object.EnableOpen" /> | 5 | <on_enable function="Object.EnableOpen" /> |
6 | </menu_item_call> | 6 | </menu_item_call> |
7 | <menu_item_call enabled="false" label="Create" mouse_opaque="true" name="Create"> | 7 | <menu_item_call enabled="false" label="Buy..." mouse_opaque="true" name="Buy..."> |
8 | <on_click function="Object.Build" /> | 8 | <on_click function="Object.Buy" /> |
9 | <on_enable function="EnableEdit" /> | 9 | <on_enable function="Object.EnableBuy" /> |
10 | </menu_item_call> | 10 | </menu_item_call> |
11 | <menu_item_call enabled="false" label="Touch" mouse_opaque="true" name="Object Touch"> | 11 | <menu_item_call enabled="false" label="Touch" mouse_opaque="true" name="Object Touch"> |
12 | <on_click function="Object.Touch" /> | 12 | <on_click function="Object.Touch" /> |
@@ -17,56 +17,56 @@ | |||
17 | <on_enable function="Object.EnableSitOrStand" userdata="Sit Here,Stand Up" /> | 17 | <on_enable function="Object.EnableSitOrStand" userdata="Sit Here,Stand Up" /> |
18 | </menu_item_call> | 18 | </menu_item_call> |
19 | <menu_item_call enabled="false" label="Take" mouse_opaque="true" name="Pie Object Take"> | 19 | <menu_item_call enabled="false" label="Take" mouse_opaque="true" name="Pie Object Take"> |
20 | <on_click function="Tools.BuyOrTake" /> | 20 | <on_click function="Tools.Take" /> |
21 | <on_enable function="Tools.EnableBuyOrTake" userdata="Buy,Take" /> | 21 | <on_enable function="Tools.EnableTake" /> |
22 | </menu_item_call> | 22 | </menu_item_call> |
23 | <menu_item_call enabled="false" label="Pay..." mouse_opaque="true" name="Pay..."> | 23 | <menu_item_call enabled="false" label="Pay..." mouse_opaque="true" name="Pay..."> |
24 | <on_click function="PayObject" /> | 24 | <on_click function="PayObject" /> |
25 | <on_enable function="EnablePayObject" /> | 25 | <on_enable function="EnablePayObject" /> |
26 | </menu_item_call> | 26 | </menu_item_call> |
27 | <pie_menu label="More >" name="More >"> | 27 | <pie_menu label="More >" name="More >"> |
28 | <menu_item_call enabled="false" label="Delete" mouse_opaque="true" name="Delete"> | 28 | <menu_item_call enabled="false" label="Build" mouse_opaque="true" name="Create"> |
29 | <on_click function="Object.Delete" /> | 29 | <on_click function="Object.Build" /> |
30 | <on_enable function="Object.EnableDelete" /> | 30 | <on_enable function="EnableEdit" /> |
31 | </menu_item_call> | 31 | </menu_item_call> |
32 | <menu_item_call enabled="false" label="Wear" mouse_opaque="true" name="Wear"> | 32 | <menu_item_call enabled="false" label="Wear" mouse_opaque="true" name="Wear"> |
33 | <on_click function="Object.AttachToAvatar" /> | 33 | <on_click function="Object.AttachToAvatar" /> |
34 | <on_enable function="Object.EnableWear" /> | 34 | <on_enable function="Object.EnableWear" /> |
35 | </menu_item_call> | 35 | </menu_item_call> |
36 | <menu_item_call enabled="false" label="Take Copy" mouse_opaque="true" name="Take Copy"> | 36 | <menu_item_call enabled="false" label="Take Copy" mouse_opaque="true" name="Take Copy"> |
37 | <on_click function="Tools.TakeCopy" /> | 37 | <on_click function="Tools.TakeCopy" /> |
38 | <on_enable function="Tools.EnableTakeCopy" /> | 38 | <on_enable function="Tools.EnableTakeCopy" /> |
39 | </menu_item_call> | 39 | </menu_item_call> |
40 | <pie_menu label="Attach HUD >" name="Object Attach HUD" /> | 40 | <pie_menu label="Attach HUD >" name="Object Attach HUD" /> |
41 | <pie_menu label="Attach >" name="Object Attach" /> | 41 | <pie_menu label="Attach >" name="Object Attach" /> |
42 | <menu_item_call enabled="false" label="Return..." mouse_opaque="true" name="Return..."> | 42 | <menu_item_call enabled="false" label="Return..." mouse_opaque="true" name="Return..."> |
43 | <on_click function="Object.Return" /> | 43 | <on_click function="Object.Return" /> |
44 | <on_enable function="Object.EnableReturn" /> | 44 | <on_enable function="Object.EnableReturn" /> |
45 | </menu_item_call> | 45 | </menu_item_call> |
46 | <pie_menu label="More >" name="Rate Menu"> | 46 | <pie_menu label="More >" name="Rate Menu"> |
47 | <menu_item_separator /> | 47 | <menu_item_separator /> |
48 | <menu_item_separator /> | 48 | <menu_item_separator /> |
49 | <menu_item_call enabled="false" label="Report Abuse..." mouse_opaque="true" | 49 | <menu_item_call enabled="false" label="Abuse..." mouse_opaque="true" |
50 | name="Report Abuse..."> | 50 | name="Report Abuse..."> |
51 | <on_click function="Object.ReportAbuse" /> | 51 | <on_click function="Object.ReportAbuse" /> |
52 | <on_enable function="Object.EnableReportAbuse" /> | 52 | <on_enable function="Object.EnableReportAbuse" /> |
53 | </menu_item_call> | 53 | </menu_item_call> |
54 | <menu_item_separator /> | 54 | <menu_item_separator /> |
55 | <menu_item_separator /> | 55 | <menu_item_separator /> |
56 | <menu_item_separator /> | 56 | <menu_item_call enabled="false" label="Mute" mouse_opaque="true" name="Object Mute"> |
57 | <menu_item_call enabled="false" label="Mute" mouse_opaque="true" name="Object Mute"> | 57 | <on_click function="Object.Mute" /> |
58 | <on_click function="Object.Mute" /> | 58 | <on_enable function="Object.EnableMute" /> |
59 | <on_enable function="Object.EnableMute" /> | 59 | </menu_item_call> |
60 | </menu_item_call> | 60 | <menu_item_separator /> |
61 | <menu_item_call enabled="true" label="Inspect" mouse_opaque="true" name="Object Inspect"> | 61 | <menu_item_call enabled="true" label="Inspect" mouse_opaque="true" name="Object Inspect"> |
62 | <on_click function="Object.Inspect" /> | 62 | <on_click function="Object.Inspect" /> |
63 | <on_enable function="Object.EnableInspect" /> | 63 | <on_enable function="Object.EnableInspect" /> |
64 | </menu_item_call> | 64 | </menu_item_call> |
65 | </pie_menu> | 65 | </pie_menu> |
66 | <menu_item_call enabled="false" label="Buy..." mouse_opaque="true" name="Buy..."> | 66 | <menu_item_call enabled="false" label="Delete" mouse_opaque="true" name="Delete"> |
67 | <on_click function="Object.Buy" /> | 67 | <on_click function="Object.Delete" /> |
68 | <on_enable function="Object.EnableBuy" /> | 68 | <on_enable function="Object.EnableDelete" /> |
69 | </menu_item_call> | 69 | </menu_item_call> |
70 | </pie_menu> | 70 | </pie_menu> |
71 | <menu_item_call enabled="false" label="Edit..." mouse_opaque="true" name="Edit..."> | 71 | <menu_item_call enabled="false" label="Edit..." mouse_opaque="true" name="Edit..."> |
72 | <on_click function="Object.Edit" /> | 72 | <on_click function="Object.Edit" /> |
diff --git a/linden/indra/newview/skins/default/xui/en-us/menu_pie_self.xml b/linden/indra/newview/skins/default/xui/en-us/menu_pie_self.xml index 327e22e..4fb7262 100644 --- a/linden/indra/newview/skins/default/xui/en-us/menu_pie_self.xml +++ b/linden/indra/newview/skins/default/xui/en-us/menu_pie_self.xml | |||
@@ -6,85 +6,85 @@ | |||
6 | <menu_item_call enabled="true" label="Groups..." name="Groups..."> | 6 | <menu_item_call enabled="true" label="Groups..." name="Groups..."> |
7 | <on_click function="ShowAgentGroups" userdata="agent" /> | 7 | <on_click function="ShowAgentGroups" userdata="agent" /> |
8 | </menu_item_call> | 8 | </menu_item_call> |
9 | <menu_item_call enabled="true" label="Go..." name="Go..."> | 9 | <menu_item_call enabled="true" label="Inventory" name="Inventory"> |
10 | <on_click function="ShowFloater" userdata="movement controls" /> | 10 | <on_click function="ShowFloater" userdata="inventory" /> |
11 | </menu_item_call> | 11 | </menu_item_call> |
12 | <menu_item_call enabled="true" label="Stand Up" name="Stand Up"> | 12 | <menu_item_call enabled="true" label="Stand Up" name="Stand Up"> |
13 | <on_click function="Self.StandUp" userdata="" /> | 13 | <on_click function="Self.StandUp" userdata="" /> |
14 | <on_enable function="Self.EnableStandUp" /> | 14 | <on_enable function="Self.EnableStandUp" /> |
15 | </menu_item_call> | 15 | </menu_item_call> |
16 | <menu_item_call enabled="true" label="Friends..." name="Friends..."> | 16 | <menu_item_call enabled="true" label="Friends..." name="Friends..."> |
17 | <on_click function="ShowFloater" userdata="friends" /> | 17 | <on_click function="ShowFloater" userdata="friends" /> |
18 | </menu_item_call> | 18 | </menu_item_call> |
19 | <menu_item_call enabled="true" label="Gestures..." name="Gestures..."> | 19 | <menu_item_call enabled="true" label="Gestures..." name="Gestures..."> |
20 | <on_click function="ShowFloater" userdata="gestures" /> | 20 | <on_click function="ShowFloater" userdata="gestures" /> |
21 | </menu_item_call> | 21 | </menu_item_call> |
22 | <pie_menu enabled="true" label="Take Off >" name="Take Off >"> | 22 | <pie_menu enabled="true" label="Take Off >" name="Take Off >"> |
23 | <pie_menu enabled="true" label="Clothes >" name="Clothes >"> | 23 | <pie_menu enabled="true" label="Clothes >" name="Clothes >"> |
24 | <menu_item_call bottom="-29" enabled="false" height="19" label="Shirt" left="0" | 24 | <menu_item_call bottom="-29" enabled="false" height="19" label="Shirt" left="0" |
25 | mouse_opaque="true" name="Shirt" width="118"> | 25 | mouse_opaque="true" name="Shirt" width="118"> |
26 | <on_click function="Edit.TakeOff" userdata="shirt" /> | 26 | <on_click function="Edit.TakeOff" userdata="shirt" /> |
27 | <on_enable function="Edit.EnableTakeOff" userdata="shirt" /> | 27 | <on_enable function="Edit.EnableTakeOff" userdata="shirt" /> |
28 | </menu_item_call> | 28 | </menu_item_call> |
29 | <menu_item_call bottom="-48" enabled="false" height="19" label="Pants" left="0" | 29 | <menu_item_call bottom="-48" enabled="false" height="19" label="Pants" left="0" |
30 | mouse_opaque="true" name="Pants" width="118"> | 30 | mouse_opaque="true" name="Pants" width="118"> |
31 | <on_click function="Edit.TakeOff" userdata="pants" /> | 31 | <on_click function="Edit.TakeOff" userdata="pants" /> |
32 | <on_enable function="Edit.EnableTakeOff" userdata="pants" /> | 32 | <on_enable function="Edit.EnableTakeOff" userdata="pants" /> |
33 | </menu_item_call> | 33 | </menu_item_call> |
34 | <menu_item_call bottom="-67" enabled="false" height="19" label="Shoes" left="0" | 34 | <menu_item_call bottom="-67" enabled="false" height="19" label="Shoes" left="0" |
35 | mouse_opaque="true" name="Shoes" width="118"> | 35 | mouse_opaque="true" name="Shoes" width="118"> |
36 | <on_click function="Edit.TakeOff" userdata="shoes" /> | 36 | <on_click function="Edit.TakeOff" userdata="shoes" /> |
37 | <on_enable function="Edit.EnableTakeOff" userdata="shoes" /> | 37 | <on_enable function="Edit.EnableTakeOff" userdata="shoes" /> |
38 | </menu_item_call> | 38 | </menu_item_call> |
39 | <menu_item_call bottom="-86" enabled="false" height="19" label="Socks" left="0" | 39 | <menu_item_call bottom="-86" enabled="false" height="19" label="Socks" left="0" |
40 | mouse_opaque="true" name="Socks" width="118"> | 40 | mouse_opaque="true" name="Socks" width="118"> |
41 | <on_click function="Edit.TakeOff" userdata="socks" /> | 41 | <on_click function="Edit.TakeOff" userdata="socks" /> |
42 | <on_enable function="Edit.EnableTakeOff" userdata="socks" /> | 42 | <on_enable function="Edit.EnableTakeOff" userdata="socks" /> |
43 | </menu_item_call> | 43 | </menu_item_call> |
44 | <menu_item_call bottom="-105" enabled="false" height="19" label="Jacket" left="0" | 44 | <menu_item_call bottom="-105" enabled="false" height="19" label="Jacket" left="0" |
45 | mouse_opaque="true" name="Jacket" width="118"> | 45 | mouse_opaque="true" name="Jacket" width="118"> |
46 | <on_click function="Edit.TakeOff" userdata="jacket" /> | 46 | <on_click function="Edit.TakeOff" userdata="jacket" /> |
47 | <on_enable function="Edit.EnableTakeOff" userdata="jacket" /> | 47 | <on_enable function="Edit.EnableTakeOff" userdata="jacket" /> |
48 | </menu_item_call> | 48 | </menu_item_call> |
49 | <menu_item_call bottom="-124" enabled="false" height="19" label="Gloves" left="0" | 49 | <menu_item_call bottom="-124" enabled="false" height="19" label="Gloves" left="0" |
50 | mouse_opaque="true" name="Gloves" width="118"> | 50 | mouse_opaque="true" name="Gloves" width="118"> |
51 | <on_click function="Edit.TakeOff" userdata="gloves" /> | 51 | <on_click function="Edit.TakeOff" userdata="gloves" /> |
52 | <on_enable function="Edit.EnableTakeOff" userdata="gloves" /> | 52 | <on_enable function="Edit.EnableTakeOff" userdata="gloves" /> |
53 | </menu_item_call> | 53 | </menu_item_call> |
54 | <pie_menu enabled="true" label="More >" name="More >"> | 54 | <pie_menu enabled="true" label="More >" name="More >"> |
55 | <menu_item_call bottom="-143" enabled="false" height="19" label="Undershirt" left="0" | 55 | <menu_item_call bottom="-143" enabled="false" height="19" label="Undershirt" left="0" |
56 | mouse_opaque="true" name="Self Undershirt" width="118"> | 56 | mouse_opaque="true" name="Self Undershirt" width="118"> |
57 | <on_click function="Edit.TakeOff" userdata="undershirt" /> | 57 | <on_click function="Edit.TakeOff" userdata="undershirt" /> |
58 | <on_enable function="Edit.EnableTakeOff" userdata="undershirt" /> | 58 | <on_enable function="Edit.EnableTakeOff" userdata="undershirt" /> |
59 | </menu_item_call> | 59 | </menu_item_call> |
60 | <menu_item_separator /> | 60 | <menu_item_separator /> |
61 | <menu_item_call bottom="-200" enabled="true" height="19" label="All Clothes" left="0" | 61 | <menu_item_call bottom="-200" enabled="true" height="19" label="All Clothes" left="0" |
62 | mouse_opaque="true" name="All Clothes" width="118"> | 62 | mouse_opaque="true" name="All Clothes" width="118"> |
63 | <on_click function="Edit.TakeOff" userdata="all" /> | 63 | <on_click function="Edit.TakeOff" userdata="all" /> |
64 | </menu_item_call> | 64 | </menu_item_call> |
65 | <menu_item_separator /> | 65 | <menu_item_separator /> |
66 | <menu_item_call bottom="-162" enabled="false" height="19" label="Underpants" left="0" | 66 | <menu_item_call bottom="-162" enabled="false" height="19" label="Underpants" left="0" |
67 | mouse_opaque="true" name="Self Underpants" width="118"> | 67 | mouse_opaque="true" name="Self Underpants" width="118"> |
68 | <on_click function="Edit.TakeOff" userdata="underpants" /> | 68 | <on_click function="Edit.TakeOff" userdata="underpants" /> |
69 | <on_enable function="Edit.EnableTakeOff" userdata="underpants" /> | 69 | <on_enable function="Edit.EnableTakeOff" userdata="underpants" /> |
70 | </menu_item_call> | 70 | </menu_item_call> |
71 | </pie_menu> | 71 | </pie_menu> |
72 | <menu_item_call bottom="-181" enabled="false" height="19" label="Skirt" left="0" | 72 | <menu_item_call bottom="-181" enabled="false" height="19" label="Skirt" left="0" |
73 | mouse_opaque="true" name="Skirt" width="118"> | 73 | mouse_opaque="true" name="Skirt" width="118"> |
74 | <on_click function="Edit.TakeOff" userdata="skirt" /> | 74 | <on_click function="Edit.TakeOff" userdata="skirt" /> |
75 | <on_enable function="Edit.EnableTakeOff" userdata="skirt" /> | 75 | <on_enable function="Edit.EnableTakeOff" userdata="skirt" /> |
76 | </menu_item_call> | 76 | </menu_item_call> |
77 | </pie_menu> | 77 | </pie_menu> |
78 | <menu_item_separator /> | 78 | <menu_item_separator /> |
79 | <pie_menu enabled="true" label="HUD >" name="Object Detach HUD" /> | 79 | <pie_menu enabled="true" label="HUD >" name="Object Detach HUD" /> |
80 | <menu_item_separator /> | 80 | <menu_item_separator /> |
81 | <pie_menu enabled="true" label="Detach >" name="Object Detach" /> | 81 | <pie_menu enabled="true" label="Detach >" name="Object Detach" /> |
82 | <menu_item_separator /> | 82 | <menu_item_separator /> |
83 | <menu_item_call enabled="true" label="Detach All" name="Detach All"> | 83 | <menu_item_call enabled="true" label="Detach All" name="Detach All"> |
84 | <on_click function="Self.RemoveAllAttachments" userdata="" /> | 84 | <on_click function="Self.RemoveAllAttachments" userdata="" /> |
85 | <on_enable function="Self.EnableRemoveAllAttachments" /> | 85 | <on_enable function="Self.EnableRemoveAllAttachments" /> |
86 | </menu_item_call> | 86 | </menu_item_call> |
87 | </pie_menu> | 87 | </pie_menu> |
88 | <menu_item_call enabled="true" label="Appearance..." name="Appearance..."> | 88 | <menu_item_call enabled="true" label="Appearance..." name="Appearance..."> |
89 | <on_click function="ShowFloater" userdata="appearance" /> | 89 | <on_click function="ShowFloater" userdata="appearance" /> |
90 | <on_enable function="Edit.EnableCustomizeAvatar" /> | 90 | <on_enable function="Edit.EnableCustomizeAvatar" /> |
diff --git a/linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml b/linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml index dee3cb1..89c1fe8 100644 --- a/linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml +++ b/linden/indra/newview/skins/default/xui/en-us/menu_viewer.xml | |||
@@ -701,9 +701,9 @@ | |||
701 | <on_enable function="Tools.SomethingSelectedNoHUD" /> | 701 | <on_enable function="Tools.SomethingSelectedNoHUD" /> |
702 | </menu_item_call> | 702 | </menu_item_call> |
703 | <menu_item_call name="Menu Object Take" enabled="false" | 703 | <menu_item_call name="Menu Object Take" enabled="false" |
704 | label="Buy Object" visible="false"> | 704 | label="Take" visible="false"> |
705 | <on_click function="Tools.BuyOrTake" userdata="" /> | 705 | <on_click function="Tools.Take" userdata="" /> |
706 | <on_enable function="Tools.EnableBuyOrTake" userdata="Buy,Take" /> | 706 | <on_enable function="Tools.EnableTake" /> |
707 | </menu_item_call> | 707 | </menu_item_call> |
708 | <menu_item_call name="Take Copy" enabled="false" | 708 | <menu_item_call name="Take Copy" enabled="false" |
709 | label="Take Copy"> | 709 | label="Take Copy"> |
diff --git a/linden/indra/newview/skins/default/xui/fr/floater_about_land.xml b/linden/indra/newview/skins/default/xui/fr/floater_about_land.xml index 50ce466..9742d2f 100644 --- a/linden/indra/newview/skins/default/xui/fr/floater_about_land.xml +++ b/linden/indra/newview/skins/default/xui/fr/floater_about_land.xml | |||
@@ -1,508 +1,508 @@ | |||
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="À propos du terrain"> | 2 | <floater name="floaterland" title="À propos du terrain"> |
3 | <tab_container name="landtab"> | 3 | <tab_container name="landtab"> |
4 | <panel label="Général" name="land_general_panel"> | 4 | <panel label="Général" name="land_general_panel"> |
5 | <text type="string" length="1" name="Name:"> | 5 | <text type="string" length="1" name="Name:"> |
6 | Nom : | 6 | Nom : |
7 | </text> | 7 | </text> |
8 | <text type="string" length="1" name="Description:"> | 8 | <text type="string" length="1" name="Description:"> |
9 | Description : | 9 | Description : |
10 | </text> | 10 | </text> |
11 | <text type="string" length="1" name="Owner:"> | 11 | <text type="string" length="1" name="Owner:"> |
12 | Propriétaire : | 12 | Propriétaire : |
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="Profil..." label_selected="Profil..." name="Profile..." /> | 17 | <button label="Profil..." label_selected="Profil..." name="Profile..." /> |
18 | <text type="string" length="1" name="Group:"> | 18 | <text type="string" length="1" name="Group:"> |
19 | Groupe : | 19 | Groupe : |
20 | </text> | 20 | </text> |
21 | <button label="Définir..." label_selected="Définir..." name="Set..." /> | 21 | <button label="Définir..." label_selected="Définir..." name="Set..." /> |
22 | <check_box label="Autoriser le transfert au groupe" name="check deed" | 22 | <check_box label="Autoriser le transfert au groupe" name="check deed" |
23 | tool_tip="Un officier peut transférer ce terrain au groupe. Il viendra alors s'ajouter au patrimoine du groupe." /> | 23 | tool_tip="Un officier peut transférer ce terrain au groupe. Il viendra alors s'ajouter au patrimoine du groupe." /> |
24 | <button label="Transférer..." label_selected="Transférer..." name="Deed..." | 24 | <button label="Transférer..." label_selected="Transférer..." name="Deed..." |
25 | tool_tip="Vous ne pouvez transférer le terrain que si vous avez un rôle d'officier dans le groupe sélectionné." /> | 25 | tool_tip="Vous ne pouvez transférer le terrain que si vous avez un rôle d'officier dans le groupe sélectionné." /> |
26 | <check_box label="Le propriétaire contribue par transfert" name="check contib" | 26 | <check_box label="Le propriétaire contribue par transfert" name="check contib" |
27 | tool_tip="Lorsque le terrain est transféré au groupe, la contribution du précédent propriétaire suffit à l'entretenir." /> | 27 | tool_tip="Lorsque le terrain est transféré au groupe, la contribution du précédent propriétaire suffit à l'entretenir." /> |
28 | <check_box label="Le propriétaire contribue par une donation" name="check contrib" | 28 | <check_box label="Le propriétaire contribue par une donation" name="check contrib" |
29 | tool_tip="Lorsqu'un titre de propriété est transféré au groupe, l'ancien propriétaire fait également un don de terrain suffisant." /> | 29 | tool_tip="Lorsqu'un titre de propriété est transféré au groupe, l'ancien propriétaire fait également un don de terrain suffisant." /> |
30 | <text type="string" length="1" name="For Sale:"> | 30 | <text type="string" length="1" name="For Sale:"> |
31 | À vendre : | 31 | À vendre : |
32 | </text> | 32 | </text> |
33 | <text type="string" length="1" name="Not for sale."> | 33 | <text type="string" length="1" name="Not for sale."> |
34 | Pas à vendre. | 34 | Pas à vendre. |
35 | </text> | 35 | </text> |
36 | <text type="string" length="1" name="For Sale: Price L$[PRICE]."> | 36 | <text type="string" length="1" name="For Sale: Price L$[PRICE]."> |
37 | Prix : [PRICE] $L. | 37 | Prix : [PRICE] $L. |
38 | </text> | 38 | </text> |
39 | <button label="Vendre le terrain..." label_selected="Vendre le terrain..." | 39 | <button label="Vendre le terrain..." label_selected="Vendre le terrain..." |
40 | name="Sell Land..." /> | 40 | name="Sell Land..." /> |
41 | <text type="string" length="1" name="For sale to"> | 41 | <text type="string" length="1" name="For sale to"> |
42 | À vendre à : [BUYER] | 42 | À vendre à : [BUYER] |
43 | </text> | 43 | </text> |
44 | <text type="string" length="1" name="Sell with landowners objects in parcel."> | 44 | <text type="string" length="1" name="Sell with landowners objects in parcel."> |
45 | Objets inclus dans la vente. | 45 | Objets inclus dans la vente. |
46 | </text> | 46 | </text> |
47 | <text type="string" length="1" name="Selling with no objects in parcel."> | 47 | <text type="string" length="1" name="Selling with no objects in parcel."> |
48 | Objets non inclus dans la vente. | 48 | Objets non inclus dans la vente. |
49 | </text> | 49 | </text> |
50 | <button label="Annuler la vente du terrain" | 50 | <button label="Annuler la vente du terrain" |
51 | label_selected="Annuler la vente du terrain" name="Cancel Land Sale" /> | 51 | label_selected="Annuler la vente du terrain" name="Cancel Land Sale" /> |
52 | <text type="string" length="1" name="Claimed:"> | 52 | <text type="string" length="1" name="Claimed:"> |
53 | Réclamée : | 53 | Réclamée : |
54 | </text> | 54 | </text> |
55 | <text type="string" length="1" name="DateClaimText"> | 55 | <text type="string" length="1" name="DateClaimText"> |
56 | Tue Aug 15 13:47:25 2006 | 56 | Tue Aug 15 13:47:25 2006 |
57 | </text> | 57 | </text> |
58 | <text type="string" length="1" name="PriceLabel"> | 58 | <text type="string" length="1" name="PriceLabel"> |
59 | Surface : | 59 | Surface : |
60 | </text> | 60 | </text> |
61 | <text type="string" length="1" name="PriceText"> | 61 | <text type="string" length="1" name="PriceText"> |
62 | 4048 m² | 62 | 4048 m² |
63 | </text> | 63 | </text> |
64 | <text type="string" length="1" name="Traffic:"> | 64 | <text type="string" length="1" name="Traffic:"> |
65 | Trafic : | 65 | Trafic : |
66 | </text> | 66 | </text> |
67 | <text type="string" length="1" name="DwellText"> | 67 | <text type="string" length="1" name="DwellText"> |
68 | 0 | 68 | 0 |
69 | </text> | 69 | </text> |
70 | <button label="Acheter le terrain..." label_selected="Acheter le terrain..." | 70 | <button label="Acheter le terrain..." label_selected="Acheter le terrain..." |
71 | name="Buy Land..." /> | 71 | name="Buy Land..." /> |
72 | <button label="Acheter pour le groupe..." label_selected="Acheter pour le groupe..." | 72 | <button label="Acheter pour le groupe..." label_selected="Acheter pour le groupe..." |
73 | name="Buy For Group..." /> | 73 | name="Buy For Group..." /> |
74 | <button label="Acheter un passe..." label_selected="Acheter un passe..." | 74 | <button label="Acheter un passe..." label_selected="Acheter un passe..." |
75 | name="Buy Pass..." | 75 | name="Buy Pass..." |
76 | tool_tip="Un passe vous donne un accès temporaire à ce terrain." /> | 76 | tool_tip="Un passe vous donne un accès temporaire à ce terrain." /> |
77 | <button label="Céder le terrain..." label_selected="Céder le terrain..." | 77 | <button label="Céder le terrain..." label_selected="Céder le terrain..." |
78 | name="Abandon Land..." /> | 78 | name="Abandon Land..." /> |
79 | <button label="Récupérer le terrain…" label_selected="Récupérer le terrain…" | 79 | <button label="Récupérer le terrain…" label_selected="Récupérer le terrain…" |
80 | name="Reclaim Land..." /> | 80 | name="Reclaim Land..." /> |
81 | <button label="Vente Linden..." label_selected="Vente Linden..." name="Linden Sale..." | 81 | <button label="Vente Linden..." label_selected="Vente Linden..." name="Linden Sale..." |
82 | tool_tip="Le terrain doit être la propriété d'un résident, avoir un contenu défini et ne pas être aux enchères." /> | 82 | tool_tip="Le terrain doit être la propriété d'un résident, avoir un contenu défini et ne pas être aux enchères." /> |
83 | <text name="new users only"> | 83 | <text name="new users only"> |
84 | Nouveaux utilisateurs uniquement | 84 | Nouveaux utilisateurs uniquement |
85 | </text> | 85 | </text> |
86 | <text name="anyone"> | 86 | <text name="anyone"> |
87 | Tout le monde | 87 | Tout le monde |
88 | </text> | 88 | </text> |
89 | <string name="area_text"> | 89 | <string name="area_text"> |
90 | Surface | 90 | Surface |
91 | </string> | 91 | </string> |
92 | <string name="area_size_text"> | 92 | <string name="area_size_text"> |
93 | [AREA] m² | 93 | [AREA] m² |
94 | </string> | 94 | </string> |
95 | <string name="auction_id_text"> | 95 | <string name="auction_id_text"> |
96 | Code de l'enchère : [ID] | 96 | Code de l'enchère : [ID] |
97 | </string> | 97 | </string> |
98 | <string name="need_tier_to_modify"> | 98 | <string name="need_tier_to_modify"> |
99 | Pour modifier ce terrain, vous devez approuver votre achat. | 99 | Pour modifier ce terrain, vous devez approuver votre achat. |
100 | </string> | 100 | </string> |
101 | <string name="group_owned_text"> | 101 | <string name="group_owned_text"> |
102 | (propriété du groupe) | 102 | (propriété du groupe) |
103 | </string> | 103 | </string> |
104 | <string name="profile_text"> | 104 | <string name="profile_text"> |
105 | Profil... | 105 | Profil... |
106 | </string> | 106 | </string> |
107 | <string name="info_text"> | 107 | <string name="info_text"> |
108 | Infos... | 108 | Infos... |
109 | </string> | 109 | </string> |
110 | <string name="public_text"> | 110 | <string name="public_text"> |
111 | (public) | 111 | (public) |
112 | </string> | 112 | </string> |
113 | <string name="none_text"> | 113 | <string name="none_text"> |
114 | (aucun) | 114 | (aucun) |
115 | </string> | 115 | </string> |
116 | <string name="sale_pending_text"> | 116 | <string name="sale_pending_text"> |
117 | (vente en cours) | 117 | (vente en cours) |
118 | </string> | 118 | </string> |
119 | <string name="no_selection_text"> | 119 | <string name="no_selection_text"> |
120 | Aucune parcelle sélectionnée. | 120 | Aucune parcelle sélectionnée. |
121 | Allez dans le menu Monde > À propos du terrain ou sélectionnez une autre parcelle pour en afficher les détails. | 121 | Allez dans le menu Monde > À propos du terrain ou sélectionnez une autre parcelle pour en afficher les détails. |
122 | </string> | 122 | </string> |
123 | </panel> | 123 | </panel> |
124 | <panel label="Règlement" name="land_covenant_panel"> | 124 | <panel label="Règlement" name="land_covenant_panel"> |
125 | <text type="string" length="1" name="covenant_timestamp_text"> | 125 | <text type="string" length="1" name="covenant_timestamp_text"> |
126 | Last Modified Wed Dec 31 16:00:00 1969 | 126 | Last Modified Wed Dec 31 16:00:00 1969 |
127 | </text> | 127 | </text> |
128 | <text type="string" length="1" name="region_name_lbl"> | 128 | <text type="string" length="1" name="region_name_lbl"> |
129 | Région : | 129 | Région : |
130 | </text> | 130 | </text> |
131 | <text type="string" length="1" name="region_name_text"> | 131 | <text type="string" length="1" name="region_name_text"> |
132 | leyla | 132 | leyla |
133 | </text> | 133 | </text> |
134 | <text type="string" length="1" name="estate_name_lbl"> | 134 | <text type="string" length="1" name="estate_name_lbl"> |
135 | Domaine : | 135 | Domaine : |
136 | </text> | 136 | </text> |
137 | <text type="string" length="1" name="estate_name_text"> | 137 | <text type="string" length="1" name="estate_name_text"> |
138 | continent | 138 | continent |
139 | </text> | 139 | </text> |
140 | <text type="string" length="1" name="estate_owner_lbl"> | 140 | <text type="string" length="1" name="estate_owner_lbl"> |
141 | Propriétaire : | 141 | Propriétaire : |
142 | </text> | 142 | </text> |
143 | <text type="string" length="1" name="estate_owner_text"> | 143 | <text type="string" length="1" name="estate_owner_text"> |
144 | (aucun) | 144 | (aucun) |
145 | </text> | 145 | </text> |
146 | <text type="string" length="1" name="resellable_clause"> | 146 | <text type="string" length="1" name="resellable_clause"> |
147 | Le terrain acheté dans cette région ne peut être revendu. | 147 | Le terrain acheté dans cette région ne peut être revendu. |
148 | </text> | 148 | </text> |
149 | <text type="string" length="1" name="changeable_clause"> | 149 | <text type="string" length="1" name="changeable_clause"> |
150 | Le terrain acheté dans cette région ne peut être revendu/divisé. | 150 | Le terrain acheté dans cette région ne peut être revendu/divisé. |
151 | </text> | 151 | </text> |
152 | <text_editor type="string" length="1" name="covenant_editor"> | 152 | <text_editor type="string" length="1" name="covenant_editor"> |
153 | Il n'y a aucun règlement pour ce domaine. | 153 | Il n'y a aucun règlement pour ce domaine. |
154 | </text_editor> | 154 | </text_editor> |
155 | <text name="can_resell"> | 155 | <text name="can_resell"> |
156 | Le terrain acheté dans cette région peut être revendu. | 156 | Le terrain acheté dans cette région peut être revendu. |
157 | </text> | 157 | </text> |
158 | <text name="can_not_resell"> | 158 | <text name="can_not_resell"> |
159 | Le terrain acheté dans cette région ne peut pas être revendu. | 159 | Le terrain acheté dans cette région ne peut pas être revendu. |
160 | </text> | 160 | </text> |
161 | <text name="can_change"> | 161 | <text name="can_change"> |
162 | Le terrain acheté dans cette région peut être fusionné ou divisé. | 162 | Le terrain acheté dans cette région peut être fusionné ou divisé. |
163 | </text> | 163 | </text> |
164 | <text name="can_not_change"> | 164 | <text name="can_not_change"> |
165 | Le terrain acheté dans cette région ne peut pas être fusionné ou divisé. | 165 | Le terrain acheté dans cette région ne peut pas être fusionné ou divisé. |
166 | </text> | 166 | </text> |
167 | </panel> | 167 | </panel> |
168 | <panel label="Objets" name="land_objects_panel"> | 168 | <panel label="Objets" name="land_objects_panel"> |
169 | <text name="parcel_object_bonus"> | 169 | <text name="parcel_object_bonus"> |
170 | Facteur Bonus Objets : [BONUS] | 170 | Facteur Bonus Objets : [BONUS] |
171 | </text> | 171 | </text> |
172 | <text type="string" length="1" name="Simulator primitive usage:"> | 172 | <text type="string" length="1" name="Simulator primitive usage:"> |
173 | Prims utilisés sur le sim : | 173 | Prims utilisés sur le sim : |
174 | </text> | 174 | </text> |
175 | <text type="string" length="1" name="0 out of 0 available"> | 175 | <text type="string" length="1" name="0 out of 0 available"> |
176 | 0 sur 14055 (14055 disponibles) | 176 | 0 sur 14055 (14055 disponibles) |
177 | </text> | 177 | </text> |
178 | <text name="objects_available"> | 178 | <text name="objects_available"> |
179 | [COUNT] sur [COUNT] ([COUNT] disponibles) | 179 | [COUNT] sur [COUNT] ([COUNT] disponibles) |
180 | </text> | 180 | </text> |
181 | <string name="objects_available_text"> | 181 | <string name="objects_available_text"> |
182 | [COUNT] sur [MAX] ([AVAILABLE] disponibles) | 182 | [COUNT] sur [MAX] ([AVAILABLE] disponibles) |
183 | </string> | 183 | </string> |
184 | <string name="objects_deleted_text"> | 184 | <string name="objects_deleted_text"> |
185 | [COUNT] sur [MAX] ([DELETED] seront supprimés) | 185 | [COUNT] sur [MAX] ([DELETED] seront supprimés) |
186 | </string> | 186 | </string> |
187 | <text type="string" length="1" name="Primitives parcel supports:"> | 187 | <text type="string" length="1" name="Primitives parcel supports:"> |
188 | Prims max. sur la parcelle : | 188 | Prims max. sur la parcelle : |
189 | </text> | 189 | </text> |
190 | <text type="string" length="1" name="object_contrib_text"> | 190 | <text type="string" length="1" name="object_contrib_text"> |
191 | [COUNT] | 191 | [COUNT] |
192 | </text> | 192 | </text> |
193 | <text type="string" length="1" name="Primitives on parcel:"> | 193 | <text type="string" length="1" name="Primitives on parcel:"> |
194 | Prims sur la parcelle : | 194 | Prims sur la parcelle : |
195 | </text> | 195 | </text> |
196 | <text type="string" length="1" name="total_objects_text"> | 196 | <text type="string" length="1" name="total_objects_text"> |
197 | [COUNT] | 197 | [COUNT] |
198 | </text> | 198 | </text> |
199 | <text type="string" length="1" name="Owned by parcel owner:"> | 199 | <text type="string" length="1" name="Owned by parcel owner:"> |
200 | Appartenant au propriétaire : | 200 | Appartenant au propriétaire : |
201 | </text> | 201 | </text> |
202 | <text type="string" length="1" name="owner_objects_text"> | 202 | <text type="string" length="1" name="owner_objects_text"> |
203 | [COUNT] | 203 | [COUNT] |
204 | </text> | 204 | </text> |
205 | <button label="Afficher" label_selected="Afficher" name="ShowOwner" /> | 205 | <button label="Afficher" label_selected="Afficher" name="ShowOwner" /> |
206 | <button label="Renvoyer..." label_selected="Renvoyer..." name="ReturnOwner..." | 206 | <button label="Renvoyer..." label_selected="Renvoyer..." name="ReturnOwner..." |
207 | tool_tip="Renvoyer les objets à leurs propriétaires." /> | 207 | tool_tip="Renvoyer les objets à leurs propriétaires." /> |
208 | <text type="string" length="1" name="Set to group:"> | 208 | <text type="string" length="1" name="Set to group:"> |
209 | Donnés au groupe : | 209 | Donnés au groupe : |
210 | </text> | 210 | </text> |
211 | <text type="string" length="1" name="group_objects_text"> | 211 | <text type="string" length="1" name="group_objects_text"> |
212 | 0 | 212 | 0 |
213 | </text> | 213 | </text> |
214 | <button label="Afficher" label_selected="Afficher" name="ShowGroup" /> | 214 | <button label="Afficher" label_selected="Afficher" name="ShowGroup" /> |
215 | <button label="Renvoyer..." label_selected="Renvoyer..." name="ReturnGroup..." | 215 | <button label="Renvoyer..." label_selected="Renvoyer..." name="ReturnGroup..." |
216 | tool_tip="Renvoyer les objets à leurs propriétaires." /> | 216 | tool_tip="Renvoyer les objets à leurs propriétaires." /> |
217 | <text type="string" length="1" name="Owned by others:"> | 217 | <text type="string" length="1" name="Owned by others:"> |
218 | Appartenant à d'autres : | 218 | Appartenant à d'autres : |
219 | </text> | 219 | </text> |
220 | <text type="string" length="1" name="other_objects_text"> | 220 | <text type="string" length="1" name="other_objects_text"> |
221 | 0 | 221 | 0 |
222 | </text> | 222 | </text> |
223 | <button label="Afficher" label_selected="Afficher" name="ShowOther" /> | 223 | <button label="Afficher" label_selected="Afficher" name="ShowOther" /> |
224 | <button label="Renvoyer..." label_selected="Renvoyer..." name="ReturnOther..." | 224 | <button label="Renvoyer..." label_selected="Renvoyer..." name="ReturnOther..." |
225 | tool_tip="Renvoyer les objets à leurs propriétaires." /> | 225 | tool_tip="Renvoyer les objets à leurs propriétaires." /> |
226 | <text type="string" length="1" name="Selected / sat upon:"> | 226 | <text type="string" length="1" name="Selected / sat upon:"> |
227 | Sélectionnés/où quelqu'un est assis : | 227 | Sélectionnés/où quelqu'un est assis : |
228 | </text> | 228 | </text> |
229 | <text type="string" length="1" name="selected_objects_text"> | 229 | <text type="string" length="1" name="selected_objects_text"> |
230 | 0 | 230 | 0 |
231 | </text> | 231 | </text> |
232 | <text type="string" length="1" name="Autoreturn other resident&apos;s objects (minutes, 0 for off):"> | 232 | <text type="string" length="1" name="Autoreturn other resident&apos;s objects (minutes, 0 for off):"> |
233 | Renvoi automatique des objets appartenant aux autres résidents (minutes, 0 pour désactiver): | 233 | Renvoi automatique des objets appartenant aux autres résidents (minutes, 0 pour désactiver): |
234 | </text> | 234 | </text> |
235 | <text name="Autoreturn"> | 235 | <text name="Autoreturn"> |
236 | Renvoi automatique des objets d'autres résidents (minutes, 0 pour désactiver) : | 236 | Renvoi automatique des objets d'autres résidents (minutes, 0 pour désactiver) : |
237 | </text> | 237 | </text> |
238 | <text type="string" length="1" name="Object Owners:"> | 238 | <text type="string" length="1" name="Object Owners:"> |
239 | Propriétaires : | 239 | Propriétaires : |
240 | </text> | 240 | </text> |
241 | <button label="Rafraîchir la liste" label_selected="Rafraîchir la liste" | 241 | <button label="Rafraîchir la liste" label_selected="Rafraîchir la liste" |
242 | name="Refresh List" /> | 242 | name="Refresh List" /> |
243 | <button label="Renvoyer les objets..." label_selected="Renvoyer les objets..." | 243 | <button label="Renvoyer les objets..." label_selected="Renvoyer les objets..." |
244 | name="Return objects..." /> | 244 | name="Return objects..." /> |
245 | <button label="" label_selected="" name="Type" tool_tip="Trier par type" /> | 245 | <button label="" label_selected="" name="Type" tool_tip="Trier par type" /> |
246 | <button label="Nom" label_selected="Nom" name="Name" tool_tip="Trier par nom" /> | 246 | <button label="Nom" label_selected="Nom" name="Name" tool_tip="Trier par nom" /> |
247 | <button label="Trafic" label_selected="Trafic" name="Count" tool_tip="Trier par trafic" /> | 247 | <button label="Trafic" label_selected="Trafic" name="Count" tool_tip="Trier par trafic" /> |
248 | <name_list label="Plus récents" name="owner list"> | 248 | <name_list label="Plus récents" name="owner list"> |
249 | <column label="Type" name="type" /> | 249 | <column label="Type" name="type" /> |
250 | <column label="Nom" name="name" /> | 250 | <column label="Nom" name="name" /> |
251 | <column label="Nombre" name="count" /> | 251 | <column label="Nombre" name="count" /> |
252 | </name_list> | 252 | </name_list> |
253 | </panel> | 253 | </panel> |
254 | <panel label="Options" name="land_options_panel"> | 254 | <panel label="Options" name="land_options_panel"> |
255 | <text type="string" length="1" name="allow_label"> | 255 | <text type="string" length="1" name="allow_label"> |
256 | Autoriser les autres résidents à : | 256 | Autoriser les autres résidents à : |
257 | </text> | 257 | </text> |
258 | <text name="allow_label2"> | 258 | <text name="allow_label2"> |
259 | Créer des objets : | 259 | Créer des objets : |
260 | </text> | 260 | </text> |
261 | <check_box label="Tous les résidents" name="edit objects check" /> | 261 | <check_box label="Tous les résidents" name="edit objects check" /> |
262 | <check_box label="Modifier le terrain" name="edit land check" /> | 262 | <check_box label="Modifier le terrain" name="edit land check" /> |
263 | <check_box label="Créer des repères" name="check landmark" /> | 263 | <check_box label="Créer des repères" name="check landmark" /> |
264 | <check_box label="Groupe" name="edit group objects check" /> | 264 | <check_box label="Groupe" name="edit group objects check" /> |
265 | <text name="allow_label3"> | 265 | <text name="allow_label3"> |
266 | Apporter des objets : | 266 | Apporter des objets : |
267 | </text> | 267 | </text> |
268 | <check_box label="Tous les résidents" name="all object entry check" /> | 268 | <check_box label="Tous les résidents" name="all object entry check" /> |
269 | <check_box label="Groupe" name="group object entry check" /> | 269 | <check_box label="Groupe" name="group object entry check" /> |
270 | <text name="allow_label4"> | 270 | <text name="allow_label4"> |
271 | Exécuter des scripts : | 271 | Exécuter des scripts : |
272 | </text> | 272 | </text> |
273 | <check_box label="Groupe" name="check group scripts" /> | 273 | <check_box label="Groupe" name="check group scripts" /> |
274 | <check_box label="Voler" name="check fly" /> | 274 | <check_box label="Voler" name="check fly" /> |
275 | <check_box label="Tous les résidents" name="check other scripts" /> | 275 | <check_box label="Tous les résidents" name="check other scripts" /> |
276 | <text type="string" length="1" name="land_options_label"> | 276 | <text type="string" length="1" name="land_options_label"> |
277 | Options du terrain : | 277 | Options du terrain : |
278 | </text> | 278 | </text> |
279 | <check_box label="Sécurisé (pas de dégâts)" name="check safe" /> | 279 | <check_box label="Sécurisé (pas de dégâts)" name="check safe" /> |
280 | <check_box label="Interdire les bousculades" name="PushRestrictCheck" | 280 | <check_box label="Interdire les bousculades" name="PushRestrictCheck" |
281 | tool_tip="llPushObject ne fonctionne que sur les scripts du propriétaire de la parcelle ou sur les scripts où la personne qui bouscule est aussi la propriétaire du script." /> | 281 | tool_tip="llPushObject ne fonctionne que sur les scripts du propriétaire de la parcelle ou sur les scripts où la personne qui bouscule est aussi la propriétaire du script." /> |
282 | <check_box label="Afficher dans la recherche (30 $L/semaine) sous" | 282 | <check_box label="Afficher dans la recherche (30 $L/semaine) sous" |
283 | name="ShowDirectoryCheck" | 283 | name="ShowDirectoryCheck" |
284 | tool_tip="Afficher la parcelle dans les résultats de recherche" /> | 284 | tool_tip="Afficher la parcelle dans les résultats de recherche" /> |
285 | <combo_box name="land category"> | 285 | <combo_box name="land category"> |
286 | <combo_item name="AnyCategory"> | 286 | <combo_item name="AnyCategory"> |
287 | Toute catégorie | 287 | Toute catégorie |
288 | </combo_item> | 288 | </combo_item> |
289 | <combo_item name="LindenLocation"> | 289 | <combo_item name="LindenLocation"> |
290 | Emplacement Linden | 290 | Emplacement Linden |
291 | </combo_item> | 291 | </combo_item> |
292 | <combo_item name="Adult"> | 292 | <combo_item name="Adult"> |
293 | Adultes | 293 | Adultes |
294 | </combo_item> | 294 | </combo_item> |
295 | <combo_item name="Arts&Culture"> | 295 | <combo_item name="Arts&Culture"> |
296 | Art et Culture | 296 | Art et Culture |
297 | </combo_item> | 297 | </combo_item> |
298 | <combo_item name="Business"> | 298 | <combo_item name="Business"> |
299 | Affaires | 299 | Affaires |
300 | </combo_item> | 300 | </combo_item> |
301 | <combo_item name="Educational"> | 301 | <combo_item name="Educational"> |
302 | Éducation | 302 | Éducation |
303 | </combo_item> | 303 | </combo_item> |
304 | <combo_item name="Gaming"> | 304 | <combo_item name="Gaming"> |
305 | Jeux | 305 | Jeux |
306 | </combo_item> | 306 | </combo_item> |
307 | <combo_item name="Hangout"> | 307 | <combo_item name="Hangout"> |
308 | Endroit favori | 308 | Endroit favori |
309 | </combo_item> | 309 | </combo_item> |
310 | <combo_item name="NewcomerFriendly"> | 310 | <combo_item name="NewcomerFriendly"> |
311 | Convivial pour les nouveaux | 311 | Convivial pour les nouveaux |
312 | </combo_item> | 312 | </combo_item> |
313 | <combo_item name="Parks&Nature"> | 313 | <combo_item name="Parks&Nature"> |
314 | Parcs et Nature | 314 | Parcs et Nature |
315 | </combo_item> | 315 | </combo_item> |
316 | <combo_item name="Residential"> | 316 | <combo_item name="Residential"> |
317 | Résidentiel | 317 | Résidentiel |
318 | </combo_item> | 318 | </combo_item> |
319 | <combo_item name="Shopping"> | 319 | <combo_item name="Shopping"> |
320 | Shopping | 320 | Shopping |
321 | </combo_item> | 321 | </combo_item> |
322 | <combo_item name="Other"> | 322 | <combo_item name="Other"> |
323 | Autre | 323 | Autre |
324 | </combo_item> | 324 | </combo_item> |
325 | </combo_box> | 325 | </combo_box> |
326 | <check_box label="Publier liste sur le web" name="PublishCheck" | 326 | <check_box label="Publier liste sur le web" name="PublishCheck" |
327 | tool_tip="Publiez vos informations de parcelle sur le web." /> | 327 | tool_tip="Publiez vos informations de parcelle sur le web." /> |
328 | <check_box label="Contenu pour adultes" name="MatureCheck" | 328 | <check_box label="Contenu pour adultes" name="MatureCheck" |
329 | tool_tip="Les infos sur votre parcelle, ou le contenu de cette dernière, sont à caractère adulte." /> | 329 | tool_tip="Les infos sur votre parcelle, ou le contenu de cette dernière, sont à caractère adulte." /> |
330 | <button label="?" label_selected="?" name="?" /> | 330 | <button label="?" label_selected="?" name="?" /> |
331 | <text type="string" length="1" name="Snapshot:"> | 331 | <text type="string" length="1" name="Snapshot:"> |
332 | Photo : | 332 | Photo : |
333 | </text> | 333 | </text> |
334 | <texture_picker label="" name="snapshot_ctrl" tool_tip="Cliquez pour sélectionner une image" /> | 334 | <texture_picker label="" name="snapshot_ctrl" tool_tip="Cliquez pour sélectionner une image" /> |
335 | <text type="string" length="1" name="Landing Point: (none)"> | 335 | <text type="string" length="1" name="Landing Point: (none)"> |
336 | Point d'atterrissage : (aucun) | 336 | Point d'atterrissage : (aucun) |
337 | </text> | 337 | </text> |
338 | <text name="landing_point"> | 338 | <text name="landing_point"> |
339 | Lieu d'arrivée : [LANDING] | 339 | Lieu d'arrivée : [LANDING] |
340 | </text> | 340 | </text> |
341 | <string name="landing_point_none"> | 341 | <string name="landing_point_none"> |
342 | (aucun) | 342 | (aucun) |
343 | </string> | 343 | </string> |
344 | <button label="Définir" label_selected="Définir" name="Set" | 344 | <button label="Définir" label_selected="Définir" name="Set" |
345 | tool_tip="Définir le lieu d'arrivée de l'avatar sur votre position actuelle. ll doit se trouver sur cette parcelle de terrain." /> | 345 | tool_tip="Définir le lieu d'arrivée de l'avatar sur votre position actuelle. ll doit se trouver sur cette parcelle de terrain." /> |
346 | <button label="Annuler" label_selected="Annuler" name="Clear" | 346 | <button label="Annuler" label_selected="Annuler" name="Clear" |
347 | tool_tip="Dégager le lieu d'arrivée." /> | 347 | tool_tip="Dégager le lieu d'arrivée." /> |
348 | <text type="string" length="1" name="Teleport Routing: "> | 348 | <text type="string" length="1" name="Teleport Routing: "> |
349 | Options de téléportation : | 349 | Options de téléportation : |
350 | </text> | 350 | </text> |
351 | <combo_box name="landing type" | 351 | <combo_box name="landing type" |
352 | tool_tip="Vous permet de paramétrer les téléportations sur votre terrain."> | 352 | tool_tip="Vous permet de paramétrer les téléportations sur votre terrain."> |
353 | <combo_item type="string" length="1" name="Blocked"> | 353 | <combo_item type="string" length="1" name="Blocked"> |
354 | Bloquée | 354 | Bloquée |
355 | </combo_item> | 355 | </combo_item> |
356 | <combo_item type="string" length="1" name="LandingPoint"> | 356 | <combo_item type="string" length="1" name="LandingPoint"> |
357 | Lieu d'arrivée défini | 357 | Lieu d'arrivée défini |
358 | </combo_item> | 358 | </combo_item> |
359 | <combo_item type="string" length="1" name="Anywhere"> | 359 | <combo_item type="string" length="1" name="Anywhere"> |
360 | Lieu d'arrivée indéfini | 360 | Lieu d'arrivée indéfini |
361 | </combo_item> | 361 | </combo_item> |
362 | </combo_box> | 362 | </combo_box> |
363 | <string name="push_restrict_text"> | 363 | <string name="push_restrict_text"> |
364 | Interdire les bousculades | 364 | Interdire les bousculades |
365 | </string> | 365 | </string> |
366 | <string name="push_restrict_region_text"> | 366 | <string name="push_restrict_region_text"> |
367 | Interdire les bousculades (passer outre les règles de la région) | 367 | Interdire les bousculades (passer outre les règles de la région) |
368 | </string> | 368 | </string> |
369 | </panel> | 369 | </panel> |
370 | <panel label="Média" name="land_media_panel"> | 370 | <panel label="Média" name="land_media_panel"> |
371 | <text name="with media:"> | 371 | <text name="with media:"> |
372 | Type de média : | 372 | Type de média : |
373 | </text> | 373 | </text> |
374 | <combo_box name="media type" | 374 | <combo_box name="media type" |
375 | tool_tip="Indiquez s'il s'agit de l'URL d'un film, d'une page web ou autre" /> | 375 | tool_tip="Indiquez s'il s'agit de l'URL d'un film, d'une page web ou autre" /> |
376 | <text name="at URL:"> | 376 | <text name="at URL:"> |
377 | URL du média : | 377 | URL du média : |
378 | </text> | 378 | </text> |
379 | <button label="Définir..." label_selected="Définir..." name="set_media_url" /> | 379 | <button label="Définir..." label_selected="Définir..." name="set_media_url" /> |
380 | <text name="Description:"> | 380 | <text name="Description:"> |
381 | Description : | 381 | Description : |
382 | </text> | 382 | </text> |
383 | <line_editor name="url_description" | 383 | <line_editor name="url_description" |
384 | tool_tip="Texte affiché à côté du bouton Jouer/Charger" /> | 384 | tool_tip="Texte affiché à côté du bouton Jouer/Charger" /> |
385 | <text name="replace_texture_help"> | 385 | <text name="replace_texture_help"> |
386 | (Les objets avec cette texture affichent le film ou | 386 | (Les objets avec cette texture affichent le film ou |
387 | la page web quand vous cliquez sur la flèche Jouer). | 387 | la page web quand vous cliquez sur la flèche Jouer). |
388 | </text> | 388 | </text> |
389 | <text name="Options:"> | 389 | <text name="Options:"> |
390 | Options | 390 | Options |
391 | média : | 391 | média : |
392 | </text> | 392 | </text> |
393 | <check_box label="Média en boucle" name="media_loop" | 393 | <check_box label="Média en boucle" name="media_loop" |
394 | tool_tip="Jouer le média en boucle. Lorsque le média aura fini de jouer, il recommencera." /> | 394 | tool_tip="Jouer le média en boucle. Lorsque le média aura fini de jouer, il recommencera." /> |
395 | <check_box label="Masquer l'URL du média" name="hide_media_url" | 395 | <check_box label="Masquer l'URL du média" name="hide_media_url" |
396 | tool_tip="Si vous cochez cette option, les personnes non autorisées à accéder aux infos de cette parcelle ne verront pas l'URL du média. Cette option n'est pas disponible pour les fichiers HTML." /> | 396 | tool_tip="Si vous cochez cette option, les personnes non autorisées à accéder aux infos de cette parcelle ne verront pas l'URL du média. Cette option n'est pas disponible pour les fichiers HTML." /> |
397 | <check_box label="Masquer l'URL de la musique" name="hide_music_url" | 397 | <check_box label="Masquer l'URL de la musique" name="hide_music_url" |
398 | tool_tip="Si vous cochez cette option, les personnes non autorisées à accéder aux infos de cette parcelle ne verront pas l'URL de la musique." /> | 398 | tool_tip="Si vous cochez cette option, les personnes non autorisées à accéder aux infos de cette parcelle ne verront pas l'URL de la musique." /> |
399 | <text name="media_size" | 399 | <text name="media_size" |
400 | tool_tip="Taille du média Web, laisser 0 pour la valeur par défaut."> | 400 | tool_tip="Taille du média Web, laisser 0 pour la valeur par défaut."> |
401 | Taille du média : | 401 | Taille du média : |
402 | </text> | 402 | </text> |
403 | <spinner name="media_size_width" | 403 | <spinner name="media_size_width" |
404 | tool_tip="Taille du média Web, laisser 0 pour la valeur par défaut." /> | 404 | tool_tip="Taille du média Web, laisser 0 pour la valeur par défaut." /> |
405 | <spinner name="media_size_height" | 405 | <spinner name="media_size_height" |
406 | tool_tip="Taille du média Web, laisser 0 pour la valeur par défaut." /> | 406 | tool_tip="Taille du média Web, laisser 0 pour la valeur par défaut." /> |
407 | <text name="pixels"> | 407 | <text name="pixels"> |
408 | pixels | 408 | pixels |
409 | </text> | 409 | </text> |
410 | <text name="MusicURL:"> | 410 | <text name="MusicURL:"> |
411 | URL de la musique : | 411 | URL de la musique : |
412 | </text> | 412 | </text> |
413 | <text name="Sound:"> | 413 | <text name="Sound:"> |
414 | Son : | 414 | Son : |
415 | </text> | 415 | </text> |
416 | <check_box label="Limiter le son spatial à cette parcelle" name="check sound local" /> | 416 | <check_box label="Limiter le son spatial à cette parcelle" name="check sound local" /> |
417 | <text type="string" length="1" name="Music URL:"> | 417 | <text type="string" length="1" name="Music URL:"> |
418 | URL du flux : | 418 | URL du flux : |
419 | </text> | 419 | </text> |
420 | <text type="string" length="1" name="Media texture:"> | 420 | <text type="string" length="1" name="Media texture:"> |
421 | Remplacer | 421 | Remplacer |
422 | la texture : | 422 | la texture : |
423 | </text> | 423 | </text> |
424 | <text type="string" length="1" name="Replace this texture:"> | 424 | <text type="string" length="1" name="Replace this texture:"> |
425 | Remplacer cette texture : | 425 | Remplacer cette texture : |
426 | </text> | 426 | </text> |
427 | <texture_picker label="" name="media texture" tool_tip="Cliquez pour sélectionner une image" /> | 427 | <texture_picker label="" name="media texture" tool_tip="Cliquez pour sélectionner une image" /> |
428 | <text type="string" length="1" name="with content from this URL:"> | 428 | <text type="string" length="1" name="with content from this URL:"> |
429 | par du contenu situé à l'URL suivante : | 429 | par du contenu situé à l'URL suivante : |
430 | </text> | 430 | </text> |
431 | <check_box label="Échelle automatique" name="media_auto_scale" | 431 | <check_box label="Échelle automatique" name="media_auto_scale" |
432 | tool_tip="Si vous sélectionnez cette option, le contenu de cette parcelle sera automatiquement mis à l'échelle. La qualité visuelle sera peut-être amoindrie mais vous n'aurez à faire aucune autre mise à l'échelle ou alignement." /> | 432 | tool_tip="Si vous sélectionnez cette option, le contenu de cette parcelle sera automatiquement mis à l'échelle. La qualité visuelle sera peut-être amoindrie mais vous n'aurez à faire aucune autre mise à l'échelle ou alignement." /> |
433 | <text name="Voice settings:"> | 433 | <text name="Voice settings:"> |
434 | Voix : | 434 | Voix : |
435 | </text> | 435 | </text> |
436 | <radio_group name="parcel_voice_channel"> | 436 | <radio_group name="parcel_voice_channel"> |
437 | <radio_item name="Estate"> | 437 | <radio_item name="Estate"> |
438 | Utiliser le canal spatial du domaine | 438 | Utiliser le canal spatial du domaine |
439 | </radio_item> | 439 | </radio_item> |
440 | <radio_item name="Private"> | 440 | <radio_item name="Private"> |
441 | Utiliser un canal spatial privé | 441 | Utiliser un canal spatial privé |
442 | </radio_item> | 442 | </radio_item> |
443 | <radio_item name="Disabled"> | 443 | <radio_item name="Disabled"> |
444 | Désactiver les canaux spatiaux audios sur cette parcelle | 444 | Désactiver les canaux spatiaux audios sur cette parcelle |
445 | </radio_item> | 445 | </radio_item> |
446 | </radio_group> | 446 | </radio_group> |
447 | </panel> | 447 | </panel> |
448 | <panel label="Accès" name="land_access_panel"> | 448 | <panel label="Accès" name="land_access_panel"> |
449 | <text type="string" length="1" name="Limit access to this parcel to:"> | 449 | <text type="string" length="1" name="Limit access to this parcel to:"> |
450 | Accès à cette parcelle | 450 | Accès à cette parcelle |
451 | </text> | 451 | </text> |
452 | <check_box label="Autoriser l'accès public" name="public_access" /> | 452 | <check_box label="Autoriser l'accès public" name="public_access" /> |
453 | <text name="Only Allow"> | 453 | <text name="Only Allow"> |
454 | Bloquer l'accès : | 454 | Bloquer l'accès : |
455 | </text> | 455 | </text> |
456 | <check_box | 456 | <check_box |
457 | label="Aux résidents qui n'ont pas fourni leurs informations de paiement à Linden Lab" | 457 | label="Aux résidents qui n'ont pas fourni leurs informations de paiement à Linden Lab" |
458 | name="limit_payment" tool_tip="Aux résidents non identifés" /> | 458 | name="limit_payment" tool_tip="Aux résidents non identifés" /> |
459 | <check_box label="Aux résidents dont l'âge n'a pas été vérifié" | 459 | <check_box label="Aux résidents dont l'âge n'a pas été vérifié" |
460 | name="limit_age_verified" | 460 | name="limit_age_verified" |
461 | tool_tip="Aux résidents dont l'âge n'a pas été vérifié. Pour plus d'infos, consultez la page support.secondlife.com." /> | 461 | tool_tip="Aux résidents dont l'âge n'a pas été vérifié. Pour plus d'infos, consultez la page support.secondlife.com." /> |
462 | <string name="estate_override"> | 462 | <string name="estate_override"> |
463 | Au moins une de ces options est définie au niveau du domaine. | 463 | Au moins une de ces options est définie au niveau du domaine. |
464 | </string> | 464 | </string> |
465 | <check_box label="Autoriser l'accès au groupe : [GROUP]" name="GroupCheck" | 465 | <check_box label="Autoriser l'accès au groupe : [GROUP]" name="GroupCheck" |
466 | tool_tip="Définir le groupe à l'onglet Général." /> | 466 | tool_tip="Définir le groupe à l'onglet Général." /> |
467 | <check_box label="Avatars : (0 dans la liste, 300 max)" name="AccessCheck" /> | 467 | <check_box label="Avatars : (0 dans la liste, 300 max)" name="AccessCheck" /> |
468 | <button label="Ajouter..." label_selected="Ajouter..." name="Add..." /> | 468 | <button label="Ajouter..." label_selected="Ajouter..." name="Add..." /> |
469 | <button label="Retirer" label_selected="Retirer" name="Remove" /> | 469 | <button label="Retirer" label_selected="Retirer" name="Remove" /> |
470 | <check_box label="Vendre des passes à :" name="PassCheck" | 470 | <check_box label="Vendre des passes à :" name="PassCheck" |
471 | tool_tip="Autoriser un accès temporaire à cette parcelle" /> | 471 | tool_tip="Autoriser un accès temporaire à cette parcelle" /> |
472 | <combo_box name="pass_combo"> | 472 | <combo_box name="pass_combo"> |
473 | <combo_item name="Anyone"> | 473 | <combo_item name="Anyone"> |
474 | N'importe qui | 474 | N'importe qui |
475 | </combo_item> | 475 | </combo_item> |
476 | <combo_item name="Group"> | 476 | <combo_item name="Group"> |
477 | Groupe | 477 | Groupe |
478 | </combo_item> | 478 | </combo_item> |
479 | </combo_box> | 479 | </combo_box> |
480 | <spinner label="Prix en $L :" name="PriceSpin" /> | 480 | <spinner label="Prix en $L :" name="PriceSpin" /> |
481 | <spinner label="Heures d'accès :" name="HoursSpin" /> | 481 | <spinner label="Heures d'accès :" name="HoursSpin" /> |
482 | <text label="Toujours autoriser" name="AllowedText"> | 482 | <text label="Toujours autoriser" name="AllowedText"> |
483 | Résidents autorisés | 483 | Résidents autorisés |
484 | </text> | 484 | </text> |
485 | <name_list name="AccessList" tool_tip="([LISTED] listés, [MAX] max)" /> | 485 | <name_list name="AccessList" tool_tip="([LISTED] listés, [MAX] max)" /> |
486 | <button label="Ajouter..." label_selected="Ajouter..." name="add_allowed" /> | 486 | <button label="Ajouter..." label_selected="Ajouter..." name="add_allowed" /> |
487 | <button label="Supprimer" label_selected="Supprimer" name="remove_allowed" /> | 487 | <button label="Supprimer" label_selected="Supprimer" name="remove_allowed" /> |
488 | <text label="Interdire" name="BanCheck"> | 488 | <text label="Interdire" name="BanCheck"> |
489 | Résidents interdits | 489 | Résidents interdits |
490 | </text> | 490 | </text> |
491 | <name_list name="BannedList" tool_tip="([LISTED] listés, [MAX] max)" /> | 491 | <name_list name="BannedList" tool_tip="([LISTED] listés, [MAX] max)" /> |
492 | <button label="Ajouter..." label_selected="Ajouter..." name="add_banned" /> | 492 | <button label="Ajouter..." label_selected="Ajouter..." name="add_banned" /> |
493 | <button label="Supprimer" label_selected="Supprimer" name="remove_banned" /> | 493 | <button label="Supprimer" label_selected="Supprimer" name="remove_banned" /> |
494 | </panel> | 494 | </panel> |
495 | <panel label="Bannir" name="land_ban_panel"> | 495 | <panel label="Bannir" name="land_ban_panel"> |
496 | <check_box label="Bannir les avatars suivants : (0 dans la liste, 300 max)" | 496 | <check_box label="Bannir les avatars suivants : (0 dans la liste, 300 max)" |
497 | name="LandBanCheck" /> | 497 | name="LandBanCheck" /> |
498 | <button label="Ajouter..." label_selected="Ajouter..." name="Add..." /> | 498 | <button label="Ajouter..." label_selected="Ajouter..." name="Add..." /> |
499 | <button label="Retirer" label_selected="Retirer" name="Remove" /> | 499 | <button label="Retirer" label_selected="Retirer" name="Remove" /> |
500 | <text type="string" length="1" name="Deny by Payment Status:"> | 500 | <text type="string" length="1" name="Deny by Payment Status:"> |
501 | Refuser selon les infos de paiement : | 501 | Refuser selon les infos de paiement : |
502 | </text> | 502 | </text> |
503 | <check_box label="Refuser sans infos de paiement enregistrées" name="DenyAnonymousCheck" /> | 503 | <check_box label="Refuser sans infos de paiement enregistrées" name="DenyAnonymousCheck" /> |
504 | <check_box label="Refuser avec infos de paiement enregistrées" name="DenyIdentifiedCheck" /> | 504 | <check_box label="Refuser avec infos de paiement enregistrées" name="DenyIdentifiedCheck" /> |
505 | <check_box label="Refuser avec infos de paiement utilisées" name="DenyTransactedCheck" /> | 505 | <check_box label="Refuser avec infos de paiement utilisées" name="DenyTransactedCheck" /> |
506 | </panel> | 506 | </panel> |
507 | </tab_container> | 507 | </tab_container> |
508 | </floater> | 508 | </floater> |
diff --git a/linden/indra/newview/skins/silver/colors_base.xml b/linden/indra/newview/skins/silver/colors_base.xml index 2cdfb73..b6e77be 100644 --- a/linden/indra/newview/skins/silver/colors_base.xml +++ b/linden/indra/newview/skins/silver/colors_base.xml | |||
@@ -184,4 +184,5 @@ | |||
184 | <ContextSilhouetteColor value="239, 156, 0, 255" /> <!-- For "context" highlighting, i.e. pie menu --> | 184 | <ContextSilhouetteColor value="239, 156, 0, 255" /> <!-- For "context" highlighting, i.e. pie menu --> |
185 | <GroupOverTierColor value="110, 15, 15, 255" /> <!-- Warning text in Group Info window --> | 185 | <GroupOverTierColor value="110, 15, 15, 255" /> <!-- Warning text in Group Info window --> |
186 | <ConsoleBackground value="0, 0, 0, 255" /> <!-- Background for inworld chat --> | 186 | <ConsoleBackground value="0, 0, 0, 255" /> <!-- Background for inworld chat --> |
187 | |||
187 | </settings> | 188 | </settings> |