When will it be possible to to remove the backslashes in the following translations ?
$pgv_lang["add_new_pp_setting"] = "Tilfj ny [\$person_privacy] - indstilling"; $pgv_lang["add_new_up_setting"] = "Tilfj ny [\$user_privacy] - indstilling"; $pgv_lang["add_new_gf_setting"] = "Tilfj ny [\$global_facts] - indstilling"; $pgv_lang["add_new_pf_setting"] = "Tilfj ny [\$person_facts] - indstilling";
Best regards,
Arne
create a new lang.xx.extra.php where xx is replaced by the language shortcut you want to use. en for english, sv for swedish, da for danish etc.
Add the following lines:
<?php
?>
and edit the text between the "".
Now phpGedView will use your new translation from the lang.xx.extra.php instead of the original message from the configure_help.xx.php :-)
bye, Kurt
Log in to post a comment.
When will it be possible to to remove the backslashes in the following translations ?
$pgv_lang["add_new_pp_setting"] = "Tilfj ny [\$person_privacy] - indstilling";
$pgv_lang["add_new_up_setting"] = "Tilfj ny [\$user_privacy] - indstilling";
$pgv_lang["add_new_gf_setting"] = "Tilfj ny [\$global_facts] - indstilling";
$pgv_lang["add_new_pf_setting"] = "Tilfj ny [\$person_facts] - indstilling";
Best regards,
Arne
create a new lang.xx.extra.php where xx is replaced by the language shortcut you want to use. en for english, sv for swedish, da for danish etc.
Add the following lines:
<?php
$pgv_lang["add_new_pp_setting"] = "Tilfj ny [\$person_privacy] - indstilling";
$pgv_lang["add_new_up_setting"] = "Tilfj ny [\$user_privacy] - indstilling";
$pgv_lang["add_new_gf_setting"] = "Tilfj ny [\$global_facts] - indstilling";
$pgv_lang["add_new_pf_setting"] = "Tilfj ny [\$person_facts] - indstilling";
?>
and edit the text between the "".
Now phpGedView will use your new translation from the lang.xx.extra.php instead of the original message from the configure_help.xx.php :-)
bye, Kurt