Primo commit: trasferimento del progetto PPEasy
This commit is contained in:
@@ -0,0 +1,110 @@
|
||||
<?php
|
||||
/**
|
||||
* FileMaker API for PHP
|
||||
*
|
||||
* @package FileMaker
|
||||
*
|
||||
* Copyright © 2005-2007, FileMaker, Inc. All rights reserved.
|
||||
* NOTE: Use of this source code is subject to the terms of the FileMaker
|
||||
* Software License which accompanies the code. Your use of this source code
|
||||
* signifies your agreement to such license terms and conditions. Except as
|
||||
* expressly granted in the Software License, no other copyright, patent, or
|
||||
* other intellectual property license or right is granted, either expressly or
|
||||
* by implication, by FileMaker.
|
||||
*/
|
||||
|
||||
/**#@+
|
||||
* @ignore Include parent class.
|
||||
*/
|
||||
require_once dirname(__FILE__) . '/../Error.php';
|
||||
/**#@-*/
|
||||
|
||||
/**
|
||||
* Extension of the FileMaker_Error class that adds information about
|
||||
* pre-validation errors.
|
||||
*
|
||||
* @package FileMaker
|
||||
*/
|
||||
class FileMaker_Error_Validation extends FileMaker_Error
|
||||
{
|
||||
/**
|
||||
* Error array.
|
||||
*
|
||||
* @var array
|
||||
* @access private
|
||||
*/
|
||||
var $_errors = array();
|
||||
|
||||
/**
|
||||
* Adds an error.
|
||||
*
|
||||
* @param FileMaker_Field $field Field object that failed pre-validation.
|
||||
* @param integer $rule Pre-validation rule that failed specified as one
|
||||
* of the FILEMAKER_RULE_* constants.
|
||||
* @param string $value Value that failed pre-validation.
|
||||
*/
|
||||
function addError($field, $rule, $value)
|
||||
{
|
||||
$this->_errors[] = array($field, $rule, $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Indicates whether the error is a detailed pre-validation error
|
||||
* or a FileMaker Web Publishing Engine error.
|
||||
*
|
||||
* @return boolean TRUE, to indicate that this is a pre-validation
|
||||
* error object.
|
||||
*/
|
||||
function isValidationError()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the number of pre-validation rules that failed.
|
||||
*
|
||||
* @return integer Number of failures.
|
||||
*/
|
||||
function numErrors()
|
||||
{
|
||||
return count($this->_errors);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array of arrays describing the pre-validation errors that
|
||||
* occurred.
|
||||
*
|
||||
* Each entry in the outer array represents a pre-validation failure.
|
||||
* Each failure is represented by a three-element array with the
|
||||
* following members:
|
||||
*
|
||||
* - 0 => The field object for the field that failed pre-validation.
|
||||
* - 1 => The pre-validation rule that failed specified as a
|
||||
* FILEMAKER_RULE_* constant.
|
||||
* - 2 => The value entered for the field that failed pre-validation.
|
||||
*
|
||||
* Multiple pre-validation rules can fail on a single field. If you set the
|
||||
* optional $fieldName parameter, then failures for only the specified
|
||||
* field are returned.
|
||||
*
|
||||
* @param string $fieldName Name of the field to get errors for.
|
||||
*
|
||||
* @return array Pre-validation error details.
|
||||
*/
|
||||
function getErrors($fieldName = null)
|
||||
{
|
||||
if ($fieldName === null) {
|
||||
return $this->_errors;
|
||||
}
|
||||
|
||||
$errors = array();
|
||||
foreach ($this->_errors as $error) {
|
||||
if ($error[0]->getName() == $fieldName) {
|
||||
$errors[] = $error;
|
||||
}
|
||||
}
|
||||
|
||||
return $errors;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,220 @@
|
||||
<?php
|
||||
/**
|
||||
* FileMaker error codes - German translations.
|
||||
*
|
||||
* @package FileMaker
|
||||
*
|
||||
* Copyright © 2005-2009, FileMaker, Inc. All rights reserved.
|
||||
* NOTE: Use of this source code is subject to the terms of the FileMaker
|
||||
* Software License which accompanies the code. Your use of this source code
|
||||
* signifies your agreement to such license terms and conditions. Except as
|
||||
* expressly granted in the Software License, no other copyright, patent, or
|
||||
* other intellectual property license or right is granted, either expressly or
|
||||
* by implication, by FileMaker.
|
||||
*/
|
||||
|
||||
$__FM_ERRORS = array(
|
||||
-1 => 'Unbekannter Fehler',
|
||||
0 => 'Kein Fehler',
|
||||
1 => 'Aktion durch Benutzer abgebrochen',
|
||||
2 => 'Speicherfehler',
|
||||
3 => 'Befehl nicht verfügbar (z. B. falsches Betriebssystem, falscher Modus etc.)',
|
||||
4 => 'Befehl unbekannt.',
|
||||
5 => 'Befehl ungültig (z. B. ist für den Scriptschritt Feldwert setzen keine Formel angegeben).',
|
||||
6 => 'Datei ist schreibgeschützt.',
|
||||
7 => 'Speicherüberlauf',
|
||||
8 => 'Leeres Ergebnis',
|
||||
9 => 'Ungenügende Berechtigungen',
|
||||
10 => 'Angeforderte Daten fehlen.',
|
||||
11 => 'Name ist nicht gültig.',
|
||||
12 => 'Name existiert bereits.',
|
||||
13 => 'Datei oder Objekt ist in Gebrauch.',
|
||||
14 => 'Außerhalb des gültigen Bereichs',
|
||||
15 => 'Teilen durch null nicht möglich.',
|
||||
16 => 'Operation fehlgeschlagen, Anfrage wiederholen (z. B. eine Benutzeranfrage).',
|
||||
17 => 'Konvertierung von fremdem Zeichensatz in UTF-16 fehlgeschlagen.',
|
||||
18 => 'Client muss Kontoinformationen liefern, um fortzufahren.',
|
||||
19 => 'Zeichenfolge enthält andere Zeichen als A-Z, a-z, 0-9 (ASCII).',
|
||||
20 => 'Befehl oder Vorgang durch ausgelöstes Script abgebrochen.',
|
||||
100 => 'Datei fehlt.',
|
||||
101 => 'Datensatz fehlt.',
|
||||
102 => 'Feld fehlt.',
|
||||
103 => 'Beziehung fehlt.',
|
||||
104 => 'Script fehlt.',
|
||||
105 => 'Layout fehlt.',
|
||||
106 => 'Tabelle fehlt.',
|
||||
107 => 'Index fehlt.',
|
||||
108 => 'Werteliste nicht vorhanden.',
|
||||
109 => 'Berechtigung fehlt.',
|
||||
110 => 'Bezugstabellen fehlen.',
|
||||
111 => 'Feldwiederholung ist ungültig.',
|
||||
112 => 'Fenster fehlt.',
|
||||
113 => 'Funktion fehlt.',
|
||||
114 => 'Dateiverweis fehlt.',
|
||||
130 => 'Dateien sind beschädigt oder fehlen und müssen neu installiert werden.',
|
||||
131 => 'Dateien des Sprachpakets fehlen (z. B. Vorlagendateien).',
|
||||
200 => 'Zugriff auf Datensatz verweigert.',
|
||||
201 => 'Feld kann nicht geändert werden.',
|
||||
202 => 'Zugriff auf Feld verweigert.',
|
||||
203 => 'Keine zu druckenden Datensätze in der Datei bzw. Passwort erlaubt kein Drucken.',
|
||||
204 => 'Kein Zugriff auf Feld(er) in Sortierfolge',
|
||||
205 => 'Benutzer hat keine Zugriffsrechte, um neue Datensätze zu erstellen; Import überschreibt bestehende Daten.',
|
||||
206 => 'Benutzer hat keine Zugriffsrechte, um das Passwort zu ändern, oder die Datei ist schreibgeschützt.',
|
||||
207 => 'Benutzer hat nicht genügend Zugriffsrechte, um das Datenbankschema zu ändern, oder die Datei ist schreibgeschützt.',
|
||||
208 => 'Passwort enthält zu wenige Zeichen.',
|
||||
209 => 'Neues Passwort muss sich vom bestehenden unterscheiden.',
|
||||
210 => 'Benutzerkonto ist inaktiv.',
|
||||
211 => 'Passwort ist abgelaufen.',
|
||||
212 => 'Ungültiges Benutzerkonto und/oder Passwort. Versuchen Sie es erneut.',
|
||||
213 => 'Benutzerkonto und/oder Passwort existiert nicht.',
|
||||
214 => 'Zu viele Anmeldeversuche',
|
||||
215 => 'Administratorrechte können nicht dupliziert werden.',
|
||||
216 => 'Gastkonto kann nicht dupliziert werden.',
|
||||
217 => 'Benutzer hat nicht genügend Zugriffsrechte, um Administratorkonto zu ändern.',
|
||||
300 => 'Datei ist geschützt oder in Gebrauch.',
|
||||
301 => 'Datei ist blockiert durch anderen Anwender.',
|
||||
302 => 'Tabelle ist blockiert durch anderen Anwender.',
|
||||
303 => 'Datenbankschema ist blockiert durch anderen Anwender.',
|
||||
304 => 'Layout ist blockiert durch anderen Anwender.',
|
||||
306 => 'Datensatzänderungs-ID stimmt nicht überein.',
|
||||
400 => 'Suchkriterien sind leer.',
|
||||
401 => 'Kein Datensatz entspricht der Abfrage.',
|
||||
402 => 'Kein Vergleichsfeld für eine Referenz',
|
||||
403 => 'Maximales Datensatzlimit für FileMaker Pro-Demo wird überschritten.',
|
||||
404 => 'Ungültige Sortierfolge',
|
||||
405 => 'Angegebene Datensatzzahl übersteigt die Anzahl der ausschließbaren Datensätze.',
|
||||
406 => 'Ungültige Kriterien für Ersetzen/Neunummerierung',
|
||||
407 => 'Ein oder beide Gruppierfeld(er) fehlen (ungültige Beziehung).',
|
||||
408 => 'Angegebenes Feld hat ein Datenformat, das diesem Befehl nicht entspricht.',
|
||||
409 => 'Ungültige Importfolge',
|
||||
410 => 'Ungültige Exportfolge',
|
||||
412 => 'Falsche Version von FileMaker Pro verwendet, um die Datei wiederherzustellen',
|
||||
413 => 'Angegebenes Feld hat ungeeigneten Feldtyp.',
|
||||
414 => 'Layout kann das Ergebnis nicht anzeigen.',
|
||||
415 => 'Ein oder mehrere erforderliche Bezugsdatensätze sind nicht verfügbar.',
|
||||
500 => 'Datumswert entspricht nicht den Überprüfungskriterien.',
|
||||
501 => 'Zeitwert entspricht nicht den Überprüfungskriterien.',
|
||||
502 => 'Zahlenwert entspricht nicht den Überprüfungskriterien.',
|
||||
503 => 'Feldwert entspricht nicht der Bereichsüberprüfung.',
|
||||
504 => 'Feldwert entspricht nicht der Eindeutigkeitsüberprüfung.',
|
||||
505 => 'Feldwert existiert nicht in der Datenbank und entspricht nicht der Existenzüberprüfung.',
|
||||
506 => 'Feldwert entspricht nicht der Überprüfung nach Bestandteil einer Werteliste.',
|
||||
507 => 'Feldwert entspricht nicht der Überprüfung durch Berechnung.',
|
||||
508 => 'Ungültiger Wert wurde in Suchenmodus eingegeben.',
|
||||
509 => 'Feld verlangt gültigen Wert.',
|
||||
510 => 'Bezugswert ist leer oder nicht verfügbar.',
|
||||
511 => 'Der Wert im Feld überschreitet die maximale Anzahl der zulässigen Zeichen.',
|
||||
600 => 'Druckerfehler aufgetreten.',
|
||||
601 => 'Kombination von Kopf- und Fußbereich übersteigt eine Seitenlänge.',
|
||||
602 => 'Datenbereich passt für aktuelle Spalteneinstellung nicht auf eine Seite.',
|
||||
603 => 'Verbindung zum Drucker getrennt.',
|
||||
700 => 'Datei hat falschen Dateityp für Import.',
|
||||
706 => 'EPSF-Datei hat keine Übersichtsgrafik.',
|
||||
707 => 'Grafikfilter nicht vorhanden.',
|
||||
708 => 'Dateiimport nicht möglich bzw. Farbmonitor für Import erforderlich.',
|
||||
709 => 'Import des QuickTime-Films fehlgeschlagen.',
|
||||
710 => 'QuickTime-Dateiverweis konnte nicht aktualisiert werden, da für Datenbankdatei nur Lesezugriff besteht.',
|
||||
711 => 'Importfilter nicht vorhanden.',
|
||||
714 => 'Zugriffsrechte reichen für diesen Befehl nicht aus.',
|
||||
715 => 'Benannter Bereich oder Tabellenblatt von Excel konnte nicht gefunden werden.',
|
||||
716 => 'Eine SQL Anfrage mit DELETE, INSERT oder UPDATE ist nicht für ODBC Import erlaubt.',
|
||||
717 => 'Zum Fortsetzen des Imports bzw. Exports sind nicht genügend XML/XSL-Daten vorhanden.',
|
||||
718 => 'XML-Parsingfehler (von Xerces)',
|
||||
719 => 'Fehler beim Transformieren von XML mit XSL (von Xalan)',
|
||||
720 => 'Fehler beim Export: Das vorgesehene Format unterstützt keine Wiederholfelder.',
|
||||
721 => 'Im Parser oder Transformer ist ein unbekannter Fehler aufgetreten.',
|
||||
722 => 'Daten können nicht in eine Datei importiert werden, die keine Felder hat.',
|
||||
723 => 'Sie sind nicht berechtigt, Datensätze in der Zieltabelle hinzuzufügen oder zu ändern.',
|
||||
724 => 'Sie sind nicht berechtigt, Datensätze in der Zieltabelle hinzuzufügen.',
|
||||
725 => 'Sie sind nicht berechtigt, Datensätze in der Zieltabelle zu ändern.',
|
||||
726 => 'In der Importdatei sind mehr Datensätze vorhanden als in der Zieltabelle. Nicht alle Datensätze werden importiert.',
|
||||
727 => 'In der Zieltabelle sind mehr Datensätze vorhanden als in der Importdatei. Nicht alle Datensätze werden aktualisiert.',
|
||||
729 => 'Fehler beim Import. Datensätze konnten nicht importiert werden.',
|
||||
730 => 'Nicht unterstützte Excel-Version. Konvertieren Sie die Datei in Excel 7.0 (Excel 95), Excel 97, 2000, XP oder 2007 und versuchen Sie es erneut.',
|
||||
731 => 'Die für den Import ausgewählte Datei enthält keine Daten.',
|
||||
732 => 'Diese Datei kann nicht eingefügt werden, weil sie selbst weitere Dateien enthält.',
|
||||
733 => 'Eine Tabelle kann nicht in sich selbst importiert werden.',
|
||||
734 => 'Dieser Dateityp kann nicht als Bild dargestellt werden.',
|
||||
735 => 'Dieser Dateityp kann nicht als Bild dargestellt werden. Er wird eingefügt und dann als Datei dargestellt.',
|
||||
800 => 'Datei konnte auf Datenträger nicht erstellt werden.',
|
||||
801 => 'Temporärdatei konnte auf Systemdatenträger nicht erstellt werden.',
|
||||
802 => 'Datei konnte nicht geöffnet werden.',
|
||||
803 => 'Datei in Einzelbenutzer-Status oder Host nicht vorhanden.',
|
||||
804 => 'Datei konnte in ihrem aktuellen Status nicht mit Nur-Lese-Zugriff geöffnet werden.',
|
||||
805 => 'Datei ist beschädigt; stellen Sie die Datei wieder her.',
|
||||
806 => 'Datei kann mit dieser Version von FileMaker Pro nicht geöffnet werden.',
|
||||
807 => 'Datei ist keine FileMaker Pro-Datei oder ist schwer beschädigt.',
|
||||
808 => 'Datei kann wegen beschädigter Zugriffsrechte nicht geöffnet werden.',
|
||||
809 => 'Datenträger voll',
|
||||
810 => 'Datenträger fixiert',
|
||||
811 => 'Temporärdatei kann nicht als FileMaker Pro-Datei geöffnet werden.',
|
||||
813 => 'Fehler bei Datensatz-Synchronisation im Netzwerk',
|
||||
814 => 'Datei(en) kann (können) nicht geöffnet werden, da die maximale Anzahl an Dateien geöffnet ist.',
|
||||
815 => 'Referenzdatei konnte nicht geöffnet werden.',
|
||||
816 => 'Datei konnte nicht konvertiert werden.',
|
||||
817 => 'Der Bindungsschlüssel der Datei stimmt nicht mit dieser Laufzeitanwendung überein.',
|
||||
819 => 'Lokale Kopie einer remote Datei kann nicht gespeichert werden.',
|
||||
820 => 'Datei wird geschlossen.',
|
||||
821 => 'Host hat die Verbindung getrennt.',
|
||||
822 => 'FMI-Dateien nicht gefunden; fehlende Dateien neu installieren.',
|
||||
823 => 'Datei kann nicht auf Einzelbenutzer gesetzt werden, da Gäste verbunden sind.',
|
||||
824 => 'Datei ist beschädigt oder keine FileMaker-Datei.',
|
||||
900 => 'Allgemeiner Fehler in der Rechtschreibprüfung',
|
||||
901 => 'Standardwörterbuch nicht installiert.',
|
||||
902 => 'Hilfe-System konnte nicht gestartet werden.',
|
||||
903 => 'Befehl kann nicht in einer gemeinsam genutzten Datei verwendet werden.',
|
||||
904 => 'Befehl kann nur in einer Datei verwendet werden, die von FileMaker Pro Server freigegeben wurde.',
|
||||
905 => 'Kein aktives Feld ausgewählt, Befehl kann nur mit aktivem Feld verwendet werden.',
|
||||
920 => 'Initialisierung der Rechtschreibprüfung nicht möglich.',
|
||||
921 => 'Anwenderwörterbuch kann nicht zur Bearbeitung geladen werden.',
|
||||
922 => 'Anwenderwörterbuch existiert nicht.',
|
||||
923 => 'Anwenderwörterbuch ist schreibgeschützt.',
|
||||
951 => 'Ein unerwarteter Fehler ist aufgetreten.',
|
||||
954 => 'Nicht unterstützte XML-Grammatik',
|
||||
955 => 'Kein Datenbankname',
|
||||
956 => 'Maximale Anzahl von Datenbanksitzungen überschritten.',
|
||||
957 => 'Widersprüchliche Befehle',
|
||||
958 => 'Parameter fehlt in Query',
|
||||
1200 => 'Generischer Rechenfehler',
|
||||
1201 => 'In dieser Funktion gibt es zu wenige Parameter.',
|
||||
1202 => 'In dieser Funktion gibt es zu viele Parameter.',
|
||||
1203 => 'Unerwartetes Ende der Berechnung',
|
||||
1204 => 'Es wird eine Zahl, eine Textkonstante, ein Feldname bzw. ( erwartet.',
|
||||
1205 => 'Kommentar ist nicht mit */ beendet.',
|
||||
1206 => 'Textkonstante muss mit einem Anführungszeichen enden.',
|
||||
1207 => 'Klammer unvollständig',
|
||||
1208 => 'Operator fehlt, Funktion nicht gefunden oder ( nicht erwartet.',
|
||||
1209 => 'Name (z. B. Feldname oder Layoutname) fehlt.',
|
||||
1210 => 'Plugin-Funktion wurde bereits registriert.',
|
||||
1211 => 'In dieser Funktion ist die Listennutzung nicht zulässig.',
|
||||
1212 => 'Hier wird ein Operator (z. B. +, -, * ) erwartet.',
|
||||
1213 => 'Diese Variable wurde bereits in der SetzeVars-Funktion definiert.',
|
||||
1214 => 'MITTELWERT, ANZAHL, ERWEITERN, HOLEWIEDERHOLFELDWERT, MAX, MIN, NBW, STABW, SUMME und HOLEERGEBNISWERT: Ausdruck gefunden, wo nur ein Feld benötigt wird.',
|
||||
1215 => 'Dieser Parameter ist ein ungültiger Statusfunktionsparameter.',
|
||||
1216 => 'Als erstes Argument einer HOLEERGEBNISWERT-Funktion können nur Statistikfelder angegeben werden.',
|
||||
1217 => 'Gruppierfeld ist ungültig.',
|
||||
1218 => 'Zahl kann nicht berechnet werden.',
|
||||
1219 => 'Ein Feld kann nicht in seiner eigenen Formel benutzt werden.',
|
||||
1220 => 'Feldtyp muss normal oder berechnet sein.',
|
||||
1221 => 'Datentyp muss Zahl, Datum, Zeit oder Zeitstempel sein.',
|
||||
1222 => 'Formel kann nicht gespeichert werden.',
|
||||
1223 => 'Die angegebene Funktion existiert nicht.',
|
||||
1400 => 'ODBC-Client-Treiberinitialisierung fehlgeschlagen. Stellen Sie sicher, dass die ODBC-Client-Treiber richtig installiert sind. Hinweis Die Plugin-Komponente für das Bereitstellen von Daten über ODBC wird automatisch zusammen mit FileMaker Server installiert. Die ODBC-Client-Treiber werden über die FileMaker Server Web Publishing-CD installiert. Weitere Informationen finden Sie in Installation der FileMaker ODBC- und JDBC-Client-Treiber.',
|
||||
1401 => 'Umgebung konnte nicht zugeteilt werden (ODBC).',
|
||||
1402 => 'Umgebung konnte nicht freigegeben werden (ODBC).',
|
||||
1403 => 'Verbindung trennen fehlerhaft (ODBC).',
|
||||
1404 => 'Verbindung konnte nicht zugeteilt werden (ODBC).',
|
||||
1405 => 'Verbindung konnte nicht freigegeben werden (ODBC).',
|
||||
1406 => 'Überprüfung von SQL API fehlgeschlagen (ODBC).',
|
||||
1407 => 'Anweisung konnte nicht zugeteilt werden (ODBC).',
|
||||
1408 => 'Erweiterter Fehler (ODBC)',
|
||||
1450 => 'Aktion erfordert PHP-Berechtigungserweiterung.',
|
||||
1451 => 'Aktion erfordert, dass die aktuelle Datei remote ist.',
|
||||
1501 => 'SMTP-Authentifizierung fehlgeschlagen.',
|
||||
1502 => 'Verbindung durch SMTP-Server abgelehnt.',
|
||||
1503 => 'SSL-Fehler',
|
||||
1504 => 'Der SMTP-Server verlangt eine verschlüsselte Verbindung.',
|
||||
1505 => 'Die angegebene Authentifizierung wird vom SMTP-Server nicht unterstützt.',
|
||||
1506 => 'E-Mail(s) konnte(n) nicht erfolgreich versendet werden.',
|
||||
1507 => 'Anmeldung am SMTP-Server nicht möglich'
|
||||
);
|
||||
@@ -0,0 +1,220 @@
|
||||
<?php
|
||||
/**
|
||||
* FileMaker error codes - English translations.
|
||||
*
|
||||
* @package FileMaker
|
||||
*
|
||||
* Copyright © 2005-2009, FileMaker, Inc. All rights reserved.
|
||||
* NOTE: Use of this source code is subject to the terms of the FileMaker
|
||||
* Software License which accompanies the code. Your use of this source code
|
||||
* signifies your agreement to such license terms and conditions. Except as
|
||||
* expressly granted in the Software License, no other copyright, patent, or
|
||||
* other intellectual property license or right is granted, either expressly or
|
||||
* by implication, by FileMaker.
|
||||
*/
|
||||
|
||||
$__FM_ERRORS = array(
|
||||
-1 => 'Unknown error',
|
||||
0 => 'No error',
|
||||
1 => 'User canceled action',
|
||||
2 => 'Memory error',
|
||||
3 => 'Command is unavailable (for example, wrong operating system, wrong mode, etc.)',
|
||||
4 => 'Command is unknown',
|
||||
5 => 'Command is invalid (for example, a Set Field script step does not have a calculation specified)',
|
||||
6 => 'File is read-only',
|
||||
7 => 'Running out of memory',
|
||||
8 => 'Empty result',
|
||||
9 => 'Insufficient privileges',
|
||||
10 => 'Requested data is missing',
|
||||
11 => 'Name is not valid',
|
||||
12 => 'Name already exists',
|
||||
13 => 'File or object is in use',
|
||||
14 => 'Out of range',
|
||||
15 => 'Can\'t divide by zero',
|
||||
16 => 'Operation failed, request retry (for example, a user query) ',
|
||||
17 => 'Attempt to convert foreign character set to UTF-16 failed',
|
||||
18 => 'Client must provide account information to proceed',
|
||||
19 => 'String contains characters other than A-Z, a-z, 0-9 (ASCII)',
|
||||
20 => 'Command or operation cancelled by triggered script',
|
||||
100 => 'File is missing',
|
||||
101 => 'Record is missing',
|
||||
102 => 'Field is missing',
|
||||
103 => 'Relationship is missing',
|
||||
104 => 'Script is missing',
|
||||
105 => 'Layout is missing',
|
||||
106 => 'Table is missing',
|
||||
107 => 'Index is missing',
|
||||
108 => 'Value list is missing',
|
||||
109 => 'Privilege set is missing',
|
||||
110 => 'Related tables are missing',
|
||||
111 => 'Field repetition is invalid',
|
||||
112 => 'Window is missing',
|
||||
113 => 'Function is missing',
|
||||
114 => 'File reference is missing',
|
||||
130 => 'Files are damaged or missing and must be reinstalled',
|
||||
131 => 'Language pack files are missing (such as template files)',
|
||||
200 => 'Record access is denied',
|
||||
201 => 'Field cannot be modified',
|
||||
202 => 'Field access is denied',
|
||||
203 => 'No records in file to print, or password doesn\'t allow print access',
|
||||
204 => 'No access to field(s) in sort order',
|
||||
205 => 'User does not have access privileges to create new records; import will overwrite existing data',
|
||||
206 => 'User does not have password change privileges, or file is not modifiable',
|
||||
207 => 'User does not have sufficient privileges to change database schema, or file is not modifiable',
|
||||
208 => 'Password does not contain enough characters',
|
||||
209 => 'New password must be different from existing one',
|
||||
210 => 'User account is inactive',
|
||||
211 => 'Password has expired ',
|
||||
212 => 'Invalid user account and/or password. Please try again',
|
||||
213 => 'User account and/or password does not exist',
|
||||
214 => 'Too many login attempts',
|
||||
215 => 'Administrator privileges cannot be duplicated',
|
||||
216 => 'Guest account cannot be duplicated',
|
||||
217 => 'User does not have sufficient privileges to modify administrator account',
|
||||
300 => 'File is locked or in use',
|
||||
301 => 'Record is in use by another user',
|
||||
302 => 'Table is in use by another user',
|
||||
303 => 'Database schema is in use by another user',
|
||||
304 => 'Layout is in use by another user',
|
||||
306 => 'Record modification ID does not match',
|
||||
400 => 'Find criteria are empty',
|
||||
401 => 'No records match the request',
|
||||
402 => 'Selected field is not a match field for a lookup',
|
||||
403 => 'Exceeding maximum record limit for trial version of FileMaker Pro',
|
||||
404 => 'Sort order is invalid',
|
||||
405 => 'Number of records specified exceeds number of records that can be omitted',
|
||||
406 => 'Replace/Reserialize criteria are invalid',
|
||||
407 => 'One or both match fields are missing (invalid relationship)',
|
||||
408 => 'Specified field has inappropriate data type for this operation',
|
||||
409 => 'Import order is invalid ',
|
||||
410 => 'Export order is invalid',
|
||||
412 => 'Wrong version of FileMaker Pro used to recover file',
|
||||
413 => 'Specified field has inappropriate field type',
|
||||
414 => 'Layout cannot display the result',
|
||||
415 => 'One or more required related records are not available',
|
||||
500 => 'Date value does not meet validation entry options',
|
||||
501 => 'Time value does not meet validation entry options',
|
||||
502 => 'Number value does not meet validation entry options',
|
||||
503 => 'Value in field is not within the range specified in validation entry options',
|
||||
504 => 'Value in field is not unique as required in validation entry options ',
|
||||
505 => 'Value in field is not an existing value in the database file as required in validation entry options',
|
||||
506 => 'Value in field is not listed on the value list specified in validation entry option',
|
||||
507 => 'Value in field failed calculation test of validation entry option',
|
||||
508 => 'Invalid value entered in Find mode',
|
||||
509 => 'Field requires a valid value ',
|
||||
510 => 'Related value is empty or unavailable ',
|
||||
511 => 'Value in field exceeds maximum number of allowed characters',
|
||||
600 => 'Print error has occurred',
|
||||
601 => 'Combined header and footer exceed one page ',
|
||||
602 => 'Body doesn\'t fit on a page for current column setup',
|
||||
603 => 'Print connection lost',
|
||||
700 => 'File is of the wrong file type for import',
|
||||
706 => 'EPSF file has no preview image ',
|
||||
707 => 'Graphic translator cannot be found ',
|
||||
708 => 'Can\'t import the file or need color monitor support to import file',
|
||||
709 => 'QuickTime movie import failed ',
|
||||
710 => 'Unable to update QuickTime file reference because the database file is read-only',
|
||||
711 => 'Import translator cannot be found ',
|
||||
714 => 'Password privileges do not allow the operation',
|
||||
715 => 'Specified Excel worksheet or named range is missing',
|
||||
716 => 'A SQL query using DELETE, INSERT, or UPDATE is not allowed for ODBC import',
|
||||
717 => 'There is not enough XML/XSL information to proceed with the import or export',
|
||||
718 => 'Error in parsing XML file (from Xerces)',
|
||||
719 => 'Error in transforming XML using XSL (from Xalan)',
|
||||
720 => 'Error when exporting; intended format does not support repeating fields',
|
||||
721 => 'Unknown error occurred in the parser or the transformer',
|
||||
722 => 'Cannot import data into a file that has no fields',
|
||||
723 => 'You do not have permission to add records to or modify records in the target table',
|
||||
724 => 'You do not have permission to add records to the target table',
|
||||
725 => 'You do not have permission to modify records in the target table',
|
||||
726 => 'There are more records in the import file than in the target table. Not all records were imported',
|
||||
727 => 'There are more records in the target table than in the import file. Not all records were updated',
|
||||
729 => 'Errors occurred during import. Records could not be imported',
|
||||
730 => 'Unsupported Excel version. Convert file to Excel 7.0 (Excel 95), 97, 2000, XP, or 2007 format and try again.',
|
||||
731 => 'The file you are importing from contains no data',
|
||||
732 => 'This file cannot be inserted because it contains other files',
|
||||
733 => 'A table cannot be imported into itself',
|
||||
734 => 'This file type cannot be displayed as a picture',
|
||||
735 => 'This file type cannot be displayed as a picture. It will be inserted and displayed as a file',
|
||||
800 => 'Unable to create file on disk',
|
||||
801 => 'Unable to create temporary file on System disk',
|
||||
802 => 'Unable to open file',
|
||||
803 => 'File is single user or host cannot be found',
|
||||
804 => 'File cannot be opened as read-only in its current state',
|
||||
805 => 'File is damaged; use Recover command',
|
||||
806 => 'File cannot be opened with this version of FileMaker Pro',
|
||||
807 => 'File is not a FileMaker Pro file or is severely damaged',
|
||||
808 => 'Cannot open file because access privileges are damaged',
|
||||
809 => 'Disk/volume is full',
|
||||
810 => 'Disk/volume is locked',
|
||||
811 => 'Temporary file cannot be opened as FileMaker Pro file',
|
||||
813 => 'Record Synchronization error on network',
|
||||
814 => 'File(s) cannot be opened because maximum number is open',
|
||||
815 => 'Couldn\'t open lookup file ',
|
||||
816 => 'Unable to convert file',
|
||||
817 => 'Unable to open file because it does not belong to this solution',
|
||||
819 => 'Cannot save a local copy of a remote file',
|
||||
820 => 'File is in the process of being closed',
|
||||
821 => 'Host forced a disconnect',
|
||||
822 => 'FMI files not found; reinstall missing files',
|
||||
823 => 'Cannot set file to single-user, guests are connected',
|
||||
824 => 'File is damaged or not a FileMaker file',
|
||||
900 => 'General spelling engine error',
|
||||
901 => 'Main spelling dictionary not installed',
|
||||
902 => 'Could not launch the Help system ',
|
||||
903 => 'Command cannot be used in a shared file ',
|
||||
904 => 'Command can only be used in a file hosted under FileMaker Server',
|
||||
905 => 'No active field selected; command can only be used if there is an active field',
|
||||
920 => 'Can\'t initialize the spelling engine',
|
||||
921 => 'User dictionary cannot be loaded for editing',
|
||||
922 => 'User dictionary cannot be found',
|
||||
923 => 'User dictionary is read-only',
|
||||
951 => 'An unexpected error occurred',
|
||||
954 => 'Unsupported XML grammar',
|
||||
955 => 'No database name',
|
||||
956 => 'Maximum number of database sessions exceeded',
|
||||
957 => 'Conflicting commands',
|
||||
958 => 'Parameter missing in query',
|
||||
1200 => 'Generic calculation error',
|
||||
1201 => 'Too few parameters in the function',
|
||||
1202 => 'Too many parameters in the function',
|
||||
1203 => 'Unexpected end of calculation',
|
||||
1204 => 'Number, text constant, field name or "(" expected',
|
||||
1205 => 'Comment is not terminated with "*/"',
|
||||
1206 => 'Text constant must end with a quotation mark',
|
||||
1207 => 'Unbalanced parenthesis',
|
||||
1208 => 'Operator missing, function not found or "(" not expected',
|
||||
1209 => 'Name (such as field name or layout name) is missing',
|
||||
1210 => 'Plug-in function has already been registered',
|
||||
1211 => 'List usage is not allowed in this function',
|
||||
1212 => 'An operator (for example, +, -, *) is expected here',
|
||||
1213 => 'This variable has already been defined in the Let function',
|
||||
1214 => 'AVERAGE, COUNT, EXTEND, GETREPETITION, MAX, MIN, NPV, STDEV, SUM and GETSUMMARY: expression found where a field alone is needed',
|
||||
1215 => 'This parameter is an invalid Get function parameter',
|
||||
1216 => 'Only Summary fields allowed as first argument in GETSUMMARY',
|
||||
1217 => 'Break field is invalid ',
|
||||
1218 => 'Cannot evaluate the number',
|
||||
1219 => 'A field cannot be used in its own formula',
|
||||
1220 => 'Field type must be normal or calculated ',
|
||||
1221 => 'Data type must be number, date, time, or timestamp ',
|
||||
1222 => 'Calculation cannot be stored',
|
||||
1223 => 'The function referred to does not exist',
|
||||
1400 => 'ODBC client driver initialization failed; make sure the ODBC client drivers are properly installed. Note: The plug-in component for sharing data via ODBC is installed automatically with FileMaker Server; the ODBC client drivers are installed using the FileMaker Server Web Publishing CD. For information, see Installing FileMaker ODBC and JDBC Client Drivers.',
|
||||
1401 => 'Failed to allocate environment (ODBC)',
|
||||
1402 => 'Failed to free environment (ODBC)',
|
||||
1403 => 'Failed to disconnect (ODBC)',
|
||||
1404 => 'Failed to allocate connection (ODBC)',
|
||||
1405 => 'Failed to free connection (ODBC)',
|
||||
1406 => 'Failed check for SQL API (ODBC)',
|
||||
1407 => 'Failed to allocate statement (ODBC)',
|
||||
1408 => 'Extended error (ODBC)',
|
||||
1450 => 'Action requires PHP privilege extension',
|
||||
1451 => 'Action requires that current file be remote',
|
||||
1501 => 'SMTP authentication failed',
|
||||
1502 => 'Connection refused by SMTP server',
|
||||
1503 => 'Error with SSL',
|
||||
1504 => 'SMTP server requires the connection to be encrypted',
|
||||
1505 => 'Specified authentication is not supported by SMTP server',
|
||||
1506 => 'Email message(s) could not be sent successfully',
|
||||
1507 => 'Unable to log in to the SMTP server'
|
||||
);
|
||||
@@ -0,0 +1,220 @@
|
||||
<?php
|
||||
/**
|
||||
* FileMaker error codes - French translations.
|
||||
*
|
||||
* @package FileMaker
|
||||
*
|
||||
* Copyright © 2005-2009, FileMaker, Inc. All rights reserved.
|
||||
* NOTE: Use of this source code is subject to the terms of the FileMaker
|
||||
* Software License which accompanies the code. Your use of this source code
|
||||
* signifies your agreement to such license terms and conditions. Except as
|
||||
* expressly granted in the Software License, no other copyright, patent, or
|
||||
* other intellectual property license or right is granted, either expressly or
|
||||
* by implication, by FileMaker.
|
||||
*/
|
||||
|
||||
$__FM_ERRORS = array(
|
||||
-1 => 'Erreur inconnue',
|
||||
0 => 'Pas d\'erreur',
|
||||
1 => 'L\'utilisateur a annulé l\'action',
|
||||
2 => 'Erreur de mémoire',
|
||||
3 => 'Commande non disponible (par exemple, système d\'exploitation incorrect, mode incorrect, etc.)',
|
||||
4 => 'Commande inconnue',
|
||||
5 => 'Commande incorrecte (par exemple, un calcul n\'a pas été indiqué pour une action de script Définir rubrique)',
|
||||
6 => 'Fichier accessible en lecture seule',
|
||||
7 => 'Mémoire insuffisante',
|
||||
8 => 'Résultat vide',
|
||||
9 => 'Autorisations d\'accès insuffisantes',
|
||||
10 => 'Données requises manquantes',
|
||||
11 => 'Nom incorrect',
|
||||
12 => 'Ce nom existe déjà',
|
||||
13 => 'Le fichier ou l\'objet est déjà utilisé',
|
||||
14 => 'En dehors de l\'intervalle',
|
||||
15 => 'Division par zéro impossible',
|
||||
16 => 'Echec de l\'opération, réessayez (par exemple une requête utilisateur)',
|
||||
17 => 'Echec de la tentative de conversion d\'un jeu de caractères étranger en UTF-16',
|
||||
18 => 'Le client doit fournir les données du compte pour poursuivre',
|
||||
19 => 'La chaîne contient des caractères autres que A-Z, a-z, 0-9 (ASCII)',
|
||||
20 => 'Commande ou opération annulée par le script déclenché',
|
||||
100 => 'Fichier manquant',
|
||||
101 => 'Enregistrement manquant',
|
||||
102 => 'Rubrique manquante',
|
||||
103 => 'Lien manquant',
|
||||
104 => 'Script manquant',
|
||||
105 => 'Modèle manquant',
|
||||
106 => 'Table manquante',
|
||||
107 => 'Index manquant',
|
||||
108 => 'Liste de valeurs manquante',
|
||||
109 => 'Jeu de privilèges manquant',
|
||||
110 => 'Tables liées manquantes',
|
||||
111 => 'Valeur de rubrique incorrecte',
|
||||
112 => 'Fenêtre manquante',
|
||||
113 => 'Fonction manquante',
|
||||
114 => 'Référence de fichier manquante',
|
||||
130 => 'Les fichiers sont endommagés ou manquants et doivent être réinstallés',
|
||||
131 => 'Les fichiers des modules de langue sont manquants (par exemple les modèles)',
|
||||
200 => 'L\'accès à l\'enregistrement est interdit',
|
||||
201 => 'Impossible de modifier la rubrique',
|
||||
202 => 'L\'accès à la rubrique est interdit',
|
||||
203 => 'Aucun enregistrement à imprimer, ou bien un mot de passe est nécessaire pour imprimer',
|
||||
204 => 'Aucun accès aux rubriques dans l\'ordre de tri',
|
||||
205 => 'Impossible de créer de nouveaux enregistrements ; l\'importation peut remplacer les données existantes',
|
||||
206 => 'Impossible de modifier le mot de passe ou bien le fichier ne peut pas être modifié',
|
||||
207 => 'Impossible d\'accéder au schéma de base de données ou bien le fichier ne peut pas être modifié',
|
||||
208 => 'Nombre de caractères insuffisant dans le mot de passe',
|
||||
209 => 'Le nouveau mot de passe doit être différent du mot de passe existant',
|
||||
210 => 'Compte utilisateur inactif',
|
||||
211 => 'Mot de passe expiré',
|
||||
212 => 'Compte utilisateur et/ou mot de passe incorrect. Réessayez',
|
||||
213 => 'Le compte utilisateur et/ou le mot de passe existe déjà',
|
||||
214 => 'Tentatives de connexion trop nombreuses',
|
||||
215 => 'Impossible de dupliquer les droits administrateur',
|
||||
216 => 'Impossible de dupliquer un compte Invité',
|
||||
217 => 'L\'utilisateur ne dispose pas de droits suffisants pour modifier le compte administrateur',
|
||||
300 => 'Fichier verrouillé ou en cours d\'utilisation',
|
||||
301 => 'L\'enregistrement est déjà utilisé par un autre utilisateur',
|
||||
302 => 'La table est déjà utilisée par un autre utilisateur',
|
||||
303 => 'Le schéma de base de données est déjà utilisé par un autre utilisateur',
|
||||
304 => 'Le modèle est déjà utilisé par un autre utilisateur',
|
||||
306 => 'L\'ID de modification d\'enregistrement ne correspond pas',
|
||||
400 => 'Les critères de recherche sont vides',
|
||||
401 => 'Aucun enregistrement ne correspond à cette requête',
|
||||
402 => 'Ceci n\'est pas une rubrique clé pour une référence externe',
|
||||
403 => 'Le nombre maximal d\'enregistrements indiqué est atteint pour la version de démonstration FileMaker Pro',
|
||||
404 => 'Ordre de tri incorrect',
|
||||
405 => 'Le nombre d\'enregistrements indiqué dépasse le nombre d\'enregistrements pouvant être ignorés',
|
||||
406 => 'Les critères de remplacement et de renumérotation sont incorrects',
|
||||
407 => 'Une ou les deux rubriques clés manquent (lien incorrect)',
|
||||
408 => 'Le type de la rubrique indiquée est incorrect pour ce type d\'opération',
|
||||
409 => 'Ordre d\'importation incorrect',
|
||||
410 => 'Ordre d\'exportation incorrect',
|
||||
412 => 'Version de FileMaker Pro incorrecte pour récupérer le fichier',
|
||||
413 => 'Le type de la rubrique indiquée est incorrect',
|
||||
414 => 'Résultat impossible à afficher sur le modèle',
|
||||
415 => 'Un ou plusieurs enregistrements liés requis ne sont pas disponibles',
|
||||
500 => 'La date indiquée ne correspond pas aux options d\'entrée définies',
|
||||
501 => 'L\'heure indiquée ne correspond pas aux options d\'entrée définies',
|
||||
502 => 'Le numéro indiqué ne correspond pas aux options d\'entrée définies',
|
||||
503 => 'La valeur de la rubrique n\'est pas comprise dans la fourchette de valeurs définies',
|
||||
504 => 'La valeur de la rubrique ne correspond pas à la valeur définie dans les options d\'entrée',
|
||||
505 => 'La valeur de la rubrique ne correspond à aucune donnée existante contenue dans le fichier de base de données des options d\'entrée',
|
||||
506 => 'La valeur de la rubrique n\'est pas incluse dans la liste des valeurs définies',
|
||||
507 => 'La valeur de la rubrique n\'est pas conforme aux critères de contrôle de calcul des options d\'entrée',
|
||||
508 => 'Valeur incorrecte saisie en mode Recherche',
|
||||
509 => 'La rubrique requiert une valeur correcte',
|
||||
510 => 'La valeur liée est vide ou non disponible',
|
||||
511 => 'La valeur de la rubrique dépasse le nombre maximal de caractères autorisés',
|
||||
600 => 'Une erreur d\'impression s\'est produite',
|
||||
601 => 'L\'en-tête et le pied de page combinés sont plus longs qu\'une page',
|
||||
602 => 'Le corps de la page ne tient pas sur une page pour la disposition en colonnes active',
|
||||
603 => 'Connexion d\'imprimante perdue',
|
||||
700 => 'Le fichier ne possède pas le bon format d\'importation',
|
||||
706 => 'Le fichier EPSF est dépourvu d\'images de prévisualisation',
|
||||
707 => 'Le traducteur graphique est introuvable',
|
||||
708 => 'Impossible d\'importer le fichier, ou bien un moniteur gérant les couleurs est nécessaire pour effectuer cette opération',
|
||||
709 => 'L\'importation d\'une séquence QuickTime a échoué',
|
||||
710 => 'Impossible de mettre à jour la référence du fichier QuickTime car le fichier de base de données est accessible en lecture seule',
|
||||
711 => 'Le traducteur d\'importation est introuvable',
|
||||
714 => 'Les autorisations d\'accès associées à votre mot de passe ne vous permettent pas d\'effectuer cette opération',
|
||||
715 => 'Feuille de calcul ou plage nommée Excel spécifiée manquante',
|
||||
716 => 'Une requête SQL utilisant les instructions DELETE, INSERT ou UPDATE n\'est pas autorisée dans l\'importation ODBC',
|
||||
717 => 'Les informations XML/XSL sont insuffisantes pour procéder à l\'importation ou àl\'exportation',
|
||||
718 => 'Erreur lors de l\'analyse du fichier XML (à partir de Xerces)',
|
||||
719 => 'Erreur lors de la transformation du fichier XML en fichier XSL (à partir de Xalan)',
|
||||
720 => 'Erreur lors de l\'exportation ; le format souhaité ne prend pas en charge les rubriques multivaluées',
|
||||
721 => 'Une erreur inconnue s\'est produite dans l\'analyseur ou le transformateur',
|
||||
722 => 'Impossible d\'importer des données dans un fichier dépourvu de rubriques',
|
||||
723 => 'Vous ne disposez pas des droits nécessaires pour ajouter des enregistrements ou les modifier dans la table cible',
|
||||
724 => 'Vous ne disposez pas des droits nécessaires pour ajouter des enregistrements à la table cible',
|
||||
725 => 'Vous ne disposez pas des droits nécessaires pour modifier les enregistrements dans la table cible',
|
||||
726 => 'Le fichier d\'importation contient davantage d\'enregistrements que la table cible. Les enregistrements n\'ont pas tous été importés',
|
||||
727 => 'La table cible contient davantage d\'enregistrements que le fichier d\'importation. Les enregistrements n\'ont pas tous été mis à jour',
|
||||
729 => 'Erreur lors de l\'importation. Des enregistrements n\'ont pas été importés',
|
||||
730 => 'Version d\'Excel non prise en charge. Convertir fichier en Excel 7.0 (Excel 95), Excel 97, 2000 ou au format XP, puis réessayer.',
|
||||
731 => 'Le fichier servant à l\'importation ne contient aucune donnée',
|
||||
732 => 'Impossible d\'insérer ce fichier car il contient d\'autres fichiers',
|
||||
733 => 'Une table ne peut être importée en elle-même',
|
||||
734 => 'Ce type de fichier n\'a pu être affiché sous la forme d\'une image',
|
||||
735 => 'Ce type de fichier n\'a pu être affiché sous la forme d\'une image. Il sera inséré et affiché sous forme de fichier',
|
||||
800 => 'Impossible de créer le fichier sur le disque',
|
||||
801 => 'Impossible de créer un fichier temporaire sur le disque',
|
||||
802 => 'Impossible d\'ouvrir le fichier',
|
||||
803 => 'Le fichier est mono-utilisateur ou bien l\'hôte est introuvable',
|
||||
804 => 'Le fichier ne peut être ouvert en lecture seule dans son état actuel',
|
||||
805 => 'Le fichier est endommagé. Utilisez la commande Récupérer.',
|
||||
806 => 'Le fichier ne peut être ouvert avec cette version de FileMaker Pro',
|
||||
807 => 'Le fichier n\'est pas un fichier FileMaker Pro ou est sérieusement endommagé',
|
||||
808 => 'Impossible d\'ouvrir le fichier car les autorisations d\'accès sont endommagées',
|
||||
809 => 'Le disque/volume est saturé',
|
||||
810 => 'Le disque/volume est verrouillé',
|
||||
811 => 'Un fichier temporaire ne peut être ouvert en tant que fichier FileMaker Pro',
|
||||
813 => 'Erreur de synchronisation d\'enregistrements sur le réseau',
|
||||
814 => 'Impossible d \'ouvrir le(s) fichier(s), car le nombre maximal de fichiers ouverts est atteint',
|
||||
815 => 'Impossible d\'ouvrir le fichier de référence externe',
|
||||
816 => 'Impossible de convertir le fichier',
|
||||
817 => 'Impossible d\'ouvrir le fichier, car il n\'appartient pas à cette solution',
|
||||
819 => 'Impossible d\'enregistrer une copie locale d\'un fichier distant',
|
||||
820 => 'Fichier en cours de fermeture',
|
||||
821 => 'Déconnexion forcée par l\'hôte',
|
||||
822 => 'Fichiers FMI introuvables ; réinstallez les fichiers manquants',
|
||||
823 => 'Impossible de définir le fichier en mode mono-utilisateur, des invités sont connectés',
|
||||
824 => 'Le fichier est endommagé ou n\'est pas un fichier FileMaker',
|
||||
900 => 'Erreur générale de vérification orthographique',
|
||||
901 => 'Le dictionnaire principal n\'est pas installé',
|
||||
902 => 'Impossible de lancer le système d\'aide',
|
||||
903 => 'Cette commande ne peut pas être utilisée dans un fichier partagé',
|
||||
904 => 'Cette commande ne peut être utilisée que dans un fichier se trouvant sur le serveur FileMaker Server',
|
||||
905 => 'Aucune rubrique active sélectionnée ; la commande ne peut être utilisée que si une rubrique est active',
|
||||
920 => 'Impossible d\'initialiser le correcteur orthographique',
|
||||
921 => 'Impossible de charger le dictionnaire de l\'utilisateur pour modification',
|
||||
922 => 'Dictionnaire de l\'utilisateur introuvable',
|
||||
923 => 'Dictionnaire de l\'utilisateur en lecture seule',
|
||||
951 => 'Une erreur inattendue s\'est produite',
|
||||
954 => 'Grammaire XML non prise en charge',
|
||||
955 => 'Aucun nom de base de données',
|
||||
956 => 'Le nombre maximal de sessions de base de données a été dépassé',
|
||||
957 => 'Commandes en conflit',
|
||||
958 => 'Paramètre manquant dans la requête',
|
||||
1200 => 'Erreur de calcul générique',
|
||||
1201 => 'Paramètres trop peu nombreux dans la fonction',
|
||||
1202 => 'Paramètres trop nombreux dans la fonction',
|
||||
1203 => 'Fin de calcul non conforme',
|
||||
1204 => 'Nombre, chaîne, nom de rubrique ou parenthèse ouvrante',
|
||||
1205 => 'Commentaire non terminé par "*/"',
|
||||
1206 => 'La chaîne doit se terminer par un guillemet',
|
||||
1207 => 'Parenthèses non équilibrées',
|
||||
1208 => 'Opérateur manquant, fonction introuvable ou parenthèse ouvrante non nécessaire',
|
||||
1209 => 'Nom (nom de rubrique ou de modèle) manquant',
|
||||
1210 => 'Fonction module déjà enregistrée',
|
||||
1211 => 'L\'utilisation de listes n\'est pas autorisée dans cette fonction',
|
||||
1212 => 'Entrez ici un opérateur (+, -, *,).',
|
||||
1213 => 'Cette variable a déjà été définie dans la fonction Permettre',
|
||||
1214 => 'MOYENNE, NOMBRE, MULTIVALUEE, NOMBREVALEURS, MAX, MIN, NPV, ECARTECH, SOMME et RECAPITULATIF : le programme a rencontré une expression requérant une seule rubrique',
|
||||
1215 => 'Ce paramètre est incorrect pour la fonction Obtenir',
|
||||
1216 => 'Seules les rubriques Récapitulatif sont autorisées comme premier argument dans RECAPITULATIF',
|
||||
1217 => 'Rubrique de regroupement incorrecte',
|
||||
1218 => 'Evaluation du nombre impossible',
|
||||
1219 => 'Impossible d\'utiliser une rubrique dans sa propre formule',
|
||||
1220 => 'Le type de la rubrique doit être de type normal ou calculé',
|
||||
1221 => 'Le type de données doit être un nombre, une date, une heure ou un horodatage',
|
||||
1222 => 'Impossible d\'enregistrer le calcul',
|
||||
1223 => 'La fonction à laquelle il est fait référence n\'existe pas',
|
||||
1400 => 'L\'initialisation du pilote ODBC a échoué ; assurez-vous que les pilotes ODBC sont correctement installés. Remarque Le module de partage des données via ODBC s\'installe automatiquement avec FileMaker Server ; les pilotes clients ODBC s\'installent à l\'aide du CD-ROM de la Publication Web de FileMaker Server. Pour plus d\'informations, consultez la rubrique Installation des pilotes FileMaker sur les clients ODBC et JDBC.',
|
||||
1401 => 'Echec de l\'allocation d\'environnement (ODBC)',
|
||||
1402 => 'Echec de la libération d\'environnement (ODBC)',
|
||||
1403 => 'Echec de la déconnexion (ODBC)',
|
||||
1404 => 'Echec de l\'allocation de connexion (ODBC)',
|
||||
1405 => 'Echec de la libération de connexion (ODBC)',
|
||||
1406 => 'Echec de la vérification de SQL API (ODBC)',
|
||||
1407 => 'Echec de l\'allocation d\'instruction (ODBC)',
|
||||
1408 => 'Erreur étendue (ODBC)',
|
||||
1450 => 'L\'action nécessite une extension des privilèges PHP',
|
||||
1451 => 'L\'action nécessite que le fichier en cours soit situé à distance',
|
||||
1501 => 'Echec de l\'authentification SMTP',
|
||||
1502 => 'Connexion refusée par le serveur SMTP',
|
||||
1503 => 'Erreur avec SSL',
|
||||
1504 => 'Le serveur SMTP requiert le cryptage de la connexion.',
|
||||
1505 => 'L\'authentification spécifiée n\'est pas prise en charge par le serveur SMTP',
|
||||
1506 => 'L\'envoi du ou des courriers électroniques a échoué',
|
||||
1507 => 'Impossible de se connecter au serveur SMTP'
|
||||
);
|
||||
@@ -0,0 +1,220 @@
|
||||
<?php
|
||||
/**
|
||||
* FileMaker error codes - Italian translations.
|
||||
*
|
||||
* @package FileMaker
|
||||
*
|
||||
* Copyright © 2005-2009, FileMaker, Inc. All rights reserved.
|
||||
* NOTE: Use of this source code is subject to the terms of the FileMaker
|
||||
* Software License which accompanies the code. Your use of this source code
|
||||
* signifies your agreement to such license terms and conditions. Except as
|
||||
* expressly granted in the Software License, no other copyright, patent, or
|
||||
* other intellectual property license or right is granted, either expressly or
|
||||
* by implication, by FileMaker.
|
||||
*/
|
||||
|
||||
$__FM_ERRORS = array(
|
||||
-1 => 'Errore sconosciuto',
|
||||
0 => 'Nessun errore',
|
||||
1 => 'Azione annullata dall\'utente',
|
||||
2 => 'Errore di memoria',
|
||||
3 => 'Comando non disponibile (ad esempio, sistema operativo non appropriato, modo errato e così via)',
|
||||
4 => 'Comando sconosciuto',
|
||||
5 => 'Comando non valido (ad esempio, un\'istruzione di script Definisci il campo (Set Field) priva di calcolo)',
|
||||
6 => 'File di sola lettura',
|
||||
7 => 'Memoria esaurita',
|
||||
8 => 'Risultato vuoto',
|
||||
9 => 'Privilegi insufficienti',
|
||||
10 => 'Dati richiesti non disponibili',
|
||||
11 => 'Nome non valido',
|
||||
12 => 'Il nome esiste già',
|
||||
13 => 'File o oggetto in uso',
|
||||
14 => 'Fuori intervallo',
|
||||
15 => 'Impossibile dividere per zero',
|
||||
16 => 'Operazione non riuscita, nuovo tentativo richiesta (ad esempio una query dell\'utente)',
|
||||
17 => 'Tentativo di convertire il set di caratteri stranieri in UTF-16 non riuscito',
|
||||
18 => 'Il client deve fornire le informazioni sull\'account per procedere',
|
||||
19 => 'La stringa contiene caratteri diversi da A-Z, a-z, 0-9 (ASCII)',
|
||||
20 => 'Comando o operazione annullata dallo script attivato',
|
||||
100 => 'Manca un file',
|
||||
101 => 'Manca un record',
|
||||
102 => 'Manca un campo',
|
||||
103 => 'Manca una relazione',
|
||||
104 => 'Manca uno script',
|
||||
105 => 'Manca un formato',
|
||||
106 => 'Manca una tabella',
|
||||
107 => 'Manca un indice',
|
||||
108 => 'Manca una lista valori',
|
||||
109 => 'Manca un set di privilegi',
|
||||
110 => 'Mancano tabelle correlate',
|
||||
111 => 'Ripetizione campo non valida',
|
||||
112 => 'Manca una finestra',
|
||||
113 => 'Manca una funzione',
|
||||
114 => 'Manca un riferimento al file',
|
||||
130 => 'File danneggiati o non presenti; reinstallarli',
|
||||
131 => 'Impossibile trovare i file del supporto per la lingua (come i file modello)',
|
||||
200 => 'Accesso al record negato',
|
||||
201 => 'Impossibile modificare il campo',
|
||||
202 => 'Accesso al campo negato',
|
||||
203 => 'Nel file non c\'è nessun record da stampare o la password non consente l\'accesso alla stampa',
|
||||
204 => 'Nessun accesso ai campi nei criteri di ordinamento',
|
||||
205 => 'L\'utente non dispone dei privilegi di accesso per creare nuovi record; l\'importazione sovrascriverà i dati esistenti',
|
||||
206 => 'L\'utente non dispone del privilegio per cambiare la password o il file non è modificabile',
|
||||
207 => 'L\'utente non ha privilegi sufficienti per cambiare lo schema del database, oppure il file non è modificabile',
|
||||
208 => 'La password non contiene abbastanza caratteri',
|
||||
209 => 'La nuova password deve essere diversa da quella esistente',
|
||||
210 => 'L\'account utente è inattivo',
|
||||
211 => 'La password è scaduta',
|
||||
212 => 'Nome utente e/o password non validi. Riprovare',
|
||||
213 => 'Il nome utente e/o la password non esistono',
|
||||
214 => 'Troppi tentativi di accesso',
|
||||
215 => 'I privilegi di amministratore non possono essere duplicati',
|
||||
216 => 'L\'account Ospite non può essere duplicato',
|
||||
217 => 'L\'utente non dispone di privilegi sufficienti per modificare l\'account Admin',
|
||||
300 => 'File bloccato o in uso',
|
||||
301 => 'Record usato da un altro utente',
|
||||
302 => 'Tabella usata da un altro utente',
|
||||
303 => 'Schema database usato da un altro utente',
|
||||
304 => 'Formato usato da un altro utente',
|
||||
306 => 'ID modifica del record non corrispondente',
|
||||
400 => 'Criteri di ricerca vuoti',
|
||||
401 => 'Nessun record soddisfa la richiesta',
|
||||
402 => 'Il campo selezionato non è un campo di confronto per un riferimento',
|
||||
403 => 'Limite massimo di record per la versione di prova di FileMaker Pro superato',
|
||||
404 => 'Criterio di ordinamento non valido',
|
||||
405 => 'Il numero di record specificato supera il numero di record che possono essere omessi',
|
||||
406 => 'Criteri di sostituzione/riserializzazione non validi',
|
||||
407 => 'Manca uno o entrambi i campi di confronto (relazione non valida)',
|
||||
408 => 'Tipo di dati associato al campo specificato non valido per questa operazione',
|
||||
409 => 'Ordine di importazione non valido',
|
||||
410 => 'Ordine di esportazione non valido',
|
||||
412 => 'Per recuperare il file è stata usata una versione errata di FileMaker Pro',
|
||||
413 => 'Tipo di campo non valido',
|
||||
414 => 'Il formato non può visualizzare il risultato',
|
||||
415 => 'Uno o più record correlati richiesti non sono disponibili',
|
||||
500 => 'Il valore della data non soddisfa le opzioni di verifica',
|
||||
501 => 'Il valore dell\'ora non soddisfa le opzioni di verifica',
|
||||
502 => 'Il valore del numero non soddisfa le opzioni di verifica',
|
||||
503 => 'Il valore nel campo non è compreso nell\'intervallo specificato nelle opzioni di verifica',
|
||||
504 => 'Il valore del campo non è univoco come richiesto dalle opzioni di verifica',
|
||||
505 => 'Il valore del campo non esiste nel file di database come richiesto dalle opzioni di verifica',
|
||||
506 => 'Il valore nel campo non è elencato nella lista di valori specificata nelle opzioni di verifica',
|
||||
507 => 'Il valore nel campo non ha superato il test del calcolo dell\'opzione di verifica',
|
||||
508 => 'Valore non valido immesso in modo Trova',
|
||||
509 => 'Il campo richiede un valore valido',
|
||||
510 => 'Valore correlato vuoto o non disponibile',
|
||||
511 => 'Il valore immesso nel campo supera il numero massimo di caratteri consentiti',
|
||||
600 => 'Errore di stampa',
|
||||
601 => 'La combinazione di intestazione e piè di pagina supera una pagina',
|
||||
602 => 'Il corpo non rientra in una pagina per l\'impostazione della colonna corrente',
|
||||
603 => 'Connessione di stampa interrotta',
|
||||
700 => 'Tipo di file errato per l\'importazione',
|
||||
706 => 'File EPSF privo di immagine di anteprima',
|
||||
707 => 'Impossibile trovare traduttore per immagini',
|
||||
708 => 'Impossibile importare il file. È necessario un computer a colori',
|
||||
709 => 'Non è riuscita l\'importazione del filmato QuickTime',
|
||||
710 => 'Impossibile aggiornare il riferimento al file QuickTime. Il file di database è di sola lettura.',
|
||||
711 => 'Impossibile trovare il traduttore per l\'importazione',
|
||||
714 => 'Operazione non consentita dai privilegi della password',
|
||||
715 => 'È stato specificato un foglio di lavoro di Excel o un intervallo con nome mancante',
|
||||
716 => 'Una query SQL che impiega istruzioni DELETE, INSERT o UPDATE non è consentita per l\'importazione ODBC',
|
||||
717 => 'Informazioni XML/XSL insufficienti per procedere con l\'importazione o l\'esportazione',
|
||||
718 => 'Errore di analisi del file XML (da Xerces)',
|
||||
719 => 'Errore di conversione XML usando XSL (da Xalan)',
|
||||
720 => 'Errore durante l\'esportazione; il formato desiderato non supporta i campi multipli',
|
||||
721 => 'Errore sconosciuto nel parser o nel convertitore',
|
||||
722 => 'Impossibile importare dati in un file che non ha campi',
|
||||
723 => 'Non si dispone dell\'autorizzazione per aggiungere o modificare record nella tabella di destinazione',
|
||||
724 => 'Non si dispone dell\'autorizzazione per aggiungere record alla tabella di destinazione',
|
||||
725 => 'Non si dispone dell\'autorizzazione per modificare record nella tabella di destinazione',
|
||||
726 => 'Vi sono più record nel file di importazione che nella tabella di destinazione. Non tutti i record sono stati importati',
|
||||
727 => 'Vi sono più record nella tabella di destinazione che nel file di importazione. Non tutti i record sono stati aggiornati',
|
||||
729 => 'Errori durante l\'importazione. Impossibile importare i record',
|
||||
730 => 'Versione Excel non supportata. Convertire il file in formato Excel 7.0 (Excel 95), 97, 2000, XP o 2007 e riprovare.',
|
||||
731 => 'Il file da importare non contiene dati',
|
||||
732 => 'Questo file non può essere inserito perché contiene altri file',
|
||||
733 => 'Una tabella non può essere importata in se stessa',
|
||||
734 => 'I file di questo tipo non possono essere visualizzati come immagine',
|
||||
735 => 'I file di questo tipo non possono essere visualizzati come immagine. Verranno inseriti e visualizzati come file',
|
||||
800 => 'Impossibile creare il file su disco',
|
||||
801 => 'Impossibile creare il file temporaneo sul disco di sistema',
|
||||
802 => 'Impossibile aprire il file',
|
||||
803 => 'Il file è per un singolo utente oppure non è stato possibile trovare l\'host',
|
||||
804 => 'Impossibile aprire il file.',
|
||||
805 => 'Usare il comando Recupera',
|
||||
806 => 'Impossibile aprire il file con questa versione di FileMaker Pro',
|
||||
807 => 'Il file non è un file FileMaker Pro oppure è gravemente danneggiato',
|
||||
808 => 'Impossibile aprire il file. I privilegi di accesso sono danneggiati',
|
||||
809 => 'Il disco o il volume è pieno',
|
||||
810 => 'Il disco o il volume è protetto',
|
||||
811 => 'Impossibile aprire il file temporaneo come file di FileMaker Pro',
|
||||
813 => 'Errore di sincronizzazione del record in rete',
|
||||
814 => 'Impossibile aprire i file. È già aperto il numero massimo',
|
||||
815 => 'Impossibile aprire il file di riferimento',
|
||||
816 => 'Impossibile convertire il file',
|
||||
817 => 'Impossibile aprire il file poiché non fa parte di questa soluzione',
|
||||
819 => 'Impossibile salvare una copia locale di un file remoto',
|
||||
820 => 'File in fase di chiusura',
|
||||
821 => 'L\'host ha forzato una disconnessione',
|
||||
822 => 'File FMI non trovati; reinstallare i file non presenti',
|
||||
823 => 'Impossibile impostare il file su utente singolo; alcuni ospiti sono connessi',
|
||||
824 => 'Il file è danneggiato o non è un file FileMaker',
|
||||
900 => 'Errore generico del modulo di gestione del controllo ortografico',
|
||||
901 => 'Dizionario principale non installato',
|
||||
902 => 'Impossibile avviare la Guida',
|
||||
903 => 'Impossibile usare il comando in un file condiviso',
|
||||
904 => 'Il comando può essere usato solo in un file che si trova in FileMaker Server',
|
||||
905 => 'Non è selezionato nessun campo attivo; il comando può essere usato solo se un campo è attivo',
|
||||
920 => 'Impossibile inizializzare il modulo di gestione del controllo ortografico',
|
||||
921 => 'Impossibile caricare il dizionario utente per la modifica',
|
||||
922 => 'Impossibile trovare il dizionario utente',
|
||||
923 => 'Il dizionario utente è di sola lettura',
|
||||
951 => 'Errore imprevisto',
|
||||
954 => 'Grammatica XML non supportata',
|
||||
955 => 'Nessun nome per il database',
|
||||
956 => 'È stato superato il numero massimo di sessioni del database',
|
||||
957 => 'Conflitto tra i comandi',
|
||||
958 => 'Parametro mancante nella query',
|
||||
1200 => 'Errore di calcolo generico',
|
||||
1201 => 'Troppi pochi parametri nella funzione',
|
||||
1202 => 'Troppi parametri nella funzione',
|
||||
1203 => 'Fine calcolo non previsto',
|
||||
1204 => 'Sono previsti un numero, una costante di testo, un nome di campo o una "("',
|
||||
1205 => 'Il commento non termina con "*/"',
|
||||
1206 => 'La costante di testo deve terminare con un punto interrogativo',
|
||||
1207 => 'Parentesi mancante',
|
||||
1208 => 'Operatore mancante, funzione non trovata o "(" non prevista',
|
||||
1209 => 'Nome (come fieldname o nome formato) mancante',
|
||||
1210 => 'La funzione del plug-in è già stata registrata',
|
||||
1211 => 'Utilizzo della lista valori non consentito in questa funzione',
|
||||
1212 => 'Qui è previsto un operatore (ad esempio, +, -, *)',
|
||||
1213 => 'Questa variabile è già stata definita nella funzione Consenti',
|
||||
1214 => 'MEDIO, CONTEGGIO, ESTENSO, RICAVARIPETIZIONI, MAX, MIN, VPN, DEVST, SOMMA e RICAVARIASSUNTO: espressione trovata dove è necessario un campo solo',
|
||||
1215 => 'Questo parametro è un parametro non valido per la funzione Get',
|
||||
1216 => 'Solo i campi Riassunto sono consentiti come primo argomento in RICAVARIASSUNTO',
|
||||
1217 => 'Il campo di separazione non è valido',
|
||||
1218 => 'Impossibile valutare il numero',
|
||||
1219 => 'Non è possibile usare un campo nella propria formula',
|
||||
1220 => 'Il campo deve essere di tipo normale o Calcolo',
|
||||
1221 => 'I dati devono essere di tipo Numero, Data, Ora o Indicatore data e ora',
|
||||
1222 => 'Impossibile memorizzare il calcolo',
|
||||
1223 => 'La funzione a cui si fa riferimento non esiste',
|
||||
1400 => 'Errore nell\'inizializzazione del driver client ODBC; assicurarsi che i driver ODBC siano installati correttamente. Nota Il componente plug-in per la condivisione dei dati attraverso ODBC è installato automaticamente con FileMaker Server; i driver client ODBC sono installati utilizzando il CD Pubblicazione sul Web di FileMaker Server. Per informazioni, vedere Installazione dei driver client ODBC e JDBC FileMaker.',
|
||||
1401 => 'Allocazione ambiente fallita (ODBC)',
|
||||
1402 => 'Impossibile liberare l\'ambiente (ODBC)',
|
||||
1403 => 'Impossibile disconnettersi (ODBC)',
|
||||
1404 => 'Impossibile allocare la connessione (ODBC)',
|
||||
1405 => 'Impossibile liberare la connessione ( ODBC)',
|
||||
1406 => 'Controllo SQL API (ODBC) fallito',
|
||||
1407 => 'Impossibile allocare l\'istruzione (ODBC)',
|
||||
1408 => 'Errore esteso (ODBC)',
|
||||
1450 => 'L\'azione richiede un\'estensione dei privilegi PHP',
|
||||
1451 => 'L\'azione richiede che il file corrente sia remoto',
|
||||
1501 => 'Errore autenticazione SMTP',
|
||||
1502 => 'Connessione rifiutata da server SMTP',
|
||||
1503 => 'Errore SSL',
|
||||
1504 => 'Il Server SMTP richiede che la connessione sia crittografata',
|
||||
1505 => 'Autenticazione specificata non supportata dal server SMTP',
|
||||
1506 => 'Impossibile inviare messaggio/i e-mail',
|
||||
1507 => 'Impossibile accedere al server SMTP'
|
||||
);
|
||||
@@ -0,0 +1,220 @@
|
||||
<?php
|
||||
/**
|
||||
* FileMaker error codes - Japanese translations.
|
||||
*
|
||||
* @package FileMaker
|
||||
*
|
||||
* Copyright © 2005-2009, FileMaker, Inc. All rights reserved.
|
||||
* NOTE: Use of this source code is subject to the terms of the FileMaker
|
||||
* Software License which accompanies the code. Your use of this source code
|
||||
* signifies your agreement to such license terms and conditions. Except as
|
||||
* expressly granted in the Software License, no other copyright, patent, or
|
||||
* other intellectual property license or right is granted, either expressly or
|
||||
* by implication, by FileMaker.
|
||||
*/
|
||||
|
||||
$__FM_ERRORS = array(
|
||||
-1 => '原因不明のエラー',
|
||||
0 => 'エラーなし',
|
||||
1 => 'ユーザによるキャンセル',
|
||||
2 => 'メモリエラー',
|
||||
3 => 'コマンドが使用できません(たとえば誤ったオペレーティングシステム、誤ったモードなど)',
|
||||
4 => 'コマンドが見つかりません',
|
||||
5 => 'コマンドが無効です(たとえば、[フィールド設定] スクリプトステップに計算式が指定されていない場合など)',
|
||||
6 => 'ファイルが読み取り専用です',
|
||||
7 => 'メモリ不足',
|
||||
8 => '空白の結果',
|
||||
9 => 'アクセス権が不十分です',
|
||||
10 => '要求されたデータが見つかりません',
|
||||
11 => '名前が有効ではありません',
|
||||
12 => '名前がすでに存在します',
|
||||
13 => 'ファイルまたはオブジェクトが使用中です',
|
||||
14 => '範囲外',
|
||||
15 => '0で割ることができません',
|
||||
16 => '処理に失敗したため、再試行が必要です(たとえば、ユーザクエリーなど)',
|
||||
17 => '外国語の文字セットの UTF-16 への変換に失敗しました',
|
||||
18 => '続行するには、クライアントはアカウント情報を指定する必要があります',
|
||||
19 => '文字列に A から Z、a から z、0 から 9(ASCII)以外の文字が含まれています',
|
||||
20 => 'コマンドまたは操作がスクリプトトリガによってキャンセルされました',
|
||||
100 => 'ファイルが見つかりません',
|
||||
101 => 'レコードが見つかりません',
|
||||
102 => 'フィールドが見つかりません',
|
||||
103 => 'リレーションシップが見つかりません',
|
||||
104 => 'スクリプトが見つかりません',
|
||||
105 => 'レイアウトが見つかりません',
|
||||
106 => 'テーブルが見つかりません',
|
||||
107 => '索引が見つかりません',
|
||||
108 => '値一覧が見つかりません',
|
||||
109 => 'アクセス権セットが見つかりません',
|
||||
110 => '関連テーブルが見つかりません',
|
||||
111 => 'フィールドの繰り返しが無効です',
|
||||
112 => 'ウインドウが見つかりません',
|
||||
113 => '関数が見つかりません',
|
||||
114 => 'ファイル参照が見つかりません',
|
||||
130 => 'ファイルが損傷しているか見つからないため、再インストールする必要があります',
|
||||
131 => '言語パックファイルが見つかりません(テンプレートなど)',
|
||||
200 => 'レコードアクセスが拒否されました',
|
||||
201 => 'フィールドを変更できません',
|
||||
202 => 'フィールドアクセスが拒否されました',
|
||||
203 => 'ファイルに印刷するレコードがないか、入力したパスワードでは印刷できません',
|
||||
204 => 'ソート優先順位に指定されたフィールドにアクセスできません',
|
||||
205 => 'ユーザに新規レコードを作成するアクセス権がありません。既存のデータはインポートしたデータで上書きされます',
|
||||
206 => 'ユーザにパスワードの変更アクセス権がないか、変更可能なファイルではありません',
|
||||
207 => 'ユーザにデータベーススキーマを変更する十分なアクセス権がないか、変更可能なファイルではありません',
|
||||
208 => 'パスワードに十分な文字が含まれていません',
|
||||
209 => '既存のパスワードと新規パスワードを同一にすることはできません',
|
||||
210 => 'ユーザアカウントが非アクティブです',
|
||||
211 => 'パスワードが期限切れです',
|
||||
212 => 'ユーザアカウントまたはパスワードが無効です。再試行してください',
|
||||
213 => 'ユーザアカウントまたはパスワードが存在しません',
|
||||
214 => 'ログイン試行回数が多すぎます',
|
||||
215 => '管理者権限は複製できません',
|
||||
216 => 'ゲストアカウントは複製できません',
|
||||
217 => 'ユーザに管理者アカウントを変更する十分なアクセス権がありません',
|
||||
300 => 'ファイルがロックされているか、使用中です',
|
||||
301 => '別のユーザがレコードを使用中です',
|
||||
302 => '別のユーザがテーブルを使用中です',
|
||||
303 => '別のユーザがデータベーススキーマを使用中です',
|
||||
304 => '別のユーザがレイアウトを使用中です',
|
||||
306 => 'レコード修正 ID が一致しません',
|
||||
400 => '検索条件が空です',
|
||||
401 => '検索条件に一致するレコードがありません',
|
||||
402 => '選択したフィールドはルックアップの照合フィールドではありません',
|
||||
403 => '評価版の FileMaker Pro に設定されている最大レコード数の制限を超過しています',
|
||||
404 => 'ソート優先順位が無効です',
|
||||
405 => '指定したレコード数が除外可能なレコード数を超過しています',
|
||||
406 => '全置換またはシリアル番号の再入力に指定された条件が無効です',
|
||||
407 => '片方または両方の照合フィールドが欠けています(無効なリレーションシップ)',
|
||||
408 => '指定されたフィールドのデータが不適切なため、この処理を実行できません',
|
||||
409 => 'インポート順が無効です',
|
||||
410 => 'エクスポート順が無効です',
|
||||
412 => 'ファイルの修復に、誤ったバージョンの FileMaker Pro が使用されました',
|
||||
413 => '指定されたフィールドのフィールドタイプが不適切です',
|
||||
414 => 'レイアウトに結果を表示できません',
|
||||
415 => '必要な1つまたは複数の関連テーブルが使用できません',
|
||||
500 => '日付の値が入力値の制限を満たしていません',
|
||||
501 => '時刻の値が入力値の制限を満たしていません',
|
||||
502 => '数字の値が入力値の制限を満たしていません',
|
||||
503 => 'フィールドの値が入力値の制限オプションに指定されている範囲内に入っていません',
|
||||
504 => 'フィールドの値が入力値の制限オプションで要求されているようにユニークな値になっていません',
|
||||
505 => 'フィールドの値が入力値の制限オプションで要求されているようにデータベースファイル内の既存値になっていません',
|
||||
506 => 'フィールドの値が入力値の制限オプションに指定されている値一覧に含まれていません',
|
||||
507 => 'フィールドの値が入力値の制限オプションに指定されている計算式を満たしません',
|
||||
508 => '検索モードに無効な値が入力されました',
|
||||
509 => 'フィールドに有効な値が必要です',
|
||||
510 => '関連する値が空であるか、使用できません',
|
||||
511 => 'フィールド内の値が最大文字数を超過しました',
|
||||
600 => '印刷エラーが発生しました',
|
||||
601 => 'ヘッダとフッタの高さを加算するとページの高さを超えます',
|
||||
602 => '現在の段数設定ではボディ部分がページ内に収まりません',
|
||||
603 => '印刷接続が遮断されました',
|
||||
700 => 'インポートできないファイルタイプです',
|
||||
706 => 'EPSF ファイルにプレビューイメージがありません',
|
||||
707 => 'グラフィックの変換ファイルが見つかりません',
|
||||
708 => 'ファイルをインポートできないか、ファイルをインポートするにはカラーのコンピュータが必要です',
|
||||
709 => 'QuickTime ムービーのインポートに失敗しました',
|
||||
710 => 'データベースファイルが読み取り専用になっているため QuickTime ファイルの参照を更新できません',
|
||||
711 => 'インポートの変換ファイルが見つかりません',
|
||||
714 => '入力したパスワードでは設定されている権限が不足しているためこの操作は認められていません',
|
||||
715 => '指定された Excel ワークシートまたは名前の付いた範囲がありません',
|
||||
716 => 'ODBC インポートでは、DELETE、INSERT、または UPDATE を使用する SQL クエリーは使用できません',
|
||||
717 => 'インポートまたはエクスポートを続行するための十分な XML/XSLT 情報がありません',
|
||||
718 => '(Xerces からの)XML ファイルの解析エラーです',
|
||||
719 => '(Xalan からの)XSL を使用したXML 変換エラーです',
|
||||
720 => 'エクスポート時のエラー。対象のドキュメントフォーマットでは繰り返しフィールドはサポートされていません',
|
||||
721 => 'パーサまたはトランスフォーマで原因不明のエラーが発生しました',
|
||||
722 => 'フィールドのないファイルにデータをインポートすることはできません',
|
||||
723 => 'インポート先のテーブルでレコードを追加または変更する権限がありません',
|
||||
724 => 'インポート先のテーブルにレコードを追加する権限がありません',
|
||||
725 => 'インポート先のテーブルでレコードを変更する権限がありません',
|
||||
726 => 'インポートファイルのレコードの方がインポート先のテーブルのレコードよりも多くなっています。一部のレコードはインポートされません',
|
||||
727 => 'インポート先のテーブルのレコードの方がインポートファイルのレコードよりも多くなっています。一部のレコードは更新されません',
|
||||
729 => 'インポート中にエラーが発生しました。レコードをインポートすることができません',
|
||||
730 => 'サポートされていない Excel バージョンです。ファイルを Excel 7.0 (Excel 95)、97、2000、XP または 2007 に変換してから再試行してください',
|
||||
731 => 'インポート元のファイルにデータが含まれていません',
|
||||
732 => 'このファイルには内部に他のファイルが含まれているため、挿入できません',
|
||||
733 => 'テーブルをテーブル自体にインポートすることはできません',
|
||||
734 => 'このファイルタイプをピクチャとして表示することはできません',
|
||||
735 => 'このファイルタイプをピクチャとして表示することはできません。ファイルとして挿入および表示されます',
|
||||
800 => 'ファイルをディスク上に作成できません',
|
||||
801 => 'システムディスクにテンポラリファイルを作成できません',
|
||||
802 => 'ファイルを開くことができません',
|
||||
803 => 'ファイルが単独使用に設定されているか、またはホストが見つかりません',
|
||||
804 => 'ファイルは現在の状態では読み取り専用として開くことができません',
|
||||
805 => 'ファイルが損傷しています。修復コマンドを使用してください',
|
||||
806 => 'このバージョンの FileMaker Pro ではファイルを開くことができません',
|
||||
807 => 'ファイルが FileMaker Pro のファイルではないか、重大な損傷があります',
|
||||
808 => 'アクセス権情報が壊れているため、ファイルを開くことができません',
|
||||
809 => 'ディスク/ボリュームがいっぱいです',
|
||||
810 => 'ディスク/ボリュームがロックされています',
|
||||
811 => 'テンポラリファイルを FileMaker Pro ファイルとして開くことができません',
|
||||
813 => 'ネットワーク上でレコードの同期エラーが発生しました',
|
||||
814 => '最大数のファイルがすでに開いているため、ファイルを開くことができません',
|
||||
815 => 'ルックアップファイルを開くことができません',
|
||||
816 => 'ファイルを変換できません',
|
||||
817 => 'このソリューションに属していないため、ファイルを開くことができません',
|
||||
819 => 'リモートファイルのローカルコピーを保存できません',
|
||||
820 => 'ファイルを閉じる途中です',
|
||||
821 => 'ホストによって接続解除されました',
|
||||
822 => 'FMI ファイルが見つかりません。見つからないファイルを再インストールしてください',
|
||||
823 => 'ファイルをシングルユーザに設定できません。ゲストが接続しています',
|
||||
824 => 'ファイルが損傷しているか、FileMaker のファイルではありません',
|
||||
900 => 'スペルチェックのエンジンにエラーが発生しています',
|
||||
901 => 'スペルチェック用のメイン辞書がインストールされていません',
|
||||
902 => 'ヘルプシステムを起動できませんでした',
|
||||
903 => '共有ファイルではコマンドを使用できません',
|
||||
904 => 'コマンドは、FileMaker Server がホスト管理しているファイル内でのみ使用できます',
|
||||
905 => 'アクティブなフィールドが選択されていません。アクティブなフィールドが存在する場合のみコマンドを使用することができます',
|
||||
920 => 'スペルチェックエンジンを初期化できません',
|
||||
921 => '編集するユーザ辞書をロードできません',
|
||||
922 => 'ユーザ辞書が見つかりません',
|
||||
923 => 'ユーザ辞書が読み取り専用です',
|
||||
951 => '予期しないエラーが発生しました',
|
||||
954 => 'サポートされていない XML 文法です',
|
||||
955 => 'データベース名がありません',
|
||||
956 => 'データベースセッションが最大数を超過しました',
|
||||
957 => 'コマンドが競合しています',
|
||||
958 => 'クエリーに引数がありません',
|
||||
1200 => '一般的な計算エラーです',
|
||||
1201 => '関数の引数が足りません',
|
||||
1202 => '関数の引数が多すぎます',
|
||||
1203 => '計算式が未完了です',
|
||||
1204 => '数字、テキスト、フィールド名、または「(」を入れてください',
|
||||
1205 => 'コメントは「*/」で終了できません',
|
||||
1206 => 'テキストは半角のダブルクォーテーションマークで終わらなければなりません',
|
||||
1207 => 'カッコが一致していません',
|
||||
1208 => '演算子または関数が見つからないか、「(」は指定できません',
|
||||
1209 => '名前(フィールド名またはレイアウト名)が見つかりません',
|
||||
1210 => 'プラグイン関数はすでに登録されています',
|
||||
1211 => 'この関数では一覧を使用できません',
|
||||
1212 => '演算子(+、-、* など)を入れてください',
|
||||
1213 => 'この変数はすでに Let 関数で定義されています',
|
||||
1214 => 'AVERAGE、COUNT、EXTEND、GETREPETITION、MAX、MIN、NPV、STDEV、SUM、および GETSUMMARY 関数で、フィールドの値を指定できない部分に式が使われています',
|
||||
1215 => 'この引数は Get 関数の無効な引数です',
|
||||
1216 => 'GetSummary 関数の1番目の引数は、集計フィールドのみに限られます',
|
||||
1217 => '区分けフィールドが無効です',
|
||||
1218 => '数字を評価できません',
|
||||
1219 => 'フィールド固有の式にフィールドは使用できません',
|
||||
1220 => 'フィールドタイプは標準にするか、計算する必要があります',
|
||||
1221 => 'データタイプは数字、日付、時刻、またはタイムスタンプでなければなりません',
|
||||
1222 => '計算式を保存できません',
|
||||
1223 => '指定された関数は存在しません',
|
||||
1400 => 'ODBC クライアントドライバの初期化に失敗しました。ODBC クライアントドライバが適切にインストールされていることを確認してください。 注意 ODBC 経由でデータを共有するプラグインコンポーネントは、FileMaker Server によって自動的にインストールされます。ODBC クライアントドライバは、FileMaker Server Web Publishing CD を使用してインストールされます。詳細については、『FileMaker ODBC および JDBC クライアントドライバのインストール』を参照してください。',
|
||||
1401 => '環境の割り当てに失敗しました(ODBC)',
|
||||
1402 => '環境の解放に失敗しました(ODBC)',
|
||||
1403 => '切断に失敗しました(ODBC)',
|
||||
1404 => '接続の割り当てに失敗しました(ODBC)',
|
||||
1405 => '接続の解放に失敗しました(ODBC)',
|
||||
1406 => 'SQL API のチェックに失敗しました(ODBC)',
|
||||
1407 => 'ステートメントの割り当てに失敗しました(ODBC)',
|
||||
1408 => '拡張エラー(ODBC)',
|
||||
1450 => 'PHP アクセス権を拡張する操作が必要です',
|
||||
1451 => '現在のファイルをリモートにする操作が必要です',
|
||||
1501 => 'SMTP の認証に失敗しました',
|
||||
1502 => 'SMTP サーバーによって接続が拒否されました',
|
||||
1503 => 'SSL でエラーが発生しました',
|
||||
1504 => 'SMTP サーバーの接続を暗号化する必要があります',
|
||||
1505 => '指定された認証方法は SMTP サーバーではサポートされていません',
|
||||
1506 => 'E メールは正常に送信されませんでした',
|
||||
1507 => 'SMTP サーバーにログインできませんでした'
|
||||
);
|
||||
Reference in New Issue
Block a user