Good afternoon,
I need some help about languages and fields in sharepoint with powershell.
I got a sharepoint site and a powershell having to set the 'Display name' of columns in lists foer either 'en-US' and 'fr-BE'.
I cannot resolve this issue and tried a lot of things.
How can I in powershell set values for title columns either for the 2 cultures?
...
$site = New-Object -Type Microsoft.SharePoint.SPSite -ArgumentList "my site url..."
$web = $site.OpenWeb()
$list = $web.Lists["my list name...]
$column = $list.Fields.GetFieldByInternalName("my internal name...");
//update for en-US
...
$column.Title = "my display value for en-US";
$column.Update();
...
//update for fr-BE
...
$column.Title = "my display value for fr-BE";
$column.Update();
...
$web.Update();
$web.Dispose()
$site.Dispose()
.....
Thank you for any help.
Claude