Skip to content

Commit 7b14090

Browse files
authored
Merge pull request #653 from telerik/vld/cyrillic-letters
chore: replaced cyrillic letters with latin ones
2 parents f440014 + 260aa2b commit 7b14090

File tree

18 files changed

+24
-24
lines changed

18 files changed

+24
-24
lines changed

getting-started/download-product-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Since the **Telerik Document Processing** is a part of several [Telerik bundles]
3232

3333
* Documentation files
3434

35-
Тo download these files, follow the steps below:
35+
To download these files, follow the steps below:
3636

3737
1\. Log into [your Telerik account](https://www.telerik.com/account/) and click the **Downloads** option:
3838

knowledge-base/import-export-save-load-workbook.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public Workbook LoadFromUploadedFile(UploadedFile uploadedFile) // Telerik RadAs
180180
The SQL table used for the example below has the `FileContent` column as `varbinary(MAX)`.
181181

182182
````C#
183-
// the XLSX format provider is used for demo purposes and can be replaced with any format provider implementing the IBinaryWorkbookFormatProvider interfacе
183+
// the XLSX format provider is used for demo purposes and can be replaced with any format provider implementing the IBinaryWorkbookFormatProvider interface
184184
IBinaryWorkbookFormatProvider formatProvider = new Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml.Xlsx.XlsxFormatProvider();
185185

186186
// ReadFileFromDatabaseAsByteArray is demo method declared in the code snippet below

libraries/radpdfprocessing/editing/radfixeddocumenteditor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,13 +157,13 @@ The character properties that are responsible for the look of the runs are liste
157157
* __Subscript__: A baseline that is aligned at the subscript position of the containing box.
158158
* __Superscript__: A baseline that is aligned at the superscript position of the containing box.
159159

160-
* __UnderlinePattern__: Тhe underline pattern. Two patterns are supported.
160+
* __UnderlinePattern__: The underline pattern. Two patterns are supported.
161161
* __None__: There is no underline. This is the default value.
162162
* __Single__: The underline is a single line.
163163

164164
* __UnderlineColor__: The color of the underline.
165165

166-
* __StrikethroughPattern__: Тhe strikethrough pattern. Two patterns are supported.
166+
* __StrikethroughPattern__: The strikethrough pattern. Two patterns are supported.
167167
* __None__: There is no strikethrough. This is the default value.
168168
* __Single__: The strikethrough is a single line.
169169

libraries/radpdfprocessing/editing/table/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ If you want to apply default styling to all the cells in a table, you can use Ta
5454
* __Background__: Specifies the background of the cell.
5555

5656

57-
__Еxample 2__ shows how to use the __DefaultCellProperties__ of a table
57+
__Example 2__ shows how to use the __DefaultCellProperties__ of a table
5858

5959

6060
#### __[C#] Example 2: Use DefaultCellProperties of Table__

libraries/radpdfprocessing/editing/table/tablecell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ __TableCell__ class represents a single cell in a [Table]({%slug radpdfprocessin
2121

2222
## Inserting a TableCell
2323

24-
In order to add a cell to а __Тable__, you should add it in the __TableCellCollection__ of a __TableRow__.
24+
In order to add a cell to a __Table__, you should add it in the __TableCellCollection__ of a __TableRow__.
2525

2626

2727
The code snippet in __Example 1__ shows how to create a table with a single row and add a cell in the first row.

libraries/radpdfprocessing/features/digital-signature/pdfstreamsigner.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ As of **Q2 2025** RadPdfProcessing introduces the **PdfStreamSigner**. The **Sig
1616
1717
|Method|Description|
1818
|----|----|
19-
|**PdfStreamSigner(Stream outputStream)**|Creates a new instance of thе PdfStreamSigner and specifies the output stream of the signed document.|
19+
|**PdfStreamSigner(Stream outputStream)**|Creates a new instance of the PdfStreamSigner and specifies the output stream of the signed document.|
2020
|**SignDocument(Stream originalStream, SignatureField signatureField, int pageIndex, TimeSpan? timeout)**|Adds a [Digital Signature]({%slug radpdfprocessing-features-digital-signature%}) to the PDF document|
2121

2222
The following example shows how to insert multiple [Digital Signatures]({%slug radpdfprocessing-features-digital-signature%}) into a PDF document using the PdfStreamSigner:

libraries/radpdfprocessing/model/annotations/widgets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ This class corresponds to WidgetContentType.PushButtonContent enum value and rep
117117

118118
* **Content**: Provides the AnnotationContentSource, used to visualize the button in the PDF viewer. This property is with higher priority compared to AppearanceCharacteristics property.
119119

120-
* **AppearanceCharacteristics**: А [PushButtonAppearanceCharacteristics class]({%slug radpdfprocessing-model-interactive-forms-dynamic-appearance-properties%}#pushbuttonappearancecharacteristics-class) instance providing information on how to dynamically recalculate the widget appearance. This property is used only when the [AcroForm class]({%slug radpdfprocessing-model-interactive-forms-acroform %}) has ViewersShouldRecalculateWidgetAppearances property set to *true*, which forces the PDF viewer to ignore the provided AnnotationContentSource. In order to apply these properties, you should call **RecalculateContent()** method, which will modify the Content property value so that it corresponds to the appearance characteristics.
120+
* **AppearanceCharacteristics**: A [PushButtonAppearanceCharacteristics class]({%slug radpdfprocessing-model-interactive-forms-dynamic-appearance-properties%}#pushbuttonappearancecharacteristics-class) instance providing information on how to dynamically recalculate the widget appearance. This property is used only when the [AcroForm class]({%slug radpdfprocessing-model-interactive-forms-acroform %}) has ViewersShouldRecalculateWidgetAppearances property set to *true*, which forces the PDF viewer to ignore the provided AnnotationContentSource. In order to apply these properties, you should call **RecalculateContent()** method, which will modify the Content property value so that it corresponds to the appearance characteristics.
121121

122122
### TwoStatesButtonWidget Class
123123

libraries/radspreadprocessing/features/data-validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The __AnyValueDataValidationRuleContext__ class exposes the following properties
5858
__SingleArgumentdataValidationRuleContext__ exposes the properties which the __AnyValueDataValidationRuleContext__ class has, but extends them with the following properties:
5959

6060
* __IgnoreBlank__: Specifies if the validation will ignore blank values and this way consider them as valid values.
61-
* __Argument1__: Тhe argument needed for the validation.
61+
* __Argument1__: The argument needed for the validation.
6262
* __CellIndex__: The cell index of the cell based on which the validation rule is created.
6363
* __Worksheet__: The worksheet in which the data validation rule is created.
6464

libraries/radspreadprocessing/features/headers-and-footers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ The following list describes all valid uses of the ampersand symbol sequences. I
148148

149149
* **&A**: This text sequence allows you to insert a **Sheet name** field. This field is evaluated as the Sheet Name property value.
150150

151-
**Example 3** demonstrates how you could insert a date field in the header, a page number filed combined with а number of pages field in the footer of a worksheet .
151+
**Example 3** demonstrates how you could insert a date field in the header, a page number filed combined with a number of pages field in the footer of a worksheet .
152152

153153
#### **[C#] Example 3: Insert fields in header/footer**
154154

libraries/radspreadprocessing/features/named-ranges.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Note that qualifier for a workbook name is required only if the current workshee
7575

7676
## Types of Names
7777

78-
Тhe document model has support only for Defined Names.
78+
The document model has support only for Defined Names.
7979

8080

8181
__Defined name__: A name that can contain any value that can be stored in a cell: a number or text constant, a formula, or a cell reference. You can create your own defined names. Note that you can edit the name, value and comment of the already created defined name, however, you cannot change its scope.

0 commit comments

Comments
 (0)