-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
77 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,22 @@ | ||
## [0.1.2+5] | ||
* Added Indonesian Language support | ||
|
||
## [0.1.2+4] | ||
* fixed not showing 3 rows | ||
* Fixed not showing 3 rows | ||
|
||
## [0.1.2+3] | ||
* minimized size of dialog | ||
* Minimized size of dialog | ||
|
||
## [0.1.2] | ||
|
||
* added screenshots and changed font size to fit properly | ||
* made picker look more similar to the Holo-Theme style | ||
* Added screenshots and changed font size to fit properly | ||
* Made picker look more similar to the Holo-Theme style | ||
|
||
## [0.1.1] | ||
|
||
* added example and fixed ui bugs | ||
* using properties like in default date picker | ||
* Added example and fixed UI bugs | ||
* Using properties like in default date picker | ||
|
||
## [0.1.0] | ||
|
||
* initial release. | ||
* Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,4 +29,5 @@ See the example for simple use | |
- Italian (IT) | ||
- Hungarian (HU) | ||
- Hebrew (HE) | ||
- Indonesian (ID) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
part of 'date_picker_i18n.dart'; | ||
|
||
class _StringsId extends _StringsI18n { | ||
const _StringsId(); | ||
|
||
@override | ||
String getCancelText() { | ||
return 'Batal'; | ||
} | ||
|
||
@override | ||
String getDoneText() { | ||
return 'Pilih'; | ||
} | ||
|
||
@override | ||
List<String> getMonths() { | ||
return [ | ||
"Januari", | ||
"Februari", | ||
"Maret", | ||
"April", | ||
"Mei", | ||
"Juni", | ||
"Juli", | ||
"Agustus", | ||
"September", | ||
"Oktober", | ||
"November", | ||
"Desember" | ||
]; | ||
} | ||
|
||
@override | ||
List<String> getWeeksFull() { | ||
return [ | ||
"Senin", | ||
"Selasa", | ||
"Rabu", | ||
"Kamis", | ||
"Jum'at", | ||
"Sabtu", | ||
"Minggu", | ||
]; | ||
} | ||
|
||
@override | ||
List<String> getWeeksShort() { | ||
return [ | ||
"Sen", | ||
"Sel", | ||
"Rab", | ||
"Kam", | ||
"Jum", | ||
"Sab", | ||
"Min", | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters