├── README.md ├── Syncfusion.Chart.WPF └── Syncfusion.Chart.WPF.resx ├── Syncfusion.Diagram.WPF └── Syncfusion.Diagram.Wpf.resx ├── Syncfusion.Edit.WPF └── Syncfusion.Edit.Wpf.resx ├── Syncfusion.Gantt.WPF └── Syncfusion.Gantt.WPF.resx ├── Syncfusion.Grid.WPF └── Syncfusion.Grid.Wpf.resx ├── Syncfusion.OlapChart.WPF └── Syncfusion.OlapChart.WPF.resx ├── Syncfusion.OlapClient.WPF └── Syncfusion.OlapClient.WPF.resx ├── Syncfusion.OlapGauge.WPF └── Syncfusion.OlapGauge.wpf.resx ├── Syncfusion.OlapGrid.WPF └── Syncfusion.OlapGrid.WPF.resx ├── Syncfusion.OlapShared.WPF └── Syncfusion.OlapShared.WPF.resx ├── Syncfusion.OlapTools.WPF └── Syncfusion.OlapTools.WPF.resx ├── Syncfusion.PdfViewer.WPF └── Syncfusion.PdfViewer.WPF.resx ├── Syncfusion.PivotAnalysis.WPF └── Syncfusion.PivotAnalysis.Wpf.resx ├── Syncfusion.PropertyGrid.WPF └── Syncfusion.PropertyGrid.Wpf.resx ├── Syncfusion.Schedule.WPF └── Syncfusion.Schedule.WPF.resx ├── Syncfusion.SfChart.WPF └── Syncfusion.SfChart.WPF.resx ├── Syncfusion.SfColorPalette.WPF └── Syncfusion.SfColorPalette.Wpf.resx ├── Syncfusion.SfDiagram.WPF └── Syncfusion.UI.Xaml.Diagram.resx ├── Syncfusion.SfDiagramRibbon.WPF └── Syncfusion.SfDiagramRibbon.WPF.resx ├── Syncfusion.SfGrid.WPF └── Syncfusion.SfGrid.WPF.resx ├── Syncfusion.SfImageEditor.WPF └── Syncfusion.SfImageEditor.WPF.resx ├── Syncfusion.SfInput.WPF └── Syncfusion.SfInput.Wpf.resx ├── Syncfusion.SfKanban.WPF └── Syncfusion.SfKanban.WPF.resx ├── Syncfusion.SfRichTextBoxAdv.WPF └── Syncfusion.SfRichTextBoxAdv.WPF.resx ├── Syncfusion.SfRichTextRibbon.WPF └── Syncfusion.SfRichTextRibbon.WPF.resx ├── Syncfusion.SfSchedule.WPF └── Syncfusion.Schedule.WPF.resx ├── Syncfusion.SfScheduler.WPF └── Syncfusion.SfScheduler.WPF.resx ├── Syncfusion.SfShared.WPF └── Syncfusion.SfShared.Wpf.resx ├── Syncfusion.SfSmithChart.WPF └── Syncfusion.SfSmithChart.WPF.resx ├── Syncfusion.SfSpellChecker.WPF └── Syncfusion.SfSpellChecker.WPF.resx ├── Syncfusion.SfSpreadsheet.WPF └── Syncfusion.SfSpreadsheet.Wpf.resx ├── Syncfusion.SfSunburstChart.WPF └── Syncfusion.SfSunburstChart.WPF.resx ├── Syncfusion.SfTreeView.WPF └── Syncfusion.SfTreeView.WPF.resx ├── Syncfusion.Shared.WPF.Classic └── Syncfusion.Shared.Wpf.Classic.resx ├── Syncfusion.Shared.WPF └── Syncfusion.Shared.Wpf.resx ├── Syncfusion.Spreadsheet.WPF └── Syncfusion.Speradsheet.Wpf.resx ├── Syncfusion.Tools.WPF.Classic └── Syncfusion.Tools.Wpf.Classic.resx └── Syncfusion.Tools.WPF ├── Syncfusion.Tools.Wpf.Classic.resx └── Syncfusion.Tools.Wpf.resx /README.md: -------------------------------------------------------------------------------- 1 | # Localization of Syncfusion® WPF Controls using .resx files 2 | 3 | This repository contains the default resource files (.resx) of Syncfusion WPF libraries. You can use this resource files to localize the strings for any selected language. 4 | 5 | ## Localization of Syncfusion WPF Controls 6 | 7 | Localization is the process of translating the application resources into different language for the specific cultures. You can localize the syncfusion WPF controls by adding resource file for each language. 8 | 9 | ### Changing application culture 10 | 11 | When you are changing the application culture, then you can localize the application based on application culture by creating .resx file. 12 | 13 | ``` 14 | public MainWindow() 15 | { 16 | System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("de-DE"); 17 | InitializeComponent(); 18 | } 19 | ``` 20 | 21 | ### Creating .resx files 22 | 23 | You can create .resx files for any language by following below steps, 24 | 25 | 1) Right click your project and add new folder named `Resources`. 26 | 27 | 2) Add default resource files of libraries you are using into `Resources` folder and ensure `AccessModifier` specfied as `Public`. 28 | 29 | > Consider you are using `SfDataGrid` and `Ribbon` in your application. Then you need to copy and include `Syncfusion.SfGrid.WPF.resx` (since `SfDataGrid` present in `Syncfusion.SfGrid.WPF` library) and `Syncfusion.Tools.Wpf.resx` (since `Ribbon` present in `Syncfusion.Tools.WPF` library) files in your application under `Resources` folder. So, now you can know the key names and values of default stings used in `Syncfusion.Tools.WPF.dll` and `Syncfusion.SfGrid.WPF.dll` libraries. 30 | 31 | ![WPF DataGrid Localization](https://help.syncfusion.com/wpf/localization-images/wpf-default-resx-file.png) 32 | 33 | 3) Now, right click `Resources` folder and select `Add` and then `NewItem`. In the In `Add New Item` wizard, select the Resource File option and name the filename as `Syncfusion.SfGrid.WPF..resx`. For example, you have to give name as `Syncfusion.SfGrid.WPF.de.resx` for `German` culture. In the same way, add new resource files for other libraries used in your application. 34 | 35 | ![WPF Control Localization](https://help.syncfusion.com/wpf/localization-images/wpf-adding-resource-file.png) 36 | 37 | 4) Now, select `Add` and add resource file for german culture in `Resources` folder and set `AccessModifier` property to `No code generation`. 38 | 39 | ![WPF Control Localization using .resx file](https://help.syncfusion.com/wpf/localization-images/wpf-resx-file-to-localize.png) 40 | 41 | 42 | 5) Now, you can copy the key names from default resource files and assign value based on the culture the resource files targets. 43 | 44 | ![](https://help.syncfusion.com/wpf/localization-images/wpf-localized-resx-file.png) 45 | 46 | > Download demo from [GitHub](https://github.com/SyncfusionExamples/wpf-datagrid-localization) 47 | 48 | ## Editing default culture strings 49 | 50 | You can change default string of any control by adding the default .resx files ([from Github](https://github.com/syncfusion/wpf-controls-localization-resx-files)) to `Resources` folder of your application. Syncfusion WPF controls reads the default string from the .resx files of application if its added. -------------------------------------------------------------------------------- /Syncfusion.Diagram.WPF/Syncfusion.Diagram.Wpf.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Delete 122 | 123 | 124 | Grouping 125 | 126 | 127 | Group 128 | 129 | 130 | Ungroup 131 | 132 | 133 | Order 134 | 135 | 136 | Bring Forward 137 | 138 | 139 | Bring To Front 140 | 141 | 142 | Send Backward 143 | 144 | 145 | Send To Back 146 | 147 | 148 | Advanced... 149 | 150 | 151 | Black And White Mode 152 | 153 | 154 | Cancel 155 | 156 | 157 | Color Mode 158 | 159 | 160 | Fill 161 | 162 | 163 | Print Diagram 164 | 165 | 166 | None 167 | 168 | 169 | Print 170 | 171 | 172 | Print Stretch 173 | 174 | 175 | Uniform 176 | 177 | 178 | UniformToFill 179 | 180 | 181 | All 182 | 183 | 184 | Connectors 185 | 186 | 187 | Custom Shapes 188 | 189 | 190 | Electrical Shapes 191 | 192 | 193 | Flowchart 194 | 195 | 196 | Shapes 197 | 198 | 199 | Connectors 200 | 201 | 202 | Custom Shapes 203 | 204 | 205 | Electrical Shapes 206 | 207 | 208 | Flowchart 209 | 210 | 211 | Shapes 212 | 213 | -------------------------------------------------------------------------------- /Syncfusion.Edit.WPF/Syncfusion.Edit.Wpf.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Collapse All 122 | 123 | 124 | Comment Lines 125 | 126 | 127 | Copy 128 | 129 | 130 | Cut 131 | 132 | 133 | Decrease Indent 134 | 135 | 136 | Expand All 137 | 138 | 139 | Find All 140 | 141 | 142 | Find Next 143 | 144 | 145 | Find Options 146 | 147 | 148 | Increase Indent 149 | 150 | 151 | Outlining 152 | 153 | 154 | Paste 155 | 156 | 157 | Quick Find 158 | 159 | 160 | Quick Replace 161 | 162 | 163 | Redo 164 | 165 | 166 | Replace All 167 | 168 | 169 | Replace 170 | 171 | 172 | Select All 173 | 174 | 175 | Switch to Quick Replace 176 | 177 | 178 | Uncomment Lines 179 | 180 | 181 | Undo 182 | 183 | 184 | Find Symbol Results 185 | 186 | 187 | Fin_d what 188 | 189 | 190 | _Look in 191 | 192 | 193 | Match _case 194 | 195 | 196 | Match _whole word 197 | 198 | 199 | Pref_ix 200 | 201 | 202 | Re_place with 203 | 204 | 205 | Search _hidden text 206 | 207 | 208 | Search _up 209 | 210 | 211 | _Substring 212 | 213 | 214 | _Whole word 215 | 216 | 217 | Current Document 218 | 219 | 220 | Find and Replace 221 | 222 | 223 | Find Symbol 224 | 225 | 226 | Selection 227 | 228 | 229 | Switch to Find Symbol 230 | 231 | 232 | Switch to Quick Find 233 | 234 | 235 | OK 236 | 237 | 238 | Cancel 239 | 240 | 241 | Go To Line 242 | 243 | 244 | Line number 245 | 246 | 247 | File was changed, do you want to save the file? 248 | 249 | 250 | Save changes 251 | 252 | 253 | Col 254 | 255 | 256 | Ln 257 | 258 | 259 | Ready 260 | 261 | 262 | Search found no results 263 | 264 | 265 | There are no more occurances of the text specified 266 | 267 | 268 | The specified text cannot be found 269 | 270 | 271 | Find reached the starting point of the text specified 272 | 273 | 274 | matches found 275 | 276 | 277 | occureances of the text specified have been replaced 278 | 279 | -------------------------------------------------------------------------------- /Syncfusion.Gantt.WPF/Syncfusion.Gantt.WPF.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Baseline Cost 122 | 123 | 124 | Baseline cost mapping name is missing or mapping name is wrong. 125 | 126 | 127 | Baseline Finish 128 | 129 | 130 | Baseline finish date mapping name is missing or mapping name is wrong. 131 | 132 | 133 | Baseline Start 134 | 135 | 136 | Baseline start date mapping name is missing or mapping name is wrong. 137 | 138 | 139 | Child task mapping name is missing or mapping name is wrong. 140 | 141 | 142 | Cost 143 | 144 | 145 | Cost mapping name is missing or mapping name is wrong. 146 | 147 | 148 | Cost Variance 149 | 150 | 151 | days 152 | 153 | 154 | Duration 155 | 156 | 157 | Duration : 158 | 159 | 160 | End Time : 161 | 162 | 163 | End : 164 | 165 | 166 | Error on Exporting 167 | 168 | 169 | Only the task of type TaskDetails can be export. 170 | 171 | 172 | Finish 173 | 174 | 175 | Finish 176 | 177 | 178 | Finish date mapping name is missing or mapping name is wrong. 179 | 180 | 181 | Finish Date : 182 | 183 | 184 | Finish 185 | 186 | 187 | Finish point mapping name is missing or mapping name is wrong. 188 | 189 | 190 | Finish: 191 | 192 | 193 | Finish Variance 194 | 195 | 196 | Error on Importing 197 | 198 | 199 | InLine task mapping name is missing or mapping name is wrong. 200 | 201 | 202 | IsMileStone 203 | 204 | 205 | Predecessor 206 | 207 | 208 | Progress (%) 209 | 210 | 211 | Progress mapping name is missing or mapping name is wrong. 212 | 213 | 214 | Progress : 215 | 216 | 217 | Resource Names 218 | 219 | 220 | Source : 221 | 222 | 223 | Start 224 | 225 | 226 | Start 227 | 228 | 229 | Start date mapping name is missing or mapping name is wrong. 230 | 231 | 232 | Start Date : 233 | 234 | 235 | Start/Finish/Duration mapping name is missing or mapping name is wrong. 236 | 237 | 238 | Start/Finish point mapping name is missing or mapping name is wrong. 239 | 240 | 241 | Start 242 | 243 | 244 | Start point mapping name is missing or mapping name is wrong. 245 | 246 | 247 | Start Time : 248 | 249 | 250 | Start : 251 | 252 | 253 | Start Variance 254 | 255 | 256 | Target : 257 | 258 | 259 | Task Id 260 | 261 | 262 | Task Name 263 | 264 | 265 | Task Name : 266 | 267 | 268 | XML Export 269 | 270 | -------------------------------------------------------------------------------- /Syncfusion.OlapChart.WPF/Syncfusion.OlapChart.WPF.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Appearance 122 | 123 | 124 | Font Color 125 | 126 | 127 | Font Face 128 | 129 | 130 | Font Style 131 | 132 | 133 | Axis Labels 134 | 135 | 136 | Background Style 137 | 138 | 139 | Color 140 | 141 | 142 | Border Style 143 | 144 | 145 | Width 146 | 147 | 148 | Cancel 149 | 150 | 151 | Chart Control 152 | 153 | 154 | Chart Interior 155 | 156 | 157 | Chart Palette 158 | 159 | 160 | Chart Style 161 | 162 | 163 | Chart Type 164 | 165 | 166 | Chart 167 | 168 | 169 | Circle 170 | 171 | 172 | Label Visibility 173 | 174 | 175 | Show CheckBox 176 | 177 | 178 | Position 179 | 180 | 181 | Legends 182 | 183 | 184 | Show Legend 185 | 186 | 187 | OK 188 | 189 | 190 | Chart Types 191 | 192 | 193 | Point Labels 194 | 195 | 196 | Rectangle 197 | 198 | 199 | Series Name 200 | 201 | 202 | Symbol Visibility 203 | 204 | 205 | Chart Appearance Dialog 206 | 207 | 208 | Triangle 209 | 210 | 211 | X Axis 212 | 213 | 214 | X Value 215 | 216 | 217 | Y Axis 218 | 219 | 220 | Y Value 221 | 222 | 223 | Do you want to view the image? 224 | 225 | 226 | Image Saved 227 | 228 | 229 | Area 230 | 231 | 232 | Bar 233 | 234 | 235 | Column 236 | 237 | 238 | Funnel 239 | 240 | 241 | Line 242 | 243 | 244 | Pie 245 | 246 | 247 | Radar 248 | 249 | 250 | Rotated Spline 251 | 252 | 253 | Scatter 254 | 255 | 256 | Spline 257 | 258 | 259 | Spline Area 260 | 261 | 262 | Stacking Area 263 | 264 | 265 | Stacking Bar 266 | 267 | 268 | Stacking Column 269 | 270 | 271 | Stacking Column 100 272 | 273 | 274 | Step Area 275 | 276 | 277 | Step Line 278 | 279 | 280 | Analog 281 | 282 | 283 | Colorful 284 | 285 | 286 | Custom 287 | 288 | 289 | Earth Tone 290 | 291 | 292 | Gray Scale 293 | 294 | 295 | Nature 296 | 297 | 298 | Pastel 299 | 300 | 301 | Triad 302 | 303 | 304 | Warm Cold 305 | 306 | 307 | Default 308 | 309 | 310 | Default Alpha 311 | 312 | 313 | Error in Opening Property Dialog 314 | 315 | 316 | is not a valid image format. 317 | 318 | 319 | Warning 320 | 321 | 322 | AfterRefresh event 323 | 324 | 325 | The OLAP Chart must have a border named \"PART_AreaBorder\" at the root of its template tree. 326 | 327 | 328 | BeforeRefresh event 329 | 330 | 331 | The OlapChart template must contain an OlapChartArea. 332 | 333 | 334 | ColorModel property 335 | 336 | 337 | Back conversion is not supported by the OlapPanel. 338 | 339 | 340 | Orientation is not supported by the OlapPanel. 341 | 342 | 343 | \"PART_OlapArea\" templated part of the chart control cannot be retrieved. 344 | 345 | 346 | Use the PrimaryOlapAxis property for the OlapArea. 347 | 348 | 349 | Series property 350 | 351 | 352 | Cannot convert the ToolTip to the corresponding chart type. 353 | 354 | 355 | The OlapChart template must be applied before accessing. 356 | 357 | 358 | For more details, please refer to the log file from: 359 | 360 | -------------------------------------------------------------------------------- /Syncfusion.OlapGauge.WPF/Syncfusion.OlapGauge.wpf.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | KPI with Default Members 122 | 123 | 124 | KPI Data Not Available 125 | 126 | 127 | Goal 128 | 129 | 130 | Value 131 | 132 | -------------------------------------------------------------------------------- /Syncfusion.OlapGrid.WPF/Syncfusion.OlapGrid.WPF.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Add Condition 122 | 123 | 124 | Cell Color 125 | 126 | 127 | Name 128 | 129 | 130 | Conditions 131 | 132 | 133 | Condition Type 134 | 135 | 136 | Please enter the conditional value 137 | 138 | 139 | Exception Message : Conditional Format Editor 140 | 141 | 142 | Font Style 143 | 144 | 145 | Font Weight 146 | 147 | 148 | Foreground 149 | 150 | 151 | Conditional Format Editor 152 | 153 | 154 | Measure 155 | 156 | 157 | Predicate Type 158 | 159 | 160 | Remove All 161 | 162 | 163 | Value1 164 | 165 | 166 | Value2 167 | 168 | 169 | Column 170 | 171 | 172 | Collapse 173 | 174 | 175 | Entirely 176 | 177 | 178 | Expand 179 | 180 | 181 | To 182 | 183 | 184 | Background Color 185 | 186 | 187 | Cancel 188 | 189 | 190 | Cell Styles 191 | 192 | 193 | Column Header 194 | 195 | 196 | Column Summary 197 | 198 | 199 | Font Color 200 | 201 | 202 | Font Name 203 | 204 | 205 | Font Size 206 | 207 | 208 | Font Style 209 | 210 | 211 | Foreground Color 212 | 213 | 214 | Header Font 215 | 216 | 217 | Header Style 218 | 219 | 220 | OK 221 | 222 | 223 | Row Header 224 | 225 | 226 | Row Summary 227 | 228 | 229 | Summary Font 230 | 231 | 232 | Summary Style 233 | 234 | 235 | Apply Style 236 | 237 | 238 | Measure 239 | 240 | 241 | Row 242 | 243 | 244 | Value 245 | 246 | 247 | Please provide an alternate name. A condition already exists as 248 | 249 | 250 | Error 251 | 252 | 253 | No Measure element is associated with the current report 254 | 255 | 256 | Please provide a name for the specified Conditional format 257 | 258 | 259 | Invalid values: The value 1 must be lower than the value 2 260 | 261 | 262 | The selected condition will be removed. Are you sure you want to remove the condition? 263 | 264 | 265 | All the applied Conditional formats will be removed. Are you sure to proceed? 266 | 267 | 268 | Remove Condition 269 | 270 | 271 | Removes the current condition 272 | 273 | 274 | Invalid Hexadecimal string 275 | 276 | 277 | Page not found for the specified index in the paging grid. 278 | 279 | 280 | For more details, please refer the log file from : 281 | 282 | -------------------------------------------------------------------------------- /Syncfusion.OlapShared.WPF/Syncfusion.OlapShared.WPF.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Cancel 122 | 123 | 124 | Empty Results 125 | 126 | 127 | Filter 1 128 | 129 | 130 | Filter 2 131 | 132 | 133 | Filter Empty Columns 134 | 135 | 136 | Filter Empty Rows 137 | 138 | 139 | Filter On 140 | 141 | 142 | Value 143 | 144 | 145 | Filtering 146 | 147 | 148 | Filtering and Sorting 149 | 150 | 151 | Ascending 152 | 153 | 154 | Descending 155 | 156 | 157 | Sorting On 158 | 159 | 160 | Sorting 161 | 162 | 163 | Sort 164 | 165 | 166 | Preserve Hierarchy 167 | 168 | 169 | Update 170 | 171 | 172 | Condition 173 | 174 | 175 | On Column 176 | 177 | 178 | On Row 179 | 180 | 181 | Context Menu 182 | 183 | 184 | Column Pager 185 | 186 | 187 | Move To First 188 | 189 | 190 | Move To Last 191 | 192 | 193 | Move To Next 194 | 195 | 196 | Page Settings 197 | 198 | 199 | Move To Previous 200 | 201 | 202 | Row Pager 203 | 204 | 205 | of 206 | 207 | 208 | Page 209 | 210 | 211 | Cancel 212 | 213 | 214 | Column Page Settings 215 | 216 | 217 | Current Page 218 | 219 | 220 | OK 221 | 222 | 223 | Page Size 224 | 225 | 226 | Row Page Settings 227 | 228 | 229 | Pager Settings 230 | 231 | 232 | Between 233 | 234 | 235 | EqualTo 236 | 237 | 238 | GreaterThan 239 | 240 | 241 | GreaterThanOrEqualTo 242 | 243 | 244 | LessThan 245 | 246 | 247 | LessThanOrEqualTo 248 | 249 | 250 | NotBetween 251 | 252 | 253 | NotEquals 254 | 255 | 256 | Unable to open the connection. 257 | 258 | 259 | Connection Failed 260 | 261 | 262 | Error Loading Data 263 | 264 | 265 | Please choose the measure to filter the cube. 266 | 267 | 268 | Please choose a condition on measure to filter the cube. 269 | 270 | 271 | Please choose the measure to filter the cube in top level. 272 | 273 | 274 | Please enter a value for measure to filter the cube. 275 | 276 | 277 | Please enter a numeric value in value text box. 278 | 279 | 280 | Please choose the measure to sort the cube. 281 | 282 | 283 | Report measure element should not be null. 284 | 285 | 286 | Invalid Value 287 | 288 | 289 | For more details, please refer the log file from : 290 | 291 | -------------------------------------------------------------------------------- /Syncfusion.OlapTools.WPF/Syncfusion.OlapTools.WPF.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Remove 122 | 123 | 124 | Edit 125 | 126 | 127 | Caption 128 | 129 | 130 | Expression 131 | 132 | 133 | Format string 134 | 135 | 136 | Calculated Member Editor 137 | 138 | 139 | Member Type 140 | 141 | 142 | Cancel 143 | 144 | 145 | Delete 146 | 147 | 148 | Move Down 149 | 150 | 151 | Move Up 152 | 153 | 154 | OK 155 | 156 | 157 | Delete 158 | 159 | 160 | Move Down 161 | 162 | 163 | Move Up 164 | 165 | 166 | Check/Uncheck All 167 | 168 | 169 | Remove 170 | 171 | 172 | Measure Editor 173 | 174 | 175 | Check / UnCheck All 176 | 177 | 178 | Member Editor 179 | 180 | 181 | Max number of records to be displayed. 182 | 183 | 184 | Cancel 185 | 186 | 187 | OK 188 | 189 | 190 | Select Hierarchy 191 | 192 | 193 | Hierarchy Selector 194 | 195 | 196 | Cancel 197 | 198 | 199 | Goal 200 | 201 | 202 | Goal Expression 203 | 204 | 205 | KPI Name 206 | 207 | 208 | OK 209 | 210 | 211 | Status 212 | 213 | 214 | Status Expression 215 | 216 | 217 | Status Indicator 218 | 219 | 220 | KPI Editor 221 | 222 | 223 | Trend 224 | 225 | 226 | Trend Expression 227 | 228 | 229 | Trend Indicator 230 | 231 | 232 | Value 233 | 234 | 235 | Value Expression 236 | 237 | 238 | Shapes 239 | 240 | 241 | Standard Arrow 242 | 243 | 244 | Traffic Light 245 | 246 | 247 | Skip 248 | 249 | 250 | Loading 251 | 252 | 253 | Remove 254 | 255 | 256 | Exception Message: AxisElementBuilder 257 | 258 | 259 | Measure and KPI should be in same axis 260 | 261 | 262 | This element already exists in the current axis. 263 | 264 | 265 | Since KPI is a calculated measure, it cannot be sliced. 266 | 267 | 268 | KPI cannot be dropped without measure. 269 | 270 | 271 | Measure and Virtual KPI should be in same axis. 272 | 273 | 274 | Virtual KPI cannot be dropped without measure. 275 | 276 | 277 | Named set cannot be present in slicer axis if the parent dimension exists in any other axis. 278 | 279 | 280 | Caption name already exists. 281 | 282 | 283 | Caption text should be non-empty. 284 | 285 | 286 | Either the caption text is empty or already exist. 287 | 288 | 289 | Expression text should be non-empty. 290 | 291 | 292 | More than one measure cannot be sliced. 293 | 294 | 295 | Please select the parent dimension. 296 | 297 | 298 | Cube Selector 299 | 300 | 301 | Exception Message 302 | 303 | 304 | KPI with same name already exists. Please enter a different name. 305 | 306 | 307 | Since Virtual KPI is a calculated measure, it cannot be sliced. 308 | 309 | 310 | OlapDataManager is null. 311 | 312 | 313 | Goal expression should be non-empty. 314 | 315 | 316 | KPI Name should be non-empty. 317 | 318 | 319 | Status expression should be non-empty. 320 | 321 | 322 | Trend expression should be non-empty. 323 | 324 | 325 | Value expression should be non-empty. 326 | 327 | 328 | Value and Goal expressions should be framed only with measures. 329 | 330 | 331 | Currency 332 | 333 | 334 | Custom 335 | 336 | 337 | Dimension 338 | 339 | 340 | Measure 341 | 342 | 343 | Percent 344 | 345 | 346 | Standard 347 | 348 | 349 | Expression should be framed only with Measure or Dimension. 350 | 351 | 352 | Update Error 353 | 354 | 355 | For more details, please refer the log file from : 356 | 357 | -------------------------------------------------------------------------------- /Syncfusion.PropertyGrid.WPF/Syncfusion.PropertyGrid.Wpf.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Add 122 | Add button text in CollectionEditor dialog. 123 | 124 | 125 | Alphabetical 126 | Tooltip text for button, to sort properties alphabetically in PropertyGrid. 127 | 128 | 129 | Cancel 130 | Cancel button text in CollectionEditor dialog. 131 | 132 | 133 | Categorized 134 | Tooltip text for button, to categorize properties in PropertyGrid. 135 | 136 | 137 | Clear 138 | Tooltip text for clear button of search box in PropertyGrid. 139 | 140 | 141 | Collection Editor 142 | Title text of CollectionEditor dialog. 143 | 144 | 145 | (Collection) 146 | Watermark text of collection editor in PropertyGrid. 147 | 148 | 149 | Members: 150 | Members text to represent members ListBox in CollectionEditor dialog. 151 | 152 | 153 | OK 154 | OK button text in CollectionEditor dialog. 155 | 156 | 157 | Properties: 158 | Properties text to represent PropertyGrid in CollectionEditor dialog. 159 | 160 | 161 | Remove 162 | Remove button text in CollectionEditor dialog. 163 | 164 | 165 | Reset 166 | Text for menu item, to reset value of property in PropertyGrid. 167 | 168 | 169 | Search 170 | Watermark text of search textbox in PropertyGrid. 171 | 172 | -------------------------------------------------------------------------------- /Syncfusion.Schedule.WPF/Syncfusion.Schedule.WPF.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Are you sure to delete the Appointment? 122 | 123 | 124 | Delete 125 | 126 | 127 | Do you want to save the changes? 128 | 129 | 130 | Scheduler 131 | 132 | 133 | All Day Event 134 | 135 | 136 | Delete 137 | 138 | 139 | Enable Recurrence 140 | 141 | 142 | EndTime: 143 | 144 | 145 | High Importance 146 | 147 | 148 | Location: 149 | 150 | 151 | Low Importance 152 | 153 | 154 | Private 155 | 156 | 157 | Reminder: 158 | 159 | 160 | Remove Recurrecne 161 | 162 | 163 | Save & Close 164 | 165 | 166 | Show As: 167 | 168 | 169 | StartTime: 170 | 171 | 172 | Subject: 173 | 174 | 175 | Cancel 176 | 177 | 178 | Date: 179 | 180 | 181 | Go to Date 182 | 183 | 184 | Show In: 185 | 186 | 187 | Next Appointment 188 | 189 | 190 | Ok 191 | 192 | 193 | Previous Appointment 194 | 195 | 196 | is a Recurring Appointment. Do you want to open only this occurrence or the series? 197 | 198 | 199 | Open Recurring Item 200 | 201 | 202 | Open this ocurrence 203 | 204 | 205 | Open the series 206 | 207 | 208 | Daily 209 | 210 | 211 | Day 212 | 213 | 214 | day(s) 215 | 216 | 217 | End After 218 | 219 | 220 | End By 221 | 222 | 223 | Every 224 | 225 | 226 | Every weekday 227 | 228 | 229 | Friday 230 | 231 | 232 | Monday 233 | 234 | 235 | Monthly 236 | 237 | 238 | Month(s) 239 | 240 | 241 | No End Date 242 | 243 | 244 | Occurences 245 | 246 | 247 | of 248 | 249 | 250 | of every 251 | 252 | 253 | On: 254 | 255 | 256 | On the: 257 | 258 | 259 | Recurrence Pattern 260 | 261 | 262 | Range of Recurrence 263 | 264 | 265 | Recur every 266 | 267 | 268 | Saturday 269 | 270 | 271 | Start: 272 | 273 | 274 | Sunday 275 | 276 | 277 | the 278 | 279 | 280 | Thursday 281 | 282 | 283 | Tuesday 284 | 285 | 286 | Wednesday 287 | 288 | 289 | Weekly 290 | 291 | 292 | week(s) on 293 | 294 | 295 | Yearly 296 | 297 | 298 | year(s) 299 | 300 | -------------------------------------------------------------------------------- /Syncfusion.SfChart.WPF/Syncfusion.SfChart.WPF.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | axis is not compatible with the axis of 122 | 123 | 124 | Black and White Mode 125 | 126 | 127 | Cancel 128 | 129 | 130 | Chart Print Dialog 131 | 132 | 133 | Close 134 | 135 | 136 | Color Mode 137 | 138 | 139 | Decrease 140 | 141 | 142 | High 143 | 144 | 145 | Histogram 146 | 147 | 148 | Increase 149 | 150 | 151 | Low 152 | 153 | 154 | Lower Line 155 | 156 | 157 | MACD 158 | 159 | 160 | Open 161 | 162 | 163 | Pan 164 | 165 | 166 | Period Line 167 | 168 | 169 | Print 170 | 171 | 172 | The element must be rendered and have a parent in order to print. 173 | 174 | 175 | is printing. 176 | 177 | 178 | Print Mode 179 | 180 | 181 | Print Stretch 182 | 183 | 184 | Q 185 | 186 | 187 | Quarter 188 | 189 | 190 | Reset 191 | 192 | 193 | Box Selection Zoom 194 | 195 | 196 | Signal Line 197 | 198 | 199 | Size 200 | 201 | 202 | Total 203 | 204 | 205 | Upper Line 206 | 207 | 208 | W 209 | 210 | 211 | Week 212 | 213 | 214 | YValue 215 | 216 | 217 | Zoom In 218 | 219 | 220 | Zoom Out 221 | 222 | 223 | Advanced 224 | 225 | 226 | Maximum 227 | 228 | 229 | Median 230 | 231 | 232 | Minimum 233 | 234 | 235 | Q1 236 | 237 | 238 | Q3 239 | 240 | -------------------------------------------------------------------------------- /Syncfusion.SfColorPalette.WPF/Syncfusion.SfColorPalette.Wpf.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Colors 122 | 123 | 124 | Swatches 125 | 126 | -------------------------------------------------------------------------------- /Syncfusion.SfDiagram.WPF/Syncfusion.UI.Xaml.Diagram.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Copy 122 | 123 | 124 | Cut 125 | 126 | 127 | Paste 128 | 129 | 130 | Select All 131 | 132 | 133 | Advanced 134 | 135 | 136 | Cancel 137 | 138 | 139 | Multiple Page 140 | 141 | 142 | Print Diagram 143 | 144 | 145 | Print 146 | 147 | 148 | Print Stretch 149 | 150 | 151 | Single Page 152 | 153 | 154 | Fill 155 | 156 | 157 | None 158 | 159 | 160 | Uniform 161 | 162 | 163 | UniformToFill 164 | 165 | 166 | Delete 167 | 168 | 169 | Draw 170 | 171 | 172 | Duplicate 173 | 174 | 175 | Pivot 176 | 177 | 178 | Rotate 179 | 180 | 181 | Angle 182 | 183 | 184 | X 185 | 186 | 187 | Y 188 | 189 | 190 | W 191 | 192 | 193 | H 194 | 195 | 196 | More Shapes 197 | 198 | 199 | Clear text 200 | 201 | 202 | Start Search 203 | 204 | 205 | Minimize the Shapes window 206 | 207 | 208 | Expand the Shapes window 209 | 210 | 211 | Search Shapes 212 | 213 | 214 | Zoom Out 215 | 216 | 217 | Zoom In 218 | 219 | -------------------------------------------------------------------------------- /Syncfusion.SfImageEditor.WPF/Syncfusion.SfImageEditor.WPF.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Add Shape 122 | 123 | 124 | Add Text 125 | 126 | 127 | Align Left 128 | 129 | 130 | Align Right 131 | 132 | 133 | Arrow 134 | 135 | 136 | Automatic 137 | 138 | 139 | Bold 140 | 141 | 142 | Browse Image 143 | 144 | 145 | Cancel 146 | 147 | 148 | Center 149 | 150 | 151 | Circle 152 | 153 | 154 | Crop 155 | 156 | 157 | Height. Click Enter to change crop height 158 | 159 | 160 | Width. Click Enter to change crop width 161 | 162 | 163 | Enter Text 164 | 165 | 166 | Fill 167 | 168 | 169 | Flip 170 | 171 | 172 | Flip Horizontal 173 | 174 | 175 | Flip Vertical 176 | 177 | 178 | Font 179 | 180 | 181 | Font Color 182 | 183 | 184 | Font Size 185 | 186 | 187 | Height 188 | 189 | 190 | Italic 191 | 192 | 193 | Pan 194 | 195 | 196 | Pen 197 | 198 | 199 | Recently Used 200 | 201 | 202 | Rectangle 203 | 204 | 205 | Redo 206 | 207 | 208 | Reset 209 | 210 | 211 | Reset Zoom 212 | 213 | 214 | Rotate 215 | 216 | 217 | Save 218 | 219 | 220 | Select 221 | 222 | 223 | Border 224 | 225 | 226 | Border Width 227 | 228 | 229 | Standard Colors 230 | 231 | 232 | Stroke 233 | 234 | 235 | Stroke Width 236 | 237 | 238 | Theme Colors 239 | 240 | 241 | Underline 242 | 243 | 244 | Undo 245 | 246 | 247 | Width 248 | 249 | 250 | Zoom 251 | 252 | 253 | Zoom In 254 | 255 | 256 | Zoom Level 257 | 258 | 259 | Zoom Out 260 | 261 | 262 | Ellipse 263 | 264 | 265 | Background 266 | 267 | -------------------------------------------------------------------------------- /Syncfusion.SfInput.WPF/Syncfusion.SfInput.Wpf.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | C 122 | 123 | 124 | CE 125 | 126 | 127 | Choose Date 128 | 129 | 130 | Choose Time 131 | 132 | 133 | OK 134 | 135 | 136 | Cancel 137 | 138 | 139 | MC 140 | 141 | 142 | M- 143 | 144 | 145 | M+ 146 | 147 | 148 | MR 149 | 150 | 151 | MS 152 | 153 | -------------------------------------------------------------------------------- /Syncfusion.SfKanban.WPF/Syncfusion.SfKanban.WPF.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Item 122 | 123 | 124 | Items 125 | 126 | 127 | Items Count 128 | 129 | 130 | Max 131 | 132 | 133 | Min 134 | 135 | 136 | Unassigned 137 | 138 | -------------------------------------------------------------------------------- /Syncfusion.SfShared.WPF/Syncfusion.SfShared.Wpf.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Print All Pages 122 | 123 | 124 | Bottom 125 | 126 | 127 | Cancel 128 | 129 | 130 | Collated 131 | 132 | 133 | Copies 134 | 135 | 136 | Print Current Page 137 | 138 | 139 | Custom 140 | 141 | 142 | Height 143 | 144 | 145 | Left 146 | 147 | 148 | Margins 149 | 150 | 151 | New 152 | 153 | 154 | OK 155 | 156 | 157 | Page Setup 158 | 159 | 160 | Print 161 | 162 | 163 | Printer 164 | 165 | 166 | Print Preview 167 | 168 | 169 | More Paper Sizes 170 | 171 | 172 | Landscape Orientation 173 | 174 | 175 | Portrait Orientation 176 | 177 | 178 | Custom Margins 179 | 180 | 181 | Moderate 182 | 183 | 184 | Narrow 185 | 186 | 187 | Normal 188 | 189 | 190 | Wide 191 | 192 | 193 | Paper Size 194 | 195 | 196 | Quick Print 197 | 198 | 199 | Right 200 | 201 | 202 | Top 203 | 204 | 205 | UnCollated 206 | 207 | 208 | Custom Print 209 | 210 | 211 | Width 212 | 213 | 214 | Pages 215 | 216 | 217 | to 218 | 219 | 220 | Settings 221 | 222 | -------------------------------------------------------------------------------- /Syncfusion.SfSmithChart.WPF/Syncfusion.SfSmithChart.WPF.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Reactance 122 | 123 | 124 | Resistance 125 | 126 | -------------------------------------------------------------------------------- /Syncfusion.SfSpellChecker.WPF/Syncfusion.SfSpellChecker.WPF.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Add to Dictionary 122 | 123 | 124 | Close 125 | 126 | 127 | Spell Checker 128 | 129 | 130 | Ignore All 131 | 132 | 133 | Ignore Once 134 | 135 | 136 | Not in Dictionary : 137 | 138 | 139 | Change All 140 | 141 | 142 | Change 143 | 144 | 145 | Suggestions : 146 | 147 | 148 | No suggestion available 149 | 150 | 151 | Undo Edit 152 | 153 | 154 | Spell check is complete. 155 | 156 | 157 | Spell Checker 158 | 159 | -------------------------------------------------------------------------------- /Syncfusion.SfSunburstChart.WPF/Syncfusion.SfSunburstChart.WPF.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Category 122 | 123 | 124 | Value 125 | 126 | 127 | Back 128 | 129 | 130 | Reset 131 | 132 | -------------------------------------------------------------------------------- /Syncfusion.SfTreeView.WPF/Syncfusion.SfTreeView.WPF.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Cannot Drop Here 122 | Text for Cannot drop here in TreeViewItemDragPopup 123 | 124 | 125 | Drop above 126 | Text for Drop above in TreeViewItemDragPopup 127 | 128 | 129 | Drop as child 130 | Text for Drop as child in TreeViewItemDragPopup of SfTreeView 131 | 132 | 133 | Drop below 134 | Text for Drop below in TreeViewItemDragPopup 135 | 136 | 137 | Drop here 138 | Text for Drop here in TreeViewItemDragPopup 139 | 140 | -------------------------------------------------------------------------------- /Syncfusion.Shared.WPF.Classic/Syncfusion.Shared.Wpf.Classic.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Not in Dictionary: 122 | 123 | 124 | Add to Dictionary 125 | 126 | 127 | Change All 128 | 129 | 130 | Change 131 | 132 | 133 | Close 134 | 135 | 136 | Ignore All 137 | 138 | 139 | Ignore Once 140 | 141 | 142 | Suggestions: 143 | 144 | 145 | Spell Checker 146 | 147 | -------------------------------------------------------------------------------- /Syncfusion.Tools.WPF.Classic/Syncfusion.Tools.Wpf.Classic.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /Syncfusion.Tools.WPF/Syncfusion.Tools.Wpf.Classic.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | --------------------------------------------------------------------------------