diff options
Diffstat (limited to '')
6 files changed, 34 insertions, 4 deletions
diff --git a/linden/indra/newview/llimpanel.cpp b/linden/indra/newview/llimpanel.cpp index 5f6624b..4953a27 100644 --- a/linden/indra/newview/llimpanel.cpp +++ b/linden/indra/newview/llimpanel.cpp | |||
@@ -1921,6 +1921,12 @@ void LLFloaterIMPanel::onCommitCombo(LLUICtrl* caller, void* userdata) | |||
1921 | { | 1921 | { |
1922 | if (caller->getValue().asString() == "history_entry") | 1922 | if (caller->getValue().asString() == "history_entry") |
1923 | { | 1923 | { |
1924 | #ifdef LL_LINUX | ||
1925 | LLSD args; | ||
1926 | args["[FEATURE]"] = LLNotifications::instance().getGlobalString("view history"); | ||
1927 | args["[OS]"] = "Linux"; | ||
1928 | LLNotifications::instance().add("FeatureNotAvailableOnOS", args, LLSD()); | ||
1929 | #else // LL_LINUX | ||
1924 | if (self->getOtherParticipantID().notNull()) | 1930 | if (self->getOtherParticipantID().notNull()) |
1925 | { | 1931 | { |
1926 | std::string fullname = self->getTitle(); | 1932 | std::string fullname = self->getTitle(); |
@@ -1948,6 +1954,7 @@ void LLFloaterIMPanel::onCommitCombo(LLUICtrl* caller, void* userdata) | |||
1948 | //llinfos << file << " found" << llendl; | 1954 | //llinfos << file << " found" << llendl; |
1949 | } | 1955 | } |
1950 | } | 1956 | } |
1957 | #endif // LL_LINUX | ||
1951 | } | 1958 | } |
1952 | // profile | 1959 | // profile |
1953 | else if (self->getIMType() == IM_PANEL_PLAIN) | 1960 | else if (self->getIMType() == IM_PANEL_PLAIN) |
diff --git a/linden/indra/newview/skins/default/xui/de/floater_instant_message.xml b/linden/indra/newview/skins/default/xui/de/floater_instant_message.xml index fb40e39..fe38b2a 100644 --- a/linden/indra/newview/skins/default/xui/de/floater_instant_message.xml +++ b/linden/indra/newview/skins/default/xui/de/floater_instant_message.xml | |||
@@ -36,21 +36,21 @@ | |||
36 | <string name="add_friend_string"> | 36 | <string name="add_friend_string"> |
37 | Freund hinzufügen | 37 | Freund hinzufügen |
38 | </string> | 38 | </string> |
39 | <flyout_button label="Profil..." name="profile_callee_btn"/> | 39 | <flyout_button label="Profil..." name="profile_callee_btn"> |
40 | <flyout_button_item name="history_entry"> | 40 | <flyout_button_item name="history_entry"> |
41 | Verlauf anzeigen | 41 | Verlauf anzeigen |
42 | </flyout_button_item> | 42 | </flyout_button_item> |
43 | <flyout_button_item name="pay_entry"> | 43 | <flyout_button_item name="pay_entry"> |
44 | Bezahlen | 44 | Bezahlen |
45 | </flyout_button_item> | 45 | </flyout_button_item> |
46 | <flyout_button_name="teleport_entry"> | 46 | <flyout_button_item name="teleport_entry"> |
47 | Teleport anbieten | 47 | Teleport anbieten |
48 | </flyout_button_item> | 48 | </flyout_button_item> |
49 | </flyout_button> | 49 | </flyout_button> |
50 | <button label="Anrufen" name="start_call_btn" pad_right="7" width="115"/> | 50 | <button label="Anrufen" name="start_call_btn" pad_right="7" width="115"/> |
51 | <button halign="right" label="Anruf beenden" name="end_call_btn" width="115"/> | 51 | <button halign="right" label="Anruf beenden" name="end_call_btn" width="115"/> |
52 | <text name="inventory_send"> | 52 | <text name="inventory_send"> |
53 | Inventar hier hereinziehen (Drag & Drop), um es zu senden | 53 | Inventar hier hereinziehen (Drag & Drop), um es zu senden |
54 | </text> | 54 | </text> |
55 | <panel left_delta="111" name="speaker_controls"> | 55 | <panel left_delta="111" name="speaker_controls"> |
56 | <button label="" name="mute_btn" tool_tip="Voice stummschalten"/> | 56 | <button label="" name="mute_btn" tool_tip="Voice stummschalten"/> |
diff --git a/linden/indra/newview/skins/default/xui/de/floater_instant_message_group.xml b/linden/indra/newview/skins/default/xui/de/floater_instant_message_group.xml index 04a8b08..848413c 100644 --- a/linden/indra/newview/skins/default/xui/de/floater_instant_message_group.xml +++ b/linden/indra/newview/skins/default/xui/de/floater_instant_message_group.xml | |||
@@ -38,7 +38,7 @@ | |||
38 | </string> | 38 | </string> |
39 | <layout_stack name="panels"> | 39 | <layout_stack name="panels"> |
40 | <layout_panel name="im_contents_panel"> | 40 | <layout_panel name="im_contents_panel"> |
41 | <flyout_button label="Gruppeninfo" name="group_info_btn" width="85"/> | 41 | <flyout_button label="Gruppeninfo" name="group_info_btn" width="85"> |
42 | <flyout_button_item name="history_entry"> | 42 | <flyout_button_item name="history_entry"> |
43 | Verlauf anzeigen | 43 | Verlauf anzeigen |
44 | </flyout_button_item> | 44 | </flyout_button_item> |
diff --git a/linden/indra/newview/skins/default/xui/de/notifications.xml b/linden/indra/newview/skins/default/xui/de/notifications.xml index b2975df..3009515 100644 --- a/linden/indra/newview/skins/default/xui/de/notifications.xml +++ b/linden/indra/newview/skins/default/xui/de/notifications.xml | |||
@@ -3011,4 +3011,8 @@ Sollte das Problem fortbestehen, finden Sie weitere Hilfestellung unter: http:// | |||
3011 | <global name="PermNo"> | 3011 | <global name="PermNo"> |
3012 | Nein | 3012 | Nein |
3013 | </global> | 3013 | </global> |
3014 | |||
3015 | |||
3016 | <global name="view history">Verlauf anzeigen</global> | ||
3017 | |||
3014 | </notifications> | 3018 | </notifications> |
diff --git a/linden/indra/newview/skins/default/xui/en-us/notifications.xml b/linden/indra/newview/skins/default/xui/en-us/notifications.xml index 42f1395..cb8171d 100644 --- a/linden/indra/newview/skins/default/xui/en-us/notifications.xml +++ b/linden/indra/newview/skins/default/xui/en-us/notifications.xml | |||
@@ -7473,6 +7473,21 @@ The Socks5 proxy "[PROXY]" refused the UDP associate request | |||
7473 | Could not connect to Socks5 proxy server "[PROXY]" | 7473 | Could not connect to Socks5 proxy server "[PROXY]" |
7474 | </notification> | 7474 | </notification> |
7475 | 7475 | ||
7476 | |||
7477 | <notification | ||
7478 | icon="alert.tga" | ||
7479 | name="FeatureNotAvailableOnOS" | ||
7480 | type="alert"> | ||
7481 | Sorry, [FEATURE] is not yet available on [OS]. | ||
7482 | </notification> | ||
7483 | |||
7484 | <!-- Non-specific defaults for use with FeatureNotAvailableOnOS --> | ||
7485 | <global name="this feature">this feature</global> | ||
7486 | <global name="this os">this operating system</global> | ||
7487 | |||
7488 | <global name="view history">View History</global> | ||
7489 | |||
7490 | |||
7476 | <!--End Imprudence notifications--> | 7491 | <!--End Imprudence notifications--> |
7477 | <!-- [KITTY VIEWER] --> | 7492 | <!-- [KITTY VIEWER] --> |
7478 | <notification | 7493 | <notification |
diff --git a/linden/indra/newview/skins/default/xui/zh/notifications.xml b/linden/indra/newview/skins/default/xui/zh/notifications.xml index ec675b2..1234e02 100644 --- a/linden/indra/newview/skins/default/xui/zh/notifications.xml +++ b/linden/indra/newview/skins/default/xui/zh/notifications.xml | |||
@@ -3818,6 +3818,10 @@ Socks5 代理服务器 [PROXY] 拒绝了 UDP 关联请求 | |||
3818 | 无法连接到 Socks5 代理服务器 [PROXY] | 3818 | 无法连接到 Socks5 代理服务器 [PROXY] |
3819 | </notification> | 3819 | </notification> |
3820 | 3820 | ||
3821 | |||
3822 | <global name="view history">查看对话历史</global> | ||
3823 | |||
3824 | |||
3821 | <!--End Imprudence notifications--> | 3825 | <!--End Imprudence notifications--> |
3822 | <!-- [KITTY VIEWER] --> | 3826 | <!-- [KITTY VIEWER] --> |
3823 | <notification | 3827 | <notification |