diff --git a/include/lrdatasourcemanagerintf.h b/include/lrdatasourcemanagerintf.h index c43b239..6096193 100644 --- a/include/lrdatasourcemanagerintf.h +++ b/include/lrdatasourcemanagerintf.h @@ -66,6 +66,7 @@ public: virtual bool variableIsSystem(const QString& name) = 0; virtual IDataSource* dataSource(const QString& name) = 0; virtual IDataSourceHolder* dataSourceHolder(const QString& name) = 0; + virtual void setDesignTime(bool) = 0; }; } diff --git a/include/lrreportdesignwindowintrerface.h b/include/lrreportdesignwindowintrerface.h index 858881e..77b8cfb 100644 --- a/include/lrreportdesignwindowintrerface.h +++ b/include/lrreportdesignwindowintrerface.h @@ -3,19 +3,23 @@ #include #include +#include "lrglobal.h" namespace LimeReport { -class ReportDesignWindowInterface: public QMainWindow{ +class LIMEREPORT_EXPORT ReportDesignWindowInterface: public QMainWindow{ public: ReportDesignWindowInterface(QWidget* parent = 0): QMainWindow(parent){} virtual bool checkNeedToSave() = 0; + virtual bool isNeedToSave() = 0; virtual void showModal() = 0; virtual void showNonModal() = 0; virtual void setSettings(QSettings* value) = 0; virtual QSettings* settings() = 0; virtual void restoreSetting() = 0; + virtual void saveSettings() = 0; virtual void setShowProgressDialog(bool value) = 0; + virtual void newReport(bool needCheck = true) = 0; }; } // namespace LimeReport diff --git a/include/lrreportengine.h b/include/lrreportengine.h index 4fdfa37..fe8df56 100644 --- a/include/lrreportengine.h +++ b/include/lrreportengine.h @@ -148,7 +148,7 @@ class LIMEREPORT_EXPORT ReportEngine : public QObject{ friend class PreviewReportWidget; friend class TranslationEditor; public: - static void setSettings(QSettings *value){m_settings=value;} + void setSettings(QSettings *value){m_settings=value;} public: explicit ReportEngine(QObject *parent = 0); ~ReportEngine(); @@ -156,6 +156,7 @@ public: bool printReport(QMap printers, bool printToAllPrinters = false); bool printPages(ReportPages pages, QPrinter *printer); void printToFile(const QString& fileName); + ReportPages renderToPages(); QGraphicsScene* createPreviewScene(QObject *parent = 0); bool printToPDF(const QString& fileName); bool exportReport(QString exporterName, const QString &fileName = "", const QMap& params = QMap()); @@ -243,7 +244,7 @@ protected: ReportEngine(ReportEnginePrivate &dd, QObject * parent=0); private: Q_DECLARE_PRIVATE(ReportEngine) - static QSettings* m_settings; + QSettings* m_settings = nullptr; bool m_showDesignerModal; }; diff --git a/limereport/lrdatasourcemanager.cpp b/limereport/lrdatasourcemanager.cpp index 91f1189..dbc0e8b 100644 --- a/limereport/lrdatasourcemanager.cpp +++ b/limereport/lrdatasourcemanager.cpp @@ -160,7 +160,8 @@ QVariant DataSourceModel::data(const QModelIndex& index, int role) const void DataSourceModel::setDataSourceManager(DataSourceManager* dataManager) { m_dataManager = dataManager; - connect(m_dataManager,SIGNAL(datasourcesChanged()),this,SLOT(slotDatasourcesChanged())); + connect(m_dataManager, &DataSourceManager::datasourcesChanged, + this, &DataSourceModel::slotDatasourcesChanged); updateModel(); } diff --git a/limereport/lrdatasourcemanagerintf.h b/limereport/lrdatasourcemanagerintf.h index c43b239..6096193 100644 --- a/limereport/lrdatasourcemanagerintf.h +++ b/limereport/lrdatasourcemanagerintf.h @@ -66,6 +66,7 @@ public: virtual bool variableIsSystem(const QString& name) = 0; virtual IDataSource* dataSource(const QString& name) = 0; virtual IDataSourceHolder* dataSourceHolder(const QString& name) = 0; + virtual void setDesignTime(bool) = 0; }; } diff --git a/limereport/lrreportengine.cpp b/limereport/lrreportengine.cpp index f7cc345..d82f3c4 100644 --- a/limereport/lrreportengine.cpp +++ b/limereport/lrreportengine.cpp @@ -1459,6 +1459,12 @@ void ReportEngine::printToFile(const QString &fileName) d->printToFile(fileName); } +ReportPages ReportEngine::renderToPages() +{ + Q_D(ReportEngine); + return d->renderToPages(); +} + bool ReportEngine::printToPDF(const QString &fileName) { Q_D(ReportEngine); diff --git a/limereport/lrreportengine.h b/limereport/lrreportengine.h index 61dfe16..fe8df56 100644 --- a/limereport/lrreportengine.h +++ b/limereport/lrreportengine.h @@ -156,6 +156,7 @@ public: bool printReport(QMap printers, bool printToAllPrinters = false); bool printPages(ReportPages pages, QPrinter *printer); void printToFile(const QString& fileName); + ReportPages renderToPages(); QGraphicsScene* createPreviewScene(QObject *parent = 0); bool printToPDF(const QString& fileName); bool exportReport(QString exporterName, const QString &fileName = "", const QMap& params = QMap()); diff --git a/limereport/lrvariablesholder.cpp b/limereport/lrvariablesholder.cpp index 9cbfcd1..f8c20df 100644 --- a/limereport/lrvariablesholder.cpp +++ b/limereport/lrvariablesholder.cpp @@ -112,9 +112,7 @@ void VariablesHolder::clearUserVariables() } else { ++it; } - } - } bool VariablesHolder::containsVariable(const QString &name) diff --git a/translations/limereport_ar.ts b/translations/limereport_ar.ts index 4f982d3..d16eeda 100644 --- a/translations/limereport_ar.ts +++ b/translations/limereport_ar.ts @@ -509,6 +509,109 @@ p, li { white-space: pre-wrap; } + + LimeReport::BorderEditor + + Edit border + + + + Presets + + + + No lines + + + + Outline + + + + Border + + + + ... + + + + Style + + + + No style + + + + Solid + + + + Dash + + + + Dot + + + + Dash dot + + + + Dash dot dot + + + + Width: + + + + 1 + + + + 0.25 + + + + 0.5 + + + + 1.5 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + 6 + + + + Color: + + + + Select + + + LimeReport::BorderFrameEditor @@ -1045,18 +1148,6 @@ p, li { white-space: pre-wrap; } HorizontalBar - - LegendAlignTop - - - - LegendAlignCenter - - - - LegendAlignBottom - - TitleAlignLeft @@ -1093,6 +1184,102 @@ p, li { white-space: pre-wrap; } Split + + GridLines + + + + Lines + + + + Solid + + + + NoStyle + + + + Dashed + + + + Dot + + + + DashDot + + + + DashDotDot + + + + Doubled + + + + LegendPoints + + + + LegendLines + + + + LegendAlignRightCenter + + + + LegendAlignRightTop + + + + LegendAlignRightBottom + + + + LegendAlignBottomRight + + + + LegendAlignBottomCenter + + + + LegendAlignBottomLeft + + + + SolidLine + + + + NoPen + + + + DashLine + + + + DotLine + + + + DashDotLine + + + + DashDotDotLine + + + + CustomDashLine + + LimeReport::FlagsPropItem @@ -2222,6 +2409,14 @@ p, li { white-space: pre-wrap; } mixWithPriorPage + + shadow + + + + borderStyle + + LimeReport::RectPropItem diff --git a/translations/limereport_es.ts b/translations/limereport_es.ts index 33c5919..8381c50 100644 --- a/translations/limereport_es.ts +++ b/translations/limereport_es.ts @@ -638,7 +638,109 @@ p, li { white-space: pre-wrap; } - + LimeReport::BorderEditor + + Edit border + + + + Presets + + + + No lines + + + + Outline + + + + Border + + + + ... + + + + Style + + + + No style + + + + Solid + + + + Dash + + + + Dot + + + + Dash dot + + + + Dash dot dot + + + + Width: + + + + 1 + + + + 0.25 + + + + 0.5 + + + + 1.5 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + 6 + + + + Color: + + + + Select + + + + LimeReport::BorderFrameEditor BorderFrameEditor @@ -938,7 +1040,7 @@ p, li { white-space: pre-wrap; } External variables - Variables externas + Variables externas @@ -1174,18 +1276,6 @@ p, li { white-space: pre-wrap; } HorizontalBar Barra horizontal - - LegendAlignTop - Alinear Leyenda Arriba - - - LegendAlignCenter - Centrar leyenda - - - LegendAlignBottom - Alinear Leyenda Abajo - TitleAlignLeft Alinear titulo a la izquierda @@ -1222,6 +1312,102 @@ p, li { white-space: pre-wrap; } Split + + GridLines + + + + Lines + + + + Solid + + + + NoStyle + + + + Dashed + + + + Dot + + + + DashDot + + + + DashDotDot + + + + Doubled + + + + LegendPoints + + + + LegendLines + + + + LegendAlignRightCenter + + + + LegendAlignRightTop + + + + LegendAlignRightBottom + + + + LegendAlignBottomRight + + + + LegendAlignBottomCenter + + + + LegendAlignBottomLeft + + + + SolidLine + + + + NoPen + + + + DashLine + + + + DotLine + + + + DashDotLine + + + + DashDotDotLine + + + + CustomDashLine + + LimeReport::FlagsPropItem @@ -2351,6 +2537,14 @@ p, li { white-space: pre-wrap; } mixWithPriorPage + + shadow + + + + borderStyle + + LimeReport::RectPropItem diff --git a/translations/limereport_fr.ts b/translations/limereport_fr.ts index e126f36..fc3d89d 100644 --- a/translations/limereport_fr.ts +++ b/translations/limereport_fr.ts @@ -13,36 +13,43 @@ ChartAxisEditor + Axis editor + Axis + Reverse direction + Enable scale calculation + Step + Maximum + Minimum @@ -50,16 +57,21 @@ + + + Automatic + Cancel Annuler + Ok @@ -68,56 +80,67 @@ ChartItemEditor + Series editor Editeur de séries + Series Séries + Add Ajouter + Delete Supprimer + Name Nom + Values field Valeur + Color Couleur + Type Type + Labels field Valeurs + X data field + Ok @@ -131,11 +154,13 @@ ImageItemEditor + Image Item Editor Éditeur d'image + Image Image @@ -144,11 +169,16 @@ + + + + ... + Resource path Chemin de ressources @@ -163,26 +193,31 @@ LRVariableDialog + Variable Variable + Name Nom + Value Valeur + Type Type + Mandatory Obligatoire @@ -196,11 +231,13 @@ LanguageSelectDialog + Dialog + Language Langue @@ -209,16 +246,19 @@ LimeReport::AboutDialog + About A propos + Lime Report + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -236,11 +276,13 @@ p, li { white-space: pre-wrap; } + Author Auteur + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -251,11 +293,13 @@ p, li { white-space: pre-wrap; } + License Licence + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -374,11 +418,13 @@ p, li { white-space: pre-wrap; } + Close Fermer + Version 1.1.1 @@ -430,123 +476,123 @@ p, li { white-space: pre-wrap; } LimeReport::BandDesignIntf - + DataBand bande de données - + DataHeaderBand En-tête de données - + DataFooterBand Pied de données - + ReportHeader En-tête de rapport - + ReportFooter Pied de rapport - + PageHeader En-tête de page - + PageFooter Pied de page - + SubDetailBand Sous-détails - + SubDetailHeaderBand En-tête de sous-détails - + SubDetailFooterBand Pied de sous-détails - + GroupBandHeader Groupe d'en-tête - + GroupBandFooter Groupe de pieds - + TearOffBand Bande détachable - + connected to Connecté à - + Bring to top Placer au premier-plan - + Send to back Placer en arrière-plan - + Cut Couper - + Copy Copier - - + + Auto height Hauteur automatique - - + + Splittable Divisible - + + - Keep top space Conserver l'espace supérieur - - + + Keep bottom space Conserver l'espace inférieur - - + + Print if empty Imprimer si vide @@ -610,10 +656,172 @@ p, li { white-space: pre-wrap; } + + LimeReport::BorderEditor + + + + Edit border + + + + + + Presets + + + + + + No lines + + + + + + Outline + + + + + + Border + + + + + + + + + + + + ... + + + + + + Style + + + + + + No style + + + + + + Solid + + + + + + Dash + + + + + + Dot + + + + + + Dash dot + + + + + + Dash dot dot + + + + + + Width: + + + + + + + + 1 + + + + + + 0.25 + + + + + + 0.5 + + + + + + 1.5 + + + + + + 2 + + + + + + 3 + + + + + + 4 + + + + + + 5 + + + + + + 6 + + + + + + Color: + + + + + + Select + + + LimeReport::BorderFrameEditor + BorderFrameEditor @@ -637,76 +845,91 @@ p, li { white-space: pre-wrap; } + Connection Connexion + Connection Name Nom de la connexion + Use default application connection Utiliser la connexion par défaut de l'application + Driver Pilote + Server Serveur + Port + User Utilisateur + Password Mot de passe + Database Base de données + ... + Auto connect Connexion automatique + Don't keep credentials in lrxml Ne pas enregistrer les informations personnelles dans lrxml + Check connection Tester la connexion + Cancel Annuler + Ok @@ -790,123 +1013,149 @@ p, li { white-space: pre-wrap; } LimeReport::DataBrowser - - + + + + Datasources Source de données - + + Add database connection Ajouter une connexion à la base de données - - - - - - - - + + + + + + + + - - - + + + + + + + + + + + + + + + + ... - + + Add new datasource Ajouter une source de données - + + View data Aperçu des données - + + Change datasource Changer la source de données - + + Delete datasource Supprimer la source de données - + + Show error Afficher l'erreur - + + Variables - + + Add new variable Ajouter une variable - + + Edit variable Modifier une variable - + + Delete variable Supprimer une variable - + + Grab variable Saisir une variable - - - - + + + + Attention - + Do you really want to delete "%1" connection? Voulez-vous vraiment supprimer la connexion %1? - + Report variables Variables du rapport - + System variables Variables système - + External variables Variables externe - + Do you really want to delete "%1" datasource? Vouz-vous vraiment supprimer la source de donnée "%1"? - + Do you really want to delete variable "%1"? Vouz-vous vraiment supprimer la variable "%1"? - + Error Erreur @@ -954,51 +1203,51 @@ p, li { white-space: pre-wrap; } LimeReport::DataSourceManager - + Connection "%1" is not open La connexion "%1" n'est pas ouverte - - - - + + + + Variable "%1" not found! Variable "%1" introuvable! - - + + Unknown parameter "%1" for variable "%2" found! Paramètre inconnu %1 pour la variable %2 ! - - + + Datasource "%1" not found! Source de donnée "%1" introuvable! - + Connection with name "%1" already exists! La connexion avec le nom "%1" existe déjà! - - - - - + + + + + Datasource with name "%1" already exists! La source de donnée avec le nom "%1" existe déjà! - + Database "%1" not found Base de données "%1 introuvable - + invalid connection Connexion invalide @@ -1006,19 +1255,19 @@ p, li { white-space: pre-wrap; } LimeReport::DataSourceModel - + Datasources Source de données - + Variables - + External variables - Variables externe + Variables externe @@ -1311,63 +1560,168 @@ p, li { white-space: pre-wrap; } HorizontalBar Barre horizontale + + + GridLines + + + + + Lines + + + + + Solid + + + + + NoStyle + + + + + Dashed + + + + + Dot + + + + + DashDot + + + + + DashDotDot + + + + + Doubled + + + + + LegendPoints + + + + + LegendLines + + + + + LegendAlignRightCenter + + + + + LegendAlignRightTop + + + + + LegendAlignRightBottom + + + + + LegendAlignBottomRight + + + + + LegendAlignBottomCenter + + + + + LegendAlignBottomLeft + + + + + SolidLine + + + + + NoPen + + + + + DashLine + + + + + DotLine + + + + + DashDotLine + + + + + DashDotDotLine + + + + + CustomDashLine + + - LegendAlignTop - Aligner la légende en haut - - - - LegendAlignCenter - Aligner la légende au centre - - - - LegendAlignBottom - Aligner la légende en bas - - - TitleAlignLeft Aligner le titre à gauche - + TitleAlignRight Aligner le titre à droite - + TitleAlignCenter Aligner le titre au centre - + Layout Disposition - + Table Tableau - + Millimeters Millimètres - + Inches Pouces - + Scale Échèlle - + Split Diviser @@ -1666,17 +2020,17 @@ p, li { white-space: pre-wrap; } LimeReport::ObjectInspectorWidget - + Clear Effacer - + Filter Filtrer - + Translate properties Traduire les popriétés @@ -1693,26 +2047,31 @@ p, li { white-space: pre-wrap; } LimeReport::PageEditor + Page setup + Paper + Format + Dimension + Width: @@ -1723,81 +2082,102 @@ p, li { white-space: pre-wrap; } + + + + + + mm + Height: + Orientation + Portrait + Landscape Paysage + Margins + Bottom: + Top: + Right: + Left: + Drop printer margins + Other + Height options + Endless Height + Extended Height: + Full page Page entière @@ -1878,6 +2258,7 @@ p, li { white-space: pre-wrap; } LimeReport::PreviewReportWidget + Form Formulaire @@ -1896,157 +2277,193 @@ p, li { white-space: pre-wrap; } LimeReport::PreviewReportWindow + Preview Aperçu avant impression + View Vue + Report Rapport + MainToolBar Barre d'outils principale + EditModeTools Outils d'édition + Print Imprimer + Ctrl+P + Zoom In Zoom avant + Zoom Out Zoom arrière + + Prior Page Page prioritaire + + Next Page Page suivante + + Close Preview Fermer l'aperçu + Esc Echap + Edit Mode Mode d'édition + + Save to file Enregistrer dans un fichier + + Show errors Afficher les erreurs + First Page Première page + First page Première page + + Last Page Dernière page + Print To PDF Enregistrer en format PDF + Fit page width Ajuster la largeur de la page + Fit page Ajuster la page + One to one Page par Page + Show Toolbar Afficher la barre d'outils + Show toolbar Afficher la barre d'outils + InsertTextItem Insérer un élément texte + Add new TextItem Ajouter un élément texte + Selection Mode Mode sélection + Delete Item Supprimer un élément + Del Supprimer @@ -2774,17 +3191,27 @@ p, li { white-space: pre-wrap; } - + + shadow + + + + + borderStyle + + + + Property Name Propriété - + Property value Valeur - + Warning Avertissement @@ -2822,27 +3249,27 @@ p, li { white-space: pre-wrap; } LimeReport::ReportDesignWidget - + Script Script - + Translations Traductions - + Report file name Nom du rapport - + Error Erreur - + Wrong file format Format de fichier incorrect @@ -2851,7 +3278,7 @@ p, li { white-space: pre-wrap; } LimeReport::ReportDesignWindow - + Rendered %1 pages %1 pages préparées @@ -2861,359 +3288,359 @@ p, li { white-space: pre-wrap; } Annuler la préparation - + New Report Nouveau rapport - + New Report Page Nouvelle page - + Delete Report Page Supprimer une page - + Edit Mode Mode d'édition - + Undo Annuler - + Redo Répéter - + Copy Copier - + Paste Coller - + Cut Couper - + Settings Paramètres - + Use grid Utiliser la grille - + Use magnet Utiliser l'aimant - + Text Item Elément de texte - + Save Report Enregistrer le rapport - + Save Report As Enregistrer le rapport sous - + Load Report Ouvrir un rapport - + Delete item Supprimer élément - + Zoom In Zoom avant - + Zoom Out Zoom arrière - + Render Report Afficher l'aperçu du rapport - + Edit layouts mode Modifier le mode de mise en forme - + Horizontal layout Mise en page horizontale - + Vertical layout Disposition verticale - + About A propos - + Hide left panel | Alt+L Masquer le volet gauche - + Hide right panel | Alt+R Masquer le volet droite - + Delete dialog Supprimer la boite du dialogue - + Add new dialog Ajouter une boite de dialogue - + Lock selected items Verrouiller les éléments sélectionnés - + Unlock selected items Déverrouiller les éléments sélectionnés - + Select one level items Sélectionner un niveau d'éléments - + Report Tools Outils de rapport - + Main Tools Outils principales - + Font Police - + Text alignment Alignement de texte - + Items alignment Alignement des éléments - + Borders Bordures - + Report bands Bandesde rapport - + Report Header En-tête du rapport - + Report Footer Pied de rapport - + Page Header En-tête de page - + Page Footer Pied de page - + Data Données - + Data Header En-tête de données - + Data Footer Pied de données - + SubDetail Sous-détails - + SubDetailHeader En-tête de sous-détails - + SubDetailFooter Pied de sous-détails - + GroupHeader En-tête de groupe - + GroupFooter Pied de groupe - + Tear-off Band Bande détachable - + File Fichier - + Edit Edition - + Info - + Recent Files Fichiers récents - - + + Object Inspector Inspecteur d'objets - + Report structure Structure du rapport - + Widget Box Boite de Widget - + Property Editor Editeur de propriété - + Action Editor Editeur d'action - + Resource Editor Editeur de ressource - + SignalSlot Editor Editeur de Signaux & Slots - + Dialog Designer Tools Boite à outils du Designer - + Data Browser Navigateur de données - + Script Browser Navigateur de script - + Report has been modified! Do you want save the report? Le rapport a été modifié! Voulez-vous l'enregistrer? - - + + Report file name Nom du fichier du rapport - + Attention Attention - + The rendering is in process La préparation du rapport est en cours - + Warning Avertissement - + File "%1" not found! Fichier "%1" introuvable! @@ -3221,27 +3648,27 @@ p, li { white-space: pre-wrap; } LimeReport::ReportEnginePrivate - + Preview Aperçu avant impression - + Error Erreur - + %1 file name %1 nom de fichier - + Report File Change Nom du fichier changé - + The report file "%1" has changed names or been deleted. This preview is no longer valid. @@ -3250,12 +3677,12 @@ This preview is no longer valid. Cet aperçu n'est plus valide. - + Designer not found! Designer introuvable! - + Language %1 already exists La langue %1 existe déja @@ -3307,105 +3734,127 @@ Cet aperçu n'est plus valide. LimeReport::SQLEditDialog + Datasource Source de donnée + Connection Connexion + Datasource Name Nom de source de donnée + Subdetail Sous-détails + Master datasource Banse de donnée principale + Subquery mode Mode de sous-requêtes + Filter mode Mode filtre + + SQL + Preview Aperçu + Hide Preview Masquer l'aperçu + Child datasource Source de donnée fille + Fields map Champs + + ... + Data preview Aperçu de données + CSV + Separator Séparateur + ; + Use first row as header La première ligne est le nom des colonnes + Cancel Annuler + Ok @@ -3485,11 +3934,13 @@ Cet aperçu n'est plus valide. LimeReport::ScriptBrowser + Form Formulaire + Functions Fonctions @@ -3497,21 +3948,27 @@ Cet aperçu n'est plus valide. + + + ... + Dialogs Dialogues + Type + Name Nom @@ -3547,16 +4004,19 @@ Cet aperçu n'est plus valide. LimeReport::ScriptEditor + Form Formulaire + Data Données + Functions Fonctions @@ -3564,13 +4024,13 @@ Cet aperçu n'est plus valide. LimeReport::ScriptEngineContext - + Dialog with name: %1 can`t be created Le dialogue avec le nom "%1" ne peut pas être crée - - + + Error Erreur @@ -3583,20 +4043,20 @@ Cet aperçu n'est plus valide. Fonctions de groupe - - - - - - - - + + + + + + + + Value Valeur - + BandName Nom de la bande @@ -3607,7 +4067,7 @@ Cet aperçu n'est plus valide. - + FieldName Nom du champ @@ -3624,120 +4084,120 @@ Cet aperçu n'est plus valide. Champ "%1 introuvable dans %2! - + SYSTEM Système - - - + + + NUMBER Nombre - - - - - + + + + + Format - + Precision Précision - - - - + + + + Locale Local - - - - - - + + + + + + DATE&TIME Date&Heure - + CurrencySymbol Symbolde de la monnaie - - - - - - - - - - + + + + + + + + + + GENERAL General - - - + + + Name Nom - + Datasource Source de donnée - + ValueField Valeur - + KeyField Clé - + KeyFieldValue Valeur de la clé - + RowIndex - - - + + + Unique identifier Identifiant unique - - + + Content Contenu - + Indent Indenter - + datasourceName Nom de source de donnée @@ -3746,71 +4206,85 @@ Cet aperçu n'est plus valide. LimeReport::SettingDialog + Designer setting Paramètres + Designer settings Paramètres du Designer + Default font Police par défaut + Grid Grille + Vertical grid step Grille verticale + Horizontal grid step Grille horizontale + Language Langue + Theme Thème + Report units Unité du rapport + Script editor settings Éditeur de script + Font Police + Indent size Taille d'indentation + Report settings Paramètres du rapport + Suppress absent fields and variables warning Effacer les messages d'absences de champs et d'avertissement de variables @@ -3932,18 +4406,18 @@ Cet aperçu n'est plus valide. Masquer si vide - - + + Error Erreur - + TextItem " %1 " already has folower " %2 " L'élément texte " %1 " a toujours un copain " %2 " - + TextItem " %1 " not found! Elément "%1" introuvable! @@ -3952,26 +4426,31 @@ Cet aperçu n'est plus valide. LimeReport::TextItemEditor + Text Item Editor Editeur d'élément de texte + Content Contenu + Ok + Ctrl+Return Ctrl+Arrière + Cancel Annuler @@ -3980,42 +4459,51 @@ Cet aperçu n'est plus valide. LimeReport::TranslationEditor + Form Formulaire + Languages Langues + + ... + Pages Pages + Strings Chaînes de caractère + Source Text Texte source + Translation Traduction + Checked Vérifié @@ -4041,7 +4529,7 @@ Cet aperçu n'est plus valide. - + variable with name La variable avec le nom @@ -4053,7 +4541,7 @@ Cet aperçu n'est plus valide. - + does not exists! n'existe pas! @@ -4327,27 +4815,29 @@ Cet aperçu n'est plus valide. - + + Attention! - + + Selected elements have different parent containers Les éléments sélectionnés ont un parent différent - + Object with name %1 already exists! L'objet avec le nom "%1" existe déja! - + Function %1 not found or have wrong arguments La fonction %1 est introuvable ou contient des paramètres incorrects - + Datasource manager not found Gestionnaire de source de donnée introuvable @@ -4428,30 +4918,30 @@ Cet aperçu n'est plus valide. Exporter au format PDF - + Dark Sombre - + Light Clair - + Default par défaut - - + + Millimeters Millimètres - - + + Inches Pouces diff --git a/translations/limereport_pl.ts b/translations/limereport_pl.ts index 40c3860..c561bac 100644 --- a/translations/limereport_pl.ts +++ b/translations/limereport_pl.ts @@ -13,36 +13,43 @@ ChartAxisEditor + Axis editor + Axis + Reverse direction + Enable scale calculation + Step + Maximum + Minimum @@ -50,16 +57,21 @@ + + + Automatic + Cancel Anuluj + Ok Ok @@ -68,56 +80,67 @@ ChartItemEditor + Series editor Edytor serii + Series Serie + Add Dodaj + Delete Usuń + Name Nazwa + Values field Pole wartości + Color Kolor + Type Typ + Labels field Pole etykiet + X data field + Ok Ok @@ -131,11 +154,13 @@ ImageItemEditor + Image Item Editor + Image Obraz @@ -144,11 +169,16 @@ + + + + ... ... + Resource path @@ -163,26 +193,31 @@ LRVariableDialog + Variable Zmienna + Name Nazwa + Value Wartość + Type Typ + Mandatory Obowiązkowy @@ -196,11 +231,13 @@ LanguageSelectDialog + Dialog Dialog + Language Język @@ -209,16 +246,19 @@ LimeReport::AboutDialog + About O + Lime Report Lime Report + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -248,11 +288,13 @@ p, li { white-space: pre-wrap; } + Author Autor + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -263,11 +305,13 @@ p, li { white-space: pre-wrap; } + License Licencja + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -386,11 +430,13 @@ p, li { white-space: pre-wrap; } + Close Zamknij + Version 1.1.1 Wersja 1.1.1 @@ -442,123 +488,123 @@ p, li { white-space: pre-wrap; } LimeReport::BandDesignIntf - + DataBand Sekcja danych - + DataHeaderBand Nagłówek sekcji danych - + DataFooterBand Stopka sekcji danych - + ReportHeader Nagłówek raportu - + ReportFooter Stopka raportu - + PageHeader Nagłówek strony - + PageFooter Stopka strony - + SubDetailBand Podsekcja danych - + SubDetailHeaderBand Podsekcja danych nagłówek - + SubDetailFooterBand Podsekcja danych stopka - + GroupBandHeader Nagłówek sekcji grupowania - + GroupBandFooter Stopka sekcji grupowania - + TearOffBand Urwanie sekcji - + connected to połączony do - + Bring to top Przenieś na górę - + Send to back Przenieś na dół - + Cut Wytnij - + Copy Kopiuj - - + + Auto height Automatyczna wysokość - - + + Splittable Rozdzielane - + + - Keep top space - - + + Keep bottom space Zachowaj dolną przestrzeń - - + + Print if empty Drukuj jeśli pusty @@ -623,10 +669,171 @@ p, li { white-space: pre-wrap; } - + LimeReport::BorderEditor + + + + Edit border + + + + + + Presets + + + + + + No lines + + + + + + Outline + + + + + + Border + + + + + + + + + + + + ... + ... + + + + + Style + + + + + + No style + + + + + + Solid + + + + + + Dash + + + + + + Dot + + + + + + Dash dot + + + + + + Dash dot dot + + + + + + Width: + + + + + + + + 1 + + + + + + 0.25 + + + + + + 0.5 + + + + + + 1.5 + + + + + + 2 + + + + + + 3 + + + + + + 4 + + + + + + 5 + + + + + + 6 + + + + + + Color: + + + + + + Select + + + + LimeReport::BorderFrameEditor + BorderFrameEditor @@ -650,76 +857,91 @@ p, li { white-space: pre-wrap; } + Connection Połączenie + Connection Name Nazwa połączenia + Use default application connection Używaj domyślnego połączenia aplikacji + Driver Sterownik + Server Serwer + Port Port + User Użytkownik + Password Hasło + Database Baza danych + ... ... + Auto connect Automatyczne połączenie + Don't keep credentials in lrxml Nie przechowuj referencji w lrxml + Check connection Sprawdź połączenie + Cancel Anuluj + Ok Ok @@ -803,123 +1025,149 @@ p, li { white-space: pre-wrap; } LimeReport::DataBrowser - - + + + + Datasources Źródła danych - + + Add database connection Dodaj połączenie z bazą danych - - - - - - - - + + + + + + + + - - - + + + + + + + + + + + + + + + + ... ... - + + Add new datasource Dodaj źródło danych - + + View data Podgląd danych - + + Change datasource Zmień źródło danych - + + Delete datasource Usuń źródło danych - + + Show error Pokaż błąd - + + Variables Zmienne - + + Add new variable Dodaj zmienną - + + Edit variable Edytuj zmienną - + + Delete variable Usuń zmienną - + + Grab variable Chwyć zmienną - - - - + + + + Attention Uwaga - + Do you really want to delete "%1" connection? Czy chcesz naprawdę skasować "%1" połączenie? - + Report variables Raport zmiennych - + System variables Zmienne systemowe - + External variables Zmienne zewnętrzne - + Do you really want to delete "%1" datasource? Czy chcesz naprawdę skasować "%1" źródło danych? - + Do you really want to delete variable "%1"? Czy chcesz naprawdę skasować zmienną "%1"? - + Error Błąd @@ -967,51 +1215,51 @@ p, li { white-space: pre-wrap; } LimeReport::DataSourceManager - + Connection "%1" is not open Połączenie "%1" nie jest otwarte - - - - + + + + Variable "%1" not found! Zmienna "%1" nie znaleziona! - - + + Unknown parameter "%1" for variable "%2" found! Nieznany parametr "%1" dla znalezionej zmiennej "%2"! - - + + Datasource "%1" not found! Źródło danych %1" nie znalezione! - + Connection with name "%1" already exists! Połączenie o nazwie "%1" już istnieje! - - - - - + + + + + Datasource with name "%1" already exists! Źródło danych o nazwie "%1" już istnieje! - + Database "%1" not found Baza danych "%1" nie znaleziona - + invalid connection Nieprawidłowe połączenie @@ -1019,19 +1267,19 @@ p, li { white-space: pre-wrap; } LimeReport::DataSourceModel - + Datasources Źródła danych - + Variables Zmienne - + External variables - Zmienne zewnętrzne + Zmienne zewnętrzne @@ -1324,63 +1572,168 @@ p, li { white-space: pre-wrap; } HorizontalBar Pasek poziomy + + + GridLines + + + + + Lines + + + + + Solid + + + + + NoStyle + + + + + Dashed + + + + + Dot + + + + + DashDot + + + + + DashDotDot + + + + + Doubled + + + + + LegendPoints + + + + + LegendLines + + + + + LegendAlignRightCenter + + + + + LegendAlignRightTop + + + + + LegendAlignRightBottom + + + + + LegendAlignBottomRight + + + + + LegendAlignBottomCenter + + + + + LegendAlignBottomLeft + + + + + SolidLine + + + + + NoPen + + + + + DashLine + + + + + DotLine + + + + + DashDotLine + + + + + DashDotDotLine + + + + + CustomDashLine + + - LegendAlignTop - Wyrównaj do góry legendę - - - - LegendAlignCenter - Wyśrodkuj legendę - - - - LegendAlignBottom - Wyrównaj do dołu legendę - - - TitleAlignLeft Wyrównaj do lewej tytuł - + TitleAlignRight Wyrównaj do prawej tytuł - + TitleAlignCenter Wyśrodkuj tytuł - + Layout Układ - + Table Tabela - + Millimeters Milimetry - + Inches Cale - + Scale Skala - + Split Podział @@ -1679,17 +2032,17 @@ p, li { white-space: pre-wrap; } LimeReport::ObjectInspectorWidget - + Clear Wyczyść - + Filter Filtr - + Translate properties Przetłumacz właściwości @@ -1706,26 +2059,31 @@ p, li { white-space: pre-wrap; } LimeReport::PageEditor + Page setup + Paper + Format Format + Dimension + Width: @@ -1736,81 +2094,102 @@ p, li { white-space: pre-wrap; } + + + + + + mm + Height: + Orientation + Portrait Portret + Landscape Pejzaż + Margins + Bottom: + Top: + Right: + Left: + Drop printer margins + Other + Height options + Endless Height + Extended Height: + Full page Cała strona @@ -1891,6 +2270,7 @@ p, li { white-space: pre-wrap; } LimeReport::PreviewReportWidget + Form Formatka @@ -1909,157 +2289,193 @@ p, li { white-space: pre-wrap; } LimeReport::PreviewReportWindow + Preview Podgląd + View Widok + Report Raport + MainToolBar Główny pasek narzędzi + EditModeTools Narzędzia trybu edycji + Print Drukuj + Ctrl+P Ctrl+P + Zoom In Powiększenie + Zoom Out Pomniejszenie + + Prior Page Poprzednia strona + + Next Page Następna strona + + Close Preview Zamknij podgląd + Esc Esc + Edit Mode Tryb edycji + + Save to file Zapisz do pliku + + Show errors Pokaż błędy + First Page Pierwsza strona + First page Pierwsza strona + + Last Page Ostatnia strona + Print To PDF Drukuj do PDF + Fit page width Dopasuj szerokość strony + Fit page Dopasowanie do strony + One to one Jeden do jednego + Show Toolbar Pokaż pasek narzędzi + Show toolbar Pokaż pasek narzędzi + InsertTextItem Wstaw element tekstowy + Add new TextItem Dodaj nowy element tekstowy + Selection Mode Tryb wyboru + Delete Item Usuń element + Del Usuń @@ -2787,17 +3203,27 @@ p, li { white-space: pre-wrap; } - + + shadow + + + + + borderStyle + + + + Property Name Nazwa właściwości - + Property value Wartość właściwości - + Warning Uwaga @@ -2835,27 +3261,27 @@ p, li { white-space: pre-wrap; } LimeReport::ReportDesignWidget - + Script Skrypt - + Translations Tłumaczenia - + Report file name Nazwa pliku raportu - + Error Błąd - + Wrong file format Zły format pliku @@ -2864,7 +3290,7 @@ p, li { white-space: pre-wrap; } LimeReport::ReportDesignWindow - + Rendered %1 pages @@ -2874,359 +3300,359 @@ p, li { white-space: pre-wrap; } - + New Report Nowy raport - + New Report Page Nowa strona raportu - + Delete Report Page Usuń stronę raportu - + Edit Mode Tryb edycji - + Undo Cofnij - + Redo Ponów - + Copy Kopiuj - + Paste Wklej - + Cut Wytnij - + Settings Ustawienia - + Use grid Użyj siatki - + Use magnet Użyj magnesu - + Text Item Element tekstowy - + Save Report Zapisz raport - + Save Report As Zapisz raport jako - + Load Report Wczytaj raport - + Delete item Usuń pozycję - + Zoom In Powiększ - + Zoom Out Pomniejsz - + Render Report Renderuj raport - + Edit layouts mode Edytuj tryb układu - + Horizontal layout Układ poziomy - + Vertical layout Układ pionowy - + About O - + Hide left panel | Alt+L Ukryj lewy panel | Alt+L - + Hide right panel | Alt+R Ukryj prawy panel | Alt+R - + Delete dialog Dialog kasowania - + Add new dialog Dodaj nowy dialog - + Lock selected items Zablokuj zaznaczone elementy - + Unlock selected items Odblokuj zaznaczone elementy - + Select one level items Wybierz elementy na jednym poziomie - + Report Tools Narzędzia raportu - + Main Tools Główne narzędzia - + Font Czcionka - + Text alignment Wyrównanie tekstu - + Items alignment Wyrównanie elementów - + Borders Krawędzie - + Report bands Pasma raportu - + Report Header Nagłówek raportu - + Report Footer Stopka raportu - + Page Header Nagłówek strony - + Page Footer Stopka strony - + Data Dane - + Data Header Nagłówek danych - + Data Footer Stopka danych - + SubDetail Pod szczegóły - + SubDetailHeader Nagłówek pod szczegółów - + SubDetailFooter Stopka pod szczegółów - + GroupHeader Nagłówek grupujący - + GroupFooter Stopka grupująca - + Tear-off Band Sekcja zrywająca - + File Plik - + Edit Edycja - + Info Informacja - + Recent Files Ostatnie pliki - - + + Object Inspector Inspektor obiektów - + Report structure Struktura raportu - + Widget Box Pudełko widżetów - + Property Editor Edytor właściowości - + Action Editor Edytor akcji - + Resource Editor Edytor zasobów - + SignalSlot Editor Edytor sygnałów i slotów - + Dialog Designer Tools Narzędzia projektowania dialogów - + Data Browser Przeglądarka danych - + Script Browser Przeglądarka skryptów - + Report has been modified! Do you want save the report? Raport został zmodyfikowany! Czy chcesz zapisać raport? - - + + Report file name Nazwa pliku raportu - + Attention Uwaga - + The rendering is in process - + Warning Ostrzeżenie - + File "%1" not found! Plik "%1" nie znaleziony! @@ -3234,27 +3660,27 @@ p, li { white-space: pre-wrap; } LimeReport::ReportEnginePrivate - + Preview Podgląd - + Error Błąd - + %1 file name %1 nazwa pliku - + Report File Change Zmiana pliku raportu - + The report file "%1" has changed names or been deleted. This preview is no longer valid. @@ -3263,12 +3689,12 @@ This preview is no longer valid. Ten podgląd nie jest już prawidłowy. - + Designer not found! Nie znaleziono projektanta! - + Language %1 already exists Język %1 już istnieje @@ -3320,105 +3746,127 @@ Ten podgląd nie jest już prawidłowy. LimeReport::SQLEditDialog + Datasource Źródło danych + Connection Połączenie + Datasource Name Nazwa źródła danych + Subdetail Podszczegóły + Master datasource Główne źródło danych + Subquery mode Tryb podkwerendy + Filter mode Tryb filtra + + SQL SQL + Preview Podgląd + Hide Preview Ukryj podgląd + Child datasource Źródło danych dziecka + Fields map Mapa pól + + ... ... + Data preview Podgląd danych + CSV CSV + Separator Separator + ; ; + Use first row as header Użyj pierwszego wiersza jako nagłówka + Cancel Anuluj + Ok Ok @@ -3498,11 +3946,13 @@ Ten podgląd nie jest już prawidłowy. LimeReport::ScriptBrowser + Form Formatka + Functions Funkcje @@ -3510,21 +3960,27 @@ Ten podgląd nie jest już prawidłowy. + + + ... ... + Dialogs Dialogi + Type Typ + Name Nazwa @@ -3560,16 +4016,19 @@ Ten podgląd nie jest już prawidłowy. LimeReport::ScriptEditor + Form Formatka + Data Dane + Functions Funkcje @@ -3577,13 +4036,13 @@ Ten podgląd nie jest już prawidłowy. LimeReport::ScriptEngineContext - + Dialog with name: %1 can`t be created Okno dialogowe z nazwą:%1 nie można utworzyć - - + + Error Błąd @@ -3596,20 +4055,20 @@ Ten podgląd nie jest już prawidłowy. FUNKCJE GRUPUJĄCE - - - - - - - - + + + + + + + + Value Wartość - + BandName Nazwa sekcji @@ -3620,7 +4079,7 @@ Ten podgląd nie jest już prawidłowy. - + FieldName Nazwa pola @@ -3637,120 +4096,120 @@ Ten podgląd nie jest już prawidłowy. Pole %1 nie znalezione w %2! - + SYSTEM SYSTEM - - - + + + NUMBER LICZBA - - - - - + + + + + Format Format - + Precision Precyzja - - - - + + + + Locale Ustawienia lokalne - - - - - - + + + + + + DATE&TIME Data i czas - + Datasource Źródło danych - + ValueField Pole wartości - + KeyField Pole klucza - + KeyFieldValue Wartość pola klucza - + RowIndex Indeks wiersza - - - + + + Unique identifier Unikalny identyfikator - - + + Content Zawartość - + Indent Akapit - + datasourceName Nazwa źródła danych - + CurrencySymbol Symbol waluty - - - - - - - - - - + + + + + + + + + + GENERAL OGÓLNY - - - + + + Name Nazwa @@ -3759,71 +4218,85 @@ Ten podgląd nie jest już prawidłowy. LimeReport::SettingDialog + Designer setting Ustawienia projektanta + Designer settings Ustawienia projektowania + Default font Domyślna czcionka + Grid Siatka + Vertical grid step Pionowy krok siatki + Horizontal grid step Poziomy krok siatki + Language Język + Theme Motyw + Report units Jednostki raportu + Script editor settings Ustawienia edytora skryptów + Font Czcionka + Indent size Rozmiar akapitu + Report settings Ustawienia raportu + Suppress absent fields and variables warning Pomiń ostrzerzenie o nieobecności pól i zmiennych @@ -3945,18 +4418,18 @@ Ten podgląd nie jest już prawidłowy. Ukryj jeśli pusty - - + + Error Błąd - + TextItem " %1 " already has folower " %2 " Pole tekstowe " %1 " już ma folower " %2 " - + TextItem " %1 " not found! Nie znaleziono pole tekstowego "%1"! @@ -3965,26 +4438,31 @@ Ten podgląd nie jest już prawidłowy. LimeReport::TextItemEditor + Text Item Editor Edytor pozycji tekstowych + Content Zawartość + Ok Ok + Ctrl+Return Ctrl+Return + Cancel Anuluj @@ -3993,42 +4471,51 @@ Ten podgląd nie jest już prawidłowy. LimeReport::TranslationEditor + Form Formatka + Languages Języki + + ... ... + Pages Strony + Strings Ciąg znaków + Source Text Tekst źródłowy + Translation Tłumaczenie + Checked Zaznaczony @@ -4054,7 +4541,7 @@ Ten podgląd nie jest już prawidłowy. - + variable with name zmienna o nazwie @@ -4066,7 +4553,7 @@ Ten podgląd nie jest już prawidłowy. - + does not exists! nie istnieje! @@ -4340,27 +4827,29 @@ Ten podgląd nie jest już prawidłowy. Ciąg znaków - + + Attention! Uwaga! - + + Selected elements have different parent containers Wybrane elementy mają różne pojemniki nadrzędne - + Object with name %1 already exists! Obiekt o nazwie %1 już istnieje! - + Function %1 not found or have wrong arguments Funkcja %1 nie znaleziona lub ma błędne argumenty - + Datasource manager not found Nie znaleziono menedżera źródła danych @@ -4441,30 +4930,30 @@ Ten podgląd nie jest już prawidłowy. Układ pionowy - + Dark Ciemny - + Light Jasny - + Default Domyślny - - + + Millimeters Milimetry - - + + Inches Cale diff --git a/translations/limereport_ru.ts b/translations/limereport_ru.ts index 0784782..b4f74a8 100644 --- a/translations/limereport_ru.ts +++ b/translations/limereport_ru.ts @@ -13,36 +13,43 @@ ChartAxisEditor + Axis editor Редактор осей + Axis Оси + Reverse direction Обратное направление + Enable scale calculation Вычисление масштаба + Step Шаг + Maximum Максимум + Minimum Минимум @@ -50,16 +57,21 @@ + + + Automatic Автоматически + Cancel Отмена + Ok Ок @@ -68,51 +80,61 @@ ChartItemEditor + Series editor Редактор рядов данных + Series Ряды данных + Add Добавить + Delete Удалить + Name Имя + Values field Поле значений + Color Цвет + Type Тип + Labels field Поле меток + Ok Ок @@ -123,6 +145,7 @@ + X data field Поле оси X @@ -131,11 +154,13 @@ ImageItemEditor + Image Item Editor Редакор изображения + Image Изображение @@ -144,11 +169,16 @@ + + + + ... ... + Resource path Путь к русурсам @@ -163,21 +193,25 @@ LRVariableDialog + Variable Переменная + Name Имя + Value Значение + Type Тип @@ -188,6 +222,7 @@ + Mandatory Обязательная @@ -196,11 +231,13 @@ LanguageSelectDialog + Dialog Диалог + Language Язык @@ -209,36 +246,43 @@ LimeReport::AboutDialog + About О программе + Author Автор + License Лицензия + Close Закрыть + Version 1.1.1 Версия 1.1.1 + Lime Report + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -254,6 +298,7 @@ p, li { white-space: pre-wrap; } + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -372,6 +417,7 @@ p, li { white-space: pre-wrap; } + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -619,26 +665,31 @@ p, li { white-space: pre-wrap; } LimeReport::BorderEditor + Edit border Редактор границ + Presets Пресеты + No lines Нет + Outline Все + Border Границы @@ -647,102 +698,126 @@ p, li { white-space: pre-wrap; } + + + + ... ... + Style Стиль + No style Прозрачная + Solid Сплошная + Dash Пунктир + Dot Точка + Dash dot Тире Точка + Dash dot dot Тире Точка Точка + Width: Толщина: + + 1 + 0.25 + 0.5 + 1.5 + 2 + 3 + 4 + 5 + 6 + Color: Цвет: + Select Выбрать @@ -751,6 +826,7 @@ p, li { white-space: pre-wrap; } LimeReport::BorderFrameEditor + BorderFrameEditor @@ -774,56 +850,67 @@ p, li { white-space: pre-wrap; } + Connection Соединение + Use default application connection Использовать соединение по умолчанию + Connection Name Наименование Соединения + Driver Драйвер + Server Сервер + User Пользователь + Password Пароль + Database База данных + Auto connect Автоматическое соединение + Check connection Проверить соединение + Cancel Отмена @@ -850,11 +937,13 @@ p, li { white-space: pre-wrap; } + ... ... + Ok Ок @@ -870,11 +959,13 @@ p, li { white-space: pre-wrap; } + Port Порт + Don't keep credentials in lrxml Не хранить учетные данные в lrxml @@ -927,123 +1018,149 @@ p, li { white-space: pre-wrap; } LimeReport::DataBrowser - - + + + + Datasources Источники данных - + + Add database connection Добавить соединение с базой - + + Add new datasource Добавить источник данных - + + View data Просмотр данных в источнике - + + Change datasource Изменить источник данных - + + Delete datasource Удалить источник данных - + + Show error Показать ошибки - + + Variables Переменные - + + Add new variable Добавить переменную - + + Edit variable Редактировать переменную - + + Delete variable Удалить переменную - - - - + + + + Attention Внимание - + System variables Системные переменные - + Error Ошибка - - - - - - - - + + + + + + + + - - - + + + + + + + + + + + + + + + + ... ... - + + Grab variable Захватить переменную - + Report variables Переменные отчета - + External variables Внешние переменные - + Do you really want to delete "%1" connection? Вы действительно хотите удалить соединение "%1"? - + Do you really want to delete "%1" datasource? Вы действительно хотите удалить источник данных "%1"? - + Do you really want to delete variable "%1"? Вы действительно хотите удалить переменную "%1"? @@ -1091,51 +1208,51 @@ p, li { white-space: pre-wrap; } LimeReport::DataSourceManager - + Connection "%1" is not open Соединение "%1" не открыто - + invalid connection нет соединения - - - - + + + + Variable "%1" not found! Переменная "%1" не найдена! - + Database "%1" not found База данных "%1" не найдена - - + + Datasource "%1" not found! Источник данных "%1" не найден! - + Connection with name "%1" already exists! Соединение "%1" уже существует! - - - - - + + + + + Datasource with name "%1" already exists! Источник данных "%1" уже существует! - - + + Unknown parameter "%1" for variable "%2" found! Обнаружен неизвестный параметр "%1" для переменной "%2"! @@ -1143,19 +1260,19 @@ p, li { white-space: pre-wrap; } LimeReport::DataSourceModel - + Datasources Источники данных - + Variables Переменные - + External variables - Внешние переменные + Внешние переменные @@ -1908,17 +2025,17 @@ p, li { white-space: pre-wrap; } LimeReport::ObjectInspectorWidget - + Clear Очистить - + Filter Фильтр - + Translate properties Свойства перевода @@ -1935,26 +2052,31 @@ p, li { white-space: pre-wrap; } LimeReport::PageEditor + Page setup Настройки страницы + Paper Бумага + Format Формат + Dimension Размеры + Width: Ширина: @@ -1965,81 +2087,102 @@ p, li { white-space: pre-wrap; } + + + + + + mm + Height: Высота: + Orientation Ориентация + Portrait Портретная + Landscape Альбомная + Margins Отступы + Bottom: Нижний: + Top: Верхний: + Right: Правый: + Left: Левый: + Drop printer margins Сбрасывать отступы на принтере + Other Другое + Height options Высота страницы + Endless Height Бесконечная + Extended Height: Дополнительная высота: + Full page На всю страницу @@ -2120,6 +2263,7 @@ p, li { white-space: pre-wrap; } LimeReport::PreviewReportWidget + Form Форма @@ -2138,77 +2282,97 @@ p, li { white-space: pre-wrap; } LimeReport::PreviewReportWindow + View Просмотр + Report Отчет + Print Печать + Zoom In Увеличить + Zoom Out Уменьшить + + Prior Page Предыдущая страница + + Next Page Следующая страница + + Close Preview Закрыть + Edit Mode Режим редактирования + + Save to file Сохранить в файл + + Show errors Показать ошибки + First Page Первая страница + + Last Page Последняя страница + Print To PDF Печать в PDF @@ -2224,36 +2388,43 @@ p, li { white-space: pre-wrap; } + Preview Предпросмотр + Ctrl+P Ctrl+P + Fit page width По ширине страницы + Fit page Страница целиком + One to one Один к одному + Esc Esc + Show Toolbar Показать панель инструментов @@ -2269,46 +2440,55 @@ p, li { white-space: pre-wrap; } + First page Первая страница + Show toolbar Показать панель инструментов + InsertTextItem Вставить текстовый элемент + Add new TextItem Текстовый элемент + Selection Mode Режим выбора + Delete Item Удалить элемент + Del Удалить + MainToolBar Основная панель инструментов + EditModeTools Панель инструментов редактирования @@ -3074,27 +3254,27 @@ p, li { white-space: pre-wrap; } LimeReport::ReportDesignWidget - + Report file name Имя файла отчета - + Script Скрипт - + Error Ошибка - + Wrong file format Неверный формат файла - + Translations Переводы @@ -3102,355 +3282,355 @@ p, li { white-space: pre-wrap; } LimeReport::ReportDesignWindow - + New Report Новый отчет - + Edit Mode Режим редактирования - + Undo Отменить действие - + Redo Повторить действие - + New Report Page Новая страница отчета - + Delete Report Page Удалить страницу отчета - + Copy Копировать - + Paste Вставить - + Cut Вырезать - + Settings Настройки - + Use grid Использовать сетку - + Text Item Текстовый элемент - + Save Report Сохранить отчет - + Save Report As Сохранить отчет как - + Load Report Загрузить отчет - + Delete item Удалить элемент - + Zoom In Увеличить - + Zoom Out Уменьшить - + Render Report Сгенерировать отчет - + Edit layouts mode Режим редактирования компоновок - + Horizontal layout Горизонтальная компоновка - + Vertical layout Вертикальная компоновка - + About О программе - + Report Tools Элементы отчета - + Main Tools Основные инструменты - + Font Шрифт - + Text alignment Выравнивание текста - + Items alignment Выравнивание объектов - + Borders Границы - + Report bands Разделы - + Report Header Заголовок отчета - + Report Footer Завершение отчета - + Page Header Верхний колонтитул - + Page Footer Нижний колонтитул - + Data Данные - + Data Header Заголовок данных - + Data Footer Завершение данных - + SubDetail Подчиненные данные - + SubDetailHeader Заголовок подчиненных данных - + SubDetailFooter Завершение подчиненных данных - + GroupHeader Заголовок группы - + GroupFooter Завершение группы - + Tear-off Band Полоса отрыва - + File Файл - + Edit Правка - + Info Информация - - + + Object Inspector Инспектор объектов - + Report structure Структура отчета - + Data Browser Инспектор данных - + Script Browser Инспектор скриптов - - + + Report file name Файл отчета - + Warning Предупреждение - + Use magnet Использовать магнит - + Recent Files Последние файлы - + File "%1" not found! Файл "%1" не найден! - + Report has been modified! Do you want save the report? Отчет был изменен! Сохранить изменения? - + Hide left panel | Alt+L Спрятать левую панель | Alt+L - + Hide right panel | Alt+R Спрятать правую панель | Alt+R - + Delete dialog Удалить диалог - + Add new dialog Добавить диалог - + Widget Box Панель Виджетов - + Property Editor Редактор Свойств - + Action Editor Редактор Действий - + Resource Editor Обозреватель Ресурсов - + SignalSlot Editor Редактор Сигналов и Слотов - + Dialog Designer Tools Панель Инструментов - + Lock selected items Заблокировать выделенные элементы - + Unlock selected items Разблокировать выделенные элементы - + Select one level items Выделить элементы одного уровня - + Rendered %1 pages Сформировано %1 страниц @@ -3460,12 +3640,12 @@ p, li { white-space: pre-wrap; } Отменить построение отчета - + Attention Внимание - + The rendering is in process Отчет находится в процессе создания @@ -3473,39 +3653,39 @@ p, li { white-space: pre-wrap; } LimeReport::ReportEnginePrivate - + Error Ошибка - + Preview Предпросмотр - + Report File Change Монитор изменений файлов - + The report file "%1" has changed names or been deleted. This preview is no longer valid. Файл отчета "%1" изменил имя или был удален. - + Designer not found! Дизайнер не найден! - + Language %1 already exists Язык %1 уже существует - + %1 file name %1 имя файла @@ -3557,67 +3737,81 @@ This preview is no longer valid. LimeReport::SQLEditDialog + Datasource Источник данных + Connection Соединение + Datasource Name Имя источника + Subdetail Подчиненный + Master datasource Главный источник + Subquery mode Режим подзапроса + Filter mode Режим фильтрации + + SQL SQL запрос + Hide Preview Скрыть + Child datasource Подчиненный источник + Fields map Поля для связи источников + Data preview Данные + Cancel Отмена @@ -3645,17 +3839,21 @@ This preview is no longer valid. + Preview Предпросмотр + + ... ... + Ok Ок @@ -3687,21 +3885,25 @@ This preview is no longer valid. + CSV CSV + Separator Разделитель + ; ; + Use first row as header Использовать первую строку в качестве заголовка @@ -3735,16 +3937,19 @@ This preview is no longer valid. LimeReport::ScriptBrowser + Functions Функции + Dialogs Диалоги + Form Форма @@ -3752,16 +3957,21 @@ This preview is no longer valid. + + + ... ... + Type Тип + Name Имя @@ -3797,16 +4007,19 @@ This preview is no longer valid. LimeReport::ScriptEditor + Form Форма + Data Данные + Functions Функции @@ -3996,71 +4209,85 @@ This preview is no longer valid. LimeReport::SettingDialog + Designer setting Настройки дизайнера + Default font Шрифт по умолчанию + Grid Сетка + Vertical grid step Вертикальный шаг сетки + Horizontal grid step Горизонтальный шаг сетки + Suppress absent fields and variables warning Не выводить сообщения об отсутствии полей или переменных + Language Язык + Designer settings Настройки дизайнера + Script editor settings Настройки редактора скриптов + Font Шрифт + Indent size Отступ + Report settings Настройки отчета + Theme Тема + Report units Еденицы измерения @@ -4202,26 +4429,31 @@ This preview is no longer valid. LimeReport::TextItemEditor + Text Item Editor Редактор текстового элемента + Content Содержимое + Cancel Отмена + Ok Ок + Ctrl+Return @@ -4230,42 +4462,51 @@ This preview is no longer valid. LimeReport::TranslationEditor + Form Форма + Languages Языки + + ... ... + Pages Страницы + Strings Строки + Source Text Исходный текст + Translation Перевод + Checked Проверенный @@ -4291,7 +4532,7 @@ This preview is no longer valid. - + variable with name переменная @@ -4303,7 +4544,7 @@ This preview is no longer valid. - + does not exists! не существует! @@ -4619,7 +4860,7 @@ This preview is no longer valid. Главный источник данных %1 не найден! - + Object with name %1 already exists! Объект %1 уже существует! @@ -4656,30 +4897,30 @@ This preview is no longer valid. Экспортировать в PDF - + Dark Темная - + Light Светаля - + Default По умолчанию - - + + Millimeters Миллиметры - - + + Inches Дюймы diff --git a/translations/limereport_zh.ts b/translations/limereport_zh.ts index d96250c..23d7474 100644 --- a/translations/limereport_zh.ts +++ b/translations/limereport_zh.ts @@ -522,7 +522,109 @@ p, li { white-space: pre-wrap; } - + LimeReport::BorderEditor + + Edit border + + + + Presets + + + + No lines + + + + Outline + + + + Border + + + + ... + ... + + + Style + + + + No style + + + + Solid + + + + Dash + + + + Dot + + + + Dash dot + + + + Dash dot dot + + + + Width: + + + + 1 + + + + 0.25 + + + + 0.5 + + + + 1.5 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + 6 + + + + Color: + + + + Select + + + + LimeReport::BorderFrameEditor BorderFrameEditor @@ -822,7 +924,7 @@ p, li { white-space: pre-wrap; } External variables - 外部变量 + 外部变量 @@ -1058,18 +1160,6 @@ p, li { white-space: pre-wrap; } HorizontalBar 条形图 - - LegendAlignTop - 图例靠上对齐 - - - LegendAlignCenter - 图例居中 - - - LegendAlignBottom - 图例靠下对齐 - TitleAlignLeft 标题左对齐 @@ -1106,6 +1196,102 @@ p, li { white-space: pre-wrap; } Split 划分 + + GridLines + + + + Lines + + + + Solid + + + + NoStyle + + + + Dashed + + + + Dot + + + + DashDot + + + + DashDotDot + + + + Doubled + + + + LegendPoints + + + + LegendLines + + + + LegendAlignRightCenter + + + + LegendAlignRightTop + + + + LegendAlignRightBottom + + + + LegendAlignBottomRight + + + + LegendAlignBottomCenter + + + + LegendAlignBottomLeft + + + + SolidLine + + + + NoPen + + + + DashLine + + + + DotLine + + + + DashDotLine + + + + DashDotDotLine + + + + CustomDashLine + + LimeReport::FlagsPropItem @@ -2235,6 +2421,14 @@ p, li { white-space: pre-wrap; } mixWithPriorPage + + shadow + + + + borderStyle + + LimeReport::RectPropItem