package ONO::FW::Apps::Data;
################################################################################
# COPYRIGHT / LICENSE #
################################################################################
#
# This file is part of the ONO Software Project.
#
# Copyright (C) 2000-2025 Jos KIRPS [ www.kirps.com | jos_AT_kirps_DOT_com ]
# and The Joopita Project [ www.joopita.org | contact_AT_joopita_DOT_com ]
#
# This file, as well as other parts of the ONO Software Project or related
# elements, are FREE SOFTWARE available under the ARTISTIC LICENSE 2.0.
#
# 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.
#
# For the full license, see /ono/osr/license/LICENSE.txt, or write to
# jos_AT_kirps_DOT_com or contact_AT_joopita_DOT_com.
#
################################################################################
# END OF COPYRIGHT / LICENSE, HERE COMES THE CODE ... #
################################################################################
use strict;
###############################################################################
# get app stars
###############################################################################
sub switches {
#: Probably deprecated.
my @switches = (
":a:add :addition :::::",
":b: : :::::",
":c:comma :comma numbers :::::",
":d:div :division :::::",
":e:exercise :create online exercises :::::",
":f:fonts :use school font :::::",
":g:game :online game :::::",
":h: : :::::",
":i:images :integrated with picture dictionary :::::",
":j: : :::::",
":k: : :::::",
":l:lists_sys :use integrated words lists :::::",
":L:lists_cus :use your own custom word lists :::::",
":m:mul :multiplication :::::",
":M:mul_choice :multiple choice option :::::",
":n:neg_nums :negative numbers :::::",
":o:online :practice online :::::",
":p:print :print worksheets :::::",
":q: : :::::",
":r: : :::::",
":s:sub :subtraction :::::",
":S:save as :save file to your account :::::",
":t:tracking :student progress tracking option :::::",
":u: : :::::",
":v:vocs :vocabulary :::::",
":V:verbs :verbs :::::",
":w: : :::::",
":x: : :::::",
":y: : :::::",
":z: : :::::",
);
}
###############################################################################
# end of script
###############################################################################
1;
__END__