mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 22:19:36 +02:00
fix: tsc
This commit is contained in:
@@ -65,7 +65,9 @@ export const resources = {
|
||||
} as const;
|
||||
|
||||
export type I18nNamespaces = keyof (typeof resources)['en'];
|
||||
export type FullI18nKey = `${string}:${ParseKeys<I18nNamespaces>}`;
|
||||
export type FullI18nKey = {
|
||||
[K in I18nNamespaces]: `${K}:${ParseKeys<K>}`;
|
||||
}[I18nNamespaces];
|
||||
|
||||
i18n.use(Backend).use(initReactI18next).init({
|
||||
resources,
|
||||
|
@@ -10,7 +10,9 @@
|
||||
"toolInfo": {
|
||||
"title": "What is {{title}}?",
|
||||
"description": "This tool allows you to extract the audio track from video files. You can choose from different audio formats including AAC, MP3, and WAV."
|
||||
}
|
||||
},
|
||||
"title": "Extract audio",
|
||||
"shortDescription": "Extract audio from video files (MP4, MOV, etc.) to AAC, MP3, or WAV."
|
||||
},
|
||||
"changeSpeed": {
|
||||
"title": "Change audio speed",
|
||||
@@ -25,6 +27,17 @@
|
||||
"toolInfo": {
|
||||
"title": "What is {{title}}?",
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"title": "Change audio speed"
|
||||
},
|
||||
"mergeAudio": {
|
||||
"title": "Merge Audio",
|
||||
"description": "Combine multiple audio files into a single audio file by concatenating them in sequence.",
|
||||
"shortDescription": "Merge multiple audio files into one (MP3, AAC, WAV)."
|
||||
},
|
||||
"trim": {
|
||||
"title": "Trim Audio",
|
||||
"description": "Cut and trim audio files to extract specific segments by specifying start and end times.",
|
||||
"shortDescription": "Trim audio files to extract specific time segments (MP3, AAC, WAV)."
|
||||
}
|
||||
}
|
||||
|
@@ -28,17 +28,17 @@
|
||||
"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."
|
||||
}
|
||||
},
|
||||
"title": "Insert CSV columns",
|
||||
"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",
|
||||
@@ -46,8 +46,10 @@
|
||||
"skipEmptyLinesDescription": "Ignore empty lines in the input CSV",
|
||||
"dynamicTypes": "Dynamic Types",
|
||||
"dynamicTypesDescription": "Automatically convert numbers and booleans",
|
||||
|
||||
"errorParsing": "Error parsing CSV: {{error}}"
|
||||
"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",
|
||||
@@ -66,6 +68,44 @@
|
||||
"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."
|
||||
"messageLimitDescription": "Set the limit of number of messages in the output.",
|
||||
"title": "Find incomplete CSV records",
|
||||
"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."
|
||||
},
|
||||
"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."
|
||||
},
|
||||
"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."
|
||||
},
|
||||
"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."
|
||||
},
|
||||
"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."
|
||||
}
|
||||
}
|
||||
|
@@ -12,7 +12,9 @@
|
||||
"toolInfo": {
|
||||
"title": "Prettify JSON",
|
||||
"description": "This tool allows you to format JSON data with proper indentation and spacing, making it more readable and easier to work with."
|
||||
}
|
||||
},
|
||||
"title": "Prettify JSON",
|
||||
"shortDescription": "Format and beautify JSON code"
|
||||
},
|
||||
"minify": {
|
||||
"title": "Minify JSON",
|
||||
@@ -22,7 +24,9 @@
|
||||
"toolInfo": {
|
||||
"title": "What Is JSON Minification?",
|
||||
"description": "JSON minification is the process of removing all unnecessary whitespace characters from JSON data while maintaining its validity. This includes removing spaces, newlines, and indentation that aren't required for the JSON to be parsed correctly. Minification reduces the size of JSON data, making it more efficient for storage and transmission while keeping the exact same data structure and values."
|
||||
}
|
||||
},
|
||||
"title": "Minify JSON",
|
||||
"shortDescription": "Minify JSON by removing whitespace"
|
||||
},
|
||||
"validateJson": {
|
||||
"title": "Validate JSON",
|
||||
@@ -34,6 +38,28 @@
|
||||
"toolInfo": {
|
||||
"title": "What is JSON Validation?",
|
||||
"description": "JSON (JavaScript Object Notation) is a lightweight data-interchange format. JSON validation ensures that the structure of the data conforms to the JSON standard. A valid JSON object must have: - Property names enclosed in double quotes. - Properly balanced curly braces {}. - No trailing commas after the last key-value pair. - Proper nesting of objects and arrays. This tool checks the input JSON and provides feedback to help identify and fix common errors."
|
||||
}
|
||||
},
|
||||
"title": "Validate JSON",
|
||||
"shortDescription": "Validate JSON code for errors"
|
||||
},
|
||||
"escapeJson": {
|
||||
"title": "Escape JSON",
|
||||
"description": "Escape special characters in JSON strings. Convert JSON data to properly escaped format for safe transmission or storage.",
|
||||
"shortDescription": "Escape special characters in JSON"
|
||||
},
|
||||
"jsonToXml": {
|
||||
"title": "JSON to XML",
|
||||
"description": "Convert JSON data to XML format. Transform structured JSON objects into well-formed XML documents.",
|
||||
"shortDescription": "Convert JSON to XML format"
|
||||
},
|
||||
"stringify": {
|
||||
"title": "Stringify JSON",
|
||||
"description": "Convert JavaScript objects to JSON string format. Serialize data structures into JSON strings for storage or transmission.",
|
||||
"shortDescription": "Convert objects to JSON string"
|
||||
},
|
||||
"tsvToJson": {
|
||||
"title": "TSV to JSON",
|
||||
"description": "Convert TSV (Tab-Separated Values) data to JSON format. Transform tabular data into structured JSON objects.",
|
||||
"shortDescription": "Convert TSV to JSON format"
|
||||
}
|
||||
}
|
||||
|
@@ -14,7 +14,10 @@
|
||||
"findAbsolutelyUniqueItems": "Find Absolutely Unique Items",
|
||||
"findAbsolutelyUniqueItemsDescription": "Display only those items of the list that exist in a single copy.",
|
||||
"caseSensitiveItems": "Case Sensitive Items",
|
||||
"caseSensitiveItemsDescription": "Output items with different case as unique elements in the list."
|
||||
"caseSensitiveItemsDescription": "Output items with different case as unique elements in the list.",
|
||||
"title": "Find unique",
|
||||
"description": "World's simplest browser-based utility for finding unique items in a list. Input your list and instantly get all unique values with duplicates removed. Perfect for data cleaning, deduplication, or finding distinct elements.",
|
||||
"shortDescription": "Find unique items in a list"
|
||||
},
|
||||
"wrap": {
|
||||
"title": "Wrap List",
|
||||
@@ -33,7 +36,9 @@
|
||||
"toolInfo": {
|
||||
"title": "List Wrapping",
|
||||
"description": "This tool allows you to add text before and after each item in a list. You can specify different text for the left and right sides, and control how the list is processed. It's useful for adding quotes, brackets, or other formatting to list items, preparing data for different formats, or creating structured text."
|
||||
}
|
||||
},
|
||||
"title": "Wrap",
|
||||
"shortDescription": "Wrap list items with specified criteria"
|
||||
},
|
||||
"sort": {
|
||||
"inputTitle": "Input list",
|
||||
@@ -67,7 +72,10 @@
|
||||
"sortedItemProperties": "Sorted item properties",
|
||||
"joinSeparatorDescription": "Use this symbol as a joiner between items in a sorted list.",
|
||||
"removeDuplicates": "Remove duplicates",
|
||||
"removeDuplicatesDescription": "Delete duplicate list items."
|
||||
"removeDuplicatesDescription": "Delete duplicate list items.",
|
||||
"title": "Sort",
|
||||
"description": "World's simplest browser-based utility for sorting list items. Input your list and specify sorting criteria to organize items in ascending or descending order. Perfect for data organization, text processing, or creating ordered lists.",
|
||||
"shortDescription": "Sort list items in specified order"
|
||||
},
|
||||
"group": {
|
||||
"inputTitle": "Input list",
|
||||
@@ -95,7 +103,10 @@
|
||||
"deleteEmptyItemsDescription": "Ignore empty items and don't include them in the groups.",
|
||||
"padNonFullGroups": "Pad Non-full Groups",
|
||||
"padNonFullGroupsDescription": "Fill non-full groups with a custom item (enter below).",
|
||||
"paddingCharDescription": "Use this character or item to pad non-full groups."
|
||||
"paddingCharDescription": "Use this character or item to pad non-full groups.",
|
||||
"title": "Group",
|
||||
"description": "World's simplest browser-based utility for grouping list items. Input your list and specify grouping criteria to organize items into logical groups. Perfect for categorizing data, organizing information, or creating structured lists. Supports custom separators and various grouping options.",
|
||||
"shortDescription": "Group list items by common properties"
|
||||
},
|
||||
"duplicate": {
|
||||
"toolInfo": {
|
||||
@@ -132,7 +143,10 @@
|
||||
"title": "Fractional duplication",
|
||||
"description": "This example shows how to duplicate a list with a fractional number of copies."
|
||||
}
|
||||
}
|
||||
},
|
||||
"title": "Duplicate",
|
||||
"description": "World's simplest browser-based utility for duplicating list items. Input your list and specify duplication criteria to create copies of items. Perfect for data expansion, testing, or creating repeated patterns.",
|
||||
"shortDescription": "Duplicate list items with specified criteria"
|
||||
},
|
||||
"reverse": {
|
||||
"toolInfo": {
|
||||
@@ -155,7 +169,10 @@
|
||||
"title": "Use a Regex for Splitting",
|
||||
"description": "Delimit input list items with a regular expression."
|
||||
}
|
||||
}
|
||||
},
|
||||
"title": "Reverse",
|
||||
"description": "This is a super simple browser-based application prints all list items in reverse. The input items can be separated by any symbol and you can also change the separator of the reversed list items.",
|
||||
"shortDescription": "Quickly reverse a list"
|
||||
},
|
||||
"shuffle": {
|
||||
"title": "Shuffle",
|
||||
@@ -166,6 +183,29 @@
|
||||
"shuffledListLength": "Shuffled List Length",
|
||||
"outputLengthDescription": "Output this many random items",
|
||||
"shuffledListSeparator": "Shuffled List Separator",
|
||||
"joinSeparatorDescription": "Use this separator in the randomized list."
|
||||
"joinSeparatorDescription": "Use this separator in the randomized list.",
|
||||
"title": "Shuffle",
|
||||
"description": "World's simplest browser-based utility for shuffling list items. Input your list and instantly get a randomized version with items in random order. Perfect for creating variety, testing randomness, or mixing up ordered data.",
|
||||
"shortDescription": "Randomize the order of list items"
|
||||
},
|
||||
"findMostPopular": {
|
||||
"title": "Find most popular",
|
||||
"description": "World's simplest browser-based utility for finding the most popular items in a list. Input your list and instantly get the items that appear most frequently. Perfect for data analysis, trend identification, or finding common elements.",
|
||||
"shortDescription": "Find most frequently occurring items"
|
||||
},
|
||||
"rotate": {
|
||||
"title": "Rotate",
|
||||
"description": "World's simplest browser-based utility for rotating list items. Input your list and specify rotation amount to shift items by a specified number of positions. Perfect for data manipulation, circular shifts, or reordering lists.",
|
||||
"shortDescription": "Rotate list items by specified positions"
|
||||
},
|
||||
"truncate": {
|
||||
"title": "Truncate",
|
||||
"description": "World's simplest browser-based utility for truncating lists. Input your list and specify the maximum number of items to keep. Perfect for data processing, list management, or limiting content length.",
|
||||
"shortDescription": "Truncate list to specified number of items"
|
||||
},
|
||||
"unwrap": {
|
||||
"title": "Unwrap",
|
||||
"description": "World's simplest browser-based utility for unwrapping list items. Input your wrapped list and specify unwrapping criteria to flatten organized items. Perfect for data processing, text manipulation, or extracting content from structured lists.",
|
||||
"shortDescription": "Unwrap list items from structured format"
|
||||
}
|
||||
}
|
||||
|
@@ -12,7 +12,9 @@
|
||||
"toolInfo": {
|
||||
"title": "Generate numbers",
|
||||
"description": "This tool allows you to generate a sequence of numbers with customizable parameters. You can specify the starting value, step size, and number of elements."
|
||||
}
|
||||
},
|
||||
"title": "Generate",
|
||||
"shortDescription": "Generate random numbers in specified ranges"
|
||||
},
|
||||
"arithmeticSequence": {
|
||||
"title": "Arithmetic Sequence",
|
||||
@@ -27,7 +29,9 @@
|
||||
"toolInfo": {
|
||||
"title": "What is an Arithmetic Sequence?",
|
||||
"description": "An arithmetic sequence is a sequence of numbers where the difference between each consecutive term is constant. This constant difference is called the common difference. Given the first term (a₁) and the common difference (d), each term can be found by adding the common difference to the previous term."
|
||||
}
|
||||
},
|
||||
"title": "Arithmetic Sequence",
|
||||
"shortDescription": "Generate arithmetic sequences"
|
||||
},
|
||||
"sum": {
|
||||
"toolInfo": {
|
||||
@@ -49,6 +53,9 @@
|
||||
"title": "Number Delimiter",
|
||||
"description": "Customize the number separator here. (By default a line break.)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"title": "Sum",
|
||||
"description": "Calculate the sum of a list of numbers. Enter numbers separated by commas or newlines to get their total sum.",
|
||||
"shortDescription": "Calculate sum of numbers"
|
||||
}
|
||||
}
|
||||
|
@@ -13,7 +13,9 @@
|
||||
"toolInfo": {
|
||||
"title": "Merge PDF Files",
|
||||
"description": "This tool allows you to combine multiple PDF files into a single document. You can choose how to sort the PDFs and the tool will merge them in the specified order."
|
||||
}
|
||||
},
|
||||
"title": "Merge PDF",
|
||||
"shortDescription": "Merge multiple PDF files into a single document"
|
||||
},
|
||||
"splitPdf": {
|
||||
"title": "Split PDF",
|
||||
@@ -29,7 +31,9 @@
|
||||
"toolInfo": {
|
||||
"title": "Split PDF",
|
||||
"description": "This tool allows you to extract specific pages from a PDF document. You can specify individual pages or ranges of pages to extract."
|
||||
}
|
||||
},
|
||||
"title": "Split PDF",
|
||||
"shortDescription": "Extract specific pages from a PDF file"
|
||||
},
|
||||
"rotatePdf": {
|
||||
"title": "Rotate PDF",
|
||||
@@ -53,31 +57,30 @@
|
||||
"toolInfo": {
|
||||
"title": "How to Use the Rotate PDF Tool",
|
||||
"description": "This tool allows you to rotate pages in a PDF document. You can rotate all pages or specify individual pages to rotate. Choose a rotation angle: 90° Clockwise, 180° (Upside down), or 270° (90° Counter-clockwise). To rotate specific pages, uncheck \"Apply to all pages\" and enter page numbers or ranges separated by commas (e.g., 1,3,5-7)."
|
||||
}
|
||||
},
|
||||
"title": "Rotate PDF",
|
||||
"shortDescription": "Rotate pages in a PDF document"
|
||||
},
|
||||
"compressPdf": {
|
||||
"inputTitle": "Input PDF",
|
||||
"resultTitle": "Compressed PDF",
|
||||
"compressingPdf": "Compressing PDF...",
|
||||
|
||||
"compressionSettings": "Compression Settings",
|
||||
"compressionLevel": "Compression Level",
|
||||
|
||||
"lowCompression": "Low Compression",
|
||||
"lowCompressionDescription": "Slightly reduce file size with minimal quality loss",
|
||||
|
||||
"mediumCompression": "Medium Compression",
|
||||
"mediumCompressionDescription": "Balance between file size and quality",
|
||||
|
||||
"highCompression": "High Compression",
|
||||
"highCompressionDescription": "Maximum file size reduction with some quality loss",
|
||||
|
||||
"fileSize": "Original File Size",
|
||||
"compressedFileSize": "Compressed File Size",
|
||||
"pages": "Number of Pages",
|
||||
|
||||
"errorReadingPdf": "Failed to read PDF file. Please make sure it is a valid PDF.",
|
||||
"errorCompressingPdf": "Failed to compress PDF: {{error}}"
|
||||
"errorCompressingPdf": "Failed to compress PDF: {{error}}",
|
||||
"title": "Compress PDF",
|
||||
"description": "Reduce PDF file size while maintaining quality using Ghostscript",
|
||||
"shortDescription": "Compress PDF files securely in your browser"
|
||||
},
|
||||
"merge": {
|
||||
"inputTitle": "Input PDF",
|
||||
@@ -87,5 +90,25 @@
|
||||
"title": "How to Use the Merge PDF Tool?",
|
||||
"description": "This tool allows you to merge multiple PDF files into a single document. To use the tool, simply upload the PDF files you want to merge. The tool will then combine all pages from the input files into a single PDF document."
|
||||
}
|
||||
},
|
||||
"editor": {
|
||||
"title": "PDF Editor",
|
||||
"description": "Advanced PDF editor with annotation, form-fill, highlight, and export capabilities. Edit your PDFs directly in the browser with professional-grade tools including text insertion, drawing, highlighting, signing and form filling.",
|
||||
"shortDescription": "Edit PDFs with advanced annotation, signing and editing tools"
|
||||
},
|
||||
"pdfToEpub": {
|
||||
"title": "PDF to EPUB",
|
||||
"description": "Transform PDF documents into EPUB files for better e-reader compatibility.', icon: 'material-symbols:import-contacts', component: lazy(() => import('./index')), keywords: ['pdf', 'epub', 'convert', 'ebook'], path: 'pdf-to-epub', i18n: { name: 'pdf:pdfToEpub.title', description: 'pdf:pdfToEpub.description",
|
||||
"shortDescription": "Convert PDF files to EPUB format"
|
||||
},
|
||||
"pdfToPng": {
|
||||
"title": "PDF to PNG",
|
||||
"description": "Transform PDF documents into PNG panels.",
|
||||
"shortDescription": "Convert PDF into PNG images"
|
||||
},
|
||||
"protectPdf": {
|
||||
"title": "Protect PDF",
|
||||
"description": "Add password protection to your PDF files securely in your browser",
|
||||
"shortDescription": "Password protect PDF files securely"
|
||||
}
|
||||
}
|
||||
|
@@ -16,7 +16,6 @@ export const tool = defineTool('string', {
|
||||
i18n: {
|
||||
name: 'string:censor.title',
|
||||
description: 'string:censor.description',
|
||||
shortDescription: 'string:censor.shortDescription',
|
||||
longDescription: 'string:censor.longDescription'
|
||||
shortDescription: 'string:censor.shortDescription'
|
||||
}
|
||||
});
|
||||
|
@@ -3,7 +3,9 @@
|
||||
"title": "Convert to Uppercase",
|
||||
"description": "Convert text to uppercase letters.",
|
||||
"inputTitle": "Input text",
|
||||
"resultTitle": "Uppercase text"
|
||||
"resultTitle": "Uppercase text",
|
||||
"title": "Uppercase",
|
||||
"shortDescription": "Convert text to uppercase"
|
||||
},
|
||||
"base64": {
|
||||
"title": "Base64 Encoder/Decoder",
|
||||
@@ -16,7 +18,9 @@
|
||||
"toolInfo": {
|
||||
"title": "What is Base64?",
|
||||
"description": "Base64 is an encoding scheme that represents data in an ASCII string format by translating it into a radix-64 representation. Although it can be used to encode strings, it is commonly used to encode binary data for transmission over media that are designed to deal with textual data."
|
||||
}
|
||||
},
|
||||
"title": "Base64",
|
||||
"shortDescription": "Encode or decode data using Base64."
|
||||
},
|
||||
"truncate": {
|
||||
"title": "Truncate Text",
|
||||
@@ -40,7 +44,9 @@
|
||||
"toolInfo": {
|
||||
"title": "Truncate text",
|
||||
"description": "Load your text in the input form on the left and you will automatically get truncated text on the right."
|
||||
}
|
||||
},
|
||||
"title": "Truncate",
|
||||
"shortDescription": "Truncate text to a specified length"
|
||||
},
|
||||
"quote": {
|
||||
"title": "Text Quoter",
|
||||
@@ -56,7 +62,9 @@
|
||||
"toolInfo": {
|
||||
"title": "Text Quoter",
|
||||
"description": "This tool allows you to add quotes around text. You can choose different quote characters, handle multi-line text, and control how empty lines are processed. It's useful for preparing text for programming, formatting data, or creating stylized text."
|
||||
}
|
||||
},
|
||||
"title": "Quote",
|
||||
"shortDescription": "Add quotes around text with various styles"
|
||||
},
|
||||
"join": {
|
||||
"title": "Join Text",
|
||||
@@ -74,7 +82,9 @@
|
||||
"toolInfo": {
|
||||
"title": "What Is a Text Joiner?",
|
||||
"description": "With this tool you can join parts of the text together. It takes a list of text values, separated by newlines, and merges them together. You can set the character that will be placed between the parts of the combined text. Also, you can ignore all empty lines and remove spaces and tabs at the end of all lines. Textabulous!"
|
||||
}
|
||||
},
|
||||
"title": "Join",
|
||||
"shortDescription": "Join text elements with a specified separator"
|
||||
},
|
||||
"rotate": {
|
||||
"title": "Rotate Text",
|
||||
@@ -89,7 +99,9 @@
|
||||
"toolInfo": {
|
||||
"title": "String Rotation",
|
||||
"description": "This tool allows you to rotate characters in a string by a specified number of positions. You can rotate to the left or right, and process multi-line text by rotating each line separately. String rotation is useful for simple text transformations, creating patterns, or implementing basic encryption techniques."
|
||||
}
|
||||
},
|
||||
"title": "Rotate",
|
||||
"shortDescription": "Shift characters in text by position."
|
||||
},
|
||||
"repeat": {
|
||||
"title": "Repeat Text",
|
||||
@@ -105,7 +117,9 @@
|
||||
"toolInfo": {
|
||||
"title": "Repeat text",
|
||||
"description": "This tool allows you to repeat a given text multiple times with an optional separator."
|
||||
}
|
||||
},
|
||||
"title": "Repeat text",
|
||||
"shortDescription": "Repeat text multiple times"
|
||||
},
|
||||
"rot13": {
|
||||
"title": "ROT13 Encoder/Decoder",
|
||||
@@ -115,7 +129,9 @@
|
||||
"toolInfo": {
|
||||
"title": "What Is ROT13?",
|
||||
"description": "ROT13 (rotate by 13 places) is a simple letter substitution cipher that replaces a letter with the 13th letter after it in the alphabet. ROT13 is a special case of the Caesar cipher which was developed in ancient Rome. Because there are 26 letters in the English alphabet, ROT13 is its own inverse; that is, to undo ROT13, the same algorithm is applied, so the same action can be used for encoding and decoding."
|
||||
}
|
||||
},
|
||||
"title": "Rot13",
|
||||
"shortDescription": "Encode or decode text using ROT13 cipher."
|
||||
},
|
||||
"toMorse": {
|
||||
"title": "To Morse",
|
||||
@@ -124,7 +140,9 @@
|
||||
"shortSignal": "Short Signal",
|
||||
"dotSymbolDescription": "Symbol that will correspond to the dot in Morse code.",
|
||||
"longSignal": "Long Signal",
|
||||
"dashSymbolDescription": "Symbol that will correspond to the dash in Morse code."
|
||||
"dashSymbolDescription": "Symbol that will correspond to the dash in Morse code.",
|
||||
"title": "String To morse",
|
||||
"shortDescription": "Quickly encode text to morse"
|
||||
},
|
||||
"statistic": {
|
||||
"title": "Text Statistics",
|
||||
@@ -146,7 +164,9 @@
|
||||
"toolInfo": {
|
||||
"title": "What is a {{title}}?",
|
||||
"description": "This tool allows you to analyze text and generate comprehensive statistics including character count, word count, line count, and frequency analysis of characters and words."
|
||||
}
|
||||
},
|
||||
"title": "Text Statistics",
|
||||
"shortDescription": "Get statistics about your text"
|
||||
},
|
||||
"textReplacer": {
|
||||
"title": "Text Replacer",
|
||||
@@ -175,7 +195,10 @@
|
||||
"trimWhitespace": "Trim whitespace",
|
||||
"trimWhitespaceDescription": "Remove leading and trailing whitespace from each line",
|
||||
"inputTitle": "Text to reverse",
|
||||
"resultTitle": "Reversed text"
|
||||
"resultTitle": "Reversed text",
|
||||
"title": "Reverse",
|
||||
"description": "World's simplest browser-based utility for reversing text. Input any text and get it instantly reversed, character by character. Perfect for creating mirror text, analyzing palindromes, or playing with text patterns. Preserves spaces and special characters while reversing.",
|
||||
"shortDescription": "Reverse any text character by character"
|
||||
},
|
||||
"split": {
|
||||
"resultTitle": "Text pieces",
|
||||
@@ -191,6 +214,39 @@
|
||||
"outputSeparatorOptions": "Output separator options",
|
||||
"outputSeparatorDescription": "Character that will be put between the split chunks.\n(It's newline \"\\n\" by default.)",
|
||||
"charBeforeChunkDescription": "Character before each chunk",
|
||||
"charAfterChunkDescription": "Character after each chunk"
|
||||
"charAfterChunkDescription": "Character after each chunk",
|
||||
"title": "Split",
|
||||
"description": "World's simplest browser-based utility for splitting text. Input your text and specify a separator to split it into multiple parts. Perfect for data processing, text manipulation, or extracting specific content from larger text blocks.",
|
||||
"shortDescription": "Split text into multiple parts using a separator"
|
||||
},
|
||||
"censor": {
|
||||
"title": "Text Censor",
|
||||
"description": "utility for censoring words in text. Load your text in the input form on the left, specify all the bad words in the options, and you'll instantly get censored text in the output area.\", longDescription: 'With this online tool, you can censor certain words in any text. You can specify a list of unwanted words (such as swear words or secret words) and the program will replace them with alternative words and create a safe-to-read text. The words can be specified in a multi-line text field in the options by entering one word per line.', keywords: ['text', 'censor', 'words', 'characters'], component: lazy(() => import('./index')), i18n: { name: 'string:censor.title', description: 'string:censor.description",
|
||||
"shortDescription": "Quickly mask bad words or replace them with alternative words."
|
||||
},
|
||||
"createPalindrome": {
|
||||
"title": "Create palindrome",
|
||||
"description": "World's simplest browser-based utility for creating palindromes from any text. Input text and instantly transform it into a palindrome that reads the same forward and backward. Perfect for word games, creating symmetrical text patterns, or exploring linguistic curiosities.",
|
||||
"shortDescription": "Create text that reads the same forward and backward"
|
||||
},
|
||||
"extractSubstring": {
|
||||
"title": "Extract substring",
|
||||
"description": "World's simplest browser-based utility for extracting substrings from text. Input your text and specify start and end positions to extract the desired portion. Perfect for data processing, text analysis, or extracting specific content from larger text blocks.",
|
||||
"shortDescription": "Extract a portion of text between specified positions"
|
||||
},
|
||||
"palindrome": {
|
||||
"title": "Palindrome",
|
||||
"description": "World's simplest browser-based utility for checking if text is a palindrome. Instantly verify if your text reads the same forward and backward. Perfect for word puzzles, linguistic analysis, or validating symmetrical text patterns. Supports various delimiters and multi-word palindrome detection.",
|
||||
"shortDescription": "Check if text reads the same forward and backward"
|
||||
},
|
||||
"randomizeCase": {
|
||||
"title": "Randomize case",
|
||||
"description": "World's simplest browser-based utility for randomizing text case. Input your text and instantly transform it with random upper and lower case letters. Perfect for creating unique text effects, testing case sensitivity, or generating varied text patterns.",
|
||||
"shortDescription": "Randomize the case of letters in text"
|
||||
},
|
||||
"removeDuplicateLines": {
|
||||
"title": "Remove duplicate lines",
|
||||
"description": "Load your text in the input form on the left and you'll instantly get text with no duplicate lines in the output area. Powerful, free, and fast. Load text lines – get unique text lines",
|
||||
"shortDescription": "Quickly delete all repeated lines from text"
|
||||
}
|
||||
}
|
||||
|
@@ -15,7 +15,6 @@ export const tool = defineTool('string', {
|
||||
i18n: {
|
||||
name: 'string:statistic.title',
|
||||
description: 'string:statistic.description',
|
||||
shortDescription: 'string:statistic.shortDescription',
|
||||
longDescription: 'string:statistic.longDescription'
|
||||
shortDescription: 'string:statistic.shortDescription'
|
||||
}
|
||||
});
|
||||
|
@@ -7,7 +7,9 @@
|
||||
"toolInfo": {
|
||||
"title": "What is a Leap Year?",
|
||||
"description": "A leap year is a year containing one additional day (February 29) to keep the calendar year synchronized with the astronomical year. Leap years occur every 4 years, except for years that are divisible by 100 but not by 400."
|
||||
}
|
||||
},
|
||||
"title": "Check Leap Years",
|
||||
"shortDescription": "Check if a year is a leap year"
|
||||
},
|
||||
"convertDaysToHours": {
|
||||
"title": "Convert Days to Hours",
|
||||
@@ -18,7 +20,9 @@
|
||||
"toolInfo": {
|
||||
"title": "Convert Days to Hours",
|
||||
"description": "This tool allows you to convert days to hours. You can input days as numbers or with units, and the tool will convert them to hours. You can also choose to append the 'hours' suffix to the output values."
|
||||
}
|
||||
},
|
||||
"title": "Convert Days to Hours",
|
||||
"shortDescription": "Convert days to hours"
|
||||
},
|
||||
"convertHoursToDays": {
|
||||
"title": "Convert Hours to Days",
|
||||
@@ -29,7 +33,9 @@
|
||||
"toolInfo": {
|
||||
"title": "Convert Hours to Days",
|
||||
"description": "This tool allows you to convert hours to days. You can input hours as numbers or with units, and the tool will convert them to days. You can also choose to append the 'days' suffix to the output values."
|
||||
}
|
||||
},
|
||||
"title": "Convert Hours to Days",
|
||||
"shortDescription": "Convert hours to days"
|
||||
},
|
||||
"convertTimeToSeconds": {
|
||||
"title": "Convert Time to Seconds",
|
||||
@@ -39,26 +45,28 @@
|
||||
"toolInfo": {
|
||||
"title": "Convert Time to Seconds",
|
||||
"description": "This tool allows you to convert formatted time strings (HH:MM:SS) to seconds. It's useful for calculating durations and time intervals."
|
||||
}
|
||||
},
|
||||
"title": "Convert Time to Seconds",
|
||||
"shortDescription": "Convert time format to seconds"
|
||||
},
|
||||
"truncateClockTime": {
|
||||
"toolInfo": {
|
||||
"title": "What is a {{title}}?"
|
||||
},
|
||||
|
||||
"truncationSide": "Truncation Side",
|
||||
"truncateOnlySeconds": "Truncate Only Seconds",
|
||||
"truncateOnlySecondsDescription": "Drop the seconds component from each clock time.",
|
||||
"truncateMinutesAndSeconds": "Truncate Minutes and Seconds",
|
||||
"truncateMinutesAndSecondsDescription": "Drop both – the minutes and seconds components from each clock time.",
|
||||
|
||||
"printDroppedComponents": "Print Dropped Components",
|
||||
"zeroPrintTruncatedParts": "Zero-print Truncated Parts",
|
||||
"zeroPrintDescription": "Display the dropped parts as zero values \"00\".",
|
||||
|
||||
"timePadding": "Time Padding",
|
||||
"useZeroPadding": "Use Zero Padding",
|
||||
"zeroPaddingDescription": "Make all time components always be two digits wide."
|
||||
"zeroPaddingDescription": "Make all time components always be two digits wide.",
|
||||
"title": "Truncate Clock Time",
|
||||
"description": "Truncate clock time to remove seconds or minutes. Round time to the nearest hour, minute, or custom interval.",
|
||||
"shortDescription": "Truncate clock time to specified precision"
|
||||
},
|
||||
"timeBetweenDates": {
|
||||
"title": "Time Between Dates",
|
||||
@@ -73,7 +81,10 @@
|
||||
"endDateTime": "End Date & Time",
|
||||
"endDate": "End Date",
|
||||
"endTime": "End Time",
|
||||
"endTimezone": "End Timezone"
|
||||
"endTimezone": "End Timezone",
|
||||
"title": "Time Between Dates",
|
||||
"description": "Calculate the time difference between two dates. Get the exact duration in days, hours, minutes, and seconds.",
|
||||
"shortDescription": "Calculate time between two dates"
|
||||
},
|
||||
"convertSecondsToTime": {
|
||||
"timePadding": "Time Padding",
|
||||
@@ -82,6 +93,14 @@
|
||||
"toolInfo": {
|
||||
"title": "What is a {{title}}?",
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"title": "Convert Seconds to Time",
|
||||
"description": "Convert seconds to a readable time format (hours:minutes:seconds). Enter the number of seconds to get the formatted time.",
|
||||
"shortDescription": "Convert seconds to time format"
|
||||
},
|
||||
"crontabGuru": {
|
||||
"title": "Crontab Guru",
|
||||
"description": "Generate and understand cron expressions. Create cron schedules for automated tasks and system jobs.",
|
||||
"shortDescription": "Generate and understand cron expressions"
|
||||
}
|
||||
}
|
||||
|
@@ -12,8 +12,8 @@ export const tool = defineTool('gif', {
|
||||
keywords: ['gif', 'speed', 'animation', 'fast', 'slow'],
|
||||
component: lazy(() => import('./index')),
|
||||
i18n: {
|
||||
name: 'gif.changeSpeed.title',
|
||||
description: 'gif.changeSpeed.description',
|
||||
shortDescription: 'gif.changeSpeed.shortDescription'
|
||||
name: 'video:gif.changeSpeed.title',
|
||||
description: 'video:gif.changeSpeed.description',
|
||||
shortDescription: 'video:gif.changeSpeed.shortDescription'
|
||||
}
|
||||
});
|
||||
|
@@ -10,7 +10,9 @@
|
||||
"toolInfo": {
|
||||
"title": "What is a {{title}}?",
|
||||
"description": "This tool allows you to create a looping video by repeating the original video multiple times. You can specify how many times the video should loop."
|
||||
}
|
||||
},
|
||||
"title": "Loop Video",
|
||||
"shortDescription": "Create looping video files"
|
||||
},
|
||||
"cropVideo": {
|
||||
"title": "Crop Video",
|
||||
@@ -35,14 +37,19 @@
|
||||
"toolInfo": {
|
||||
"title": "Crop Video",
|
||||
"description": "This tool allows you to crop video files to remove unwanted areas. You can specify the crop area by setting the X, Y coordinates and width, height dimensions."
|
||||
}
|
||||
},
|
||||
"title": "Crop Video",
|
||||
"shortDescription": "Crop video to remove unwanted areas"
|
||||
},
|
||||
"trim": {
|
||||
"timestamps": "Timestamps",
|
||||
"startTime": "Start Time",
|
||||
"endTime": "End Time",
|
||||
"inputTitle": "Input Video",
|
||||
"resultTitle": "Trimmed Video"
|
||||
"resultTitle": "Trimmed Video",
|
||||
"title": "Trim Video",
|
||||
"description": "Trim video files by specifying start and end times. Remove unwanted sections from the beginning or end of videos.",
|
||||
"shortDescription": "Trim video by removing unwanted sections"
|
||||
},
|
||||
"changeSpeed": {
|
||||
"newVideoSpeed": "New Video Speed",
|
||||
@@ -52,7 +59,10 @@
|
||||
"resultTitle": "Edited Video",
|
||||
"toolInfo": {
|
||||
"title": "What is a {{title}}?"
|
||||
}
|
||||
},
|
||||
"title": "Change Video Speed",
|
||||
"description": "Change the playback speed of video files. Speed up or slow down videos while maintaining audio synchronization. Supports various speed multipliers and common video formats.",
|
||||
"shortDescription": "Change video playback speed"
|
||||
},
|
||||
"compress": {
|
||||
"resolution": "Resolution",
|
||||
@@ -62,7 +72,10 @@
|
||||
"worst": "Worst",
|
||||
"inputTitle": "Input Video",
|
||||
"resultTitle": "Compressed Video",
|
||||
"loadingText": "Compressing video..."
|
||||
"loadingText": "Compressing video...",
|
||||
"title": "Compress Video",
|
||||
"description": "Compress videos by scaling them to different resolutions like 240p, 480p, 720p, etc. This tool helps reduce file size while maintaining acceptable quality. Supports common video formats like MP4, WebM, and OGG.",
|
||||
"shortDescription": "Compress videos by scaling to different resolutions"
|
||||
},
|
||||
"flip": {
|
||||
"orientation": "Orientation",
|
||||
@@ -70,7 +83,10 @@
|
||||
"verticalLabel": "Vertical (Upside Down)",
|
||||
"inputTitle": "Input Video",
|
||||
"flippingVideo": "Flipping Video",
|
||||
"resultTitle": "Flipped Video"
|
||||
"resultTitle": "Flipped Video",
|
||||
"title": "Flip Video",
|
||||
"description": "Flip video files horizontally or vertically. Mirror videos for special effects or correct orientation issues.",
|
||||
"shortDescription": "Flip video horizontally or vertically"
|
||||
},
|
||||
"rotate": {
|
||||
"rotation": "Rotation",
|
||||
@@ -79,6 +95,21 @@
|
||||
"270Degrees": "270° (90° Counter-clockwise)",
|
||||
"inputTitle": "Input Video",
|
||||
"rotatingVideo": "Rotating Video",
|
||||
"resultTitle": "Rotated Video"
|
||||
"resultTitle": "Rotated Video",
|
||||
"title": "Rotate Video",
|
||||
"description": "Rotate video files by 90, 180, or 270 degrees. Correct video orientation or create special effects with precise rotation control.",
|
||||
"shortDescription": "Rotate video by specified degrees"
|
||||
},
|
||||
"videoToGif": {
|
||||
"title": "Video to GIF",
|
||||
"description": "Convert video files to animated GIF format. Extract specific time ranges and create shareable animated images.",
|
||||
"shortDescription": "Convert video to animated GIF"
|
||||
},
|
||||
"gif": {
|
||||
"changeSpeed": {
|
||||
"title": "Change GIF Speed",
|
||||
"description": "Change the playback speed of GIF animations. Speed up or slow down GIFs while maintaining smooth animation.",
|
||||
"shortDescription": "Change GIF animation speed"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -12,7 +12,9 @@
|
||||
"toolInfo": {
|
||||
"title": "XML Beautifier",
|
||||
"description": "This tool allows you to format XML data with proper indentation and spacing, making it more readable and easier to work with."
|
||||
}
|
||||
},
|
||||
"title": "XML Beautifier",
|
||||
"shortDescription": "Format and beautify XML code"
|
||||
},
|
||||
"xmlValidator": {
|
||||
"title": "XML Validator",
|
||||
@@ -21,7 +23,9 @@
|
||||
"toolInfo": {
|
||||
"title": "XML Validator",
|
||||
"description": "This tool allows you to validate XML syntax and structure. It checks if the XML is well-formed and provides detailed error messages for any issues found."
|
||||
}
|
||||
},
|
||||
"title": "XML Validator",
|
||||
"shortDescription": "Validate XML code for errors"
|
||||
},
|
||||
"xmlViewer": {
|
||||
"title": "XML Viewer",
|
||||
|
Reference in New Issue
Block a user