Merge branch 'main' of https://github.com/iib0011/omni-tools into fork/bhavesh158/json-compare

# Conflicts:
#	.idea/workspace.xml
This commit is contained in:
Ibrahima G. Coulibaly 2025-07-18 03:28:14 +01:00
commit 297b91cf29
171 changed files with 13953 additions and 3412 deletions

View file

@ -29,14 +29,33 @@
},
"mergeAudio": {
"description": "Combine multiple audio files into a single audio file by concatenating them in sequence.",
"inputTitle": "Input Audio Files",
"longDescription": "This tool allows you to merge multiple audio files into a single file by concatenating them in the order you upload them. Perfect for combining podcast segments, music tracks, or any audio files that need to be joined together. Supports various audio formats including MP3, AAC, and WAV.",
"mergingAudio": "Merging Audio",
"outputFormat": "Output Format",
"resultTitle": "Merged Audio",
"shortDescription": "Merge multiple audio files into one (MP3, AAC, WAV).",
"title": "Merge Audio"
"title": "Merge Audio",
"toolInfo": {
"title": "What is {{title}}?"
}
},
"trim": {
"description": "Cut and trim audio files to extract specific segments by specifying start and end times.",
"endTime": "End Time",
"endTimeDescription": "End time in format HH:MM:SS (e.g., 00:01:30)",
"inputTitle": "Input Audio",
"longDescription": "This tool allows you to trim audio files by specifying start and end times. You can extract specific segments from longer audio files, remove unwanted parts, or create shorter clips. Supports various audio formats including MP3, AAC, and WAV. Perfect for podcast editing, music production, or any audio editing needs.",
"outputFormat": "Output Format",
"resultTitle": "Trimmed Audio",
"shortDescription": "Trim audio files to extract specific time segments (MP3, AAC, WAV).",
"title": "Trim Audio"
"startTime": "Start Time",
"startTimeDescription": "Start time in format HH:MM:SS (e.g., 00:00:30)",
"timeSettings": "Time Settings",
"title": "Trim Audio",
"toolInfo": {
"title": "What is {{title}}?"
},
"trimmingAudio": "Trimming Audio"
}
}

View file

@ -17,15 +17,21 @@
"description": "Convert CSV files to JSON format with customizable options for delimiters, quotes, and output formatting. Support for headers, comments, and dynamic type conversion.",
"dynamicTypes": "Dynamic Types",
"dynamicTypesDescription": "Automatically convert numbers and booleans",
"error": "Error",
"errorParsing": "Error parsing CSV: {{error}}",
"fieldQuote": "Field Quote (e.g., \")",
"inputCsvFormat": "Input CSV Format",
"inputTitle": "Input CSV",
"invalidCsvFormat": "Invalid CSV format",
"resultTitle": "Output JSON",
"shortDescription": "Convert CSV data to JSON format.",
"skipEmptyLines": "Skip Empty Lines",
"skipEmptyLinesDescription": "Ignore empty lines in the input CSV",
"title": "Convert CSV to JSON",
"toolInfo": {
"description": "This tool transforms Comma Separated Values (CSV) files to JavaScript Object Notation (JSON) data structures. It supports various CSV formats with customizable delimiters, quote characters, and comment symbols. The converter can treat the first row as headers, skip empty lines, and automatically detect data types like numbers and booleans. The resulting JSON can be used for data migration, backups, or as input for other applications.",
"title": "What Is a CSV to JSON Converter?"
},
"useHeaders": "Use Headers",
"useHeadersDescription": "Treat the first row as column headers"
},

View file

@ -10,8 +10,15 @@
"title": "Change image Opacity"
},
"compress": {
"compressedSize": "Compressed Size",
"compressionOptions": "Compression options",
"description": "Reduce image file size while maintaining quality.",
"failedToCompress": "Failed to compress image. Please try again.",
"fileSizes": "File sizes",
"inputTitle": "Input image",
"maxFileSizeDescription": "Maximum file size in megabytes",
"originalSize": "Original Size",
"qualityDescription": "Image quality percentage (lower means smaller file size)",
"resultTitle": "Compressed image",
"shortDescription": "Compress images to reduce file size while maintaining reasonable quality.",
"title": "Compress Image"

View file

@ -5,6 +5,15 @@
"copyDescription": "Number of copies (can be fractional)",
"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.",
"duplicationOptions": "Duplication Options",
"error": "Error",
"example1Description": "This example shows how to duplicate a list of words.",
"example1Title": "Simple duplication",
"example2Description": "This example shows how to duplicate a list in reverse order.",
"example2Title": "Reverse duplication",
"example3Description": "This example shows how to interweave items instead of concatenating them.",
"example3Title": "Interweaving items",
"example4Description": "This example shows how to duplicate a list with a fractional number of copies.",
"example4Title": "Fractional duplication",
"examples": {
"fractional": {
"description": "This example shows how to duplicate a list with a fractional number of copies.",
@ -37,12 +46,53 @@
"toolInfo": {
"description": "This tool allows you to duplicate items in a list. You can specify the number of copies (including fractional values), control whether items are concatenated or interweaved, and even reverse the duplicated items. It's useful for creating repeated patterns, generating test data, or expanding lists with predictable content.",
"title": "List Duplication"
},
"unknownError": "An unknown error occurred",
"validation": {
"copyMustBeNumber": "Number of copies must be a number",
"copyMustBePositive": "Number of copies must be positive",
"copyRequired": "Number of copies is required",
"joinSeparatorRequired": "The join separator is required",
"separatorRequired": "The separator is required"
}
},
"findMostPopular": {
"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.",
"displayFormatDescription": "How to display the most popular list items?",
"displayOptions": {
"count": "Show item count",
"percentage": "Show item percentage",
"total": "Show item total"
},
"extractListItems": "How to Extract List Items?",
"ignoreItemCase": "Ignore Item Case",
"ignoreItemCaseDescription": "Compare all list items in lowercase.",
"inputTitle": "Input list",
"itemComparison": "Item comparison",
"outputFormat": "Top item output format",
"removeEmptyItems": "Remove empty items",
"removeEmptyItemsDescription": "Ignore empty items from comparison.",
"resultTitle": "Most popular items",
"shortDescription": "Find most frequently occurring items",
"title": "Find most popular"
"sortOptions": {
"alphabetic": "Sort Alphabetically",
"count": "Sort by count"
},
"sortingMethodDescription": "Select a sorting method.",
"splitOperators": {
"regex": {
"description": "Delimit input list items with a regular expression.",
"title": "Use a Regex for Splitting"
},
"symbol": {
"description": "Delimit input list items with a character.",
"title": "Use a Symbol for Splitting"
}
},
"splitSeparatorDescription": "Set a delimiting symbol or regular expression.",
"title": "Find most popular",
"trimItems": "Trim top list items",
"trimItemsDescription": "Remove leading and trailing spaces before comparing items"
},
"findUnique": {
"caseSensitiveItems": "Case Sensitive Items",

View file

@ -57,6 +57,14 @@
},
"sum": {
"description": "Calculate the sum of a list of numbers. Enter numbers separated by commas or newlines to get their total sum.",
"example1Description": "In this example, we calculate the sum of ten positive integers. These integers are listed as a column and their total sum equals 19494.",
"example1Title": "Sum of Ten Positive Numbers",
"example2Description": "This example reverses a column of twenty three-syllable nouns and prints all the words from the bottom to top. To separate the list items, it uses the \\n character as input item separator, which means that each item is on its own line.",
"example2Title": "Count Trees in the Park",
"example3Description": "In this example, we add together ninety different values positive numbers, negative numbers, integers and decimal fractions. We set the input separator to a comma and after adding all of them together, we get 0 as output.",
"example3Title": "Sum of Integers and Decimals",
"example4Description": "In this example, we calculate the sum of all ten digits and enable the option \"Print Running Sum\". We get the intermediate values of the sum in the process of addition. Thus, we have the following sequence in the output: 0, 1 (0 + 1), 3 (0 + 1 + 2), 6 (0 + 1 + 2 + 3), 10 (0 + 1 + 2 + 3 + 4), and so on.",
"example4Title": "Running Sum of Numbers",
"extractionTypes": {
"delimiter": {
"description": "Customize the number separator here. (By default a line break.)",

View file

@ -158,19 +158,19 @@
"split": {
"charAfterChunkDescription": "Character after each chunk",
"charBeforeChunkDescription": "Character before each chunk",
"chunksDescription": "Number of chunks of equal\nlength in the output.",
"chunksDescription": "Number of chunks of equal length in the output.",
"chunksTitle": "Use a Number of Chunks",
"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.",
"lengthDescription": "Number of symbols that will be put in each output chunk.",
"lengthDescription": "Number of characters that will be put in each output chunk.",
"lengthTitle": "Use Length for Splitting",
"outputSeparatorDescription": "Character that will be put between the split chunks.\n(It's newline \"\\n\" by default.)",
"outputSeparatorOptions": "Output separator options",
"regexDescription": "Regular expression that will be used to break text into parts.\n(Multiple spaces by default.)",
"outputSeparatorDescription": "Character that will be put between the split chunks. (It's newline \"\\n\" by default.)",
"outputSeparatorOptions": "Output Separator Options",
"regexDescription": "Regular expression that will be used to break text into parts. (Multiple spaces by default.)",
"regexTitle": "Use a Regex for Splitting",
"resultTitle": "Text pieces",
"resultTitle": "Split Result",
"shortDescription": "Split text into multiple parts using a separator",
"splitSeparatorOptions": "Split separator options",
"symbolDescription": "Character that will be used to break text into parts.\n(Space by default.)",
"symbolDescription": "Character that will be used to break text into parts. (Space by default.)",
"symbolTitle": "Use a Symbol for Splitting",
"title": "Split"
},

View file

@ -1,6 +1,8 @@
{
"checkLeapYears": {
"description": "Check if a year is a leap year and get leap year information.",
"exampleDescription": "One of our friends was born on a leap year on February 29th and as a consequence, she has a birthday only once every 4 years. As we can never really remember when her birthday is, we are using our program to create a reminder list of the upcoming leap years. To create a list of her next birthdays, we load a sequence of years from 2025 to 2040 into the input and get the status of each year. If the program says that it's a leap year, then we know that we'll be invited to a birthday party on February 29th.",
"exampleTitle": "Find Birthdays on February 29",
"inputTitle": "Input year",
"resultTitle": "Leap year result",
"shortDescription": "Check if a year is a leap year",

View file

@ -1,8 +1,4 @@
{
"app": {
"language": "Language",
"title": "Omni Tools"
},
"audio": {
"changeSpeed": {
"description": "Change the playback speed of audio files. Speed up or slow down audio while maintaining pitch.",
@ -220,7 +216,7 @@
"seeExamples": "See Examples"
},
"toolLayout": {
"allToolsTitle": "All {{type}} Tools"
"allToolsTitle": "All {{type}}"
},
"toolMultiFileResult": {
"copied": "File copied",

View file

@ -83,6 +83,12 @@
"title": "What is a {{title}}?"
}
},
"mergeVideo": {
"description": "Combine multiple video files into one continuous video.",
"longDescription": "This tool allows you to merge or append multiple video files into a single continuous video. Simply upload your video files, arrange them in the desired order, and merge them into one file for easy sharing or editing.",
"shortDescription": "Append and merge videos easily.",
"title": "Merge videos"
},
"rotate": {
"180Degrees": "180° (Upside down)",
"270Degrees": "270° (90° Counter-clockwise)",