diff options
author | Georg Ehrke <georg.stefan.germany@googlemail.com> | 2011-09-09 20:39:38 +0200 |
---|---|---|
committer | Georg Ehrke <georg.stefan.germany@googlemail.com> | 2011-09-09 20:39:38 +0200 |
commit | 80f5942868d42bd6939c9242eca7213a3dc8c79d (patch) | |
tree | 2076fd6cbe0a42090a04fab3860181f22f3a5edd /apps/calendar/templates/part.newevent.php | |
parent | f031e308cd3d218307bade298e17e75dd1077500 (diff) | |
download | nextcloud-server-80f5942868d42bd6939c9242eca7213a3dc8c79d.tar.gz nextcloud-server-80f5942868d42bd6939c9242eca7213a3dc8c79d.zip |
translatable categories and other translations added
Diffstat (limited to 'apps/calendar/templates/part.newevent.php')
-rw-r--r-- | apps/calendar/templates/part.newevent.php | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/apps/calendar/templates/part.newevent.php b/apps/calendar/templates/part.newevent.php index 692be344dec..6260f2337ef 100644 --- a/apps/calendar/templates/part.newevent.php +++ b/apps/calendar/templates/part.newevent.php @@ -20,23 +20,22 @@ <td width="75px"><?php echo $l -> t("Category");?>:</td> <td> <select class="formselect" id="formcategorie_select" style="width:140px;" id="newevent_cat"> - <option>none</option> - <option>Birthday</option> - <option>Business</option> - <option>Call</option> - <option>Clients</option> - <option>Customer</option> - <option>Deliverer</option> - <option>Holidays</option> - <option>Ideas</option> - <option>Journey</option> - <option>Jubilee</option> - <option>Meeting</option> - <option>Other</option> - <option>Personal</option> - <option>Projects</option> - <option>Questions</option> - <option>Work</option> + <option><?php echo $l->t("None"); ?></option> + <option><?php echo $l->t("Birthday"); ?></option> + <option><?php echo $l->t("Business"); ?></option> + <option><?php echo $l->t("Call"); ?></option> + <option><?php echo $l->t("Clients"); ?></option> + <option><?php echo $l->t("Deliverer"); ?></option> + <option><?php echo $l->t("Holidays"); ?></option> + <option><?php echo $l->t("Ideas"); ?></option> + <option><?php echo $l->t("Journey"); ?></option> + <option><?php echo $l->t("Jubilee"); ?></option> + <option><?php echo $l->t("Meeting"); ?></option> + <option><?php echo $l->t("Other"); ?></option> + <option><?php echo $l->t("Personal"); ?></option> + <option><?php echo $l->t("Projects"); ?></option> + <option><?php echo $l->t("Questions"); ?></option> + <option><?php echo $l->t("Work"); ?></option> </select></td> <td width="75px"> <?php echo $l -> t("Calendar");?>:</td> <td> |