Login   Register  
PHP Classes
elePHPant
Icontem

File: lang.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of martin barker  >  lightweight MVC Lang  >  lang.sql  >  Download  
File: lang.sql
Role: Auxiliary data
Content type: text/plain
Description: Example Database for lang
Class: lightweight MVC Lang
Retrieve application texts from MySQL database
Author: By
Last change:
Date: 2010-12-07 02:33
Size: 1,205 bytes
 

Contents

Class file image Download
/*
Navicat MySQL Data Transfer

Source Server         : localhost_3306
Source Server Version : 50403
Source Host           : localhost:3306
Source Database       : intortus

Target Server Type    : MYSQL
Target Server Version : 50403
File Encoding         : 65001

Date: 2010-12-07 10:31:28
*/

SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `lang`
-- ----------------------------
DROP TABLE IF EXISTS `lang`;
CREATE TABLE `lang` (
  `tag` varchar(255) NOT NULL,
  `lang` varchar(2) NOT NULL,
  `text` varchar(255) NOT NULL,
  KEY `Search` (`lang`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of lang
-- ----------------------------
INSERT INTO `lang` VALUES ('Username', 'en', 'Username');
INSERT INTO `lang` VALUES ('Password', 'en', 'Password');
INSERT INTO `lang` VALUES ('login', 'en', 'Login');
INSERT INTO `lang` VALUES ('pleaseselectproject', 'en', 'Please Select a Project');
INSERT INTO `lang` VALUES ('delete', 'en', 'Delete');
INSERT INTO `lang` VALUES ('edit', 'en', 'Edit');
INSERT INTO `lang` VALUES ('lock', 'en', 'Lock');
INSERT INTO `lang` VALUES ('logout', 'en', 'Logout');