You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			26 lines
		
	
	
		
			964 B
		
	
	
	
		
			Dart
		
	
			
		
		
	
	
			26 lines
		
	
	
		
			964 B
		
	
	
	
		
			Dart
		
	
// GENERATED FILE, do not edit!
 | 
						|
import 'package:i18n/i18n.dart' as i18n;
 | 
						|
 | 
						|
String get _languageCode => 'en';
 | 
						|
String get _localeName => 'en';
 | 
						|
 | 
						|
String _plural(int count, {String zero, String one, String two, String few, String many, String other}) =>
 | 
						|
	i18n.plural(count, _languageCode, zero:zero, one:one, two:two, few:few, many:many, other:other);
 | 
						|
String _ordinal(int count, {String zero, String one, String two, String few, String many, String other}) =>
 | 
						|
	i18n.ordinal(count, _languageCode, zero:zero, one:one, two:two, few:few, many:many, other:other);
 | 
						|
String _cardinal(int count, {String zero, String one, String two, String few, String many, String other}) =>
 | 
						|
	i18n.cardinal(count, _languageCode, zero:zero, one:one, two:two, few:few, many:many, other:other);
 | 
						|
 | 
						|
class Ar {
 | 
						|
	const Ar();
 | 
						|
	ButtonAr get button => ButtonAr(this);
 | 
						|
}
 | 
						|
 | 
						|
class ButtonAr {
 | 
						|
	final Ar _parent;
 | 
						|
	const ButtonAr(this._parent);
 | 
						|
	String get save => "حفظ";
 | 
						|
	String get load => "تحميل";
 | 
						|
}
 | 
						|
 |