Browse Source
- Fix a some forgotten translations
- Fix a some forgotten translations
- Move some JS sourcecode to clean JS filespull/16/head
33 changed files with 104 additions and 77 deletions
-
2app/models/postn/Postn.php
-
6app/widgets/AdminMain/AdminMain.php
-
4app/widgets/AdminMain/locales.ini
-
2app/widgets/Api/Api.php
-
1app/widgets/Api/locales.ini
-
2app/widgets/Avatar/_avatar_form.tpl
-
2app/widgets/Blog/Blog.php
-
2app/widgets/Bookmark/_bookmark_list.tpl
-
10app/widgets/Bookmark/_bookmark_url_add.tpl
-
8app/widgets/Bookmark/bookmark.tpl
-
4app/widgets/Bookmark/locales.ini
-
4app/widgets/Chat/_chat_contact.tpl
-
1app/widgets/Chat/locales.ini
-
1app/widgets/Config/Config.php
-
21app/widgets/Config/config.js
-
21app/widgets/Config/config.tpl
-
10app/widgets/ContactAction/ContactAction.php
-
9app/widgets/ContactAction/locales.ini
-
32app/widgets/ContactCard/ContactCard.php
-
8app/widgets/Location/Location.php
-
7app/widgets/Location/locales.ini
-
4app/widgets/Location/location.tpl
-
2app/widgets/Media/Media.php
-
1app/widgets/Media/locales.ini
-
2app/widgets/NodeConfig/NodeConfig.php
-
1app/widgets/NodeConfig/locales.ini
-
2app/widgets/NodeConfig/nodeconfig.tpl
-
2app/widgets/NodeSubscriptions/NodeSubscriptions.php
-
1app/widgets/NodeSubscriptions/locales.ini
-
2app/widgets/Roster/Roster.php
-
2app/widgets/Roster/roster.tpl
-
2app/widgets/WidgetCommon/_submit_form.tpl
-
3locales/locales.ini
@ -1,5 +1,6 @@ |
|||
message.published = 'Message Published' |
|||
message.encrypted = 'Encrypted message' |
|||
message.composing = 'Composing...' |
|||
chat.attention = '%s needs your attention' |
|||
chatroom.connected = 'Connected to the chatroom' |
|||
chatroom.disconnected = 'Disconnected from the chatroom' |
@ -0,0 +1,21 @@ |
|||
movim_add_onload(function() { |
|||
document.querySelector('form #nav_color a[type=button]').onclick = function() { |
|||
document.querySelector('input[name=color]').value = '32434D'; |
|||
} |
|||
|
|||
document.querySelector('form #nav_color input[name=color]').onchange = function() { |
|||
document.querySelector('nav').style.backgroundColor = '#'+this.value; |
|||
} |
|||
|
|||
document.querySelector('form #font_size a[type=button]').onclick = function() { |
|||
console.log('gna'); |
|||
var slide = document.querySelector('input[name=size]'); |
|||
slide.value = 14; |
|||
slide.onchange(); |
|||
} |
|||
|
|||
document.querySelector('form #font_size input[name=size]').onchange = function() { |
|||
document.body.style.fontSize = this.value+'px'; |
|||
document.querySelector('#currentsize').innerHTML = this.value+'px'; |
|||
} |
|||
}); |
@ -1,4 +1,5 @@ |
|||
title = 'Actions' |
|||
chat = 'Chat' |
|||
actions = 'Actions' |
|||
invite = 'Invite this user' |
|||
action.title = 'Actions' |
|||
action.chat = 'Chat' |
|||
action.actions = 'Actions' |
|||
action.invite = 'Invite this user' |
|||
action.remove = 'Remove this contact' |
@ -1,3 +1,4 @@ |
|||
title = 'Location' |
|||
wrong_postition = 'Wrong position' |
|||
updated = 'Location updated' |
|||
location.title = 'Location' |
|||
location.wrong_postition = 'Wrong position' |
|||
location.updated = 'Location updated' |
|||
location.update = 'Update my position' |
@ -1,4 +1,5 @@ |
|||
group.config = 'Configure your group' |
|||
group.config_saved = 'Group configuration saved' |
|||
group.delete = 'Delete this group' |
|||
group.deleted = 'Group deleted' |
|||
group.delete_return = "Return to %s's list of groups" |
@ -1,3 +1,4 @@ |
|||
subscriptions.title = 'Manage your subscriptions' |
|||
subscriptions.info = 'Manage the subscriptions' |
|||
subscriptions.get = 'Get the subscriptions' |
|||
subscriptions.saved = 'Subscriptions saved' |
Write
Preview
Loading…
Cancel
Save
Reference in new issue