A framework for building convergent cross-platform Nextcloud clients using Flutter.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

48 lines
1021 B

import 'localizations.dart';
/// The translations for English (`en`).
class SpreedLocalizationsEn extends SpreedLocalizations {
SpreedLocalizationsEn([String locale = 'en']) : super(locale);
@override
String get roomCreate => 'Create room';
@override
String get roomCreateUserName => 'User name';
@override
String get roomCreateGroupName => 'Group name';
@override
String get roomCreateRoomName => 'Room name';
@override
String get roomTypeOneToOne => 'Private';
@override
String get roomTypeGroup => 'Group';
@override
String get roomTypePublic => 'Public';
@override
String get messageYou => 'You';
@override
String get callStart => 'Start call';
@override
String get callJoin => 'Join call';
@override
String get callLeave => 'Leave call';
@override
String get screenSharingSelectScreen => 'Select screen';
@override
String get screenSharingSelectScreenScreens => 'Screens';
@override
String get screenSharingSelectScreenWindows => 'Windows';
}