katemihalikova / ion-datetime-picker

Date and/or time picker for awesome Ionic framework
MIT License
168 stars 101 forks source link

Change Text "Pick a date and a time" #10

Closed dgiac85 closed 8 years ago

dgiac85 commented 8 years ago

Hi! First of all my compliments for your awesome directive! How can i change the text "Pick a date and a time"? I Would to change it in Italian Language. I tried with $ionicPickerI18N but it does not work. I tried to add an attribute title in the directive ion-datetime-picker but still nothing! Any suggestion for this issue? Thanks!

katemihalikova commented 8 years ago

Hi Giacomo, thank you very much! You can translate it via title and sub-title attributes. They accept an expression so you need to use one of this:

<ion-item ion-datetime-picker ng-model="val" title="'My title'" sub-title="'My sub title'">
    {{val}}
</ion-item>

or

$scope.title = "My title";
$scope.subTitle = "My sub title";
<ion-item ion-datetime-picker ng-model="val" title="title" sub-title="subTitle">
    {{val}}
</ion-item>
dgiac85 commented 8 years ago

Oh Yes! It works! Thank you very much Kate! You are very kind!!

Bye! Giacomo

hix41 commented 7 years ago

It solve my problem successfully. THX!