web crate put add table

This commit is contained in:
Filipriec
2026-08-23 23:43:27 +02:00
parent a44dccf84b
commit b4135e5d20
14 changed files with 239 additions and 17 deletions

View File

@@ -139,7 +139,7 @@ admin-no-profile-tables = This profile has no tables of its own.
admin-no-dependencies = No dependencies
admin-depends-on-prefix = Depends on
admin-row-display-prefix = display:
admin-add-columns = Add columns
admin-add-columns = Adjust columns
admin-column-presentation = Column aliases
admin-delete-table = Delete table
admin-who-may-use-it = Who may use it
@@ -163,9 +163,17 @@ admin-system-columns-label = System columns · hidden from users
# --- Table definition pages (add columns / presentation / delete / copy / template / history) -
td-add-columns-title = Add columns
td-adjust-columns-title = Adjust columns
td-presentation-title = Column presentation
td-add-columns-to = Add columns to
td-append-hint = Columns are appended. Nothing that already exists is changed, and the new columns can be indexed as they are added.
td-adjust-columns-of = Adjust columns of
td-adjust-hint = Add new columns, or select existing columns to remove. Add-only changes also work on populated tables; removing or replacing columns requires an empty table and is saved atomically.
td-existing-columns = Existing columns
td-new-columns = New columns to add
td-remove-column = Remove
td-remove-column-aria = Remove { $column }
td-save-definition = Save table definition
td-rename-column = Column aliases
td-rename-hint = Renames what the column is called, not the physical column underneath, so stored data and scripts are untouched.
td-column-label = Column
@@ -191,7 +199,7 @@ td-col-target-column = Target column
td-col-description = Description
td-source = source
td-could-not-add-column = Could not add the column
td-could-not-add-column = Could not adjust the columns
td-staged = Staged
td-link-alias = Link alias
td-column-name = Column name
@@ -250,6 +258,8 @@ td-global-label = Global — all profiles
td-tab-aria = table actions
td-tab-add-columns = Add columns
td-tab-add-columns-sub = Append new columns
td-tab-adjust-columns = Adjust columns
td-tab-adjust-columns-sub = Add, remove, or replace columns
td-tab-presentation = Presentation
td-tab-presentation-sub = Change aliases and order
td-tab-delete = Delete
@@ -305,6 +315,7 @@ td-columns-added = { $count ->
[one] { $count } column added to `{ $table }`.
*[other] { $count } columns added to `{ $table }`.
}
td-definition-adjusted = `{ $table }` adjusted: { $added } added, { $removed } removed.
td-profile-copied = { $message } — { $tables ->
[one] { $tables } table
*[other] { $tables } tables
@@ -320,7 +331,9 @@ td-err-select-table-first = Select a table first.
td-err-profile-gone = Profile `{ $missing }` no longer exists.
td-err-not-a-table = `{ $missing }` is not a table of { $scope }.
td-err-describe-column = Describe at least one column before adding.
td-err-describe-change = Select a column to remove or stage at least one column to add.
td-err-backend-no-columns = The backend did not add the columns.
td-err-backend-no-adjustment = The backend did not adjust the table definition.
td-err-choose-rename = Type a new name for the column.
td-err-unknown-column = That column is not part of this table any more. The panel below is the table as it now is.
td-err-backend-no-rename = The backend did not rename the column.