Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
added localization for polish language
Browse files Browse the repository at this point in the history
  • Loading branch information
cernyk committed Dec 14, 2012
1 parent 9e354a3 commit b0f79b3
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/modules/ui/dateInput/lang/pl.js
@@ -0,0 +1,15 @@
(function(angular) {
'use strict';

angular.module('ngx.ui.dateInput').run(['ngxDictionary', function(ngxDictionary) {
ngxDictionary.addItems('pl', {
NGX_UI_DATEINPUT_NOW: 'Teraz',
NGX_UI_DATEINPUT_NEXT: 'Następny',
NGX_UI_DATEINPUT_PREV: 'Poprzedni',
NGX_UI_DATEINPUT_CLOSE: 'Koniec',
NGX_UI_DATEINPUT_DAYS: ['Nie', 'Pon', 'Wto', 'Śro', 'Czw', 'Pią', 'Sob'],
NGX_UI_DATEINPUT_MONTHS: ['Styczeń', 'Luty', 'Marzec', 'Kwiecień', 'Maj', 'Czerwiec', 'Lipiec', 'Sierpień', 'Wrzesień', 'Październik', 'Listopad', 'Grudzień']
});
}]);

})(window.angular);
18 changes: 18 additions & 0 deletions src/modules/ui/imageupload/lang/pl.js
@@ -0,0 +1,18 @@
(function(angular) {
'use strict';

angular.module('ngx.ui.imageupload').run(['ngxDictionary', function(ngxDictionary) {
ngxDictionary.addItems('pl', {
NGX_UI_IMAGEUPLOAD_PREVIEW: 'podgląd',
NGX_UI_IMAGEUPLOAD_INPUT_DRAG: 'Upuścić obraz',
NGX_UI_IMAGEUPLOAD_INPUT_OR: 'lub możecie...',
NGX_UI_IMAGEUPLOAD_INPUT_BROWSE: 'wybrać z komputera',
NGX_UI_IMAGEUPLOAD_SCALE_INFO: 'maksymalne wymiary obrazu są {{resultWidth}} x {{resultHeight}}',
NGX_UI_IMAGEUPLOAD_DIALOG_SUBMIT: 'Wgraj',
NGX_UI_IMAGEUPLOAD_DIALOG_CANCEL: 'Anulować',
NGX_UI_IMAGEUPLOAD_INVALID_IMAGE: 'Nieprawidłowy obraz',
NGX_UI_IMAGEUPLOAD_PROCESS_ERROR: 'Błąd przy przetwarzaniu obrazu lub nieprawidłowy obraz'
});
}]);

})(window.angular);

0 comments on commit b0f79b3

Please sign in to comment.