Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update strings.json #754

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions web/thesauruses/_meta/strings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down
Loading