All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.vectorpublish.desktop.vp.ui.I8nTextDefault Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2016, Peter Rader. All rights reserved.
 *  ___ ___               __                 ______         __     __  __         __
 * |   |   |.-----..----.|  |_ .-----..----.|   __ \.--.--.|  |--.|  ||__|.-----.|  |--.
 * |   |   ||  -__||  __||   _||  _  ||   _||    __/|  |  ||  _  ||  ||  ||__ --||     |
 *  \_____/ |_____||____||____||_____||__|  |___|   |_____||_____||__||__||_____||__|__|
 *
 * http://www.gnu.org/licenses/gpl-3.0.html
 */
package net.vectorpublish.desktop.vp.ui;

import net.vectorpublish.desktop.vp.i8n.I8nText;

public enum I8nTextDefault implements I8nText {
	EXIT("exit"), ADD_KEYFRAME("keyframe.add"), FILE_NEW("file.new"), KEYFRAME_NEXT("keyframe.next"), KEYFRAME_PREV("keyframe.prev"), FILE_OPEN(
			"file.open"), HISTORY_REDO("history.redo"), FILE_SAVE_AS("file.save.as"), HISTORY_UNDO("history.undo"), MOVE_DOWN(
					"move.down"), MOVE_LEFT("move.left"), MOVE_RIGHT("move.right"), MOVE_UP("move.up"), MENU_EDIT("menu.edit"), MENU_FILE("menu.file");
	private final String key;

	private final String ns = "vp.default";

	public final static Namespace NS = Namespace.getNamespace("net.vectorpublish", "i8n");

	private I8nTextDefault(String key) {
		this.key = key;
	}

	@Override
	public String getKey() {
		return key;
	}

	@Override
	public Namespace getNamespace() {
		return NS;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy