mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
14 lines
325 B
Ruby
14 lines
325 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ZebraLabelTemplate < LabelTemplate
|
|
def self.default
|
|
ZebraLabelTemplate.new(
|
|
name: I18n.t('label_templates.default_zebra_name'),
|
|
width_mm: 25.4,
|
|
height_mm: 12.7,
|
|
content: Extends::DEFAULT_LABEL_TEMPLATE[:zpl],
|
|
unit: 0,
|
|
density: 12
|
|
)
|
|
end
|
|
end
|