mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
22 lines
755 B
PHP
22 lines
755 B
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
$app_strings = array (
|
|
'Groups'=>'Groups',
|
|
'DocumentFolders'=>'Document Folders',
|
|
'Currency'=>'Currency',
|
|
'SINGLE_Groups'=>'Group',
|
|
'SINGLE_DocumentFolders'=>'Document Folder',
|
|
'SINGLE_Currency'=>'Currency',
|
|
);
|
|
|
|
$webservice_strings = array(
|
|
'LBL_INVALID_OLD_PASSWORD' => 'Invalid value given for old password.',
|
|
'LBL_NEW_PASSWORD_MISMATCH' => "New Password and confirm password don't match",
|
|
'LBL_DATABASE_QUERY_ERROR' => 'Database error while performing requested operation',
|
|
'LBL_CHANGE_PASSWORD_FAILURE' => 'Failed to change password',
|
|
);
|
|
|
|
?>
|