Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Src/xWorks/DictionaryConfigMgrDlg.resx
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
<value>1</value>
</data>
<data name="m_dlgText.Text" xml:space="preserve">
<value>Select a view to rename, copy or delete it.</value>
<value>Select a layout to rename, copy or delete it.</value>
</data>
<data name="&gt;&gt;m_dlgText.Name" xml:space="preserve">
<value>m_dlgText</value>
Expand Down Expand Up @@ -373,7 +373,7 @@
<value>477, 335</value>
</data>
<data name="$this.Text" xml:space="preserve">
<value>Manage {0} Views</value>
<value>Manage {0} Layouts</value>
</data>
<data name="&gt;&gt;$this.Name" xml:space="preserve">
<value>DictionaryConfigMgrDlg</value>
Expand Down
5 changes: 5 additions & 0 deletions Src/xWorks/DictionaryConfigurationController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,11 @@ private void SetManagerTypeInfo(DictionaryConfigurationManagerDlg dialog)
dialog.Text = xWorksStrings.ReversalIndexConfigurationDlgTitle;
dialog.ConfigurationGroupText = xWorksStrings.DictionaryConfigurationMangager_ReversalConfigurations_GroupLabel;
}
else if (DictionaryConfigurationListener.GetDictionaryConfigurationBaseType(_propertyTable) == xWorksStrings.ClassifiedDictionary)
{
dialog.Text = xWorksStrings.ClassifiedDictionaryConfigurationDlgTitle;
dialog.ConfigurationGroupText = xWorksStrings.DictionaryConfigurationMangager_ClassifiedConfigurations_GroupLabel;
}
}

public void SelectModelFromManager(DictionaryConfigurationModel model)
Expand Down
4 changes: 2 additions & 2 deletions Src/xWorks/DictionaryConfigurationImportDlg.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down Expand Up @@ -596,7 +596,7 @@ Lots of explanation here, to be sure.
<value>514, 340</value>
</data>
<data name="$this.Text" xml:space="preserve">
<value>Import a View</value>
<value>Import a Layout</value>
</data>
<data name="&gt;&gt;$this.Name" xml:space="preserve">
<value>DictionaryConfigurationImportDlg</value>
Expand Down
2 changes: 1 addition & 1 deletion Src/xWorks/UploadToWebonaryDlg.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1000,7 +1000,7 @@
<value>19</value>
</data>
<data name="configurationLabel.Text" xml:space="preserve">
<value>View:</value>
<value>Layout:</value>
</data>
<data name="configurationLabel.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleLeft</value>
Expand Down
6 changes: 3 additions & 3 deletions Src/xWorks/XmlDocConfigureDlg.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1330,7 +1330,7 @@
<value>13</value>
</data>
<data name="m_lblViewType.Text" xml:space="preserve">
<value>Choose the view to configure:</value>
<value>Choose the layout to configure:</value>
</data>
<data name="&gt;&gt;m_lblViewType.Name" xml:space="preserve">
<value>m_lblViewType</value>
Expand Down Expand Up @@ -1420,7 +1420,7 @@
<value>29</value>
</data>
<data name="m_linkManageViews.Text" xml:space="preserve">
<value>Manage Views</value>
<value>Manage Layouts</value>
</data>
<data name="&gt;&gt;m_linkManageViews.Name" xml:space="preserve">
<value>m_linkManageViews</value>
Expand Down Expand Up @@ -1456,7 +1456,7 @@
<value>True</value>
</data>
<data name="$this.Text" xml:space="preserve">
<value>Configure {0} View</value>
<value>Configure {0} Layout</value>
</data>
<data name="&gt;&gt;columnHeader1.Name" xml:space="preserve">
<value>columnHeader1</value>
Expand Down
18 changes: 18 additions & 0 deletions Src/xWorks/xWorksStrings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions Src/xWorks/xWorksStrings.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1119,13 +1119,20 @@ See USFM documentation for help.</value>
<data name="ReversalIndexConfigurationDlgTitle" xml:space="preserve">
<value>Manage Reversal Index Layouts</value>
</data>
<data name="ClassifiedDictionaryConfigurationDlgTitle" xml:space="preserve">
<value>Manage Classified Dictionary Layouts</value>
</data>
<data name="YouAreResettingReversal" xml:space="preserve">
<value>You are resetting the following to the 'All Reversal Indexes' settings:</value>
</data>
<data name="DictionaryConfigurationMangager_ReversalConfigurations_GroupLabel" xml:space="preserve">
<value>Reversal Layouts</value>
<comment>Label for the group box which contains the reversal configured layouts</comment>
</data>
<data name="DictionaryConfigurationMangager_ClassifiedConfigurations_GroupLabel" xml:space="preserve">
<value>Classified Dictionary Layouts</value>
<comment>Label for the group box which contains the classified dictionary configured layouts</comment>
</data>
<data name="InadvisableToShare" xml:space="preserve">
<value>It is inadvisable to share '{0}' because a shared node with the same field ({1}) already exists ({2}). No changes have been made.</value>
<comment>{0} is the node the user has requested to share. {3} is the field these nodes control. {2} is an existing shared node.</comment>
Expand Down
Loading