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

fixed RTL for kurdish language #228

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions packages/timeago/lib/src/messages/ku_messages.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,23 +85,23 @@ class KuShortMessages implements LookupMessages {
@override
String aboutAMinute(int minutes) => '1 خولەک';
@override
String minutes(int minutes) => 'خولەک $minutes';
String minutes(int minutes) => '$minutes خولەک';
@override
String aboutAnHour(int minutes) => 'کاژێر ~1';
@override
String hours(int hours) => 'کاژێر $hours';
String hours(int hours) => '$hours کاژێر';
@override
String aDay(int hours) => '~1 ڕۆژ';
@override
String days(int days) => 'رۆژ $days';
String days(int days) => '$days رۆژ';
@override
String aboutAMonth(int days) => '~1 مانگ';
@override
String months(int months) => 'مانگ $months';
String months(int months) => '$months مانگ';
@override
String aboutAYear(int year) => '~1 ساڵ';
@override
String years(int years) => 'ساڵ $years ';
String years(int years) => '$years ساڵ';
@override
String wordSeparator() => ' ';
}