publicstaticfinalStringhelpWeather="Curious about the weather?\nJust send me these commands and you'll know a lot better.\n\n"+
"|-- "+Commands.WEATHERCOMMAND+" CITY,COUNTRY : Get a 3-day weather forecast for a city.\n"+
"|-- "+Commands.CURRENTWEATHERCOMMAND+" CITY,COUNTRY : Get the current weather of a city.\n"+
"|-- Send a location to get the forecast for it.";
publicstaticfinalStringhelpTransifex="Tricks with words is the game that I play, give it a shot, I might make your day.\n\n"+
"To get the latest Telegram localization file for a language: \n"+
"|-- "+Commands.transifexiOSCommand+" LANG_CODE : Get the latest iOS language.\n"+
"|-- "+Commands.transifexAndroidCommand+" LANG_CODE : Get the latest android language.\n"+
"|-- "+Commands.transifexWebogram+" LANG_CODE : Get the latest webogram language.\n"+
"|-- "+Commands.transifexiOSCommand+" LANG_CODE : Get the latest iOS language.\n"+
"|-- "+Commands.transifexAndroidCommand+" LANG_CODE : Get the latest android language.\n"+
"|-- "+Commands.transifexWebogram+" LANG_CODE : Get the latest webogram language.\n"+
"|-- "+Commands.transifexTDesktop+" LANG_CODE : Get the latest Tdesktop language.\n"+
"|-- "+Commands.transifexOSX+" LANG_CODE : Get the latest OSX-App language.\n"+
"|-- "+Commands.transifexWP+" LANG_CODE : Get the latest Windows Phone language.\n\n"+
"2. To get an updated localization file for your Android beta-app: \n"+
"|-- "+Commands.transifexAndroidSupportCommand+" LANG_CODE : Get the latest Android-beta language.\n\n";
publicstaticfinalStringhelpFiles="Leaving a file for some others to find? Just dock your boat here and a bay comes to mind.\n\n"+
"Share files through a custom link: \n"+
"|-- "+Commands.startCommand+" FILEID : Get a file by id.\n"+
"|-- "+Commands.uploadCommand+" : Start your file upload.\n"+
"|-- "+Commands.deleteCommand+" : Choose one of your files to delete it.\n"+
"|-- "+Commands.listCommand+" : Show a list of your shared files.\n\n";
publicstaticfinalStringhelpDirections="The road ahead, paved with good intentions, the right path ahead however is what I tend to mention.\n\n"+
"To get directions between two locations: \n"+
"|-- "+Commands.startDirectionCommand+" : Start to get directions\n";
publicstaticfinalStringsendFileToUpload="Please send me a file you want to share. Make sure you attach it as file, not as an image or video.";
publicstaticfinalStringfileUploaded="Great, your file has been uploaded. Send this link to anyone you want and they will be able to download the file:\n\n";
publicstaticfinalStringdeleteUploadedFile="Please select the file you want to delete:";
publicstaticfinalStringfileDeleted="The file was deleted";
publicstaticfinalStringwrongFileId="Sorry, we can't find a file with that ID. Either a typo was made or it was deleted already.";
publicstaticfinalStringlistOfFiles="This your currently shared files list:";
publicstaticfinalStringnoFiles="You haven't shared any file yet.";
publicstaticfinalStringprocessFinished="The current process was cancelled.";
publicstaticfinalStringcreateDirectionsDatabase="CREATE TABLE IF NOT EXISTS Directions (userId INTEGER PRIMARY KEY, status INTEGER NOT NULL, "+
"messageId INTEGER NOT NULL DEFAULT 0, origin VARCHAR(100));";
publicstaticfinalStringcreateLastUpdateDatabase="CREATE TABLE IF NOT EXISTS LastUpdate (token STRING PRIMARY KEY, updateId INTEGER NOT NULL DEFAULT -1);";
/*publicstaticfinalStringcreateOperatingSystemsVersion="CREATE TABLE IF NOT EXISTS OperatingSystems (operatingSystem VARCHAR(20) PRIMARY KEY);";
publicstaticfinalStringcreateLanguagesTable="CREATE TABLE IF NOT EXISTS Languages(languageCode VARCHAR(6) PRIMARY KEY, languageName VARCHAR(30) NOT NULL);";
publicstaticfinalStringinsertEnglishLanguage="INSERT IGNORE INTO Languages (languageCode, languageName) VALUES('en', 'English');";
publicstaticfinalStringinsertPortugueseLanguage="INSERT IGNORE INTO Languages (languageCode, languageName) VALUES('pt', 'Portuguese');";
publicstaticfinalStringinsertItalianLanguage="INSERT IGNORE INTO Languages (languageCode, languageName) VALUES('it', 'Italian');";
publicstaticfinalStringcreateCountriesTable="CREATE TABLE IF NOT EXISTS Countries(countryCode VARCHAR(6) PRIMARY KEY, name VARCHAR(20) NOT NULL);";
publicstaticfinalStringcreateLoginTable="CREATE TABLE IF NOT EXISTS Logins(username VARCHAR(30) PRIMARY KEY, password VARCHAR(30) NOT NULL, "+
"hash VARCHAR(130) NOT NULL, securityLevel INTEGER DEFAULT 0);";
publicstaticfinalStringcreateLanguagesPerCountryTable="CREATE TABLE IF NOT EXISTS LanguagesPerCountry( countryCode VARCHAR(6) PRIMARY KEY, firstLanguage VARCHAR(6) NOT NULL, "+
"secondLanguage VARCHAR(6) DEFAULT NULL, FOREIGN KEY (firstLanguage) REFERENCES Languages (languageCode) ON UPDATE CASCADE ON DELETE CASCADE, "+
"FOREIGN KEY (secondLanguage) REFERENCES Languages (languageCode) ON UPDATE CASCADE ON DELETE CASCADE);";
publicstaticfinalStringcreateUsersTable="CREATE TABLE IF NOT EXISTS Users(userId INTEGER NOT NULL, bot INTEGER NOT NULL, needVolunteer BOOLEAN NOT NULL, phone VARCHAR(15) DEFAULT NULL, firstName VARCHAR(100) NOT NULL, "+
"lastName VARCHAR(100) NOT NULL, userName VARCHAR(100) DEFAULT NULL, isContact BOOLEAN NOT NULL, lastAnswer DATETIME, userHash VARCHAR(40) NOT NULL, lastScore FLOAT, hashtag VARCHAR(15), countryCode VARCHAR(6), denied INTEGER NOT NULL DEFAULT 0, "+
publicstaticfinalStringcreateAnswersTable="CREATE TABLE IF NOT EXISTS AnswersXXXX (ID INTEGER PRIMARY KEY AUTO_INCREMENT, name VARCHAR(250) NOT NULL,"+
"content VARCHAR(2000) NOT NULL, operatingSystem VARCHAR(20) NOT NULL, appVersion VARCHAR(10),"+
"CONSTRAINT `answersOSXXXX` FOREIGN KEY (operatingSystem) REFERENCES OperatingSystems(operatingSystem) ON UPDATE CASCADE ON DELETE CASCADE);";
publicstaticfinalStringcreateHistoryTable="CREATE TABLE IF NOT EXISTS History( ID INTEGER PRIMARY KEY AUTO_INCREMENT, userId INTEGER NOT NULL, date DATETIME NOT NULL, answerId INTEGER NOT NULL, "+
"languageCode VARCHAR(6) NOT NULL, CONSTRAINT `historyUserId` FOREIGN KEY (userId) REFERENCES Users(userId) ON UPDATE CASCADE ON DELETE CASCADE, "+
"CONSTRAINT `historyLanguageCode` FOREIGN KEY (languageCode) REFERENCES Languages(languageCode) ON UPDATE CASCADE ON DELETE CASCADE);";
publicstaticfinalStringcreateQuestionsTable="CREATE TABLE IF NOT EXISTS QuestionsXXXX (ID INTEGER PRIMARY KEY AUTO_INCREMENT, content VARCHAR(300) NOT NULL, "+
"CONSTRAINT `questionsAnswerAllXXXX` FOREIGN KEY (answerAll) REFERENCES AnswersXXXX(ID) ON UPDATE CASCADE ON DELETE CASCADE, "+
"CONSTRAINT `questionsAnswerIosXXXX` FOREIGN KEY (answerIos) REFERENCES AnswersXXXX(ID) ON UPDATE CASCADE ON DELETE CASCADE, "+
"CONSTRAINT `questionsAnswerWebogramXXXX` FOREIGN KEY (answerWebogram) REFERENCES AnswersXXXX(ID) ON UPDATE CASCADE ON DELETE CASCADE, "+
"CONSTRAINT `questionsAnswerAndroidXXXX` FOREIGN KEY (answerAndroid) REFERENCES AnswersXXXX(ID) ON UPDATE CASCADE ON DELETE CASCADE, "+
"CONSTRAINT `questionsAnswerOsxXXXX` FOREIGN KEY (answerOsx) REFERENCES AnswersXXXX(ID) ON UPDATE CASCADE ON DELETE CASCADE, "+
"CONSTRAINT `questionsAnswerDesktopXXXX` FOREIGN KEY (answerDesktop) REFERENCES AnswersXXXX(ID) ON UPDATE CASCADE ON DELETE CASCADE, "+
"CONSTRAINT `questionsAnswerWPXXXX` FOREIGN KEY (answerWP) REFERENCES AnswersXXXX(ID) ON UPDATE CASCADE ON DELETE CASCADE);";
publicstaticfinalStringcreateTrelloTable="CREATE TABLE IF NOT EXISTS trello (shortLink VARCHAR(10) PRIMARY KEY NOT NULL, listName VARCHAR(20) NOT NULL, listId VARCHAR(30), "+
"closed BOOLEAN NOT NULL, creationDate DATETIME NOT NULL, notificationDate DATETIME NOT NULL, affectedUserCount INTEGER NOT NULL DEFAULT 0, tittle VARCHAR(100) NOT NULL, "+
"description TEXT NOT NULL);";
publicstaticfinalStringcreateTemplatesTable="CREATE TABLE IF NOT EXISTS Templates (id INTEGER PRIMARY KEY AUTO_INCREMENT, hash VARCHAR(130) NOT NULL, "+
"languageCode VARCHAR(8), content TEXT);";
publicstaticfinalStringcreateTemplatesLogTable="CREATE TABLE IF NOT EXISTS TemplatesLog (id INTEGER PRIMARY KEY AUTO_INCREMENT, hash VARCHAR(130) NOT NULL, type INTEGER, content TEXT);";
publicstaticfinalStringcreateTemplatesFileTable="CREATE TABLE IF NOT EXISTS TemplatesFile (id INTEGER PRIMARY KEY AUTO_INCREMENT, hash VARCHAR(130) NOT NULL, date DATETIME, languageCode VARCHAR(8),"+
publicstaticfinalStringcreateFiltersTable="create table if not exists Filters (filterId INTEGER PRIMARY KEY AUTO_INCREMENT,"+
" words VARCHAR(300) NOT NULL, languageCode VARCHAR(6) NOT NULL,"+
" CONSTRAINT `filtersLanguageCode` FOREIGN KEY (languageCode) REFERENCES Languages(languageCode) ON UPDATE CASCADE ON DELETE CASCADE"+
");";
publicstaticfinalStringcreateMessagesDiscardedTable="create table if not exists MessagesDiscarded (id INTEGER PRIMARY KEY AUTO_INCREMENT,"+
" userId INTEGER NOT NULL, filterId INTEGER NOT NULL, message TEXT NOT NULL, date TIMESTAMP(3) DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,"+
" partial BOOLEAN NOT NULL DEFAULT false, CONSTRAINT `messagesDiscardedUserId` FOREIGN KEY (userId) REFERENCES Users(userId) ON UPDATE CASCADE ON DELETE CASCADE,"+
" CONSTRAINT `messageDiscardedFilterId` FOREIGN KEY (filterId) REFERENCES Filters(filterId) ON UPDATE CASCADE ON DELETE CASCADE);";
publicstaticfinalStringcreateMessagesAnsweredTable="create table if not exists MessagesAnswered (id INTEGER PRIMARY KEY AUTO_INCREMENT,"+
" userId INTEGER NOT NULL, answer INTEGER NOT NULL, message TEXT NOT NULL, matchValue FLOAT NOT NULL, date TIMESTAMP(3) DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,"+
" partial BOOLEAN NOT NULL DEFAULT false, CONSTRAINT `messagesAnswerdUserId` FOREIGN KEY (userId) REFERENCES Users(userId) ON UPDATE CASCADE ON DELETE CASCADE);";
publicstaticfinalStringcreateChatListTable="create table if not exists Chats (chatId INTEGER PRIMARY KEY NOT NULL, "+
"title VARCHAR(50) NOT NULL);";
publicstaticfinalStringcreateChatsStatsTable="create table if not exists ChatStats (id INTEGER PRIMARY KEY AUTO_INCREMENT,"+
" userId INTEGER NOT NULL, chatId INTEGER NOT NULL, date TIMESTAMP(3) DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,"+
" forwarded BOOLEAN NOT NULL DEFAULT false, type INTEGER NOT NULL,"+
"CONSTRAINT `chatsStatsUserId` FOREIGN KEY (userId) REFERENCES Users(userId) ON UPDATE CASCADE ON DELETE CASCADE, "+
"CONSTRAINT `chatsStatsChatId` FOREIGN KEY (chatId) REFERENCES Chats(chatId) ON UPDATE CASCADE ON DELETE CASCADE);";
publicstaticfinalStringcreateUserLanguageDatabase="CREATE TABLE IF NOT EXISTS UserLanguage (userId INTEGER PRIMARY KEY, languageCode VARCHAR(10) NOT NULL)";
helpWeather= Curious about the weather?\nJust send me these commands and you'll know a lot better.\n\n|-- %s CITY,COUNTRY : Get a 3-day weather forecast for a city.\n|-- %s CITY,COUNTRY : Get the current weather of a city.\n\n|-- Send a location to get the forecast for it.
helpTransifex= Tricks with words is the game that I play, give it a shot, I might make your day.\n\nTo get the latest Telegram localization file for a language: \n|-- %s LANG_CODE : Get the latest iOS language.\n|-- %s LANG_CODE : Get the latest android language.\n|-- %s LANG_CODE : Get the latest webogram language.\n|-- %s LANG_CODE : Get the latest Tdesktop language.\n|-- %s LANG_CODE : Get the latest OSX-App language.\n|-- %s LANG_CODE : Get the latest Windows Phone language.\n\n2. To get an updated localization file for your Android beta-app: \n|-- %s LANG_CODE : Get the latest Android-beta language.
helpFiles= Leaving a file for some others to find? Just dock your boat here and a bay comes to mind.\n\nShare files through a custom link: \n|-- %s FILEID : Get a file by id.\n|-- %s : Start your file upload.\n|-- %s : Choose one of your files to delete it.\n|-- %s : Show a list of your shared files.
helpDirections= The road ahead, paved with good intentions, the right path ahead however is what I tend to mention.\n\nTo get directions between two locations: \n|-- %s : Start to get directions
sendFileToUpload= Please send me a file you want to share. Make sure you attach it as file, not as an image or video.
fileUploaded= Great, your file has been uploaded. Send this link to anyone you want and they will be able to download the file:\n\n
deleteUploadedFile= Please select the file you want to delete:
fileDeleted= The file was deleted
wrongFileId= Sorry, we can't find a file with that ID. Either a typo was made or it was deleted already.
listOfFiles= This your currently shared files list:
noFiles= You haven't shared any file yet.
processFinished= The current process was cancelled.