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

Spanish Implementation #29

Open
wants to merge 58 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 46 commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
4f398d0
No Deps Working Example with i32
Laifsyn Mar 26, 2024
0cbbd32
Staging changes on branch for dev-ing
Laifsyn Mar 28, 2024
04bf0ec
Implement Tests for to_cardinal method
Laifsyn Mar 29, 2024
4a61d9d
Implement Tests for to_cardinal method
Laifsyn Mar 29, 2024
53472fa
ammending - eliminate prepended zeros from tests
Laifsyn Mar 29, 2024
3e236dd
Fix weird merging
Laifsyn Mar 29, 2024
02195d7
More unified test for cardinal conversion
Laifsyn Mar 29, 2024
a81b310
Add Veinti Flavor and setters for Spanish fields
Laifsyn Mar 29, 2024
d29babe
Refactoro with BigFloat
Laifsyn Mar 29, 2024
df765fd
Consume Vec of Triplets instead of reading it
Laifsyn Mar 29, 2024
e41e33e
Refactor out the Integer equivalent of to_cardinal()
Laifsyn Mar 29, 2024
fe3638c
Conversion for fractional number
Laifsyn Mar 30, 2024
496f7a2
Tweak comments and error checking
Laifsyn Apr 1, 2024
8de42c2
Staging: to_ordinal implementation
Laifsyn Apr 1, 2024
c547a3a
defaults to using "veinti..." flavor instead of "veinte y..."
Laifsyn Apr 2, 2024
8f51aa6
Stage Changes: to_ordinal progress
Laifsyn Apr 3, 2024
ff4e5a1
Complete ordinal implementation
Laifsyn Apr 3, 2024
57c722c
to_year implementation
Laifsyn Apr 3, 2024
3d9b15e
Expand tests
Laifsyn Apr 4, 2024
04d2e01
update container settings
Laifsyn Apr 4, 2024
5d0a21f
Currency Implementation
Laifsyn Apr 4, 2024
fad8ceb
Add Spanish implementation to lang::Language trait
Laifsyn Apr 6, 2024
66c56aa
try to ensure enum integrity safety
Laifsyn Apr 6, 2024
b11912e
add rustfmt_skip
Laifsyn Apr 7, 2024
a057344
derive basic traits for Lang enum
Laifsyn Apr 7, 2024
0c62c2c
Add more str parsing and invert bool logic
Laifsyn Apr 7, 2024
52024f4
add Integration Test for spanish
Laifsyn Apr 7, 2024
1fd7816
Update Docs format and info
Laifsyn Apr 7, 2024
6d5e505
add Spanish Docs and fix currency logic
Laifsyn Apr 7, 2024
d197359
run Rustfmt on most files and add derives
Laifsyn Apr 7, 2024
611a17a
testing DocTests
Laifsyn Apr 8, 2024
f86b6ae
Try to improve Integration Test
Laifsyn Apr 8, 2024
a3be350
Main became too much of a mess, so un-using it
Laifsyn Apr 8, 2024
63c599a
Remove devcontainers and rustfmt
Laifsyn Apr 11, 2024
25de996
attend clippy warning in test
Laifsyn Apr 11, 2024
26eef47
undo rustfmt on bin.rs
Laifsyn Apr 11, 2024
5af4b80
Undoing rustfmt on lang.rs
Laifsyn Apr 12, 2024
21d77de
undo missed a rustfmt on lang.rs
Laifsyn Apr 12, 2024
428adfd
undo rustfmt on lib.rs
Laifsyn Apr 12, 2024
0d7ee4c
try fix trailing whitespace
Laifsyn Apr 12, 2024
6299fa3
try fix EOF
Laifsyn Apr 12, 2024
88bb1ad
delete unused main.rs
Laifsyn Apr 12, 2024
7371a47
remove cfg attribute from num2words.rs
Laifsyn Apr 12, 2024
f6aeb2d
temporarily remove derives from enum Output in output.rs
Laifsyn Apr 12, 2024
d61def7
Undo added derives to currency.rs
Laifsyn Apr 12, 2024
c72b339
update README with new language
Laifsyn Apr 12, 2024
92f21c8
Update readme to reflect spanish as option
Laifsyn Apr 12, 2024
2a8d28a
temporarily remove derives
Laifsyn Apr 12, 2024
fd72e8e
Fix Tens edge case for Ordinals
Laifsyn Apr 15, 2024
35d1394
Fix Ordinals Representation
Laifsyn Apr 15, 2024
ac222d7
Fix Tests & remove comments
Laifsyn Apr 15, 2024
5e9f3aa
Currency Translation for spanish
Laifsyn Apr 16, 2024
b5c0088
Cardinal Fix - Mistakenly used English semantics (#1)
Laifsyn Apr 17, 2024
904ee09
Fix tests due to incorrect Milliard Semantic
Laifsyn Apr 18, 2024
c731f3e
remove unreachable code
Laifsyn Apr 18, 2024
775604d
Ordinal_fix (#3)
Laifsyn Apr 27, 2024
e7516ac
Update split_thousand to match other langs implementation
Laifsyn May 27, 2024
8fddaec
Remove unused println! call
Laifsyn Jun 20, 2024
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
1 change: 1 addition & 0 deletions src/bin/bin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ AVAILABLE LANGUAGES:
fr: French (France and Canada)
fr_BE: French (Belgium and the Democratic Republic of the Congo)
fr_CH: French (Swiss Confederation and Aosta Valley)
es: Spanish
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ditto the pokemon?

uk: Ukrainian

AVAILABLE OUTPUTS:
Expand Down
Loading