mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
chore: delete unused i18n json files
This commit is contained in:
@@ -1,114 +0,0 @@
|
||||
{
|
||||
"insertCsvColumns": {
|
||||
"title": "Insert CSV columns",
|
||||
"description": "Add new columns to CSV data at specified positions.",
|
||||
"inputTitle": "Input CSV",
|
||||
"resultTitle": "Output CSV",
|
||||
"csvToInsert": "CSV to insert",
|
||||
"csvSeparator": "CSV separator",
|
||||
"csvToInsertDescription": "Enter one or more columns you want to insert into the CSV. the character used to delimit columns has to be the same with the one in the CSV input file. Ps: Blank lines will be ignored",
|
||||
"csvOptions": "CSV Options",
|
||||
"separatorDescription": "Enter the character used to delimit columns in the CSV input file.",
|
||||
"quoteCharDescription": "Enter the quote character used to quote the CSV input fields.",
|
||||
"commentCharacterDescription": "Enter the character indicating the start of a comment line. Lines starting with this symbol will be skipped.",
|
||||
"fillWithEmptyValues": "Fill With Empty Values",
|
||||
"fillWithCustomValues": "Fill With Customs Values",
|
||||
"customFillDescription": "If the input CSV file is incomplete (missing values), then add empty fields or custom symbols to records to make a well-formed CSV?",
|
||||
"customFillValueDescription": "Use this custom value to fill in missing fields. (Works only with \"Custom Values\" mode above.)",
|
||||
"positionOptions": "Position Options",
|
||||
"prependColumns": "Prepend columns",
|
||||
"appendColumns": "Append columns",
|
||||
"customPosition": "Custom position",
|
||||
"insertingPositionDescription": "Specify where to insert the columns in the CSV file.",
|
||||
"headerName": "Header name",
|
||||
"position": "Position",
|
||||
"customPositionOptionsDescription": "Select the method to insert the columns in the CSV file.",
|
||||
"headerNameDescription": "Header of the column you want to insert columns after.",
|
||||
"rowNumberDescription": "Number of the column you want to insert columns after.",
|
||||
"toolInfo": {
|
||||
"title": "Insert CSV Columns",
|
||||
"description": "This tool allows you to insert new columns into CSV data at specified positions. You can prepend, append, or insert columns at custom positions based on header names or column numbers."
|
||||
},
|
||||
"shortDescription": "Quickly insert one or more new columns anywhere in a CSV file."
|
||||
},
|
||||
"csvToJson": {
|
||||
"inputTitle": "Input CSV",
|
||||
"resultTitle": "Output JSON",
|
||||
"inputCsvFormat": "Input CSV Format",
|
||||
"columnSeparator": "Column Separator (e.g., , ; \\t)",
|
||||
"fieldQuote": "Field Quote (e.g., \")",
|
||||
"commentSymbol": "Comment Symbol (e.g., #)",
|
||||
"conversionOptions": "Conversion Options",
|
||||
"useHeaders": "Use Headers",
|
||||
"useHeadersDescription": "Treat the first row as column headers",
|
||||
"skipEmptyLines": "Skip Empty Lines",
|
||||
"skipEmptyLinesDescription": "Ignore empty lines in the input CSV",
|
||||
"dynamicTypes": "Dynamic Types",
|
||||
"dynamicTypesDescription": "Automatically convert numbers and booleans",
|
||||
"errorParsing": "Error parsing CSV: {{error}}",
|
||||
"title": "Convert CSV to JSON",
|
||||
"description": "Convert CSV files to JSON format with customizable options for delimiters, quotes, and output formatting. Support for headers, comments, and dynamic type conversion.",
|
||||
"shortDescription": "Convert CSV data to JSON format."
|
||||
},
|
||||
"findIncompleteCsvRecords": {
|
||||
"title": "Find incomplete CSV records",
|
||||
"inputTitle": "Input CSV",
|
||||
"resultTitle": "CSV Status",
|
||||
"toolInfo": {
|
||||
"title": "What is a {{title}}?"
|
||||
},
|
||||
"csvInputOptions": "CSV Input Options",
|
||||
"csvSeparatorDescription": "Enter the character used to delimit columns in the CSV input file.",
|
||||
"quoteCharacterDescription": "Enter the quote character used to quote the CSV input fields.",
|
||||
"commentCharacterDescription": "Enter the character indicating the start of a comment line. Lines starting with this symbol will be skipped.",
|
||||
"checkingOptions": "Checking Options",
|
||||
"deleteLinesWithNoData": "Delete Lines with No Data",
|
||||
"deleteLinesWithNoDataDescription": "Remove empty lines from CSV input file.",
|
||||
"findEmptyValues": "Find Empty Values",
|
||||
"findEmptyValuesDescription": "Display a message about CSV fields that are empty (These are not missing fields but fields that contain nothing).",
|
||||
"limitNumberOfMessages": "Limit number of messages",
|
||||
"messageLimitDescription": "Set the limit of number of messages in the output.",
|
||||
"description": "Just upload your CSV file in the form below and this tool will automatically check if none of the rows or columns are missing values. In the tool options, you can adjust the input file format (specify the delimiter, quote character, and comment character). Additionally, you can enable checking for empty values, skip empty lines, and set a limit on the number of error messages in the output.",
|
||||
"shortDescription": "Quickly find rows and columns in CSV that are missing values."
|
||||
},
|
||||
"changeCsvSeparator": {
|
||||
"title": "Change CSV Separator",
|
||||
"description": "Change the delimiter/separator in CSV files. Convert between different CSV formats like comma, semicolon, tab, or custom separators.",
|
||||
"shortDescription": "Change CSV file delimiter"
|
||||
},
|
||||
"csvRowsToColumns": {
|
||||
"title": "Convert CSV Rows to Columns",
|
||||
"description": "This tool converts rows of a CSV (Comma Separated Values) file into columns. It extracts the horizontal lines from the input CSV one by one, rotates them 90 degrees, and outputs them as vertical columns one after another, separated by commas.', longDescription: 'This tool converts rows of a CSV (Comma Separated Values) file into columns. For example, if the input CSV data has 6 rows, then the output will have 6 columns and the elements of the rows will be arranged from the top to bottom. In a well-formed CSV, the number of values in each row is the same. However, in cases when rows are missing fields, the program can fix them and you can choose from the available options: fill missing data with empty elements or replace missing data with custom elements, such as \"missing\", \"?\", or \"x\". During the conversion process, the tool also cleans the CSV file from unnecessary information, such as empty lines (these are lines without visible information) and comments. To help the tool correctly identify comments, in the options, you can specify the symbol at the beginning of a line that starts a comment. This symbol is typically a hash \"#\" or double slash \"//\". Csv-abulous!.",
|
||||
"shortDescription": "Convert CSV rows to columns.",
|
||||
"longDescription": "This tool converts rows of a CSV (Comma Separated Values) file into columns. For example, if the input CSV data has 6 rows, then the output will have 6 columns and the elements of the rows will be arranged from the top to bottom. In a well-formed CSV, the number of values in each row is the same. However, in cases when rows are missing fields, the program can fix them and you can choose from the available options: fill missing data with empty elements or replace missing data with custom elements, such as"
|
||||
},
|
||||
"csvToTsv": {
|
||||
"title": "Convert CSV to TSV",
|
||||
"description": "Upload your CSV file in the form below and it will automatically get converted to a TSV file. In the tool options, you can customize the input CSV format – specify the field delimiter, quotation character, and comment symbol, as well as skip empty CSV lines, and choose whether to preserve CSV column headers.",
|
||||
"shortDescription": "Convert CSV data to TSV format.",
|
||||
"longDescription": "This tool transforms Comma Separated Values (CSV) data to Tab Separated Values (TSV) data. Both CSV and TSV are popular file formats for storing tabular data but they use different delimiters to separate values – CSV uses commas ("
|
||||
},
|
||||
"csvToXml": {
|
||||
"title": "Convert CSV to XML",
|
||||
"description": "Convert CSV files to XML format with customizable options.",
|
||||
"shortDescription": "Convert CSV data to XML format."
|
||||
},
|
||||
"csvToYaml": {
|
||||
"title": "Convert CSV to YAML",
|
||||
"description": "Just upload your CSV file in the form below and it will automatically get converted to a YAML file. In the tool options, you can specify the field delimiter character, field quote character, and comment character to adapt the tool to custom CSV formats. Additionally, you can select the output YAML format: one that preserves CSV headers or one that excludes CSV headers.",
|
||||
"shortDescription": "Quickly convert a CSV file to a YAML file.",
|
||||
"longDescription": "This tool transforms CSV (Comma Separated Values) data into the YAML (Yet Another Markup Language) data. CSV is a simple, tabular format that is used to represent matrix-like data types consisting of rows and columns. YAML, on the other hand, is a more advanced format (actually a superset of JSON), which creates more human-readable data for serialization, and it supports lists, dictionaries, and nested objects. This program supports various input CSV formats – the input data can be comma-separated (default), semicolon-separated, pipe-separated, or use another completely different delimiter. You can specify the exact delimiter your data uses in the options. Similarly, in the options, you can specify the quote character that is used to wrap CSV fields (by default a double-quote symbol). You can also skip lines that start with comments by specifying the comment symbols in the options. This allows you to keep your data clean by skipping unnecessary lines. There are two ways to convert CSV to YAML. The first method converts each CSV row into a YAML list. The second method extracts headers from the first CSV row and creates YAML objects with keys based on these headers. You can also customize the output YAML format by specifying the number of spaces for indenting YAML structures. If you need to perform the reverse conversion, that is, transform YAML into CSV, you can use our Convert YAML to CSV tool. Csv-abulous!"
|
||||
},
|
||||
"swapCsvColumns": {
|
||||
"title": "Swap CSV Columns",
|
||||
"description": "Just upload your CSV file in the form below, specify the columns to swap, and the tool will automatically change the positions of the specified columns in the output file. In the tool options, you can specify the column positions or names that you want to swap, as well as fix incomplete data and optionally remove empty records and records that have been commented out.",
|
||||
"shortDescription": "Reorder CSV columns.",
|
||||
"longDescription": "This tool reorganizes CSV data by swapping the positions of its columns. Swapping columns can enhance the readability of a CSV file by placing frequently used data together or in the front for easier data comparison and editing. For example, you can swap the first column with the last or swap the second column with the third. To swap columns based on their positions, select the"
|
||||
},
|
||||
"transposeCsv": {
|
||||
"title": "Transpose CSV",
|
||||
"description": "Just upload your CSV file in the form below, and this tool will automatically transpose your CSV. In the tool options, you can specify the character that starts the comment lines in the CSV to remove them. Additionally, if the CSV is incomplete (missing values), you can replace missing values with the empty character or a custom character.",
|
||||
"shortDescription": "Quickly transpose a CSV file.",
|
||||
"longDescription": "This tool transposes Comma Separated Values (CSV). It treats the CSV as a matrix of data and flips all elements across the main diagonal. The output contains the same CSV data as the input, but now all the rows have become columns, and all the columns have become rows. After transposition, the CSV file will have opposite dimensions. For example, if the input file has 4 columns and 3 rows, the output file will have 3 columns and 4 rows. During conversion, the program also cleans the data from unnecessary lines and corrects incomplete data. Specifically, the tool automatically deletes all empty records and comments that begin with a specific character, which you can set in the option. Additionally, in cases where the CSV data is corrupted or lost, the utility completes the file with empty fields or custom fields that can be specified in the options. Csv-abulous!"
|
||||
}
|
||||
}
|
||||
@@ -1,123 +0,0 @@
|
||||
{
|
||||
"changeSeparator": {
|
||||
"title": "CSV विभाजक बदलें",
|
||||
"description": "CSV फ़ाइल में विभाजक वर्ण बदलें।",
|
||||
"inputTitle": "इनपुट CSV",
|
||||
"resultTitle": "परिवर्तित CSV",
|
||||
"separatorOptions": "विभाजक विकल्प",
|
||||
"inputSeparator": "इनपुट विभाजक",
|
||||
"inputSeparatorPlaceholder": "विभाजक",
|
||||
"outputSeparator": "आउटपुट विभाजक",
|
||||
"outputSeparatorPlaceholder": "विभाजक",
|
||||
"commonSeparators": "सामान्य विभाजक",
|
||||
"comma": "कॉमा",
|
||||
"semicolon": "सेमीकोलन",
|
||||
"tab": "टैब",
|
||||
"pipe": "पाइप"
|
||||
},
|
||||
"rowsToColumns": {
|
||||
"title": "CSV पंक्तियां से स्तंभ",
|
||||
"description": "CSV डेटा को पंक्तियों से स्तंभों में बदलें।",
|
||||
"inputTitle": "इनपुट CSV",
|
||||
"resultTitle": "परिवर्तित CSV",
|
||||
"transformationOptions": "परिवर्तन विकल्प",
|
||||
"transposeData": "डेटा ट्रांसपोज़ करें",
|
||||
"includeHeaders": "शीर्षक शामिल करें",
|
||||
"separatorPlaceholder": "विभाजक"
|
||||
},
|
||||
"csvToJson": {
|
||||
"title": "CSV से JSON",
|
||||
"description": "CSV डेटा को JSON प्रारूप में बदलें।",
|
||||
"inputTitle": "इनपुट CSV",
|
||||
"resultTitle": "JSON परिणाम",
|
||||
"conversionOptions": "रूपांतरण विकल्प",
|
||||
"firstRowAsHeaders": "पहली पंक्ति शीर्षक के रूप में",
|
||||
"includeHeaders": "शीर्षक शामिल करें",
|
||||
"outputFormat": "आउटपुट प्रारूप",
|
||||
"arrayFormat": "सरणी प्रारूप",
|
||||
"objectFormat": "ऑब्जेक्ट प्रारूप",
|
||||
"separatorPlaceholder": "विभाजक"
|
||||
},
|
||||
"csvToTsv": {
|
||||
"title": "CSV से TSV",
|
||||
"description": "CSV फ़ाइल को TSV प्रारूप में बदलें।",
|
||||
"inputTitle": "इनपुट CSV",
|
||||
"resultTitle": "TSV परिणाम",
|
||||
"conversionOptions": "रूपांतरण विकल्प",
|
||||
"inputSeparator": "इनपुट विभाजक",
|
||||
"inputSeparatorPlaceholder": "विभाजक",
|
||||
"preserveHeaders": "शीर्षक संरक्षित करें"
|
||||
},
|
||||
"csvToXml": {
|
||||
"title": "CSV से XML",
|
||||
"description": "CSV डेटा को XML प्रारूप में बदलें।",
|
||||
"inputTitle": "इनपुट CSV",
|
||||
"resultTitle": "XML परिणाम",
|
||||
"conversionOptions": "रूपांतरण विकल्प",
|
||||
"rootElement": "मूल तत्व",
|
||||
"rootPlaceholder": "तत्व नाम",
|
||||
"rowElement": "पंक्ति तत्व",
|
||||
"rowPlaceholder": "तत्व नाम",
|
||||
"firstRowAsHeaders": "पहली पंक्ति शीर्षक के रूप में",
|
||||
"separatorPlaceholder": "विभाजक"
|
||||
},
|
||||
"csvToYaml": {
|
||||
"title": "CSV से YAML",
|
||||
"description": "CSV डेटा को YAML प्रारूप में बदलें।",
|
||||
"inputTitle": "इनपुट CSV",
|
||||
"resultTitle": "YAML परिणाम",
|
||||
"conversionOptions": "रूपांतरण विकल्प",
|
||||
"firstRowAsHeaders": "पहली पंक्ति शीर्षक के रूप में",
|
||||
"includeHeaders": "शीर्षक शामिल करें",
|
||||
"indentSize": "इंडेंट आकार",
|
||||
"sizePlaceholder": "आकार",
|
||||
"separatorPlaceholder": "विभाजक"
|
||||
},
|
||||
"findIncompleteRecords": {
|
||||
"title": "अधूरे CSV रिकॉर्ड खोजें",
|
||||
"description": "CSV फ़ाइल में अधूरे रिकॉर्ड खोजें।",
|
||||
"inputTitle": "इनपुट CSV",
|
||||
"resultTitle": "अधूरे रिकॉर्ड",
|
||||
"searchOptions": "खोज विकल्प",
|
||||
"checkEmptyValues": "खाली मूल्य जांचें",
|
||||
"skipEmptyLines": "खाली पंक्तियां छोड़ें",
|
||||
"errorLimit": "त्रुटि सीमा",
|
||||
"limitPlaceholder": "सीमा",
|
||||
"separatorPlaceholder": "विभाजक"
|
||||
},
|
||||
"insertColumns": {
|
||||
"title": "CSV स्तंभ डालें",
|
||||
"description": "CSV फ़ाइल में नए स्तंभ डालें।",
|
||||
"inputTitle": "इनपुट CSV",
|
||||
"resultTitle": "संशोधित CSV",
|
||||
"insertionOptions": "डालने के विकल्प",
|
||||
"insertPosition": "डालने की स्थिति",
|
||||
"positionPlaceholder": "स्थिति",
|
||||
"columnNames": "स्तंभ नाम",
|
||||
"namesPlaceholder": "नाम (कॉमा से अलग)",
|
||||
"defaultValues": "डिफ़ॉल्ट मूल्य",
|
||||
"valuesPlaceholder": "मूल्य (कॉमा से अलग)",
|
||||
"separatorPlaceholder": "विभाजक"
|
||||
},
|
||||
"swapColumns": {
|
||||
"title": "CSV स्तंभ बदलें",
|
||||
"description": "CSV फ़ाइल में स्तंभों की स्थिति बदलें।",
|
||||
"inputTitle": "इनपुट CSV",
|
||||
"resultTitle": "संशोधित CSV",
|
||||
"swapOptions": "बदलने के विकल्प",
|
||||
"firstColumn": "पहला स्तंभ",
|
||||
"firstColumnPlaceholder": "स्तंभ संख्या",
|
||||
"secondColumn": "दूसरा स्तंभ",
|
||||
"secondColumnPlaceholder": "स्तंभ संख्या",
|
||||
"separatorPlaceholder": "विभाजक"
|
||||
},
|
||||
"transposeCsv": {
|
||||
"title": "CSV ट्रांसपोज़ करें",
|
||||
"description": "CSV डेटा को ट्रांसपोज़ करें (पंक्तियों को स्तंभों में बदलें)।",
|
||||
"inputTitle": "इनपुट CSV",
|
||||
"resultTitle": "ट्रांसपोज़ किया गया CSV",
|
||||
"transposeOptions": "ट्रांसपोज़ विकल्प",
|
||||
"includeHeaders": "शीर्षक शामिल करें",
|
||||
"separatorPlaceholder": "विभाजक"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user