<?php
class EnumSteps {
const USER_IS_TRANSLATING = 'userIsTranslating';
const USER_ASKED_FOR_HELP = 'userAskedForHelp';
const USER_ACCEPTED_HELP = 'userAcceptedHelp';
const USER_ASKED_FOR_TYPE_OF_PROBLEM = 'userAskedForTypeOfProblem';
const USER_ASKED_FOR_CONFIRMING_HIS_TRANSLATION = 'userAskedForConfirmingHisTranslation';
const USER_ASKED_FOR_RELATED_WORD = 'userAskedForRelatedWord';
const USER_ASKED_FOR_INSERTING_NEW_WORD = 'userAskedForInsertingNewWord';
const USER_ASKED_FOR_INSERTING_NEW_RELATED_WORD = 'userAskedForInsertingNewRelatedWord';
const USER_ASKED_FOR_ACCEPTING_TO_WRITE_NEW_WORD = 'userAskedForAcceptingToWriteNewWord';
const USER_ASKED_FOR_ACCEPTING_TO_WRITE_RELATED_WORD = 'userAskedForAcceptingToWriteRelatedWord';
const USER_ADDED_NEW_WORD = 'userAddedNewWord';
const USER_ASKED_FOR_CONTRIBUTION = 'userAskedForContribution';
const USER_WANTS_INSERT_MEANING = "insertMeaning";
const USER_WANTS_INSERT_COMPLETE_MEANING = "insertCompMeaning";
const USER_WANTS_EDIT_MEANING = "editMeaning";
}
class EnumProblems {
const WORD_IS_MISSTYPED = 'wordIsMisstyped';
const WORD_IS_COMBINED = 'wordIsCombined';
const WORD_IS_REFORMED = 'wordIsReformed';
}
class EnumContribution {
const GET = 'getContributionTranslation';
}
class EnumOrder {
const GET_WORD_MEANING_BY_CONTRIBUTION_ID = "getContTrans";
const GET_WORD_MEANING_BY_YANDEX = "getWordYandex";
const DELETE_ME = "deleteMe";
}
class EnumAnswer {
const NO = 'answerNo';
}
class EnumWord {
const GET_TRANSLATION = 'getTranslation';
const TYPE_VERB = 'wordTypeVerb';
const TYPE_NOUN = 'wordTypeNoun';
const TYPE_OTHER = 'wordTypeOther';
const ARTIKEL_DIE = "artikelDIE";
const ARTIKEL_DER = "artikelDER";
const ARTIKEL_DAS = "artikelDAS";
}
class EnumStatus {
const CONTRIBIUTION_CLOSED = 'closed';
const CONTRIBIUTION_OPENED = 'opened';
const CONTRIBIUTION_CANCELED = 'canceled';//deprecated
const CONTRIBIUTION_CONFIRMED = 'confirmed';
const CONTRIBIUTION_APPROVED = 'approved';
const CONTRIBIUTION_REQUESTED = 'requested';
}
class EnumApprove {
const ADMIN_REJECTED = 'adminRejected';
const ADMIN_CONFIRMED = 'adminConfirmed';
const ADMIN_REFUSED = 'adminRefused';
const ADMIN_CONFIRMED_SELF_TRANSLATION = 'adminConfSelfTrans';
const ADMIN_ALLOWS_TO_ASK_PEOPLE = 'adminAllows';
const ADMIN_GRANTED_TO_USERS = 'adminGrantedToUsers';
}
class EnumAdmins {
const ADMIN_WRITES_QUIZ_NAME = 'adminWritesQuizName';
const ADMIN_ALLOWS_TO_USE_POWOP = "adminAllowsUsePowp";
}
class EnumDecisions {
const USER_CONFIRMED_A_TRANSLATION = 'userConfATrans';
const USER_REFUSED_A_TRANSLATION = 'userRefuseATrans';
}
class EnumRole {
const USER = 'USER';
const ADMIN = 'ADMIN';
const TRANSLATOR = 'TRANSLATOR';
const EDITOR = 'EDITOR';
}
class EnumConjuction {
const GET_CONJUCTION = 'CONJUCTIONGET';
}
class EnumSpeech {
const SPEECH_GET_SOUND = 'SPEECHGET';
}
class EnumFrontdesk {
const ANSWER = 'ANSWER';
const SHOW_USER = 'shUser';
const SHOW_ANSWERS = 'shAnswers';
const DELETE_ME = 'delMe';
}
class EnumTamasbabotAnswers {
const TAKE_SCREEN_SHOT = '1';
const USE_ROBOT = '2';
const USE_LIKE_VIDEO = '3';
const SORRY_BOT_IS_DOWN = '4';
const MY_PLEASURE = '5';
const FEATURE_IN_FUTURE = '6';
const DELETE_ME = '7';
const HERE_IS_CHANNEL = '8';
}
class EnumTranslatorButton {
const MAINPAGE = "بازگشت به صفحه اصلی";
const TOOLS = "مشاهده امکانات";
const REGISTER = "عضویت در گروه مترجمان";
const INSERT_WORD= "وارد کردن لغت";
const UNREGISTER = "خروج از گروه";
const ACTIVATE_KEYBOARD = "show menu";
}
class EnumKeyboard {
const ACTIVATED = "ACTIVATED";
const DEACTIVATED = "DEACTIVATED";
}
class TABLES{
public static $dicDeFa = "bayadic_dictionary_de_fa";
public static $dicDeFaContribution = "bayadic_dictionary_contribution_de_fa";
public static $dicRelatedWordsDeFa = "bayadic_related_words_de_fa";
public static $ratedWordsDeFa = "bayadic_rated_words_de_fa";
public static $dicDeFaProposition = "bayadic_dictionary_proposition_de_fa";
public static $bayadicLog = "bayadic_log";
public static $usersPurchases = "bayadic_users_purchases";
public static $users = "bayadic_users";
public static $tablesMessage = "bayadic_tables_messages";
public static $items = "bayadic_items";
}