Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

Dutch translation

johan
Posts: 399
Joined: Sun Feb 27, 2011 11:16 am
Location: Belgium
Been thanked: 3 times

Dutch translation

Unread post by johan »

Hi,

Here my dutch translation.

Johan
You do not have the required permissions to view the files attached to this post.
admin
Site Admin
Posts: 2813
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 25 times

Re: Dutch translation

Unread post by admin »

Johan,

Thanks for that, it will be in the next release.

Steven
Henk_2a
Posts: 52
Joined: Sun Feb 14, 2016 8:42 pm
Location: Nederland

Re: Dutch translation

Unread post by Henk_2a »

Dag Johan
dank voor de vertaling, kun je ook items toevoegen? Ik zou graag bv de weekdagen vertalen, dank voor je antwoord
kev1n
nuBuilder Team
Posts: 4291
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 444 times
Contact:

Re: Dutch translation

Unread post by kev1n »

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
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)
johan
Posts: 399
Joined: Sun Feb 27, 2011 11:16 am
Location: Belgium
Been thanked: 3 times

Re: Dutch translation

Unread post by johan »

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
Henk_2a
Posts: 52
Joined: Sun Feb 14, 2016 8:42 pm
Location: Nederland

Re: Dutch translation

Unread post by Henk_2a »

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
kev1n
nuBuilder Team
Posts: 4291
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 444 times
Contact:

Re: Dutch translation

Unread post by kev1n »

Where exactly are the weekdays displayed? Could you upload a screenshot?
Henk_2a
Posts: 52
Joined: Sun Feb 14, 2016 8:42 pm
Location: Nederland

Re: Dutch translation

Unread post by Henk_2a »

It is displayed in the browse screen
browse.jpg
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.
kev1n
nuBuilder Team
Posts: 4291
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 444 times
Contact:

Re: Dutch translation

Unread post by kev1n »

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.

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.
Henk_2a
Posts: 52
Joined: Sun Feb 14, 2016 8:42 pm
Location: Nederland

Re: Dutch translation

Unread post by Henk_2a »

It works!!! thanks
Post Reply