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.
45 lines
2.0 KiB
45 lines
2.0 KiB
package org.telegram;
|
|
|
|
/**
|
|
* @author Ruben Bermudez
|
|
* @version 1.0
|
|
* @brief Command for the bots
|
|
* @date 20 of June of 2015
|
|
*/
|
|
public class Commands {
|
|
public static final String commandInitChar = "/";
|
|
/// Transifex iOS command
|
|
public static final String transifexiOSCommand = commandInitChar + "langios";
|
|
/// Transifex android command
|
|
public static final String transifexAndroidCommand = commandInitChar + "langdroid";
|
|
/// Transifex android command
|
|
public static final String transifexTDesktop = commandInitChar + "langdesk";
|
|
/// Transifex android command
|
|
public static final String transifexWebogram = commandInitChar + "langweb";
|
|
/// Transifex android command
|
|
public static final String transifexWP = commandInitChar + "langwp";
|
|
/// Transifex android command
|
|
public static final String transifexOSX = commandInitChar + "langosx";
|
|
/// Transifex android support command
|
|
public static final String transifexAndroidSupportCommand = commandInitChar + "langtestdroid";
|
|
/// Help command
|
|
public static final String help = commandInitChar + "help";
|
|
/// Upload command
|
|
public static final String uploadCommand = commandInitChar + "upload";
|
|
/// Report command
|
|
public static final String reportCommand = commandInitChar + "report";
|
|
/// Start command
|
|
public static final String startCommand = commandInitChar + "start";
|
|
/// Cancel command
|
|
public static final String cancelCommand = commandInitChar + "cancel";
|
|
/// Delete command
|
|
public static final String deleteCommand = commandInitChar + "delete";
|
|
/// List command
|
|
public static final String listCommand = commandInitChar + "list";
|
|
/// Start directions command
|
|
public static final String startDirectionCommand = commandInitChar + "directions";
|
|
/// Set Language command
|
|
public static final String setLanguageCommand = commandInitChar + "language";
|
|
|
|
public static final String STOPCOMMAND = commandInitChar + "stop";
|
|
}
|
|
|