-
I have a Site column with the Friendly name 'Vendor'. This column is used in many lists in my site and I would like to update the French firendly name. Can this be done Programitically? Here is my code as is: Get all lists in the site
And the error message is: What is the correct way to do this in PnP PowerShell? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I've resolved my own issue. The following code worked for me: $field.TitleResource.SetValueForUICulture("fr-FR", $frenchLabel) |
Beta Was this translation helpful? Give feedback.
I've resolved my own issue.
The following code worked for me:
$field.TitleResource.SetValueForUICulture("fr-FR", $frenchLabel)
$field.Update()
Invoke-PnPQuery