Merge branch 'develop' into feature/app-language-setting

pull/1708/head
sweetvvck 10 years ago
commit 3d8766a75d
  1. 6
      i18n/en.i18n.json
  2. 2
      packages/rocketchat-integrations/server/api/api.coffee
  3. 3
      packages/rocketchat-theme/assets/stylesheets/base.less
  4. 3
      packages/rocketchat-theme/i18n/en.i18n.json
  5. 1
      packages/rocketchat-theme/server/variables.coffee

@ -423,7 +423,7 @@
"Settings" : "Settings",
"Settings_updated" : "Settings updated",
"Should_be_a_URL_of_an_image" : "Should be a URL of an image.",
"Should_exists_a_user_with_this_username" : "Should exists a user with this username.",
"Should_exists_a_user_with_this_username" : "The user must already exist.",
"Showing_online_users" : "Showing <b>__total_online__</b> of __total__ users",
"Showing_results" : "<p>Showing <b>%s</b> results</p>",
"Silence" : "Silence",
@ -535,8 +535,8 @@
"Yes_clear_all" : "Yes, clear all!",
"Yes_delete_it" : "Yes, delete it!",
"you_are_in_preview_mode_of" : "You are in preview mode of channel #<strong>__room_name__</strong>",
"You_can_change_a_different_avatar_too" : "You can change a different avatar too",
"You_can_use_an_emoji_as_avatar" : "You can use an emoji as avatar",
"You_can_change_a_different_avatar_too" : "You can override the avatar used to post from this integration.",
"You_can_use_an_emoji_as_avatar" : "You can also use an emoji as an avatar.",
"You_have_been_muted" : "You have been muted and cannot speak in this room",
"You_need_confirm_email" : "You need to confirm your email to login!",
"You_need_install_an_extension_to_allow_screen_sharing" : "You need install an extension to allow screen sharing",

@ -1,5 +1,5 @@
Api = new Restivus
enableCors: false
enableCors: true
apiPath: 'hooks/'
auth:
user: ->

@ -2510,6 +2510,9 @@ a.github-fork {
&:nth-child(1) {
margin-top: 0;
}
&:hover {
background-color: @message-hover-background-color;
}
&.new-day {
margin-top: 60px;
}

@ -8,6 +8,7 @@
"theme-color-info-font-color" : "Info Font Color",
"theme-color-input-font-color" : "Input Font Color",
"theme-color-link-font-color" : "Link Font Color",
"theme-color-message-hover-background-color" : "Message Hover BG Color",
"theme-color-primary-background-color" : "Primary Background Color",
"theme-color-primary-font-color" : "Primary Font Color",
"theme-color-secondary-background-color" : "Secondary Background Color",
@ -20,4 +21,4 @@
"theme-color-status-online" : "Online Status Color",
"theme-color-tertiary-background-color" : "Tertiary Background Color",
"theme-color-tertiary-font-color" : "Tertiary Font Color"
}
}

@ -19,3 +19,4 @@ RocketChat.theme.addPublicColor "code-background", "#F8F8F8"
RocketChat.theme.addPublicColor "code-border", "#CCC"
RocketChat.theme.addPublicColor "code-color", "#333"
RocketChat.theme.addPublicColor "blockquote-background", "#CCC"
RocketChat.theme.addPublicColor "message-hover-background-color", "#f9f9f9"

Loading…
Cancel
Save