Welcome to the nuBuilder forums!

Please register and login to view forums and other content only available to registered users.

Dutch translation

johan
Posts: 392
Joined: Sun Feb 27, 2011 11:16 am
Location: Belgium

Dutch translation

Unread post by johan »

Hi,

Here my dutch translation.

Johan
Attachments
zzsys_translate.zip
(1.57 KiB) Downloaded 541 times
admin
Site Admin
Posts: 2778
Joined: Mon Jun 15, 2009 2:23 am
nuBuilder Version: 4.5

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: 3801
Joined: Sun Oct 14, 2018 6:43 pm
nuBuilder Version: 4.5
Has thanked: 2 times
Been thanked: 9 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: 392
Joined: Sun Feb 27, 2011 11:16 am
Location: Belgium

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: 3801
Joined: Sun Oct 14, 2018 6:43 pm
nuBuilder Version: 4.5
Has thanked: 2 times
Been thanked: 9 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
browse.jpg (23.33 KiB) Viewed 11550 times
and the command is DATE_FORMAT(datum, '%W')
Does that help?
Regards
kev1n
nuBuilder Team
Posts: 3801
Joined: Sun Oct 14, 2018 6:43 pm
nuBuilder Version: 4.5
Has thanked: 2 times
Been thanked: 9 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