Enable Javascript translation for Indonesian
This commit is contained in:
parent
983ffc7d95
commit
dc15f8c9d7
|
|
@ -7,6 +7,7 @@ Contributors:
|
|||
|
||||
- Alex Butum
|
||||
- [Aleix Pol](https://github.com/aleixpol)
|
||||
- [Anjar Febrianto](https://github.com/Lasut)
|
||||
- [Ashbike](https://github.com/ashbike)
|
||||
- [Ashish Kulkarni](https://github.com/ashkulz)
|
||||
- [Christian González](https://github.com/nerdoc)
|
||||
|
|
|
|||
|
|
@ -3,9 +3,10 @@ Version 1.0.19 (unreleased)
|
|||
|
||||
New features:
|
||||
|
||||
* Add LDAP group sync
|
||||
* Added LDAP group sync
|
||||
* Add swimlane description
|
||||
* New plugin system (alpha)
|
||||
* Added Bahasa Indonesia translation
|
||||
|
||||
Breaking changes:
|
||||
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -6,7 +6,7 @@ CSS_VENDOR = $(addprefix assets/css/vendor/, $(addsuffix .css, jquery-ui.min jqu
|
|||
|
||||
JS_APP = $(addprefix assets/js/src/, $(addsuffix .js, Popover Dropdown Tooltip Markdown Sidebar Search App Screenshot Calendar Board Swimlane Gantt Task TaskRepartitionChart UserRepartitionChart CumulativeFlowDiagram BurndownChart AvgTimeColumnChart TaskTimeColumnChart LeadCycleTimeChart Router))
|
||||
JS_VENDOR = $(addprefix assets/js/vendor/, $(addsuffix .js, jquery-1.11.1.min jquery-ui.min jquery-ui-timepicker-addon.min jquery.ui.touch-punch.min chosen.jquery.min moment.min fullcalendar.min mousetrap.min mousetrap-global-bind.min))
|
||||
JS_LANG = $(addprefix assets/js/vendor/lang/, $(addsuffix .js, da de es fi fr hu it ja nl nb pl pt pt-br ru sv sr th tr zh-cn))
|
||||
JS_LANG = $(addprefix assets/js/vendor/lang/, $(addsuffix .js, da de es fi fr hu id it ja nl nb pl pt pt-br ru sv sr th tr zh-cn))
|
||||
|
||||
all: css js
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ Official website: <http://kanboard.net>
|
|||
- Multiple boards with the ability to drag and drop tasks
|
||||
- Open source and self-hosted
|
||||
- Super simple installation
|
||||
- Translated in 21 languages
|
||||
- Translated in 22 languages
|
||||
- Distributed under [MIT License](LICENSE)
|
||||
- [List of features are available on the website](http://kanboard.net/features)
|
||||
- [Change Log](ChangeLog)
|
||||
|
|
|
|||
|
|
@ -75,6 +75,7 @@ class Config extends Base
|
|||
{
|
||||
// Sorted by value
|
||||
$languages = array(
|
||||
'id_ID' => 'Bahasa Indonesia',
|
||||
'cs_CZ' => 'Čeština',
|
||||
'da_DK' => 'Dansk',
|
||||
'de_DE' => 'Deutsch',
|
||||
|
|
@ -96,7 +97,6 @@ class Config extends Base
|
|||
'zh_CN' => '中文(简体)',
|
||||
'ja_JP' => '日本語',
|
||||
'th_TH' => 'ไทย',
|
||||
'id_ID' => 'Bahasa Indonesia',
|
||||
);
|
||||
|
||||
if ($prepend) {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue