From 33acd24ec77a8588f6c7c6e1959dad7bc82ad362 Mon Sep 17 00:00:00 2001 From: sarthakjalan05 Date: Sun, 6 Oct 2024 16:30:56 +0530 Subject: [PATCH] Update strings.json --- web/thesauruses/_meta/strings.json | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/web/thesauruses/_meta/strings.json b/web/thesauruses/_meta/strings.json index a53ebe45b..2500cc418 100644 --- a/web/thesauruses/_meta/strings.json +++ b/web/thesauruses/_meta/strings.json @@ -34,7 +34,7 @@ "find_start_index_of_substring": "Find index of where a substring starts", "find_start_index_of_additional_substring": "Find index of an additional substring (or starting at another index)", "find_start_index_of_substring_from_end": "Find substring index starting at end", - "count_occurrences_of_substring": "Find number of occurences of a substring", + "count_occurrences_of_substring": "Find number of occurrences of a substring", "get_leftmost_characters": "Get a specified number of characters from the left", "get_rightmost_characters": "Get a specified number of characters from the right", "get_substring_from_start_and_end_index": "Return a substring from a string based on starting and ending indices", @@ -53,7 +53,7 @@ "split_at_substring": "Split string by locating all substrings", "merge_lists_into_string": "Merge a list of strings into one string", "encode_html_entities": "Encode HTML entities in a string (ex: ™ to ™)", - "decode_html_entities": "Decode HTML entitles into characters", + "decode_html_entities": "Decode HTML entities into characters", "encode_url_percent": "Encode URL percent encoding into string (ex: ' ' to %20)", "decode_url_percent": "Decode URL percent encoding", "encode_to_base64": "Encode string into Base64 format", @@ -63,9 +63,12 @@ "format_string_function": "Function to format a string", "parameter_format_in_order": "Parameter used in format function if they're used in order", "parameter_format_numerical": "Parameter used in format function if they're numerically numbered", - "parameter_format_by_name": "Paramater used in format function if they're named variables", - "format_as_integer": "Format parameter as an integer", - "format_as_decimal": "Format parameter as a decimal number", + "parameter_format_by_name": "Parameter used in format function if they're named variables", + "format_as_signed_integer": "Format parameter as a signed integer (int)", + "format_as_unsigned_integer": "Format parameter as an unsigned integer (unsigned int)", + "format_as_signed_long": "Format parameter as a signed long integer (long int)", + "format_as_unsigned_long": "Format parameter as an unsigned long integer (unsigned long int)", + "format_as_floating_point": "Format parameter as a floating-point number (float/double)", "format_as_fixed_decimal": "Format parameter as a fixed-point decimal number", "format_as_currency": "Format parameter as a currency number", "format_as_percentage": "Format parameter as a percentage number",