summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Support loading of HTML imports using @HtmlImport (#8301)Artur2017-01-2523-153/+677
| | | | | Note that not all browsers yet support HTML imports. If a polyfill is needed to load HTML imports, it must be loaded before HTML Imports can be loaded. There is no automatic loading of any polyfills.
* Refactor how DataCommunicator passes filters to its DataProvider (#8309)Leif Åstrand2017-01-259-75/+162
| | | | | | | The immediate benefit of this change is that ComboBox doesn't have to do any wrapping when a ListDataProvider is set. A secondary benefit is that a bunch of redundant type parameters and unsafe casts can be removed. This is one of many steps towards #8245
* Use non-Generic SortOrder in Query. (#8239)Denis2017-01-2513-53/+94
| | | | | | * Use non-Generic SortOrder in Query. Fixes #8215
* Allow distinct configurable filter and wrapped filter types (#8322)Leif Åstrand2017-01-254-34/+47
| | | | | | | | | | * Allow distinct configurable filter and wrapped filter types This enables implementing the use case that was already described towards the end of datamodel-providers.asciidoc. Also swaps the order of the callback type parameters to make all three match the order of the ConfigurableFilterDataProvider type parameters.
* Serve VAADIN files also from META-INF/resources (#8286) (#8320)Artur2017-01-251-4/+5
| | | | | | * Serve VAADIN files also from META-INF/resources (#8286) Fixes #8206
* Add static helpers for creating callback data providers (#8314)Leif Åstrand2017-01-2518-55/+108
| | | | | Cannot overload the same create method for this purpose since it conflicts with T... overload. Each case is instead given its own descriptive but still discoverable method name.
* Update data provider documentation to describe the new design (#8317)Leif Åstrand2017-01-241-55/+248
|
* Support using multiple @JavaScript and @StyleSheet annotations on a class ↵Artur2017-01-2413-41/+167
| | | | (#8293)
* Make BeanBinderPropertySet exclude Object properties (#8306)Leif Åstrand2017-01-242-3/+22
| | | | * Make BeanBinderPropertySet exclude Object properties
* Unify container wrapping (#8312)Leif Åstrand2017-01-246-91/+71
| | | | | | | | * Method names unified to withXyzFilter * withConfigurableFilter moved to DataProvider * Remove DataProviderWrapper.convert since it does the same as DataProvider.withConvertedFilter * Make javadocs slightly more consistent * Make type parameters consistent
* Use getFirstSelectedItem() instead of getFirstSelected(). (#8308)Denis2017-01-245-15/+15
| | | | | | * Use getFirstSelectedItem() instead of getFirstSelected(). Fixes vaadin/framework8-issues#596
* Fix absolute layout component sizing on size change (#8269)caalador2017-01-233-0/+200
| | | | | | | | | | | | | * Fix absolute layout component sizing on size change (#8255, #8256, #8257) Changing from relative to defined size leaves the component positioned wrong, also changing from defined size to relative size leaves the component in the wrong position with the wrong size. Change makes the wrapper rerun setChildWidgetPosition() that adds/removes necessary css definitions to/from the cssPosition String. * Clean test sources according to review.
* Remove custom preloading support and load scripts using async=false (#8291)Artur2017-01-232-236/+26
| | | | | | | When using async='false' for scripts created by scripts the execution order is guaranteed to be the same as the order the script tags are created Fixes #5339, #3631
* Fix BeanBinderPropertySet to not deserialize into multiple instances (#8305)Leif Åstrand2017-01-233-42/+146
| | | | * Fix BeanBinderPropertySet to not deserialize into multiple instances
* Code cleanup: Move dependency loading logic to a separate class (#8290)Artur2017-01-234-88/+186
|
* Add shorthands to ComboBox for setting a ListDataProviderLeif Åstrand2017-01-232-13/+115
|
* Remove outdated filtering concepts (#8289)Leif Åstrand2017-01-236-235/+7
| | | | | | | | | | | | | * Remove outdated filtering concepts withFilter is removed since filters are supposed to be set as state in the data provider instead of by wrapping. AppendabileFilterDataProvider is removed since the data provider is supposed to do any appending when updating its own state instead of through wrapping. This is one of many steps towards #8245
* Add migration guide to documentation (#8283)Aleksi Hietanen2017-01-231-0/+128
| | | | | | | | * Migration guide 1st draft * Restructure and improve migration guide * Update migrating-to-vaadin8.asciidoc
* Add ListDataProvider shorthands for filter conversion (#8279)Leif Åstrand2017-01-224-13/+260
| | | | | Also updates ComboBox.setItems to use these new shorthands This is one of many steps towards #8245
* Updated tutorial to v.8.0.0.beta1 (#8298)Alejandro2017-01-211-76/+114
|
* Add a data provider wrapper with a configurable filter (#8280)Leif Åstrand2017-01-208-20/+331
| | | | | | * Add a data provider wrapper with a configurable filter This is one of many steps towards #8245
* Overload AbstarctComponent.setDescription() with content mode parameter (#8252)Denis2017-01-2096-105/+323
| | | | | | * Overload AbstarctComponent.setDescription() with content mode parameter Fixes #8185
* Introduce DateTimeFile and InlineDateTimeField. (#8218)Denis2017-01-1970-85/+3727
| | | | | | | | | | * Introduce DateTimeFile and InlineDateTimeField. Fixes #8132 * Correct and provide declarative tests. * Provide a date converter and UI tests.
* Change BackEndDataProvider into an interface (#8268)Leif Åstrand2017-01-1911-90/+190
| | | | | | | | | | | | | | | | * Change BackEndDataProvider into an interface BackEndDataProvider is now an interface with methods for setting sorting options based on SortOrder instances. AbstractBackEndDataProvider stores sorting options, combines them with the sorting provided in the query and invokes its own abstract fetch and size methods. CallbackDataProvider implements a BackEndDataProvider based on two lambdas. This is one of many steps towards #8245
* Allow setting filters directly in ListDataProvider (#8267)Leif Åstrand2017-01-193-5/+280
| | | | | | * Allow setting filters directly in ListDataProvider This is one of many steps towards #8245
* Simplified javadoc (#8272)Matti Tahvonen2017-01-181-6/+5
| | | | * Simplified javadoc
* Better instructions in widgetset optimization view in the debug window. (#8261)Sami Ekblad2017-01-181-5/+5
| | | | | | | | | | * Better instructions in widgetset optimization view in the debug window. The generated example code is ok, but steps to use them are not obvious. Added more details to debug window instructions to make it clear what steps are needed to optimize the widgetset. Change-Id: Id46632697044223092ef772f98b1fcd69c28d0da
* Make data providers statefull with regards to default sort orders (#8247)Leif Åstrand2017-01-176-215/+263
| | | | | | * Make data providers statefull with regards to default sort orders This is one of many steps towards #8245
* Add getHeaderCellByCaption method to tb-api GridElement (#8248)rogozinds2017-01-173-8/+107
| | | | * Add getHeaderCellByCaption method to tb-api GridElement
* Add separate modules to test Bean Validation lib necessity. (#8249)Denis2017-01-166-2/+229
| | | | | | * Add separate modules to test Bean Validation lib necessity. Fixes #8141
* Introduce Binder.setReadOnly() (#8241)Denis2017-01-162-0/+80
| | | Closes #8232
* Fix comments in serializable functional interfaces (#8246)Leif Åstrand2017-01-163-5/+5
|
* Inherit settings from parent pom (#8240)Leif Åstrand2017-01-161-8/+6
| | | | | Without this, maven.compiler.source will not be set to 1.8 which sometimes seems to make Eclipse think it should use Java 5 compiler settings for the project, causing various issues.
* Removed obsolete 'Setting up the Development Environment' link (#8236)Alejandro2017-01-131-2/+0
| | | | * Removed obsolete 'Setting up the Development Environment' link in tutorial'
* Support for HTML5 push/replaceState for proper deep linking features (#8116)Matti Tahvonen2017-01-1314-109/+447
| | | | | | | | | | | | | | | | | | | | | | | | * Added support for HTML5 push/replaceState for proper deep linkin features * Automated test script now works at least on chrome * Uses html5 push/popstate to implement uri fragment feature * fire legacy fragment change events also via popstate events rpc calls * send new fragments via pushstate mechanism * formatting * Formatting and adding test and workaround for IE bug * Formatting and depracated UriFragmentListener * Aligned naming in the new API * Ignored IE due to web driver bug Tested a workaround with javascript based window.location.href fetch, but that don’t seem to work stable enough.
* Use vaadin-snapshots for test projects so that context menu is found (#8237)Leif Åstrand2017-01-131-0/+10
|
* Add "deselect allowed" feature to the Grid. (#8227)Denis2017-01-139-22/+225
| | | | | | * Add "deselect allowed" feature to the Grid. Fixes #8149
* Support for defining the root element for Javascript components (#8143)Artur2017-01-139-28/+185
| | | Fixes #7005
* Replace Listing with HasDataProvider and HasFilterableDataProvider (#8122)Leif Åstrand2017-01-1326-199/+276
| | | | | | | | | | | | * Replace Listing with HasDataProvider and HasFilterableDataProvider The type parameters of the Listing interface does in practice mean that it isn't useful for anything. This patch replaces that interface with separate types for components that require filterable data providers and components that support any kind of data provider. The setItem methods are extracted to a common interface that is also directly implemented by AbstractListing.
* Fix TestBench API imports (#8112)Teemu Suo-Anttila2017-01-13289-918/+483
| | | | | | | | | | | | | | | | | | | | * Fix TestBench API imports, move functionality from custom elements * Fixes to TestBench APIs and JavaDocs * Merge remote-tracking branch 'origin/master' into 578_tbapi_cleanup * Fix method name in CheckBoxGroupTest * Remove unused custom element classes * Implement getOptions using getOptionElements * Replace setValue with setSelection in CheckBoxGroupElement * Rename CheckBoxGroupElement getSelection to getValue * Fix one last method
* Avoid using Guava API in the documentation (#8231)Leif Åstrand2017-01-131-1/+2
| | | | * Avoid using Guava API in the documentation
* Include old value in ValueChangeEvent (#8229)Aleksi Hietanen2017-01-1318-48/+145
| | | | * Include old value in ValueChangeEvent
* Use correct format for links in datamodel-overview (#8233)Juha Seppänen2017-01-121-8/+8
|
* Make server tests use fixed locale where needed (#8226)Henri Sara2017-01-124-5/+13
|
* Update CONTRIBUTING.md (#8225)Pekka Hyvönen2017-01-121-5/+9
| | | | | Mention "Allow edits from maintainers" checkbox. Talk about pull requests instead of patches where it makes sense.
* Integrate BeanBinder functionality into Binder (#8096)Leif Åstrand2017-01-1217-780/+1088
| | | | * Integrate BeanBinder functionality into Binder
* Fix broken Grid documentation addColumn setHeaderCaption (#8213)Pekka Hyvönen2017-01-111-17/+20
| | | | * Fix broken Grid documentation addColumn setHeaderCaption
* Remove unused private method (#8224)Leif Åstrand2017-01-111-15/+0
| | | | * Remove unused private method
* Import element tests from TestBench (#8117)Artur2017-01-11115-30/+6588
| | | Contains some additional tests and element changes based on review.
* Fix OSGi configuration for Liferay 7 (#8204)Henri Sara2017-01-101-1/+2
| | | | * Fix OSGi configuration for Liferay 7
stable28'>backport/49454/stable28 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/apps/oauth2/l10n/gl.json
blob: 5357c5a5e8820f0440e9b1b1d7a97c8d80003155 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ "translations": {
    "Your client is not authorized to connect. Please inform the administrator of your client." : "O seu cliente non ten autorización para conectarse. Informe do seu cliente ao administrador.",
    "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "o seu URL de redirección debe ser un URL completo, por exemplo: https://omeudominio.com/ruta",
    "OAuth 2.0" : "OAuth 2.0",
    "Allows OAuth2 compatible authentication from other web applications." : "Permite a autenticación compatíbel con OAuth2 dende outras aplicacións web.",
    "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "A aplicación OAuth2 permítelle aos administradores configurar o fluxo de traballo de autenticación incorporado para permitir tamén autenticación compatíbel con OAuth2 dende outras aplicacións web.",
    "OAuth 2.0 clients" : "Clientes OAuth 2.0",
    "OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 permítelle aos servizos externos solicitar acceso a {instanceName}.",
    "Name" : "Nome",
    "Redirection URI" : "URI de redireccionamento",
    "Client Identifier" : "Identificador do cliente",
    "Secret" : "Segredo",
    "Add client" : "Engadir cliente",
    "Add" : "Engadir",
    "Show client secret" : "Amosar o segredo do cliente",
    "Delete" : "Eliminar"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}