Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Dutch translation
Dutch translation
Hi,
Here my dutch translation.
Johan
Here my dutch translation.
Johan
You do not have the required permissions to view the files attached to this post.
-
- Posts: 52
- Joined: Sun Feb 14, 2016 8:42 pm
- Location: Nederland
Re: Dutch translation
Dag Johan
dank voor de vertaling, kun je ook items toevoegen? Ik zou graag bv de weekdagen vertalen, dank voor je antwoord
dank voor de vertaling, kun je ook items toevoegen? Ik zou graag bv de weekdagen vertalen, dank voor je antwoord
-
- nuBuilder Team
- Posts: 4292
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 times
- Contact:
Re: Dutch translation
Is this a question for nuBuilder 2 or 4? I dont' know nuBuilder 2 but in nuBuilder 4 you can easily add your own translations (Tab Builder -> Translation)Henk_2a wrote:Dag Johan
dank voor de vertaling, kun je ook items toevoegen? Ik zou graag bv de weekdagen vertalen, dank voor je antwoord
Re: Dutch translation
Henk
Welke versie Nubuilder gebruik je? Mijn vertaling die je gevonden hebt, zit in V2. Ondertussen gebruik ik Nubuilder Forte.
Als globeadmin kan je alle knoppen, teksten vertalen die Nubuilder gebruikt. De dagen van de week zitten daar niet tussen.
Kan je wat concreter omschrijven waar dit zit, misschien kan ik je wel op weg zetten.
johan
Welke versie Nubuilder gebruik je? Mijn vertaling die je gevonden hebt, zit in V2. Ondertussen gebruik ik Nubuilder Forte.
Als globeadmin kan je alle knoppen, teksten vertalen die Nubuilder gebruikt. De dagen van de week zitten daar niet tussen.
Kan je wat concreter omschrijven waar dit zit, misschien kan ik je wel op weg zetten.
johan
-
- Posts: 52
- Joined: Sun Feb 14, 2016 8:42 pm
- Location: Nederland
Re: Dutch translation
Dag Johan
Ik gebruik forte.
ik wil in de browseafdeling weekdagen toevoegen. Nu verschijnen die namen in het Engels en ik wil die graag in het Nederlands hebben, meer hoeft niet
Ik heb ze toegevoegd met als taal NLD maar dan verschijnen ze niet ......
Dank voor je hulp
Ik gebruik forte.
ik wil in de browseafdeling weekdagen toevoegen. Nu verschijnen die namen in het Engels en ik wil die graag in het Nederlands hebben, meer hoeft niet

Ik heb ze toegevoegd met als taal NLD maar dan verschijnen ze niet ......
Dank voor je hulp
-
- nuBuilder Team
- Posts: 4292
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 times
- Contact:
-
- Posts: 52
- Joined: Sun Feb 14, 2016 8:42 pm
- Location: Nederland
Re: Dutch translation
It is displayed in the browse screen
Does that help?
Regards
and the command is DATE_FORMAT(datum, '%W')Does that help?
Regards
You do not have the required permissions to view the files attached to this post.
-
- nuBuilder Team
- Posts: 4292
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 times
- Contact:
Re: Dutch translation
The data in the Browse Screen are not translated by nuBuilder. (Which is good, because you might not want all the data to be translated)
To translate a certain column, use the following JavaScript function. Add it to your form's Custom Code.
To translate a certain column, use the following JavaScript function. Add it to your form's Custom Code.
Code: Select all
function translateColumn(c) {
$('[id^="nucell_"][id$="_'+ c +'"]').each( function( index, el ) {
var v = $('#' + el.id).html();
if (v != '') {
$('#' + el.id).html(nuTranslate(v));
}
});
}
if(nuFormType() == 'browse'){
translateColumn(0); // translate the 1st column
}
Last edited by kev1n on Mon Feb 03, 2020 3:48 pm, edited 1 time in total.
-
- Posts: 52
- Joined: Sun Feb 14, 2016 8:42 pm
- Location: Nederland