はじまりの大地

This commit is contained in:
miteruzo
2024-07-08 03:32:47 +09:00
commit c616a96f53
7749 changed files with 478270 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
<?php
$lang['e_unknowntype'] = 'Unknown type "%s"';
$lang['e_unknownaction'] = 'Unknown action "%s"';
$lang['e_missingargs'] = 'Not enough arguments for %s %s';
$lang['e_noaction'] = 'No action defined - where should the data be sent to?';
$lang['e_mail'] = 'Something went wrong with sending that data';
$lang['e_unknownconstraint'] = 'Unknown field constraint %s';
$lang['e_labelpage'] = 'Labelpage %s not found';
$lang['e_required'] = '"%s" is required';
$lang['e_match'] = '"%s" wasn\'t filled in correctly. %s';
$lang['checkagainst'] = '(Checked against /%s/i)';
$lang['e_email'] = '"%s" needs to be a valid email address.';
$lang['e_numeric'] = '"%s" needs to be a number.';
$lang['e_date'] = '"%s" needs to be a valid date in the format yyyy-mm-dd.';
$lang['e_time'] = '"%s" needs to be a valid time in the format (h)h:mm(:ss).';
$lang['e_user'] = '"%s" needs to be the name of an existing user.';
$lang['e_users'] = '"%s" needs to be a comma-separated list of names of existing users.';
$lang['e_min'] = '"%s" needs to be greater than %s.';
$lang['e_max'] = '"%s" needs to be less than %s.';
$lang['e_pagename'] = 'Missing pagename.';
$lang['e_pageexists'] = 'The page "%s" exists already. Please choose a different pagename.';
$lang['e_template'] = 'Could not read template "%s". Maybe it doesn\'t exist or you have no read permissions?';
$lang['e_denied'] = 'You are not allowed to create this page, maybe you forgot to log in?';
$lang['mailsubject'] = 'Form data submitted at %s';
$lang['mailintro'] = 'The following data was submitted on %s.';
$lang['mail_thanks'] = 'Your data was sent successfully. Thank you.';
$lang['template_thanks'] = 'The page has been created, follow the link to open it.';
$lang['summary'] = 'Created from the form at %s';
$lang['attachmentMailEmpty'] = '(file not submitted)';
$lang['attachmentMailToLarge'] = '(file too large for mail attachment)';
$lang['attachmentMailToLarge_userinfo'] = 'file "%s" too large for mail attachment (>%s) (mail was sent nevertheless)';
$lang['submit'] = 'Submit';
@@ -0,0 +1,5 @@
<?php
$lang['runas'] = 'Affects the template mode. Use this (virtual) user\'s permissions when checking ACLs for reading templates and creating pages.';
$lang['maxEmailAttachmentSize'] = 'Max size of mail attachments in Bytes. (per File)';