{"id":16164941,"url":"https://github.com/ashaduri/number-to-georgian-cpp","last_synced_at":"2025-09-13T16:57:35.619Z","repository":{"id":75742925,"uuid":"462201109","full_name":"ashaduri/number-to-georgian-cpp","owner":"ashaduri","description":"Transform any number to a Georgian text (C++ version)","archived":false,"fork":false,"pushed_at":"2024-10-31T08:44:17.000Z","size":147,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-07T04:49:28.015Z","etag":null,"topics":["cplusplus","cplusplus-17","cpp","cpp17","georgian","georgian-language","number","translation","words"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"zlib","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ashaduri.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-22T08:16:32.000Z","updated_at":"2024-10-31T08:44:20.000Z","dependencies_parsed_at":"2025-02-13T09:20:31.162Z","dependency_job_id":"6e6458a6-6709-4032-a40b-b7bead27c3da","html_url":"https://github.com/ashaduri/number-to-georgian-cpp","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ashaduri/number-to-georgian-cpp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashaduri%2Fnumber-to-georgian-cpp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashaduri%2Fnumber-to-georgian-cpp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashaduri%2Fnumber-to-georgian-cpp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashaduri%2Fnumber-to-georgian-cpp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ashaduri","download_url":"https://codeload.github.com/ashaduri/number-to-georgian-cpp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashaduri%2Fnumber-to-georgian-cpp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274997468,"owners_count":25387930,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-13T02:00:10.085Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cplusplus","cplusplus-17","cpp","cpp17","georgian","georgian-language","number","translation","words"],"created_at":"2024-10-10T02:48:32.787Z","updated_at":"2025-09-13T16:57:35.573Z","avatar_url":"https://github.com/ashaduri.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Number to Georgian (C++ Version)\n***Convert a number to Georgian words, or to a symbolic representation***\n\n![GitHub](https://img.shields.io/github/license/ashaduri/number-to-georgian-cpp)\n![Language](https://img.shields.io/badge/language-ISO%20C++17-blue)\n\n\n## Features\n- Header-only.\n- Requires only standard C++ (C++17).\n- Extensively tested using [Catch2](https://github.com/catchorg/Catch2).\n- Supports the whole 64-bit signed integer range.\n- Can output a string of Georgian words.\n- Can output a vector of strings, where each element is a symbolic (ASCII) representation\nof a Georgian word (or part of a word). This is useful for creating a library of sound\nfiles (e.g. `0.wav`, `minus.wav`, ...) to be used in interactive voice applications, etc... \n\n\n## Usage Examples\n\n``` C++\n#include \"number_to_georgian.h\"\n\n// ...\n\nassert(NumberToGeorgian::toWords(0) == \"ნული\");\nassert(NumberToGeorgian::toSymbolic(0) == std::vector\u003cstd::string\u003e{\"0\"});\n\nassert(NumberToGeorgian::toWords(-6'872'146)\n\t== \"მინუს ექვსი მილიონ რვაას სამოცდათორმეტი ათას ას ორმოცდაექვსი\");\nassert(NumberToGeorgian::toSymbolic(-6'872'146)\n\t== std::vector\u003cstd::string\u003e{\"minus\", \"6\", \"1e6_\", \"800_\", \"60_\", \"12\", \"1000_\", \"100_\", \"40_\", \"6\"});\n\nassert(NumberToGeorgian::toWords(std::numeric_limits\u003cstd::int64\u003e::min())\n\t\t== \"მინუს ცხრა კვინტილიონ \"\n\t\t\"ორას ოცდასამი კვადრილიონ \"\n\t\t\"სამას სამოცდათორმეტი ტრილიონ \"\n\t\t\"ოცდათექვსმეტი მილიარდ \"\n\t\t\"რვაას ორმოცდათოთხმეტი მილიონ \"\n\t\t\"შვიდას სამოცდათხუთმეტი ათას \"\n\t\t\"რვაას რვა\");\n```\n\nPlease see `NumberToGeorgian::toSymbolic` for a list of possible returned values.\n\n## Copyright\n\nCopyright: Alexander Shaduri \u003cashaduri@gmail.com\u003e   \nLicense: Zlib\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashaduri%2Fnumber-to-georgian-cpp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fashaduri%2Fnumber-to-georgian-cpp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashaduri%2Fnumber-to-georgian-cpp/lists"}