Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cypress/integration/column.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ describe('Column', function () {

it('pins a column from the dropdown menu', function () {
cy.clickDropdown(2);
cy.clickDropdownItem(2, 'Stick to left');
cy.clickDropdownItem(2, 'Freeze');

cy.window().then(win => win.datatable.getColumn(2))
.its('sticky')
Expand Down
2 changes: 1 addition & 1 deletion src/defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function getDefaultOptions(instance) {
}
},
{
label: instance.translate('Stick to left'),
label: instance.translate('Freeze'),
stickyAction: 'stick',
display: 'hidden',
action: function (column) {
Expand Down
2 changes: 1 addition & 1 deletion src/translations/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"Sort Descending": "Absteigend sortieren",
"Reset sorting": "Sortierung zurücksetzen",
"Remove column": "Spalte entfernen",
"Stick to left": "Links anheften",
"Freeze": "Bevriezen",
"Unstick from left": "Linke Anheftung lösen",
"No Data": "Keine Daten",
"{count} cells copied": {
Expand Down
2 changes: 1 addition & 1 deletion src/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"Sort Descending": "Sort Descending",
"Reset sorting": "Reset sorting",
"Remove column": "Remove column",
"Stick to left": "Stick to left",
"Freeze": "Freeze",
"Unstick from left": "Unstick from left",
"No Data": "No Data",
"{count} cells copied": {
Expand Down
2 changes: 1 addition & 1 deletion src/translations/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"Sort Descending": "Trier par ordre décroissant",
"Reset sorting": "Réinitialiser le tri",
"Remove column": "Supprimer colonne",
"Stick to left": "Épingler à gauche",
"Freeze": "Geler",
"Unstick from left": "Désépingler de la gauche",
"No Data": "Pas de données",
"{count} cells copied": {
Expand Down
2 changes: 1 addition & 1 deletion src/translations/it.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"Sort Descending": "Ordinamento decrescente",
"Reset sorting": "Azzeramento ordinamento",
"Remove column": "Rimuovi colonna",
"Stick to left": "Blocca a sinistra",
"Freeze": "Congelare",
"Unstick from left": "Sblocca dalla sinistra",
"No Data": "Nessun dato",
"{count} cells copied": {
Expand Down
Loading