Browse Source

merged with master

gh-pages
Igor Zhukov 11 years ago
parent
commit
5a34a20974
  1. 10
      app.manifest
  2. 2
      css/app.css
  3. 189
      css/desktop.css
  4. 129
      css/mobile.css
  5. BIN
      img/icons/PhotoControls.png
  6. BIN
      img/icons/PhotoControls_1x.png
  7. BIN
      img/icons/PhotoIcons.png
  8. BIN
      img/icons/PhotoIcons_1x.png
  9. 2
      index.html
  10. 40
      js/app.js
  11. 2
      js/background.js
  12. 2
      js/lib/bin_utils.js
  13. 2
      js/lib/crypto_worker.js
  14. 10
      js/locales/de-de.json
  15. 5
      js/locales/en-us.json
  16. 19
      js/locales/es-es.json
  17. 14
      js/locales/it-it.json
  18. 584
      js/locales/nl-nl.json
  19. 584
      js/locales/pt-br.json
  20. 2
      manifest.json
  21. 18
      manifest.webapp
  22. 115
      vendor/angular/i18n/angular-locale_nl-nl.js
  23. 128
      vendor/angular/i18n/angular-locale_pt-br.js
  24. 10
      webogram.appcache

10
app.manifest

@ -1,5 +1,5 @@
CACHE MANIFEST
# Time: Thu Nov 20 2014 01:17:11 GMT+0300 (MSK)
# Time: Thu Nov 27 2014 17:55:38 GMT+0000 (GMT)
CACHE:
@ -47,8 +47,8 @@ img/icons/IconsetW.png
img/icons/IconsetW_1x.png
img/icons/MobileIcons_1x.png
img/icons/MobileIcons_2x.png
img/icons/PhotoControls.png
img/icons/PhotoControls_1x.png
img/icons/PhotoIcons.png
img/icons/PhotoIcons_1x.png
img/placeholders/DialogListAvatarSystem@2x.png
img/placeholders/GroupAvatar1@2x.png
img/placeholders/GroupAvatar2@2x.png
@ -73,6 +73,8 @@ js/locales/de-de.json
js/locales/en-us.json
js/locales/es-es.json
js/locales/it-it.json
js/locales/nl-nl.json
js/locales/pt-br.json
js/locales/ru-ru.json
vendor/closure/long.js
vendor/cryptoJS/crypto.js
@ -83,6 +85,8 @@ vendor/angular/i18n/angular-locale_de-de.js
vendor/angular/i18n/angular-locale_en-us.js
vendor/angular/i18n/angular-locale_es-es.js
vendor/angular/i18n/angular-locale_it-it.js
vendor/angular/i18n/angular-locale_nl-nl.js
vendor/angular/i18n/angular-locale_pt-br.js
vendor/angular/i18n/angular-locale_ru-ru.js

2
css/app.css

File diff suppressed because one or more lines are too long

189
css/desktop.css

@ -977,3 +977,192 @@ div.im_panel_own_photo {
.changelog_modal_window .modal-dialog {
max-width: 506px;
}
.modal_close_wrap {
display: none;
cursor: pointer;
position: fixed;
top: 0;
right: 0;
width: 50%;
height: 100%;
}
.modal_close_wrap_wnext {
width: 104px;
height: 150px;
}
.modal_close {
background: url(../img/icons/PhotoIcons.png) -10px -10px no-repeat;
background-size: 40px 200px;
width: 20px;
height: 21px;
float: right;
margin: 43px 40px 0 0;
opacity: 0.5;
pointer-events: none;
-webkit-transition : .2s;
-moz-transition : .2s;
-o-transition : .2s;
transition : .2s;
}
.modal_close_wrap:hover .modal_close {
opacity: 1;
}
.modal_prev_wrap,
.modal_next_wrap {
display: none;
cursor: pointer;
position: fixed;
top: 0;
left: 0;
bottom: 64px;
width: 104px;
}
.modal_next_wrap {
left: auto;
right: 0;
}
.modal_prev,
.modal_next {
background: url(../img/icons/PhotoIcons.png) -12px -41px no-repeat;
background-size: 40px 200px;
width: 16px;
height: 24px;
opacity: 0.5;
position: absolute;
top: 50%;
pointer-events: none;
margin: 0 0 0 38px;
-webkit-transition : .2s;
-moz-transition : .2s;
-o-transition : .2s;
transition : .2s;
}
.modal_next {
margin: 0 0 0 50px;
background-position: -14px -75px;
}
.modal_prev_wrap:hover,
.modal_next_wrap:hover {
background-color: rgba(0,0,0,0.2);
}
.modal_prev_wrap:hover .modal_prev,
.modal_next_wrap:hover .modal_next {
opacity: 1;
}
.is_1x .modal_close,
.is_1x .modal_prev,
.is_1x .modal_next {
background-image: url(../img/icons/PhotoIcons_1x.png);
}
@media (min-width: 800px) {
.modal_close_wrap,
.modal_next_wrap,
.modal_prev_wrap {
display: block;
}
}
.media_modal_bottom_panel_wrap {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 64px;
background: #313131;
}
.media_modal_bottom_panel {
max-width: 1000px;
margin: 0 auto;
color: rgba(255, 255, 255, 0.6);
}
.media_modal_title_wrap {
max-width: 300px;
margin: 0 auto;
text-align: center;
font-size: 14px;
line-height: 16px;
padding: 24px 0;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.media_modal_info_wrap {
line-height: 16px;
padding: 24px 20px;
}
.media_modal_author {
font-size: 14px;
margin-right: 4px;
}
.media_modal_date,
a.media_modal_date:hover {
font-size: 12px;
color: rgba(255, 255, 255, 0.4);
}
.photo_modal_window,
.video_modal_window,
.document_modal_window {
padding: 0;
}
.media_modal_wrap .modal-body {
padding: 16px;
}
.video_modal_window .modal-body {
padding: 0;
}
.media_modal_bottom_actions {
width: 204px;
}
.media_modal_action_btn {
float: left;
display: block;
width: 68px;
height: 64px;
}
.media_modal_action_btn:hover {
background: rgba(0,0,0,0.2);
}
.media_modal_action_btn i {
background: url(../img/icons/PhotoIcons.png) 0 0 no-repeat;
background-size: 40px 200px;
display: block;
opacity: 0.5;
}
.media_modal_action_btn:hover i {
opacity: 1;
}
.is_1x .media_modal_action_btn i {
background-image: url(../img/icons/PhotoIcons_1x.png);
}
.media_modal_action_btn i.media_modal_action_btn_download {
background-position: -12px -163px;
width: 16px;
height: 20px;
margin: 22px 26px;
}
.media_modal_action_btn i.media_modal_action_btn_forward {
background-position: -9px -109px;
width: 23px;
height: 15px;
margin: 24px 22px;
}
.media_modal_action_btn i.media_modal_action_btn_delete {
background-position: -13px -135px;
width: 14px;
height: 18px;
margin: 23px 27px;
}

129
css/mobile.css

@ -1128,3 +1128,132 @@ a.mobile_modal_action .tg_checkbox_label {
margin-top: 40px;
text-align: center;
}
.media_modal_bottom_panel_wrap {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 46px;
background: rgba(0,0,0,0.6);
z-index: 1030;
}
.media_modal_bottom_panel {
color: #FFF;
}
.media_modal_top_panel_wrap {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 46px;
background: rgba(0,0,0,0.6);
z-index: 1030;
}
.media_modal_top_panel {
color: #FFF;
}
.media_modal_top_actions .navbar-quick-media-back {
color: inherit;
position: relative;
display: block;
padding-left: 16px;
padding: 6px 10px 2px 28px;
font-size: 13px;
height: 46px;
}
.media_modal_top_actions .navbar-quick-media-back:hover {
text-decoration: none;
}
.media_modal_top_actions .navbar-quick-media-back .icon-back {
position: absolute;
margin-left: -18px;
margin-top: 8px;
}
h4.media_modal_title_wrap {
color: inherit;
margin: 8px 0 11px 0;
}
.media_modal_info_wrap {
line-height: 16px;
padding: 7px 20px;
text-align: center;
max-width: 150px;
margin: 0 auto;
}
.media_modal_author {
display: inline-block;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
max-width: 150px;
font-size: 14px;
}
.media_modal_date,
a.media_modal_date:hover {
font-size: 12px;
color: #999;
}
.photo_modal_window,
.video_modal_window,
.document_modal_window {
padding: 0;
background: #000;
}
.photo_modal_window .modal-content,
.video_modal_window .modal-content,
.document_modal_window .modal-content {
background: none;
box-shadow: none;
}
.video_modal_window .modal-body {
padding: 0;
}
.media_modal_action_btn {
float: left;
display: block;
width: 46px;
height: 46px;
}
.tg_page_head .navbar-inverse .navbar-quick-nav > .navbar-quick-right > a.media_modal_action_btn,
.tg_page_head .navbar-inverse .navbar-quick-nav > .navbar-quick-left > a.media_modal_action_btn {
padding: 0;
}
.media_modal_action_btn i {
background: url(../img/icons/PhotoIcons.png) 0 0 no-repeat;
background-size: 40px 200px;
display: block;
opacity: 0.8;
}
.media_modal_action_btn:active i {
opacity: 1;
}
.is_1x .media_modal_action_btn i {
background-image: url(../img/icons/PhotoIcons_1x.png);
}
.media_modal_action_btn i.media_modal_action_btn_download {
background-position: -12px -163px;
width: 16px;
height: 20px;
margin: 14px 15px;
}
.media_modal_action_btn i.media_modal_action_btn_forward {
background-position: -9px -109px;
width: 23px;
height: 15px;
margin: 14px 13px;
}
.media_modal_action_btn i.media_modal_action_btn_delete {
background-position: -13px -135px;
width: 14px;
height: 18px;
margin: 13px 17px;
}

BIN
img/icons/PhotoControls.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

BIN
img/icons/PhotoControls_1x.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

BIN
img/icons/PhotoIcons.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
img/icons/PhotoIcons_1x.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

2
index.html

@ -1 +1 @@
<!doctype html><html lang=en manifest=webogram.appcache ng-csp xmlns:ng=http://angularjs.org id=ng-app><head><meta charset=utf-8><meta name=viewport content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"><title>Telegram Web</title><link rel=stylesheet href=css/app.css><link rel=icon href=favicon.ico type=image/x-icon><link rel=apple-touch-icon href=img/iphone_home120.png><link rel=apple-touch-icon sizes=120x120 href=img/iphone_home120.png><link rel=apple-touch-startup-image media="(device-width: 320px)" href=img/iphone_startup.png><meta name=apple-mobile-web-app-title content="Telegram Web"><meta name=mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black-translucent><meta property=og:title content="Telegram Web"><meta property=og:url content="http://zhukov.github.io/webogram/"><meta property=og:image content=http://zhukov.github.io/webogram/img/logo_share.png><meta property=og:site_name content="Telegram Web"><meta property=og:description content="Welcome to the Web application of Telegram messenger. See https://github.com/zhukov/webogram for more info."></head><body><div class=page_wrap ng-view></div><div id=notify_sound></div><script src=js/app.js></script></body></html>
<!doctype html><html lang=en manifest=webogram.appcache ng-csp xmlns:ng=http://angularjs.org id=ng-app><head><meta charset=utf-8><meta name=viewport content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"><title>Telegram Web</title><link rel=stylesheet href=css/app.css><link rel=icon href=favicon.ico type=image/x-icon><link rel=apple-touch-icon href=img/iphone_home120.png><link rel=apple-touch-icon sizes=120x120 href=img/iphone_home120.png><link rel=apple-touch-startup-image media="(device-width: 320px)" href=img/iphone_startup.png><meta name=apple-mobile-web-app-title content="Telegram Web"><meta name=mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black-translucent><meta name=theme-color content=#497495><meta property=og:title content="Telegram Web"><meta property=og:url content="https://web.telegram.org/webogram/"><meta property=og:image content=https://web.telegram.org/webogram/img/logo_share.png><meta property=og:site_name content="Telegram Web"><meta property=og:description content="Welcome to the Web application of Telegram messenger. See https://github.com/zhukov/webogram for more info."></head><body><div class=page_wrap ng-view></div><div id=notify_sound></div><script src=js/app.js></script></body></html>

40
js/app.js

File diff suppressed because one or more lines are too long

2
js/background.js

@ -1,5 +1,5 @@
/*!
* Webogram v0.3.5 - messaging web application for MTProto
* Webogram v0.3.6 - messaging web application for MTProto
* https://github.com/zhukov/webogram
* Copyright (C) 2014 Igor Zhukov <igor.beatle@gmail.com>
* https://github.com/zhukov/webogram/blob/master/LICENSE

2
js/lib/bin_utils.js

@ -1,5 +1,5 @@
/*!
* Webogram v0.3.5 - messaging web application for MTProto
* Webogram v0.3.6 - messaging web application for MTProto
* https://github.com/zhukov/webogram
* Copyright (C) 2014 Igor Zhukov <igor.beatle@gmail.com>
* https://github.com/zhukov/webogram/blob/master/LICENSE

2
js/lib/crypto_worker.js

@ -1,5 +1,5 @@
/*!
* Webogram v0.3.5 - messaging web application for MTProto
* Webogram v0.3.6 - messaging web application for MTProto
* https://github.com/zhukov/webogram
* Copyright (C) 2014 Igor Zhukov <igor.beatle@gmail.com>
* https://github.com/zhukov/webogram/blob/master/LICENSE

10
js/locales/de-de.json

@ -61,6 +61,8 @@
"user_modal_delete_contact": "Kontakt entfernen",
"user_modal_add_contact": "Zu Kontakten hinzufügen",
"user_modal_share_contact": "Kontakt teilen",
"user_modal_block_user": "Benutzer blockieren",
"user_modal_unblock_user": "Benutzer nicht mehr blockieren",
"user_modal_delete_chat": "Chat löschen",
"user_modal_info": "Info",
"user_modal_phone": "Telefon",
@ -68,6 +70,9 @@
"user_modal_settings": "Einstellungen",
"user_modal_notifications": "Benachrichtigungen",
"user_modal_contact_info": "Kontaktdetails",
"media_modal_photo": "Photo",
"media_modal_photo_index": "Photo {pos} of {count}",
"media_modal_video": "Video",
"media_modal_forward": "Weiterleiten",
"media_modal_download": "Download",
"media_modal_delete": "Löschen",
@ -78,9 +83,12 @@
"unread_messages_split": "Ungelesene Nachrichten",
"user_name_deleted": "GELÖSCHT",
"user_first_name_deleted": "GELÖSCHT",
"user_status_offline": "offline",
"user_status_online": "online",
"user_status_last_seen": "zuletzt gesehen: {0}",
"user_status_recently": "kürzlich zuletzt gesehen",
"user_status_last_week": "zuletzt gesehen innerhalb einer Woche",
"user_status_last_month": "zuletzt gesehen innerhalb eines Monats",
"user_status_long_ago": "vor langer Zeit zuletzt gesehen",
"chat_title_deleted": "GELÖSCHT",
"format_size_progress_mulitple": "{done} von {total} {parts}",
"format_size_progress": "{done} von {total}",

5
js/locales/en-us.json

@ -69,6 +69,8 @@
"user_modal_delete_contact": "Delete contact",
"user_modal_add_contact": "Add to contacts",
"user_modal_share_contact": "Share contact",
"user_modal_block_user": "Block user",
"user_modal_unblock_user": "Unblock user",
"user_modal_delete_chat": "Delete chat",
"user_modal_info": "Info",
"user_modal_phone": "Phone",
@ -77,6 +79,9 @@
"user_modal_notifications": "Notifications",
"user_modal_contact_info": "Contact info",
"media_modal_photo": "Photo",
"media_modal_photo_index": "Photo {pos} of {count}",
"media_modal_video": "Video",
"media_modal_forward": "Forward",
"media_modal_download": "Download",
"media_modal_delete": "Delete",

19
js/locales/es-es.json

@ -61,6 +61,8 @@
"user_modal_delete_contact": "Eliminar contacto",
"user_modal_add_contact": "Añadir a Contactos",
"user_modal_share_contact": "Compartir contacto",
"user_modal_block_user": "Bloquear usuario",
"user_modal_unblock_user": "Desbloquear usuario",
"user_modal_delete_chat": "Eliminar chat",
"user_modal_info": "Información",
"user_modal_phone": "Teléfono",
@ -68,6 +70,9 @@
"user_modal_settings": "Ajustes",
"user_modal_notifications": "Notificaciones",
"user_modal_contact_info": "Información",
"media_modal_photo": "Photo",
"media_modal_photo_index": "Photo {pos} of {count}",
"media_modal_video": "Video",
"media_modal_forward": "Reenviar",
"media_modal_download": "Descargar",
"media_modal_delete": "Eliminar",
@ -78,9 +83,12 @@
"unread_messages_split": "Mensajes sin leer",
"user_name_deleted": "ELIMINADO",
"user_first_name_deleted": "ELIMINADO",
"user_status_offline": "fuera de línea",
"user_status_online": "en línea",
"user_status_last_seen": "última vez {0}",
"user_status_recently": "últ. vez recientemente",
"user_status_last_week": "últ. vez hace unos días",
"user_status_last_month": "últ. vez hace unas semanas",
"user_status_long_ago": "últ. vez hace mucho tiempo",
"chat_title_deleted": "ELIMINADO",
"format_size_progress_mulitple": "{done} de {total} {parts}",
"format_size_progress": "{done} de {total}",
@ -103,7 +111,6 @@
"confirm_modal_update_reload": "Se ha descargado una nueva versión de Telegram Web. ¿Quieres iniciarla?",
"confirm_modal_history_flush": "¿Quieres limpiar el historial? ¡Esto no puede deshacerse!",
"confirm_modal_terminate_sessions": "¿Quieres cerrar sesión en todos tus dispositivos, excepto en este?",
"confirm_modal_mixed_content_fail_http_redirect_md": "Tu navegador {moz-link: no soporta} el contenido mixto, necesario para el funcionamiento de MTProto en https. {issue-link: Saber más}\n\n ¿Quieres usar la versión http en su lugar?",
"confirm_modal_clipboard_file_send": "¿Quieres enviar archivo(s) desde el portapapeles?",
"confirm_modal_clipboard_X_files_send": "{'one': '¿Quieres enviar un archivo desde el portapapeles?', 'other': '¿Quieres enviar {} archivos desde el portapapeles?'}",
"confirm_modal_message_delete": "¿Quieres eliminar el mensaje?",
@ -112,7 +119,10 @@
"confirm_modal_forward_to_peer": "¿Reenviar a {peer}?",
"confirm_modal_send_to_peer": "¿Enviar a {peer}?",
"confirm_modal_share_file_peer": "¿Compartir con {peer}?",
"confirm_modal_apply_lang_with_reload_md": "Se guardaron las preferencias de idioma.\n¿Quieres recargar la aplicación ahora?",
"confirm_modal_apply_lang_with_reload_md": "¿Recargar la aplicación para usar el nuevo idioma?",
"confirm_modal_migrate_to_https_md": "Telegram Web soporta ahora encriptación SSL adicional. ¿Deseas cambiar a HTTPS?\nLa versión HTTP será inhabilitada pronto.",
"confirm_modal_resize_desktop_md": "¿Deseas cambiar a la versión de escritorio?",
"confirm_modal_resize_mobile_md": "¿Deseas cambiar a la versión móvil?",
"confirm_modal_are_u_sure": "¿Confirmar?",
"confirm_modal_logout_submit": "Cerrar sesión",
"confirm_modal_history_flush_submit": "Eliminar chat",
@ -180,6 +190,7 @@
"error_modal_flood_title": "Demasiado rápido",
"error_modal_internal_title": "Error del servidor",
"error_modal_alert": "Alerta",
"error_modal_media_not_supported_title": "Multimedia no soportado",
"error_modal_network_description": "Por favor, revisa tu conexión a internet.",
"error_modal_firstname_invali_description": "El nombre introducido no es válido.",
"error_modal_lastname_invalid_description": "Los apellidos introducidos no son válidos.",
@ -193,6 +204,7 @@
"error_modal_username_invalid_description": "Lo siento, este apodo no está permitido.",
"error_modal_phonebook_required_description": "Telegram necesita acceso a tu agenda para importar contactos.",
"error_modal_username_occupied_description": "Lo siento, este apodo ya está ocupado.",
"error_modal_media_not_supported_description": "Tu navegador no puede reproducir este archivo multimedia. Prueba descargándolo y abriéndolo en un reproductor independiente.",
"error_modal_bad_request_description": "Falta uno de los parámetros o es inválido.",
"error_modal_unauthorized_description": "Esta acción requiere acceso autorizado. Por favor, {login-link: inicia sesión}.",
"error_modal_forbidden_description": "No estás autorizado para esta acción.",
@ -224,6 +236,7 @@
"head_waiting_for_network": "Esperando red",
"head_retry": "Reintentar",
"head_connecting": "Conectando",
"footer_twitter": "Twitter",
"im_new_group": "Nuevo grupo",
"im_new_contact": "Nuevo contacto",
"im_contacts": "Contactos",

14
js/locales/it-it.json

@ -61,6 +61,8 @@
"user_modal_delete_contact": "Elimina contatto",
"user_modal_add_contact": "Aggiungi ai contatti",
"user_modal_share_contact": "Condividi contatto",
"user_modal_block_user": "Blocca utente",
"user_modal_unblock_user": "Sblocca utente",
"user_modal_delete_chat": "Elimina Chat",
"user_modal_info": "Info",
"user_modal_phone": "Telefono",
@ -68,6 +70,9 @@
"user_modal_settings": "Impostazioni",
"user_modal_notifications": "Notifiche",
"user_modal_contact_info": "Informazioni contatto",
"media_modal_photo": "Photo",
"media_modal_photo_index": "Photo {pos} of {count}",
"media_modal_video": "Video",
"media_modal_forward": "Inoltra",
"media_modal_download": "Scarica",
"media_modal_delete": "Elimina",
@ -78,9 +83,12 @@
"unread_messages_split": "Messaggi non letti",
"user_name_deleted": "ELIMINATO",
"user_first_name_deleted": "ELIMINATO",
"user_status_offline": "non in linea",
"user_status_online": "in linea",
"user_status_last_seen": "ultimo accesso {0}",
"user_status_recently": "ultimo accesso di recente",
"user_status_last_week": "ultimo accesso entro una settimana",
"user_status_last_month": "ultimo accesso entro un mese",
"user_status_long_ago": "ultimo accesso molto tempo fa",
"chat_title_deleted": "ELIMINATO",
"format_size_progress_mulitple": "{done} su {total} {parts}",
"format_size_progress": "{done} su {total}",
@ -161,7 +169,7 @@
"conversation_left_group": "ha lasciato il grupp",
"conversation_kicked_user": "ha eliminato {user}",
"conversation_invited_user_message": "utente invitato",
"conversation_kicked_user_message": "utente allontanato",
"conversation_kicked_user_message": "utente espulso",
"conversation_unknown_user": "Qualcuno",
"conversation_unknown_chat": "Chat sconosciuta",
"message_service_created_group": "ha creato il gruppo {group-name}",
@ -170,7 +178,7 @@
"message_service_removed_group_photo": "ha eliminato la foto del grupp",
"message_service_invited_user": "ha invitato {user}",
"message_service_returned_to_group": "è ritornato nel gruppo",
"message_service_kicked_user": "allontanato {user}",
"message_service_kicked_user": "ha espulso {user}",
"message_service_left_group": "gruppo abbandonato",
"message_service_unsupported_action": "Azione non supportata {action}",
"error_modal_warning_title": "Attenzione",

584
js/locales/nl-nl.json

@ -0,0 +1,584 @@
{
"modal_search": "Zoeken",
"modal_cancel": "Annuleren",
"modal_next": "Volgende",
"modal_ok": "OK",
"modal_done": "Gereed",
"group_modal_info": "Groepsinformatie",
"group_modal_pluralize_participants": "{'0': 'Geen deelnemers', 'one': '1 deelnemer', 'other': '{} deelnemers'}",
"group_modal_add_member": "Deelnemer toevoegen",
"group_modal_return": "Terugkeren naar groep",
"group_modal_update_photo": "Foto wijzigen",
"group_modal_update_active": "Bijwerken",
"group_modal_menu_more": "Meer",
"group_modal_menu_delete_photo": "Foto verwijderen",
"group_modal_menu_edit_group": "Groep bewerken",
"group_modal_menu_leave_group": "Groep verlaten",
"group_modal_menu_delete_chat": "Chat verwijderen",
"group_modal_settings": "Instellingen",
"group_modal_notifications": "Meldingen",
"group_modal_members": "Deelnemers",
"group_modal_members_kick": "Verwijderen",
"group_modal_members_unavailable": "Deelnemerslijst is niet beschikbaar.",
"country_select_modal_title": "Land",
"settings_modal_title": "Instellingen",
"settings_modal_menu_more": "Meer",
"settings_modal_delete_photo": "Profielfoto verwijderen",
"settings_modal_set_photo": "Profielfoto instellen",
"settings_modal_photo_updating": "Bijwerken",
"settings_modal_edit_profile": "Profiel bewerken",
"settings_modal_edit_username": "Gebruikersnaam wijzigen",
"settings_modal_empty_username_set": "Gebruikersnaam instellen",
"settings_modal_terminate_sessions": "Beëindig alle sessies",
"settings_modal_settings": "Instellingen",
"settings_modal_notification_alert": "Meldingswaarschuwingen",
"settings_modal_vibrate": "Trillen",
"settings_modal_sounds": "Geluiden",
"settings_modal_language": "Taal",
"settings_modal_notifications": "Desktopmeldingen",
"settings_modal_sound": "Geluid",
"settings_modal_enter_send_description_md": "**Enter** - bericht versturen, **Shift + Enter** - nieuwe regel",
"settings_modal_ctrl_enter_send_description_md": "**Ctrl + Enter** - bericht versturen. **Enter** - nieuwe regel",
"settings_modal_send_on_enter": "Versturen met Enter",
"settings_modal_about": "Over",
"settings_modal_source_code_github": "Broncode op GitHub",
"settings_modal_follow_us_twitter": "Volg ons op Twitter!",
"settings_modal_recent_updates": "Recente updates (ver. {version})",
"page_title_pluralize_notifications": "{'0': 'Geen meldingen', 'one': '1 melding', 'other': '{} meldingen'}",
"profile_edit_modal_title": "Profiel bewerken",
"profile_edit_first_name": "Voornaam",
"profile_edit_last_name": "Achternaam",
"profile_edit_submit": "Opslaan",
"profile_edit_submit_active": "Opslaan",
"username_edit_modal_title": "Gebruikersnaam wijzigen",
"username_edit_placeholder": "Gebruikersnaam",
"username_edit_description_md": "Je kunt een gebruikersnaam kiezen voor **Telegram**. Hiermee kunnen anderen je vinden en contact met je opnemen zonder je telefoonnummer te weten.\n\nJe mag **a-z**, **0-9** en liggend streepje gebruiken. De minimale lengte is **5** tekens",
"username_edit_submit": "Opslaan",
"username_edit_submit_active": "Opslaan",
"user_modal_menu_more": "Meer",
"user_modal_send_message": "Bericht versturen\n",
"user_modal_edit_contact": "Contact bewerken",
"user_modal_delete_contact": "Contact verwijderen",
"user_modal_add_contact": "Toevoegen aan contacten",
"user_modal_share_contact": "Contact delen",
"user_modal_block_user": "Blokkeer gebruiker",
"user_modal_unblock_user": "Deblokkeer gebruiker",
"user_modal_delete_chat": "Chat verwijderen",
"user_modal_info": "Info",
"user_modal_phone": "Telefoon",
"user_modal_username": "Gebruikersnaam",
"user_modal_settings": "Instellingen",
"user_modal_notifications": "Meldingen",
"user_modal_contact_info": "Contactinformatie",
"media_modal_photo": "Photo",
"media_modal_photo_index": "Photo {pos} of {count}",
"media_modal_video": "Video",
"media_modal_forward": "Doorsturen",
"media_modal_download": "Downloaden",
"media_modal_delete": "Verwijder",
"error_browser_no_local_file_system_image_md": "Je browser heeft geen ondersteuning voor de {moz-link: https://developer.mozilla.org/nl/docs/Web/API/LocalFileSystem | LocalFileSystem}-functie, welke nodig is om deze afbeelding weer te geven.\nInstalleer {chrome-link: http://google.com/chrome | Google Chrome} of maak in plaats daarvan gebruik van {telegram-link: https://telegram.org/ | mobile app}.",
"error_image_download_failed": "Download mislukt",
"error_browser_no_local_file_system_video_md": "Je browser heeft geen ondersteuning voor de {moz-link: https://developer.mozilla.org/nl/docs/Web/API/LocalFileSystem | LocalFileSystem}-functie, welke nodig is om deze video af te spelen.\nInstalleer {chrome-link: http://google.com/chrome | Google Chrome} of maak in plaats daarvan gebruik van {telegram-link: https://telegram.org/ | mobile app}.",
"error_video_download_failed": "Video download mislukt",
"unread_messages_split": "Ongelezen berichten",
"user_name_deleted": "VERWIJDERD",
"user_first_name_deleted": "VERWIJDERD",
"user_status_online": "online",
"user_status_last_seen": "laatst gezien {0}",
"user_status_recently": "recent gezien",
"user_status_last_week": "afgelopen week gezien",
"user_status_last_month": "afgelopen maand gezien",
"user_status_long_ago": "lang geleden gezien",
"chat_title_deleted": "VERWIJDERD",
"format_size_progress_mulitple": "{done} van {total} {parts}",
"format_size_progress": "{done} van {total}",
"relative_time_pluralize_minutes_ago": "{'one': '1 minuut geleden', 'other': '{} minuten geleden'}",
"relative_time_pluralize_hours_ago": "{'one': '1 uur geleden', 'other': '{} uur geleden'}",
"relative_time_just_now": "zojuist",
"changelog_modal_header_recent_updates_md": "Recente updates in **Telegram Web**",
"changelog_modal_header_new_updates_md": "**Telegram Web** is bijgewerkt!",
"changelog_modal_title_current_version": "huidige versie",
"group_create_contacts_modal_title": "Nieuwe groep",
"group_create_modal_title": "Groep maken",
"group_create_name": "Groepsnaam",
"group_create_submit": "Groep maken",
"group_create_submit_active": "Maken",
"group_edit_modal_title": "Groep bewerken",
"group_edit_name": "Groepsnaam",
"group_edit_submit": "Opslaan",
"group_edit_submit_active": "Opslaan",
"confirm_modal_logout": "Weet je zeker dat je wilt uitloggen?",
"confirm_modal_update_reload": "Een nieuwe versie van Telegram Web is gedownload. Deze starten?",
"confirm_modal_history_flush": "Weet je het zeker? Dit kan niet ongedaan gemaakt worden!",
"confirm_modal_terminate_sessions": "Alle apparaten behalve het huidige apparaat uitloggen?",
"confirm_modal_clipboard_file_send": "Bestand(en) echt vanaf klembord versturen?",
"confirm_modal_clipboard_X_files_send": "{'one': 'Weet je zeker dat het je het bestand van het klembord wilt versturen?', 'other': 'weet je zeker dat je {} bestanden van het klembord wilt versturen?'}",
"confirm_modal_message_delete": "Bericht echt verwijderen?",
"confirm_modal_contacts_import": "Telegram zal nu je contacten synchroniseren om je vrienden te kunnen vinden.",
"confirm_modal_login_phone_correct": "Is dit telefoonnummer juist?",
"confirm_modal_forward_to_peer": "Doorsturen naar {peer}?",
"confirm_modal_send_to_peer": "Versturen naar {peer}?",
"confirm_modal_share_file_peer": "Delen met {peer}?",
"confirm_modal_apply_lang_with_reload_md": "App herladen om de taal toe te passen?",
"confirm_modal_migrate_to_https_md": "Telegram Web heeft nu ondersteuning voor extra SSL-encryptie. Wil je naar HTTPS overschakelen?\nDe HTTP-versie zal binnenkort worden uitgeschakeld.",
"confirm_modal_resize_desktop_md": "Wil je omschakelen naar de desktopversie?",
"confirm_modal_resize_mobile_md": "Wil je omschakelen naar de mobiele versie?",
"confirm_modal_are_u_sure": "Weet je het zeker?",
"confirm_modal_logout_submit": "Uitloggen",
"confirm_modal_history_flush_submit": "Chat verwijderen",
"confirm_modal_clipboard_files_send_submit": "Stuur",
"confirm_modal_clipboard_file_send_submit": "Stuur",
"confirm_modal_message_delete_submit": "Verwijder",
"confirm_modal_forward_message_submit": "Bericht doorsturen",
"confirm_modal_share_photo_submit": "Foto doorsturen",
"confirm_modal_share_video_submit": "Video doorsturen",
"confirm_modal_share_contact_submit": "Contact delen",
"confirm_modal_share_file_submit": "Bestand delen",
"contacts_modal_edit_list": "Wijzig",
"contacts_modal_edit_cancel": "Annuleren",
"contacts_modal_edit_delete": "Verwijder",
"contacts_modal_pluralize_new_group_members": "{'one': '1 deelnemer', 'other': '{} deelnemers'}",
"contacts_modal_title": "Contacten",
"contacts_modal_new_contact": "Nieuw contact",
"contacts_modal_empty_list": "Je lijst met contacten is leeg. Je kunt een {import-link: contact toevoegen} aan de hand van het telefoonnummer.",
"contact_edit_modal_first_name": "Voornaam",
"contact_edit_modal_last_name": "Achternaam",
"contact_edit_modal_title": "Contact bewerken",
"contact_edit_modal_submit": "Opslaan",
"contact_edit_modal_submit_active": "Opslaan",
"contact_import_modal_title": "Contact toevoegen",
"contact_import_modal_phone": "Telefoonnummer",
"contact_import_modal_phonebook": "Telefoonboek",
"contact_import_modal_submit": "Opslaan",
"contact_import_modal_submit_active": "Importeren",
"conversation_message_deleted": "verwijderd bericht",
"conversation_you": "Jij",
"conversation_media_photo": "Foto",
"conversation_media_video": "Video",
"conversation_media_document": "Bestand",
"conversation_media_audio": "Geluidsbestand",
"conversation_media_location": "Locatie",
"conversation_media_contact": "Contact",
"conversation_media_attachment": "Bijlage",
"conversation_group_created": "heeft de groep gemaakt",
"conversation_group_renamed": "heeft de groepsnaam gewijzigd",
"conversation_group_photo_updated": "heeft de groepsafbeelding gewijzigd",
"conversation_group_photo_removed": "heeft de groepsafbeelding verwijderd",
"conversation_returned_to_group": "Teruggekeerd naar de groep",
"conversation_invited_user": "{user} uitgenodigd",
"conversation_left_group": "heeft de groep verlaten",
"conversation_kicked_user": "{user} verwijderd",
"conversation_invited_user_message": "gebruiker uitgenodigd",
"conversation_kicked_user_message": "gebruiker verwijderd",
"conversation_unknown_user": "Iemand",
"conversation_unknown_chat": "Onbekende chat",
"message_service_created_group": "de groep: {group-name} is aangemaakt",
"message_service_changed_group_name": "de groepsnaam is gewijzigd naar {group-name}",
"message_service_changed_group_photo": "heeft de groepsafbeelding gewijzigd",
"message_service_removed_group_photo": "heeft de groepsafbeelding verwijderd",
"message_service_invited_user": "{user} uitgenodigd",
"message_service_returned_to_group": "Teruggekeerd naar de groep",
"message_service_kicked_user": "{user} verwijderd",
"message_service_left_group": "heeft de groep verlaten",
"message_service_unsupported_action": "Actie is niet ondersteund {action}",
"error_modal_warning_title": "Waarschuwing",
"error_modal_bad_request_title": "Fout",
"error_modal_unauthorized_title": "Geen bevoegdheid",
"error_modal_forbidden_title": "Toegang geweigerd",
"error_modal_not_found_title": "Niet gevonden",
"error_modal_network_title": "Netwerkfout",
"error_modal_flood_title": "Te snel",
"error_modal_internal_title": "Serverfout",
"error_modal_alert": "Waarschuwing",
"error_modal_media_not_supported_title": "Niet ondersteunde media",
"error_modal_network_description": "Controleer je internetverbinding.",
"error_modal_firstname_invali_description": "De voornaam die je hebt ingegeven is ongeldig.",
"error_modal_lastname_invalid_description": "De achternaam die je hebt ingegeven is ongeldig.",
"error_modal_phone_invalid_description": "Het ingevoerde telefoonnummer is ongeldig.",
"error_modal_users_too_much_description": "Je hebt teveel gebruikers geselecteerd.",
"error_modal_photo_dimensions_invalid_description": "Het formaat van de foto is ongeldig, kies een ander bestand.",
"error_modal_video_file_invalid_description": "De extensie van het videobestand is ongeldig of wordt niet ondersteund, kies een ander bestand.",
"error_modal_photo_too_small_description": "De gekozen foto is te klein.",
"error_modal_no_phone_user_description_md": "Sorry, er is geen **Telegram**-account gevonden voor het opgegeven nummer.",
"error_modal_no_phone_users_description_md": "Sorry, er zijn geen **Telegram**-accounts gevonden voor de opgegeven nummers.",
"error_modal_username_invalid_description": "Sorry, deze gebruikersnaam is niet toegestaan.",
"error_modal_phonebook_required_description": "Telegram heeft toegang nodig tot je telefoonboek om contacten te importeren.",
"error_modal_username_occupied_description": "Sorry, deze gebruikersnaam is al bezet.",
"error_modal_media_not_supported_description": "Je browser kan dit mediabestand niet afspelen. Probeer het bestand te downloaden en af te spelen in een vrijstaande afspeelapplicatie.",
"error_modal_bad_request_description": "Éen van de parameters mist of is ongeldig.",
"error_modal_unauthorized_description": "Deze actie vereist authenticatie. {login-link: Inloggen}",
"error_modal_forbidden_description": "Je bent niet bevoegd deze bewerking uit te voeren.",
"error_modal_not_found_description": "De pagina werd niet gevonden.",
"error_modal_flood_description": "Je voert teveel acties tegelijkertijd uit. Probeer het later nog eens.",
"error_modal_internal_description": "Interne serverfout opgetreden. Probeer het later opnieuw.",
"error_modal_tech_details": "Technische details hier",
"error_modal_multiple_open_tabs": "Sluit alsjeblieft alle andere Telegram Web tabbladen in je browser.",
"head_new_group": "Nieuwe groep",
"head_new_contact": "Nieuw contact",
"head_contacts": "Contacten",
"head_contacts_title": "Contacten",
"im_found_title": "Wereldwijd zoeken",
"head_settings": "Instellingen",
"head_log_out": "Uitloggen",
"head_edit_messages": "Berichten bewerken",
"head_media_photos": "Foto's",
"head_media_video": "Video's",
"head_media_documents": "Bestanden",
"head_media_audio": "Spraakberichten",
"head_about": "Over",
"head_clear_all": "Alles wissen",
"head_edit": "Wijzig",
"head_typing": "aan het typen",
"head_pluralize_participants": "{'0': 'Geen deelnemers', 'one': '1 deelnemer', 'other': '{} deelnemers'}",
"head_one_typing": "{name1} is aan het typen{dots}",
"head_two_typing": "{name1}, {name2}{dots}",
"head_many_typing": "{name1}+{names}{dots}",
"head_waiting_for_network": "Wachten op netwerk",
"head_retry": "Opnieuw proberen",
"head_connecting": "Verbinden",
"footer_twitter": "Twitter",
"im_new_group": "Nieuwe groep",
"im_new_contact": "Nieuw contact",
"im_contacts": "Contacten",
"im_contacts_title": "Contacten",
"im_settings": "Instellingen",
"im_conversations": "Chats",
"im_messages": "Berichten",
"im_no_contacts": "Nog geen contacten",
"im_get_started_long": "Begin door een contact toe te voegen om mee te chatten.",
"im_add_contact": "Contact toevoegen",
"im_import_phonebook": "Telefoonboek importeren",
"im_get_started": "Aan de slag",
"im_welcome_text": "Welkom bij Telegram Web. Je kunt je profielfoto en naam altijd wijzigen via instellingen.",
"im_open_settings": "Instellingen openen",
"im_select_a_chat": "Kies een chat om met chatten te beginnen",
"im_loading_history": "Geschiedenis laden",
"im_info": "Info",
"im_edit": "Wijzig",
"im_media": "Media",
"im_media_photos": "Foto's",
"im_media_video": "Video's",
"im_media_documents": "Bestanden",
"im_media_audio": "Spraakberichten",
"im_pluralize_participants": "{'0': 'Geen deelnemers', 'one': '1 deelnemer', 'other': '{} deelnemers'}",
"im_show_recent_messages": "Recente berichten laten zien",
"im_show_all_messages": "Laat alle berichten zien",
"im_no_messages": "Nog geen berichten",
"im_one_typing": "{name1} is aan het typen{dots}",
"im_two_typing": "{name1} en {name2} zijn aan het typen{dots}",
"im_many_typing": "{name1}, {name2} en {count} meer zijn aan het typen{dots}",
"im_delete_chat": "Chat verwijderen",
"im_clear_history": "Geschiedenis wissen",
"im_delete": "Verwijder {count}",
"im_forward": "Doorsturen {count}",
"im_photos_drop_text": "Sleep foto's hierheen om te versturen.",
"im_message_field_placeholder": "Bericht schrijven",
"im_media_attach_title": "Media versturen",
"im_attach_file_title": "Bestand versturen",
"im_emoji_btn_title": "Emoji invoegen",
"im_submit_message": "Stuur",
"login_sign_in": "Inloggen",
"login_enter_number_description": "Kies je land en voer je volledige telefoonnummer in.",
"login_incorrect_number": "Onjuist telefoonnummer",
"login_tel_input_placeholder": "Voer je telefoonnummer in",
"login_generating_key": "Sleutels genereren",
"login_generating_keys_info": "Sleutels worden eenmalig gegenereerd. Dit kan een paar minuten duren op langzamere apparaten, even geduld.",
"login_edit_number": "Telefoonnummer bewerken",
"login_enter_code_label_md": "Voer de code in die je zojuist hebt ontvangen in je vorige **Telegram** app",
"login_code_not_received": "Geen code ontvangen?",
"login_enter_sms_code_label_md": "We hebben je een sms-bericht gestuurd met de activatiecode.\nVoer deze hieronder in.",
"login_call_remaining": "Telegram belt je over {remaining}",
"login_calling": "Telegram belt je",
"login_number_dialed": "Telegram heeft je nummer gebeld",
"login_incorrect_sms_code": "Ongeldige activatiecode",
"login_number_input_placeholder": "Code invoeren",
"login_checking_code": "Code controleren",
"login_your_info": "Je gegevens",
"login_fulll_name_label": "Voer je volledige naam in om een Telegram account aan te maken.",
"login_incorrect_first_name": "Ongeldige voornaam",
"login_first_name": "Voornaam",
"login_incorrect_last_name": "Ongeldige achternaam",
"login_last_name": "Achternaam",
"login_signing_up": "Bezig met aanmelden",
"login_sign_up": "Aanmelden",
"login_controller_unknown_country": "Onbekend",
"message_forwarded_message": "Doorgestuurd bericht",
"message_forwarded_message_mobile": "Doorgestuurd van {from}, {date}",
"message_attach_audio_message": "Spraakbericht",
"message_attach_audio_play": "Afspelen",
"message_attach_document_open": "Openen",
"message_attach_document_download": "Downloaden",
"message_attach_document_save": "Bestand opslaan",
"message_attach_video_video": "Video",
"message_attach_video_download": "Downloaden",
"message_attach_video_save": "Bestand opslaan",
"message_attach_video_play": "Video afspelen",
"conversation_select_modal_title": "Chat selecteren",
"conversation_select_modal_contacts": "Contacten",
"phonebook_modal_title": "Telefoonboek",
"phonebook_modal_deselect_all": "Alles deselecteren",
"phonebook_modal_select_all": "Alles selecteren",
"phonebook_modal_empty": "Je telefoonboek is leeg.",
"phonebook_modal_submit_active": "Importeren",
"phonebook_modal_submit": "Contacten importeren",
"welcome_header_md": "**Telegram** Web",
"welcome_text_1_md": "De officiële Telegram **webversie**",
"welcome_start_messaging": "Begin met chatten",
"welcome_fast_messaging_header": "Snel chatten",
"welcome_fast_messaging_text": "Verstuur berichten met uitgebreide emoji-ondersteuning direct vanaf je desktop of laptop",
"welcome_easy_sharing_header": "Makkelijk bestanden delen",
"welcome_easy_sharing_text": "Deel bestanden van een willekeurig type door middel van slepen en neerzetten of het bijlage-icoon.",
"welcome_powerful_tools_header": "Krachtige hulpmiddelen",
"welcome_powerful_tools_text_md": "Blader door gedeelde media en bestanden\nen stel aangepaste meldingen in,",
"country_select_modal_country_ab": "Abchazië",
"country_select_modal_country_af": "Afghanistan",
"country_select_modal_country_ax": "Åland",
"country_select_modal_country_al": "Albanië",
"country_select_modal_country_dz": "Algerije",
"country_select_modal_country_as": "Amerikaans-Samoa",
"country_select_modal_country_ad": "Andorra",
"country_select_modal_country_ao": "Angola",
"country_select_modal_country_ai": "Anguilla",
"country_select_modal_country_ag": "Antigua en Barbuda",
"country_select_modal_country_ar": "Argentinië",
"country_select_modal_country_am": "Armenië",
"country_select_modal_country_aw": "Aruba",
"country_select_modal_country_sh_ac": "Ascension",
"country_select_modal_country_au": "Australië",
"country_select_modal_country_au_et": "Australische Externe Territoria",
"country_select_modal_country_at": "Oostenrijk",
"country_select_modal_country_az": "Azerbeidzjan",
"country_select_modal_country_bs": "Bahama's",
"country_select_modal_country_bh": "Bahrein",
"country_select_modal_country_bd": "Bangladesh",
"country_select_modal_country_bb": "Barbados",
"country_select_modal_country_ag_bar": "Barbuda",
"country_select_modal_country_by": "Wit-Rusland",
"country_select_modal_country_be": "België",
"country_select_modal_country_bz": "Belize",
"country_select_modal_country_bj": "Benin",
"country_select_modal_country_bm": "Bermuda",
"country_select_modal_country_bt": "Bhutan",
"country_select_modal_country_bo": "Bolivia",
"country_select_modal_country_bq": "Caribisch Nederland",
"country_select_modal_country_ba": "Bosnië en Herzegovina",
"country_select_modal_country_bw": "Botswana",
"country_select_modal_country_br": "Brazilië",
"country_select_modal_country_io": "Brits Indische Oceaanterritorium",
"country_select_modal_country_vg": "Britse Maagdeneilanden",
"country_select_modal_country_bn": "Brunei",
"country_select_modal_country_bg": "Bulgarije",
"country_select_modal_country_bf": "Burkina Faso",
"country_select_modal_country_mm": "Myanmar (Birma)",
"country_select_modal_country_bi": "Burundi",
"country_select_modal_country_kh": "Cambodja",
"country_select_modal_country_cm": "Kameroen",
"country_select_modal_country_ca": "Canada",
"country_select_modal_country_cv": "Kaapverdië",
"country_select_modal_country_ky": "Kaaimaneilanden",
"country_select_modal_country_cf": "Centraal-Afrikaanse Republiek",
"country_select_modal_country_td": "Tsjaad",
"country_select_modal_country_cl": "Chili",
"country_select_modal_country_cn": "China",
"country_select_modal_country_cx": "Christmaseiland",
"country_select_modal_country_cc": "Cocoseilanden",
"country_select_modal_country_co": "Colombia",
"country_select_modal_country_km": "Comoren",
"country_select_modal_country_cg": "Congo-Brazzaville",
"country_select_modal_country_cd": "Congo-Kinshasa",
"country_select_modal_country_ck": "Cookeilanden",
"country_select_modal_country_cr": "Costa Rica",
"country_select_modal_country_ci": "Ivoorkust",
"country_select_modal_country_hr": "Kroatië",
"country_select_modal_country_cu": "Cuba",
"country_select_modal_country_cw": "Curaçao",
"country_select_modal_country_cy": "Cyprus",
"country_select_modal_country_cz": "Tsjechië",
"country_select_modal_country_dk": "Denemarken",
"country_select_modal_country_dg": "Diego Garcia",
"country_select_modal_country_dj": "Djibouti",
"country_select_modal_country_dm": "Dominica",
"country_select_modal_country_do": "Dominicaanse Republiek",
"country_select_modal_country_tl": "Timor-Leste",
"country_select_modal_country_ec": "Ecuador",
"country_select_modal_country_eg": "Egypte",
"country_select_modal_country_sv": "El Salvador",
"country_select_modal_country_gq": "Equatoriaal-Guinea",
"country_select_modal_country_er": "Eritrea",
"country_select_modal_country_ee": "Estland",
"country_select_modal_country_et": "Ethiopië",
"country_select_modal_country_fk": "Falklandeilanden",
"country_select_modal_country_fo": "Faeröer",
"country_select_modal_country_fj": "Fiji",
"country_select_modal_country_fi": "Finland",
"country_select_modal_country_fr": "Frankrijk",
"country_select_modal_country_gf": "Frans-Guyana",
"country_select_modal_country_pf": "Frans-Polynesië",
"country_select_modal_country_ga": "Gabon",
"country_select_modal_country_gm": "Gambia",
"country_select_modal_country_ge": "Georgië",
"country_select_modal_country_de": "Duitsland",
"country_select_modal_country_gh": "Ghana",
"country_select_modal_country_gi": "Gibraltar",
"country_select_modal_country_gr": "Griekenland",
"country_select_modal_country_gl": "Groenland",
"country_select_modal_country_gd": "Grenada",
"country_select_modal_country_gp": "Guadeloupe",
"country_select_modal_country_gu": "Guam",
"country_select_modal_country_gt": "Guatemala",
"country_select_modal_country_gg": "Guernsey",
"country_select_modal_country_gn": "Guinee",
"country_select_modal_country_gw": "Guinee-Bissau",
"country_select_modal_country_gy": "Guyana",
"country_select_modal_country_ht": "Haïti",
"country_select_modal_country_hn": "Honduras",
"country_select_modal_country_hk": "Hongkong SAR China",
"country_select_modal_country_hu": "Hongarije",
"country_select_modal_country_is": "IJsland",
"country_select_modal_country_in": "India",
"country_select_modal_country_id": "Indonesië",
"country_select_modal_country_ir": "Iran",
"country_select_modal_country_iq": "Irak",
"country_select_modal_country_ie": "Ierland",
"country_select_modal_country_il": "Israël",
"country_select_modal_country_it": "Italië",
"country_select_modal_country_jm": "Jamaica",
"country_select_modal_country_sj": "Spitsbergen en Jan Mayen",
"country_select_modal_country_jp": "Japan",
"country_select_modal_country_je": "Jersey",
"country_select_modal_country_jo": "Jordanië",
"country_select_modal_country_kz": "Kazachstan",
"country_select_modal_country_ke": "Kenia",
"country_select_modal_country_ki": "Kiribati",
"country_select_modal_country_kp": "Noord-Korea",
"country_select_modal_country_kr": "Zuid-Korea",
"country_select_modal_country_kw": "Koeweit",
"country_select_modal_country_kg": "Kirgizië",
"country_select_modal_country_la": "Laos",
"country_select_modal_country_lv": "Letland",
"country_select_modal_country_lb": "Libanon",
"country_select_modal_country_ls": "Lesotho",
"country_select_modal_country_lr": "Liberia",
"country_select_modal_country_ly": "Libië",
"country_select_modal_country_li": "Liechtenstein",
"country_select_modal_country_lt": "Litouwen",
"country_select_modal_country_lu": "Luxemburg",
"country_select_modal_country_mo": "Macau SAR China",
"country_select_modal_country_mk": "Macedonië",
"country_select_modal_country_mg": "Madagaskar",
"country_select_modal_country_mw": "Malawi",
"country_select_modal_country_my": "Maleisië",
"country_select_modal_country_mv": "Maldiven",
"country_select_modal_country_ml": "Mali",
"country_select_modal_country_mt": "Malta",
"country_select_modal_country_mh": "Marshalleilanden",
"country_select_modal_country_mq": "Martinique",
"country_select_modal_country_mr": "Mauritanië",
"country_select_modal_country_mu": "Mauritius",
"country_select_modal_country_yt": "Mayotte",
"country_select_modal_country_mx": "Mexico",
"country_select_modal_country_fm": "Micronesië",
"country_select_modal_country_md": "Moldavië",
"country_select_modal_country_mc": "Monaco",
"country_select_modal_country_mn": "Mongolië",
"country_select_modal_country_me": "Montenegro",
"country_select_modal_country_ms": "Montserrat",
"country_select_modal_country_ma": "Marokko",
"country_select_modal_country_mz": "Mozambique",
"country_select_modal_country_na": "Namibië",
"country_select_modal_country_nr": "Nauru",
"country_select_modal_country_np": "Nepal",
"country_select_modal_country_nl": "Nederland",
"country_select_modal_country_nc": "Nieuw-Caledonië",
"country_select_modal_country_nz": "Nieuw-Zeeland",
"country_select_modal_country_ni": "Nicaragua",
"country_select_modal_country_ne": "Niger",
"country_select_modal_country_ng": "Nigeria",
"country_select_modal_country_nu": "Niue",
"country_select_modal_country_nf": "Norfolk",
"country_select_modal_country_mp": "Noordelijke Marianen",
"country_select_modal_country_no": "Noorwegen",
"country_select_modal_country_om": "Oman",
"country_select_modal_country_pk": "Pakistan",
"country_select_modal_country_pw": "Palau",
"country_select_modal_country_ps": "Palestijnse Territoria",
"country_select_modal_country_pa": "Panama",
"country_select_modal_country_pg": "Papoea-Nieuw-Guinea",
"country_select_modal_country_py": "Paraguay",
"country_select_modal_country_pe": "Peru",
"country_select_modal_country_ph": "Filipijnen",
"country_select_modal_country_pn": "Pitcairneilanden",
"country_select_modal_country_pl": "Polen",
"country_select_modal_country_pt": "Portugal",
"country_select_modal_country_pr": "Puerto Rico",
"country_select_modal_country_qa": "Qatar",
"country_select_modal_country_re": "Réunion",
"country_select_modal_country_ro": "Roemenië",
"country_select_modal_country_ru": "Rusland",
"country_select_modal_country_rw": "Rwanda",
"country_select_modal_country_bl": "Saint-Barthélemy",
"country_select_modal_country_sh": "Sint-Helena",
"country_select_modal_country_kn": "Saint Kitts en Nevis",
"country_select_modal_country_lc": "Saint Lucia",
"country_select_modal_country_mf": "Sint-Maarten (Frankrijk)",
"country_select_modal_country_pm": "Saint-Pierre en Miquelon",
"country_select_modal_country_vc": "Saint Vincent en de Grenadines",
"country_select_modal_country_ws": "Samoa",
"country_select_modal_country_sm": "San Marino",
"country_select_modal_country_st": "Sao Tomé en Principe",
"country_select_modal_country_sa": "Saoedi-Arabië",
"country_select_modal_country_sn": "Senegal",
"country_select_modal_country_rs": "Servië",
"country_select_modal_country_sc": "Seychellen",
"country_select_modal_country_sl": "Sierra Leone",
"country_select_modal_country_sg": "Singapore",
"country_select_modal_country_nl_bq3": "Sint Eustatius",
"country_select_modal_country_sx": "Sint Maarten",
"country_select_modal_country_sk": "Slowakije",
"country_select_modal_country_si": "Slovenië",
"country_select_modal_country_sb": "Salomonseilanden",
"country_select_modal_country_so": "Somalië",
"country_select_modal_country_za": "Zuid-Afrika",
"country_select_modal_country_gs": "Zuid-Georgia en de Zuidelijke Sandwicheilanden",
"country_select_modal_country_ge_so": "Zuid-Ossetië",
"country_select_modal_country_ss": "Zuid-Soedan",
"country_select_modal_country_es": "Spanje",
"country_select_modal_country_lk": "Sri Lanka",
"country_select_modal_country_sd": "Soedan",
"country_select_modal_country_sr": "Suriname",
"country_select_modal_country_sj_no": "Spitsbergen",
"country_select_modal_country_sz": "Swaziland",
"country_select_modal_country_se": "Zweden",
"country_select_modal_country_ch": "Zwitserland",
"country_select_modal_country_sy": "Syrië",
"country_select_modal_country_tw": "Taiwan",
"country_select_modal_country_tj": "Tadzjikistan",
"country_select_modal_country_tz": "Tanzania",
"country_select_modal_country_th": "Thailand",
"country_select_modal_country_tg": "Togo",
"country_select_modal_country_tk": "Tokelau",
"country_select_modal_country_to": "Tonga",
"country_select_modal_country_tt": "Trinidad en Tobago",
"country_select_modal_country_tn": "Tunesië",
"country_select_modal_country_tr": "Turkije",
"country_select_modal_country_tm": "Turkmenistan",
"country_select_modal_country_tc": "Turks- en Caicoseilanden",
"country_select_modal_country_tv": "Tuvalu",
"country_select_modal_country_ug": "Oeganda",
"country_select_modal_country_ua": "Oekraïne",
"country_select_modal_country_ae": "Verenigde Arabische Emiraten",
"country_select_modal_country_uk": "Verenigd Koninkrijk",
"country_select_modal_country_us": "Verenigde Staten",
"country_select_modal_country_uy": "Uruguay",
"country_select_modal_country_vi": "Amerikaanse Maagdeneilanden",
"country_select_modal_country_uz": "Oezbekistan",
"country_select_modal_country_vu": "Vanuatu",
"country_select_modal_country_ve": "Venezuela",
"country_select_modal_country_va": "Vaticaanstad",
"country_select_modal_country_vn": "Vietnam",
"country_select_modal_country_wf": "Wallis en Futuna",
"country_select_modal_country_ye": "Jemen",
"country_select_modal_country_zm": "Zambia",
"country_select_modal_country_tz_uk": "Zanzibar",
"country_select_modal_country_zw": "Zimbabwe"
}

584
js/locales/pt-br.json

@ -0,0 +1,584 @@
{
"modal_search": "Pesquisar",
"modal_cancel": "Cancelar",
"modal_next": "Próxima",
"modal_ok": "OK",
"modal_done": "Pronto",
"group_modal_info": "Informação do Grupo",
"group_modal_pluralize_participants": "{'0': 'Nenhum membro', 'one': '1 membro', 'other': '{} membros'}",
"group_modal_add_member": "Adicionar membro",
"group_modal_return": "Retornar ao grupo",
"group_modal_update_photo": "Atualizar foto",
"group_modal_update_active": "Atualizando",
"group_modal_menu_more": "Mais",
"group_modal_menu_delete_photo": "Excluir foto",
"group_modal_menu_edit_group": "Editar grupo",
"group_modal_menu_leave_group": "Sair do grupo",
"group_modal_menu_delete_chat": "Apagar chat",
"group_modal_settings": "Configurações",
"group_modal_notifications": "Notificações",
"group_modal_members": "Membros",
"group_modal_members_kick": "Remover",
"group_modal_members_unavailable": "Lista de membros do grupo está indisponível.",
"country_select_modal_title": "País",
"settings_modal_title": "Configurações",
"settings_modal_menu_more": "Mais",
"settings_modal_delete_photo": "Excluir foto de perfil",
"settings_modal_set_photo": "Definir foto de perfil",
"settings_modal_photo_updating": "Atualizando",
"settings_modal_edit_profile": "Editar perfil",
"settings_modal_edit_username": "Alterar o nome de usuário",
"settings_modal_empty_username_set": "Definir nome de usuário",
"settings_modal_terminate_sessions": "Encerrar todas as sessões",
"settings_modal_settings": "Configurações",
"settings_modal_notification_alert": "Alertas de notificação",
"settings_modal_vibrate": "Vibrar",
"settings_modal_sounds": "Sons",
"settings_modal_language": "Linguagem",
"settings_modal_notifications": "Notificações na área de trabalho",
"settings_modal_sound": "Som",
"settings_modal_enter_send_description_md": "**Enter** - enviar mensagem, **Shift + Enter** - nova linha",
"settings_modal_ctrl_enter_send_description_md": "**Ctrl + Enter** - enviar mensagem, **Enter** - nova linha",
"settings_modal_send_on_enter": "Enviar pelo Enter",
"settings_modal_about": "Sobre",
"settings_modal_source_code_github": "Código-fonte no GitHub",
"settings_modal_follow_us_twitter": "Siga-nos no Twitter!",
"settings_modal_recent_updates": "Últimas atualizações (ver. {version})",
"page_title_pluralize_notifications": "{'0': 'Sem notificações', 'one': '1 notificação', 'other': '{} notificações'}",
"profile_edit_modal_title": "Editar perfil",
"profile_edit_first_name": "Nome",
"profile_edit_last_name": "Sobrenome",
"profile_edit_submit": "Salvar",
"profile_edit_submit_active": "Salvando...",
"username_edit_modal_title": "Alterar o nome de usuário",
"username_edit_placeholder": "Nome de usuário",
"username_edit_description_md": "Você pode escolher um nome de usuário no **Telegram**. Assim, outras pessoas poderão te encontrar pelo nome de usuário e entrar em contato sem precisar saber seu telefone.\n\nVocê pode usar a-z, 0-9 e underline. O tamanho mínimo é 5 caracteres.",
"username_edit_submit": "Salvar",
"username_edit_submit_active": "Salvando...",
"user_modal_menu_more": "Mais",
"user_modal_send_message": "Enviar mensagem",
"user_modal_edit_contact": "Editar contato",
"user_modal_delete_contact": "Apagar contato",
"user_modal_add_contact": "Adicionar aos contatos",
"user_modal_share_contact": "Compartilhar contato",
"user_modal_block_user": "Bloquear usuário",
"user_modal_unblock_user": "Desbloquear usuário",
"user_modal_delete_chat": "Apagar conversa",
"user_modal_info": "Informação",
"user_modal_phone": "Telefone",
"user_modal_username": "Nome de usuário",
"user_modal_settings": "Configurações",
"user_modal_notifications": "Notificações",
"user_modal_contact_info": "Informação do contato",
"media_modal_photo": "Photo",
"media_modal_photo_index": "Photo {pos} of {count}",
"media_modal_video": "Video",
"media_modal_forward": "Encaminhar",
"media_modal_download": "Baixar",
"media_modal_delete": "Apagar",
"error_browser_no_local_file_system_image_md": "Seu navegador não suporta {moz-link: https://developer.mozilla.org/en-US/docs/Web/API/LocalFileSystem | LocalFileSystem} as característica necessária para abrir esta imagem.\nInstale o {chrome-link: http://google.com/chrome | Google Chrome} ou use o {telegram-link: https://telegram.org/ | aplicativo mobile} para isso.",
"error_image_download_failed": "Falha ao baixar",
"error_browser_no_local_file_system_video_md": "Seu navegador não suporta {moz-link: https://developer.mozilla.org/en-US/docs/Web/API/LocalFileSystem | LocalFileSystem} as característica necessária para reproduzir este vídeo.\nInstale o {chrome-link: http://google.com/chrome | Google Chrome} ou use o {telegram-link: https://telegram.org/ | aplicativo mobile} para isso.",
"error_video_download_failed": "Falha ao baixar vídeo",
"unread_messages_split": "Mensagens não lidas",
"user_name_deleted": "APAGADO",
"user_first_name_deleted": "APAGADO",
"user_status_online": "online",
"user_status_last_seen": "visto {0}",
"user_status_recently": "visto recentemente",
"user_status_last_week": "visto na última semana",
"user_status_last_month": "visto no último mês",
"user_status_long_ago": "visto há muito tempo",
"chat_title_deleted": "APAGADO",
"format_size_progress_mulitple": "{done} de {total} {parts}",
"format_size_progress": "{done} de {total}",
"relative_time_pluralize_minutes_ago": "{'one': '1 minuto atrás', 'other': '{} minutos atrás'}",
"relative_time_pluralize_hours_ago": "{'one': '1 hora atrás', 'other': '{} horas atrás'}",
"relative_time_just_now": "agora mesmo",
"changelog_modal_header_recent_updates_md": "Atualizações recentes no **Telegram Web**",
"changelog_modal_header_new_updates_md": "**Telegram Web** foi atualizado!",
"changelog_modal_title_current_version": "versão atual",
"group_create_contacts_modal_title": "Novo Grupo",
"group_create_modal_title": "Criar Grupo",
"group_create_name": "Nome do grupo",
"group_create_submit": "Criar Grupo",
"group_create_submit_active": "Criando...",
"group_edit_modal_title": "Editar Grupo",
"group_edit_name": "Nome do grupo",
"group_edit_submit": "Salvar",
"group_edit_submit_active": "Salvando...",
"confirm_modal_logout": "Você tem certeza que deseja sair?",
"confirm_modal_update_reload": "Uma nova versão do Telegram Web foi baixada. Atualizar?",
"confirm_modal_history_flush": "Você tem certeza? Isso não pode ser desfeito!",
"confirm_modal_terminate_sessions": "Você tem certeza que deseja sair de todos os dispositivos exceto o atual?",
"confirm_modal_clipboard_file_send": "Você tem certeza que deseja enviar arquivo(s) para a área de transferência?",
"confirm_modal_clipboard_X_files_send": "{'one': 'Você tem certeza que deseja enviar o arquivo para a área de transferência?', 'other': 'Você tem certeza que deseja enviar {} arquivos para a área de transferência?'}",
"confirm_modal_message_delete": "Você tem certeza que deseja apagar esta mensagem?",
"confirm_modal_contacts_import": "Telegram sincronizará os seus contatos para encontrar seus amigos.",
"confirm_modal_login_phone_correct": "O telefone está correto?",
"confirm_modal_forward_to_peer": "Encaminhar para {peer}?",
"confirm_modal_send_to_peer": "Enviar para {peer}?",
"confirm_modal_share_file_peer": "Compartilhar com {peer}?",
"confirm_modal_apply_lang_with_reload_md": "Recarregar o aplicativo para aplicar a linguagem?",
"confirm_modal_migrate_to_https_md": "Telegram Web agora suporta adicionais encriptações SSL. Você deseja alterar para HTTPS?%s\nA versão HTTP será desabilitada em breve.",
"confirm_modal_resize_desktop_md": "Você deseja alterar para a versão desktop?",
"confirm_modal_resize_mobile_md": "Você deseja alterar para a versão mobile?",
"confirm_modal_are_u_sure": "Você tem certeza?",
"confirm_modal_logout_submit": "Sair",
"confirm_modal_history_flush_submit": "Apagar chat",
"confirm_modal_clipboard_files_send_submit": "Enviar",
"confirm_modal_clipboard_file_send_submit": "Enviar",
"confirm_modal_message_delete_submit": "Apagar",
"confirm_modal_forward_message_submit": "Encaminhar mensagem",
"confirm_modal_share_photo_submit": "Encaminhar foto",
"confirm_modal_share_video_submit": "Encaminhar vídeo",
"confirm_modal_share_contact_submit": "Enviar contato",
"confirm_modal_share_file_submit": "Compartilhar arquivo",
"contacts_modal_edit_list": "Editar",
"contacts_modal_edit_cancel": "Cancelar",
"contacts_modal_edit_delete": "Apagar",
"contacts_modal_pluralize_new_group_members": "{'one': '1 participante', 'other': '{} participantes'}",
"contacts_modal_title": "Contatos",
"contacts_modal_new_contact": "Novo Contato",
"contacts_modal_empty_list": "Sua lista de contatos está vazia. Você pode {import-link: adicionar novo contato} pelo número de telefone.",
"contact_edit_modal_first_name": "Nome",
"contact_edit_modal_last_name": "Sobrenom",
"contact_edit_modal_title": "Editar Contato",
"contact_edit_modal_submit": "Salvar",
"contact_edit_modal_submit_active": "Salvando...",
"contact_import_modal_title": "Adicionar Novo Contato",
"contact_import_modal_phone": "Número de telefone",
"contact_import_modal_phonebook": "Agenda telefônica",
"contact_import_modal_submit": "Salvar",
"contact_import_modal_submit_active": "Importando...",
"conversation_message_deleted": "apagar mensagem",
"conversation_you": "Você",
"conversation_media_photo": "Foto",
"conversation_media_video": "Vídeo",
"conversation_media_document": "Document",
"conversation_media_audio": "Audio",
"conversation_media_location": "Localização",
"conversation_media_contact": "Contato",
"conversation_media_attachment": "Anexo",
"conversation_group_created": "criou o grupo",
"conversation_group_renamed": "alterou o nome do grupo",
"conversation_group_photo_updated": "alterou a foto do grupo",
"conversation_group_photo_removed": "removeu a foto do grupo",
"conversation_returned_to_group": "retornou ao grupo",
"conversation_invited_user": "convidou {user}",
"conversation_left_group": "saiu do grupo",
"conversation_kicked_user": "removeu {user}",
"conversation_invited_user_message": "usuário convidado",
"conversation_kicked_user_message": "removeu o usuário",
"conversation_unknown_user": "Alguém",
"conversation_unknown_chat": "Chat desconhecido",
"message_service_created_group": "criou o grupo {group-name}",
"message_service_changed_group_name": "alterou o nome do grupo para {group-name}",
"message_service_changed_group_photo": "alterou a foto do grupo",
"message_service_removed_group_photo": "removeu a foto do grupo",
"message_service_invited_user": "convidou {user}",
"message_service_returned_to_group": "retornou ao grupo",
"message_service_kicked_user": "removeu {user}",
"message_service_left_group": "saiu do grupo",
"message_service_unsupported_action": "Ação não suportada {action}",
"error_modal_warning_title": "Advertência",
"error_modal_bad_request_title": "Erro",
"error_modal_unauthorized_title": "Não autorizado",
"error_modal_forbidden_title": "Acesso negado",
"error_modal_not_found_title": "Não encontrado",
"error_modal_network_title": "Erro de internet",
"error_modal_flood_title": "Rápido demais",
"error_modal_internal_title": "Erro no servidor",
"error_modal_alert": "Alerta",
"error_modal_media_not_supported_title": "Mídia não suportada",
"error_modal_network_description": "Por favor, verifique sua conexão com a internet.",
"error_modal_firstname_invali_description": "O nome inserido é inválido.",
"error_modal_lastname_invalid_description": "O sobrenome inserido é inválido.",
"error_modal_phone_invalid_description": "O número de telefone inserido é inválido.",
"error_modal_users_too_much_description": "Você selecionou muitos usuários.",
"error_modal_photo_dimensions_invalid_description": "As dimensões da foto são inválidas, escolha outro arquivo.",
"error_modal_video_file_invalid_description": "A extensão de vídeo é inválida ou não suportada, selecione outro arquivo.",
"error_modal_photo_too_small_description": "A foto é muito pequena.",
"error_modal_no_phone_user_description_md": "Desculpe, não existe nenhuma conta do **Telegram** com o número informado.",
"error_modal_no_phone_users_description_md": "Desculpe, não existem contas do **Telegram** com os números informados.",
"error_modal_username_invalid_description": "Desculpe, nome de usuário não permitido.",
"error_modal_phonebook_required_description": "Telegram precisa acessar a sua agenda telefônica para importar contatos.",
"error_modal_username_occupied_description": "Desculpe, nome de usuário em uso.",
"error_modal_media_not_supported_description": "Seu navegador não pode visualizar este tipo de mídia. Tente baixar o arquivo e abrí-lo em outro reprodutor. ",
"error_modal_bad_request_description": "Um dos parâmetros em falta ou inválido.",
"error_modal_unauthorized_description": "Essa ação requer autorização. Por favor {login-link: entre}.",
"error_modal_forbidden_description": "Você não tem permissão para esta ação.",
"error_modal_not_found_description": "Página não encontrada.",
"error_modal_flood_description": "Você está fazendo muitas ações. Tente novamente mais tarde.",
"error_modal_internal_description": "Erro interno do servidor. Por favor, tente novamente mais tarde.",
"error_modal_tech_details": "Detalhes técnicos aqui",
"error_modal_multiple_open_tabs": "Por favor, fechar outras abas de aplicativos do Telegram.",
"head_new_group": "Novo Grupo",
"head_new_contact": "Novo Contato",
"head_contacts": "Contatos",
"head_contacts_title": "Contatos",
"im_found_title": "Pesquisa global",
"head_settings": "Configurações",
"head_log_out": "Sair",
"head_edit_messages": "Editar mensagens",
"head_media_photos": "Fotos",
"head_media_video": "Vídeos",
"head_media_documents": "Documentos",
"head_media_audio": "Mensagens de voz",
"head_about": "Sobre",
"head_clear_all": "Limpar Tudo",
"head_edit": "Editar",
"head_typing": "escrevendo",
"head_pluralize_participants": "{'0': 'Nenhum membro', 'one': '1 membro', 'other': '{} membros'}",
"head_one_typing": "{name1} está escrevendo{dots}",
"head_two_typing": "{name1}, {name2}{dots}",
"head_many_typing": "{name1}+{names}{dots}",
"head_waiting_for_network": "Aguardando conexão",
"head_retry": "Tentar novamente",
"head_connecting": "Conectando",
"footer_twitter": "Twitter",
"im_new_group": "Novo Grupo",
"im_new_contact": "Novo Contato",
"im_contacts": "Contatos",
"im_contacts_title": "Contatos",
"im_settings": "Configurações",
"im_conversations": "Conversas",
"im_messages": "Mensagens",
"im_no_contacts": "Nenhum contato ainda",
"im_get_started_long": "Comece adicionando um contato para conversar",
"im_add_contact": "Adicionar Contato",
"im_import_phonebook": "Importar agenda telefônica",
"im_get_started": "Começar",
"im_welcome_text": "Bem-vindo ao Telegram Web. Você sempre pode inserir sua foto de perfil e alterar seu nome em Configurações",
"im_open_settings": "Abrir Configurações",
"im_select_a_chat": "Selecione um chat para começar a conversar",
"im_loading_history": "Carregando histórico",
"im_info": "Informações",
"im_edit": "Editar",
"im_media": "Mídia",
"im_media_photos": "Fotos",
"im_media_video": "Vídeos",
"im_media_documents": "Documentos",
"im_media_audio": "Mensagens de voz",
"im_pluralize_participants": "{'0': 'Nenhum membro', 'one': '1 membro', 'other': '{} membros'}",
"im_show_recent_messages": "Mostrar mensagens recentes",
"im_show_all_messages": "Mostrar todas as mensagens",
"im_no_messages": "Nenhuma mensagem aqui ainda...",
"im_one_typing": "{name1} está escrevendo{dots}",
"im_two_typing": "{name1} e {name2} estão escrevendo{dots}",
"im_many_typing": "{name1}, {name2} e{count} mais estão digitando{dots}",
"im_delete_chat": "Apagar Conversa",
"im_clear_history": "Limpar Histórico",
"im_delete": "Apagar {count}",
"im_forward": "Encaminhar {count}",
"im_photos_drop_text": "Solte as fotos aqui para enviar",
"im_message_field_placeholder": "Escreva uma mensagem...",
"im_media_attach_title": "Enviar mídia",
"im_attach_file_title": "Enviar arquivo",
"im_emoji_btn_title": "Inserir emoticon",
"im_submit_message": "Enviar",
"login_sign_in": "Entrar",
"login_enter_number_description": "Escolha seu país e insira seu número de telefone com DDD.",
"login_incorrect_number": "Número de telefone incorreto.",
"login_tel_input_placeholder": "Insira seu número de telefone",
"login_generating_key": "Gerando chaves",
"login_generating_keys_info": "Chaves só são geradas uma vez. Isso pode levar mais tempo em dispositivos lentos, seja paciente.",
"login_edit_number": "Editar número de telefone",
"login_enter_code_label_md": "Insira o código que você recebeu em seu outro aplicativo do **Telegram**",
"login_code_not_received": "Não recebeu o código?",
"login_enter_sms_code_label_md": "Nós enviaremos à você um código via SMS.\nPor favor, insira-o abaixo.",
"login_call_remaining": "Telegram te ligará em {remaining}",
"login_calling": "Telegram está te ligando",
"login_number_dialed": "Telegram ligou para o seu número",
"login_incorrect_sms_code": "Código de SMS incorreto.",
"login_number_input_placeholder": "Insira seu código",
"login_checking_code": "Verificando código",
"login_your_info": "Suas informações",
"login_fulll_name_label": "Insira o seu nome inteiro para configurar sua conta do Telegram.",
"login_incorrect_first_name": "Nome incorreto.",
"login_first_name": "Nome",
"login_incorrect_last_name": "Sobrenome incorreto",
"login_last_name": "Sobrenome",
"login_signing_up": "Inscrevendo-se",
"login_sign_up": "Inscrever-se",
"login_controller_unknown_country": "Desconhecido",
"message_forwarded_message": "Encaminhar mensagem",
"message_forwarded_message_mobile": "Encaminhado de {from}, {date}",
"message_attach_audio_message": "Mensagem de voz",
"message_attach_audio_play": "Tocar",
"message_attach_document_open": "Abrir",
"message_attach_document_download": "Baixar",
"message_attach_document_save": "Salvar Arquivo",
"message_attach_video_video": "Vídeo",
"message_attach_video_download": "Baixar",
"message_attach_video_save": "Salvar Arquivo",
"message_attach_video_play": "Reproduzir vídeo",
"conversation_select_modal_title": "Selecionar conversa",
"conversation_select_modal_contacts": "Contatos",
"phonebook_modal_title": "Agenda telefônica",
"phonebook_modal_deselect_all": "Cancelar seleção",
"phonebook_modal_select_all": "Selecionar tudo",
"phonebook_modal_empty": "Sua agenda telefônica está vazia.",
"phonebook_modal_submit_active": "Importando",
"phonebook_modal_submit": "Importar contatos",
"welcome_header_md": "**Telegram** Web",
"welcome_text_1_md": "O **cliente web** oficial do Telegram.",
"welcome_start_messaging": "Comece a Conversar",
"welcome_fast_messaging_header": "Conversas rápidas",
"welcome_fast_messaging_text": "Envie mensagem com um rico suporte emoji direto de seu computador ou notebook",
"welcome_easy_sharing_header": "Fácil compartilhamento de arquivos",
"welcome_easy_sharing_text": "Compartilhe arquivos de qualquer tipo usando arrastar-e-soltar ou o ícone de anexo.",
"welcome_powerful_tools_header": "Ferramentas úteis",
"welcome_powerful_tools_text_md": "Procure mídias e arquivos compartilhados por tipo\ne defina notificações customizadas",
"country_select_modal_country_ab": "Abkhazia",
"country_select_modal_country_af": "Afghanistan",
"country_select_modal_country_ax": "Åland Islands",
"country_select_modal_country_al": "Albania",
"country_select_modal_country_dz": "Algeria",
"country_select_modal_country_as": "American Samoa",
"country_select_modal_country_ad": "Andorra",
"country_select_modal_country_ao": "Angola",
"country_select_modal_country_ai": "Anguilla",
"country_select_modal_country_ag": "Antigua & Barbuda",
"country_select_modal_country_ar": "Argentina",
"country_select_modal_country_am": "Armenia",
"country_select_modal_country_aw": "Aruba",
"country_select_modal_country_sh_ac": "Ascension",
"country_select_modal_country_au": "Australia",
"country_select_modal_country_au_et": "Australian External Territories",
"country_select_modal_country_at": "Austria",
"country_select_modal_country_az": "Azerbaijan",
"country_select_modal_country_bs": "Bahamas",
"country_select_modal_country_bh": "Bahrain",
"country_select_modal_country_bd": "Bangladesh",
"country_select_modal_country_bb": "Barbados",
"country_select_modal_country_ag_bar": "Barbuda",
"country_select_modal_country_by": "Belarus",
"country_select_modal_country_be": "Belgium",
"country_select_modal_country_bz": "Belize",
"country_select_modal_country_bj": "Benin",
"country_select_modal_country_bm": "Bermuda",
"country_select_modal_country_bt": "Bhutan",
"country_select_modal_country_bo": "Bolivia",
"country_select_modal_country_bq": "Caribbean Netherlands",
"country_select_modal_country_ba": "Bosnia & Herzegovina",
"country_select_modal_country_bw": "Botswana",
"country_select_modal_country_br": "Brasil",
"country_select_modal_country_io": "British Indian Ocean Territory",
"country_select_modal_country_vg": "British Virgin Islands",
"country_select_modal_country_bn": "Brunei",
"country_select_modal_country_bg": "Bulgaria",
"country_select_modal_country_bf": "Burkina Faso",
"country_select_modal_country_mm": "Myanmar (Burma)",
"country_select_modal_country_bi": "Burundi",
"country_select_modal_country_kh": "Cambodia",
"country_select_modal_country_cm": "Cameroon",
"country_select_modal_country_ca": "Canada",
"country_select_modal_country_cv": "Cape Verde",
"country_select_modal_country_ky": "Cayman Islands",
"country_select_modal_country_cf": "Central African Republic",
"country_select_modal_country_td": "Chad",
"country_select_modal_country_cl": "Chile",
"country_select_modal_country_cn": "China",
"country_select_modal_country_cx": "Christmas Island",
"country_select_modal_country_cc": "Cocos (Keeling) Islands",
"country_select_modal_country_co": "Colombia",
"country_select_modal_country_km": "Comoros",
"country_select_modal_country_cg": "Congo - Brazzaville",
"country_select_modal_country_cd": "Congo - Kinshasa",
"country_select_modal_country_ck": "Cook Islands",
"country_select_modal_country_cr": "Costa Rica",
"country_select_modal_country_ci": "Côte d’Ivoire",
"country_select_modal_country_hr": "Croatia",
"country_select_modal_country_cu": "Cuba",
"country_select_modal_country_cw": "Curaçao",
"country_select_modal_country_cy": "Cyprus",
"country_select_modal_country_cz": "Czech Republic",
"country_select_modal_country_dk": "Denmark",
"country_select_modal_country_dg": "Diego Garcia",
"country_select_modal_country_dj": "Djibouti",
"country_select_modal_country_dm": "Dominica",
"country_select_modal_country_do": "Dominican Republic",
"country_select_modal_country_tl": "Timor-Leste",
"country_select_modal_country_ec": "Ecuador",
"country_select_modal_country_eg": "Egypt",
"country_select_modal_country_sv": "El Salvador",
"country_select_modal_country_gq": "Equatorial Guinea",
"country_select_modal_country_er": "Eritrea",
"country_select_modal_country_ee": "Estonia",
"country_select_modal_country_et": "Ethiopia",
"country_select_modal_country_fk": "Falkland Islands",
"country_select_modal_country_fo": "Faroe Islands",
"country_select_modal_country_fj": "Fiji",
"country_select_modal_country_fi": "Finland",
"country_select_modal_country_fr": "France",
"country_select_modal_country_gf": "French Guiana",
"country_select_modal_country_pf": "French Polynesia",
"country_select_modal_country_ga": "Gabon",
"country_select_modal_country_gm": "Gambia",
"country_select_modal_country_ge": "Georgia",
"country_select_modal_country_de": "Germany",
"country_select_modal_country_gh": "Ghana",
"country_select_modal_country_gi": "Gibraltar",
"country_select_modal_country_gr": "Greece",
"country_select_modal_country_gl": "Greenland",
"country_select_modal_country_gd": "Grenada",
"country_select_modal_country_gp": "Guadeloupe",
"country_select_modal_country_gu": "Guam",
"country_select_modal_country_gt": "Guatemala",
"country_select_modal_country_gg": "Guernsey",
"country_select_modal_country_gn": "Guinea",
"country_select_modal_country_gw": "Guinea-Bissau",
"country_select_modal_country_gy": "Guyana",
"country_select_modal_country_ht": "Haiti",
"country_select_modal_country_hn": "Honduras",
"country_select_modal_country_hk": "Hong Kong SAR China",
"country_select_modal_country_hu": "Hungary",
"country_select_modal_country_is": "Iceland",
"country_select_modal_country_in": "India",
"country_select_modal_country_id": "Indonesia",
"country_select_modal_country_ir": "Iran",
"country_select_modal_country_iq": "Iraq",
"country_select_modal_country_ie": "Ireland",
"country_select_modal_country_il": "Israel",
"country_select_modal_country_it": "Italy",
"country_select_modal_country_jm": "Jamaica",
"country_select_modal_country_sj": "Svalbard & Jan Mayen",
"country_select_modal_country_jp": "Japan",
"country_select_modal_country_je": "Jersey",
"country_select_modal_country_jo": "Jordan",
"country_select_modal_country_kz": "Kazakhstan",
"country_select_modal_country_ke": "Kenya",
"country_select_modal_country_ki": "Kiribati",
"country_select_modal_country_kp": "North Korea",
"country_select_modal_country_kr": "South Korea",
"country_select_modal_country_kw": "Kuwait",
"country_select_modal_country_kg": "Kyrgyzstan",
"country_select_modal_country_la": "Laos",
"country_select_modal_country_lv": "Latvia",
"country_select_modal_country_lb": "Lebanon",
"country_select_modal_country_ls": "Lesotho",
"country_select_modal_country_lr": "Liberia",
"country_select_modal_country_ly": "Libya",
"country_select_modal_country_li": "Liechtenstein",
"country_select_modal_country_lt": "Lithuania",
"country_select_modal_country_lu": "Luxembourg",
"country_select_modal_country_mo": "Macau SAR China",
"country_select_modal_country_mk": "Macedonia",
"country_select_modal_country_mg": "Madagascar",
"country_select_modal_country_mw": "Malawi",
"country_select_modal_country_my": "Malaysia",
"country_select_modal_country_mv": "Maldives",
"country_select_modal_country_ml": "Mali",
"country_select_modal_country_mt": "Malta",
"country_select_modal_country_mh": "Marshall Islands",
"country_select_modal_country_mq": "Martinique",
"country_select_modal_country_mr": "Mauritania",
"country_select_modal_country_mu": "Mauritius",
"country_select_modal_country_yt": "Mayotte",
"country_select_modal_country_mx": "Mexico",
"country_select_modal_country_fm": "Micronesia",
"country_select_modal_country_md": "Moldova",
"country_select_modal_country_mc": "Monaco",
"country_select_modal_country_mn": "Mongolia",
"country_select_modal_country_me": "Montenegro",
"country_select_modal_country_ms": "Montserrat",
"country_select_modal_country_ma": "Morocco",
"country_select_modal_country_mz": "Mozambique",
"country_select_modal_country_na": "Namibia",
"country_select_modal_country_nr": "Nauru",
"country_select_modal_country_np": "Nepal",
"country_select_modal_country_nl": "Netherlands",
"country_select_modal_country_nc": "New Caledonia",
"country_select_modal_country_nz": "New Zealand",
"country_select_modal_country_ni": "Nicaragua",
"country_select_modal_country_ne": "Niger",
"country_select_modal_country_ng": "Nigeria",
"country_select_modal_country_nu": "Niue",
"country_select_modal_country_nf": "Norfolk Island",
"country_select_modal_country_mp": "Northern Mariana Islands",
"country_select_modal_country_no": "Norway",
"country_select_modal_country_om": "Oman",
"country_select_modal_country_pk": "Pakistan",
"country_select_modal_country_pw": "Palau",
"country_select_modal_country_ps": "Palestinian Territories",
"country_select_modal_country_pa": "Panama",
"country_select_modal_country_pg": "Papua New Guinea",
"country_select_modal_country_py": "Paraguay",
"country_select_modal_country_pe": "Peru",
"country_select_modal_country_ph": "Philippines",
"country_select_modal_country_pn": "Pitcairn Islands",
"country_select_modal_country_pl": "Poland",
"country_select_modal_country_pt": "Portugal",
"country_select_modal_country_pr": "Puerto Rico",
"country_select_modal_country_qa": "Qatar",
"country_select_modal_country_re": "Réunion",
"country_select_modal_country_ro": "Romania",
"country_select_modal_country_ru": "Russia",
"country_select_modal_country_rw": "Rwanda",
"country_select_modal_country_bl": "St. Barthélemy",
"country_select_modal_country_sh": "St. Helena",
"country_select_modal_country_kn": "St. Kitts & Nevis",
"country_select_modal_country_lc": "St. Lucia",
"country_select_modal_country_mf": "St. Martin (France)",
"country_select_modal_country_pm": "St. Pierre and Miquelon",
"country_select_modal_country_vc": "St. Vincent and the Grenadines",
"country_select_modal_country_ws": "Samoa",
"country_select_modal_country_sm": "San Marino",
"country_select_modal_country_st": "São Tomé & Príncipe",
"country_select_modal_country_sa": "Saudi Arabia",
"country_select_modal_country_sn": "Senegal",
"country_select_modal_country_rs": "Serbia",
"country_select_modal_country_sc": "Seychelles",
"country_select_modal_country_sl": "Sierra Leone",
"country_select_modal_country_sg": "Singapore",
"country_select_modal_country_nl_bq3": "Sint Eustatius",
"country_select_modal_country_sx": "Sint Maarten",
"country_select_modal_country_sk": "Slovakia",
"country_select_modal_country_si": "Slovenia",
"country_select_modal_country_sb": "Solomon Islands",
"country_select_modal_country_so": "Somalia",
"country_select_modal_country_za": "South Africa",
"country_select_modal_country_gs": "South Georgia & South Sandwich Islands",
"country_select_modal_country_ge_so": "South Ossetia",
"country_select_modal_country_ss": "South Sudan",
"country_select_modal_country_es": "Spain",
"country_select_modal_country_lk": "Sri Lanka",
"country_select_modal_country_sd": "Sudan",
"country_select_modal_country_sr": "Suriname",
"country_select_modal_country_sj_no": "Svalbard",
"country_select_modal_country_sz": "Swaziland",
"country_select_modal_country_se": "Sweden",
"country_select_modal_country_ch": "Switzerland",
"country_select_modal_country_sy": "Syria",
"country_select_modal_country_tw": "Taiwan",
"country_select_modal_country_tj": "Tajikistan",
"country_select_modal_country_tz": "Tanzania",
"country_select_modal_country_th": "Thailand",
"country_select_modal_country_tg": "Togo",
"country_select_modal_country_tk": "Tokelau",
"country_select_modal_country_to": "Tonga",
"country_select_modal_country_tt": "Trinidad & Tobago",
"country_select_modal_country_tn": "Tunisia",
"country_select_modal_country_tr": "Turkey",
"country_select_modal_country_tm": "Turkmenistan",
"country_select_modal_country_tc": "Turks & Caicos Islands",
"country_select_modal_country_tv": "Tuvalu",
"country_select_modal_country_ug": "Uganda",
"country_select_modal_country_ua": "Ukraine",
"country_select_modal_country_ae": "United Arab Emirates",
"country_select_modal_country_uk": "United Kingdom",
"country_select_modal_country_us": "United States",
"country_select_modal_country_uy": "Uruguay",
"country_select_modal_country_vi": "U.S. Virgin Islands",
"country_select_modal_country_uz": "Uzbekistan",
"country_select_modal_country_vu": "Vanuatu",
"country_select_modal_country_ve": "Venezuela",
"country_select_modal_country_va": "Vatican City",
"country_select_modal_country_vn": "Vietnam",
"country_select_modal_country_wf": "Wallis & Futuna",
"country_select_modal_country_ye": "Yemen",
"country_select_modal_country_zm": "Zambia",
"country_select_modal_country_tz_uk": "Zanzibar",
"country_select_modal_country_zw": "Zimbabwe"
}

2
manifest.json

@ -1,7 +1,7 @@
{
"name": "Telegram",
"description": "Telegram Web App.\nMore info & source code here: https://github.com/zhukov/webogram",
"version": "0.3.5",
"version": "0.3.6",
"short_name": "Webogram",
"manifest_version": 2,
"app": {

18
manifest.webapp

@ -1,7 +1,7 @@
{
"name": "Telegram",
"description": "Telegram Web App.\nMore info & source code here: https://github.com/zhukov/webogram",
"version": "0.3.5",
"version": "0.3.6",
"type": "privileged",
"launch_path": "/index.html",
"developer": {
@ -28,6 +28,22 @@
},
"push": {
"description": "Required for notifications"
},
"device-storage:music": {
"description": "Required for voice notes download",
"access": "createonly"
},
"device-storage:pictures": {
"description": "Required for photos download",
"access": "createonly"
},
"device-storage:sdcard": {
"description": "Required for documents download",
"access": "createonly"
},
"device-storage:videos": {
"description": "Required for videos download",
"access": "createonly"
}
},
"activities": {

115
vendor/angular/i18n/angular-locale_nl-nl.js vendored

@ -0,0 +1,115 @@
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
function getDecimals(n) {
n = n + '';
var i = n.indexOf('.');
return (i == -1) ? 0 : n.length - i - 1;
}
function getVF(n, opt_precision) {
var v = opt_precision;
if (undefined === v) {
v = Math.min(getDecimals(n), 3);
}
var base = Math.pow(10, v);
var f = ((n * base) | 0) % base;
return {v: v, f: f};
}
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"AM",
"PM"
],
"DAY": [
"zondag",
"maandag",
"dinsdag",
"woensdag",
"donderdag",
"vrijdag",
"zaterdag"
],
"MONTH": [
"januari",
"februari",
"maart",
"april",
"mei",
"juni",
"juli",
"augustus",
"september",
"oktober",
"november",
"december"
],
"SHORTDAY": [
"zo",
"ma",
"di",
"wo",
"do",
"vr",
"za"
],
"SHORTMONTH": [
"jan.",
"feb.",
"mrt.",
"apr.",
"mei",
"jun.",
"jul.",
"aug.",
"sep.",
"okt.",
"nov.",
"dec."
],
"fullDate": "EEEE d MMMM y",
"longDate": "d MMMM y",
"medium": "d MMM y HH:mm:ss",
"mediumDate": "d MMM y",
"mediumTime": "HH:mm:ss",
"short": "dd-MM-yy HH:mm",
"shortDate": "dd-MM-yy",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "\u20ac",
"DECIMAL_SEP": ",",
"GROUP_SEP": ".",
"PATTERNS": [
{
"gSize": 3,
"lgSize": 3,
"maxFrac": 3,
"minFrac": 0,
"minInt": 1,
"negPre": "-",
"negSuf": "",
"posPre": "",
"posSuf": ""
},
{
"gSize": 3,
"lgSize": 3,
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
"negPre": "\u00a4\u00a0",
"negSuf": "-",
"posPre": "\u00a4\u00a0",
"posSuf": ""
}
]
},
"id": "nl-nl",
"pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
});
}]);

128
vendor/angular/i18n/angular-locale_pt-br.js vendored

@ -0,0 +1,128 @@
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
function getDecimals(n) {
n = n + '';
var i = n.indexOf('.');
return (i == -1) ? 0 : n.length - i - 1;
}
function getVF(n, opt_precision) {
var v = opt_precision;
if (undefined === v) {
v = Math.min(getDecimals(n), 3);
}
var base = Math.pow(10, v);
var f = ((n * base) | 0) % base;
return {v: v, f: f};
}
function getWT(v, f) {
if (f === 0) {
return {w: 0, t: 0};
}
while ((f % 10) === 0) {
f /= 10;
v--;
}
return {w: v, t: f};
}
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"AM",
"PM"
],
"DAY": [
"domingo",
"segunda-feira",
"ter\u00e7a-feira",
"quarta-feira",
"quinta-feira",
"sexta-feira",
"s\u00e1bado"
],
"MONTH": [
"janeiro",
"fevereiro",
"mar\u00e7o",
"abril",
"maio",
"junho",
"julho",
"agosto",
"setembro",
"outubro",
"novembro",
"dezembro"
],
"SHORTDAY": [
"dom",
"seg",
"ter",
"qua",
"qui",
"sex",
"s\u00e1b"
],
"SHORTMONTH": [
"jan",
"fev",
"mar",
"abr",
"mai",
"jun",
"jul",
"ago",
"set",
"out",
"nov",
"dez"
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
"medium": "dd/MM/y HH:mm:ss",
"mediumDate": "dd/MM/y",
"mediumTime": "HH:mm:ss",
"short": "dd/MM/yy HH:mm",
"shortDate": "dd/MM/yy",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "R$",
"DECIMAL_SEP": ",",
"GROUP_SEP": ".",
"PATTERNS": [
{
"gSize": 3,
"lgSize": 3,
"maxFrac": 3,
"minFrac": 0,
"minInt": 1,
"negPre": "-",
"negSuf": "",
"posPre": "",
"posSuf": ""
},
{
"gSize": 3,
"lgSize": 3,
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
"negPre": "\u00a4-",
"negSuf": "",
"posPre": "\u00a4",
"posSuf": ""
}
]
},
"id": "pt-br",
"pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
});
}]);

10
webogram.appcache

@ -1,5 +1,5 @@
CACHE MANIFEST
# Time: Thu Nov 20 2014 01:17:11 GMT+0300 (MSK)
# Time: Thu Nov 27 2014 17:55:38 GMT+0000 (GMT)
CACHE:
@ -47,8 +47,8 @@ img/icons/IconsetW.png
img/icons/IconsetW_1x.png
img/icons/MobileIcons_1x.png
img/icons/MobileIcons_2x.png
img/icons/PhotoControls.png
img/icons/PhotoControls_1x.png
img/icons/PhotoIcons.png
img/icons/PhotoIcons_1x.png
img/placeholders/DialogListAvatarSystem@2x.png
img/placeholders/GroupAvatar1@2x.png
img/placeholders/GroupAvatar2@2x.png
@ -73,6 +73,8 @@ js/locales/de-de.json
js/locales/en-us.json
js/locales/es-es.json
js/locales/it-it.json
js/locales/nl-nl.json
js/locales/pt-br.json
js/locales/ru-ru.json
vendor/closure/long.js
vendor/cryptoJS/crypto.js
@ -83,6 +85,8 @@ vendor/angular/i18n/angular-locale_de-de.js
vendor/angular/i18n/angular-locale_en-us.js
vendor/angular/i18n/angular-locale_es-es.js
vendor/angular/i18n/angular-locale_it-it.js
vendor/angular/i18n/angular-locale_nl-nl.js
vendor/angular/i18n/angular-locale_pt-br.js
vendor/angular/i18n/angular-locale_ru-ru.js

Loading…
Cancel
Save