diff --git a/README.md b/README.md index 2567a778..6150d287 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # TranslationMANAGER for WordPress -With TranslationMANAGER, it is easy and straightforward to export content from your WordPress Multisite to be translated by Inpsyde's trusted partner [Eurotext](https://eurotext.de/en/). +With TranslationMANAGER, it is easy and straightforward to export content from your WordPress Multisite to be translated by Syde's trusted partner [Eurotext](https://eurotext.de/en/). ## Description TranslationMANAGER is a WordPress plugin that allows a user with the correct roles to request a translation of one or multiple articles, pages etc. However, TranslationMANAGER cannot import the content into the correct location because it does not have any information in relation to this. A Multilingual plugin is required for this purpose. -TranslationMANAGER works on sites with [MultilingualPress 3](https://multilingualpress.org/), Inpsyde’s solution for multilingual WordPress sites. +TranslationMANAGER works on sites with [MultilingualPress 3](https://multilingualpress.org/), Syde’s solution for multilingual WordPress sites. MultilingualPress requires some setup and our [documentation](https://multilingualpress.org/docs-category/multilingualpress-3-getting-started/) provides information on how to connect sites and content. @@ -120,5 +120,7 @@ On the Spanish version of the site, the same "Text-Section" block is assigned th To identify reusable blocks in the database, look for the following markup: `` -## License -This repository is a free software, and is released under the terms of the GNU General Public License version 2 or (at your option) any later version. See [LICENSE](./LICENSE) for complete license. +## Copyright and License + +This package is [free software](https://www.gnu.org/philosophy/free-sw.en.html) distributed under the terms of the GNU General Public License version 2 or (at your option) any later version. For the full license, see [LICENSE](./LICENSE). + diff --git a/composer.json b/composer.json index eff4902b..90bcde83 100644 --- a/composer.json +++ b/composer.json @@ -17,9 +17,9 @@ }, "authors": [ { - "name": "Inpsyde GmbH", - "homepage": "https://inpsyde.com/", - "email": "hello@inpsyde.com", + "name": "Syde GmbH", + "homepage": "https://syde.com/", + "email": "hello@syde.com", "role": "Company" } ], @@ -59,7 +59,9 @@ }, "extra": { "installer-paths": { - "vendor/{$vendor}/{$name}": ["type:wordpress-plugin"] + "vendor/{$vendor}/{$name}": [ + "type:wordpress-plugin" + ] } } } diff --git a/inc/hooks.php b/inc/hooks.php index 2c2ca5c9..5546eeaa 100644 --- a/inc/hooks.php +++ b/inc/hooks.php @@ -41,7 +41,7 @@ function ( array $links, $file ) { if ( false !== strpos( $file, 'translationmanager.php' ) ) { $links[1] = wp_kses( __( - 'By Eurotext AG & Inpsyde GmbH', + 'By Eurotext AG & Syde GmbH', 'translationmanager' ), 'data' @@ -61,7 +61,7 @@ function ( $admin_footer_text ) { $page = sanitize_text_field( wp_unslash( $_GET['page'] ?? '' ) ); if ( false !== strstr( $page, \Translationmanager\Pages\PageOptions::SLUG ) ) { - $admin_footer_text = 'Inpsyde GmbH
' + $admin_footer_text = 'Syde GmbH
' . $default_text; } diff --git a/package.json b/package.json index 4ffad8fd..614ac834 100644 --- a/package.json +++ b/package.json @@ -4,12 +4,12 @@ "description": "WordPress plugin for translating content from your WordPress Multisite via Eurotext.", "main": "index.js", "author": { - "name": "Inpsyde GmbH", - "email": "hello@inpsyde.com", - "url": "https://inpsyde.com/" + "name": "Syde GmbH", + "email": "hello@syde.com", + "url": "https://syde.com/" }, "license": "GPL-2.0-or-later", - "homepage": "https://github.com/inpsyde/translationmanager", + "homepage": "https://syde.com", "devDependencies": { "date-and-time": "^0.14.0", "del": "^3.0.0", diff --git a/readme.txt b/readme.txt index e70fd322..801007dc 100644 --- a/readme.txt +++ b/readme.txt @@ -1,5 +1,5 @@ === TranslationMANAGER for WordPress === -Contributors: Inpsyde, Eurotext, paddyullrich, wido +Contributors: Syde, Eurotext, paddyullrich, wido Tags: translation, api, I18N Donate link: https://eurotext-ecommerce.com Requires at least: 5.0 @@ -14,7 +14,7 @@ With *TranslationMANAGER*, exporting content from your WordPress Multisite is ea TranslationMANAGER is a WordPress plugin that allows a user with the correct roles to request a translation of one or multiple articles, pages etc. However, TranslationMANAGER cannot import the content into the correct location because it does not have any information in relation to this. A Multilingual plugin is required for this purpose. -TranslationMANAGER works on sites with MultilingualPress 3 (https://multilingualpress.org/), Inpsyde’s solution for multilingual WordPress sites. +TranslationMANAGER works on sites with MultilingualPress 3 (https://multilingualpress.org/), Syde’s solution for multilingual WordPress sites. MultilingualPress requires some setup and our documentation (https://multilingualpress.org/docs-category/multilingualpress-3-getting-started/) provides information on how to connect sites and content. diff --git a/resources/scss/_colors.scss b/resources/scss/_colors.scss index 2737508c..584524c4 100644 --- a/resources/scss/_colors.scss +++ b/resources/scss/_colors.scss @@ -14,6 +14,6 @@ $color__black--transparent: hsla(0, 0%, 0%, .88); // flat colors $color__clouds: #ecf0f1; -// Inpsyde +// Syde $color__inpsyde: #8fb900; $color__inpsyde--dark: darken($color__inpsyde, 10%); diff --git a/resources/scss/system-status/_settings.scss b/resources/scss/system-status/_settings.scss index a9aa8233..39191783 100644 --- a/resources/scss/system-status/_settings.scss +++ b/resources/scss/system-status/_settings.scss @@ -8,6 +8,6 @@ $color__white: #fff; $color__orange: #ffa500; $color__red: #ff544b; -// Inpsyde +// Syde $color__inpsyde: #8fb900; $color__inpsyde--dark: darken($color__inpsyde, 20%); diff --git a/src/TableList/ServiceProvider.php b/src/TableList/ServiceProvider.php index fb71043e..56fe0e63 100644 --- a/src/TableList/ServiceProvider.php +++ b/src/TableList/ServiceProvider.php @@ -6,23 +6,8 @@ * @author Guido Scialfa * @package Translation Manager * @copyright Copyright (c) 2018, Guido Scialfa - * @license GNU General Public License, version 2 * * Copyright (C) 2018 Guido Scialfa - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ namespace Translationmanager\TableList; diff --git a/src/Xliff/Export.php b/src/Xliff/Export.php index 721ec0c2..1ee9fa54 100644 --- a/src/Xliff/Export.php +++ b/src/Xliff/Export.php @@ -1,14 +1,6 @@ * @package Translation Manager * @copyright Copyright (c) 2018, Guido Scialfa - * @license GNU General Public License, version 2 * * Copyright (C) 2018 Guido Scialfa - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ namespace Translationmanager\Xliff; diff --git a/src/Xliff/SettingsView.php b/src/Xliff/SettingsView.php index ac748976..20606e4c 100644 --- a/src/Xliff/SettingsView.php +++ b/src/Xliff/SettingsView.php @@ -6,23 +6,8 @@ * @author Guido Scialfa * @package Translation Manager * @copyright Copyright (c) 2018, Guido Scialfa - * @license GNU General Public License, version 2 * * Copyright (C) 2018 Guido Scialfa - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ namespace Translationmanager\Xliff; diff --git a/src/Xliff/Xliff.php b/src/Xliff/Xliff.php index 8b644039..72bdbcbe 100644 --- a/src/Xliff/Xliff.php +++ b/src/Xliff/Xliff.php @@ -1,14 +1,6 @@