SharePoint2010に言語パックをインストールしました。
VisualStudioでプロジェクトSharePoint2010を作成しました。プロジェクトでは、機能を作成し、リソースファイルRESXと機能レシーバーメソッドを追加しました。
public override void FeatureActivated(SPFeatureReceiverProperties properties)
リストを作成すると、言語を変更してもRESXファイルの翻訳が適用されません。これは私のコードサンプルですが、機能していません:
var listView = new StringCollection();
listView.Add("$Resources:lblAccountName"); // error
listView.Add("$Resources:lblFullName"); // error
list.Views.Add("view1", listView, string.Empty, 30, true, true);
list.Update();
私を手伝ってくれますか?