PHP Classes

File: lang.php

Recommend this page to a friend!
  Classes of Olafur Waage   synDirectory   lang.php   Download  
File: lang.php
Role: Configuration script
Content type: text/plain
Description: Language config file
Class: synDirectory
Retrieve and sort the current directory files
Author: By
Last change: Priority change
Date: 16 years ago
Size: 714 bytes
 

Contents

Class file image Download
<?php

/**
 * To add another language, just create a new array
 * with the language key in the front
 */

// English
$lang["en"]["filename"] = "Filename:";
$lang["en"]["last_modified"] = "Last Modified:";
$lang["en"]["size"] = "Size:";
$lang["en"]["index_of"] = "Index of";
$lang["en"]["directories"] = "Directories";
$lang["en"]["files"] = "File(s)";
$lang["en"]["parent_dir"] = "Parent Directory";

// Icelandic
$lang["is"]["filename"] = "Skráar nafn:";
$lang["is"]["last_modified"] = "Seinast breytt:";
$lang["is"]["size"] = "Stærð:";
$lang["is"]["index_of"] = "Mappa";
$lang["is"]["directories"] = "Möppur";
$lang["is"]["files"] = "Skrár";
$lang["is"]["parent_dir"] = "Efri mappa";

?>