2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-03-24 18:01:20 +00:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-12-18 18:33:00 +00:00
|
|
|
/**
|
|
|
|
* Polish
|
|
|
|
*
|
|
|
|
* LCD Menu Messages
|
2016-03-22 10:58:41 +00:00
|
|
|
* See also https://github.com/MarlinFirmware/Marlin/wiki/LCD-Language
|
2014-12-18 18:33:00 +00:00
|
|
|
*
|
|
|
|
*/
|
2014-12-18 17:31:19 +00:00
|
|
|
#ifndef LANGUAGE_PL_H
|
|
|
|
#define LANGUAGE_PL_H
|
|
|
|
|
2017-04-21 14:05:29 +00:00
|
|
|
#define DISPLAY_CHARSET_ISO10646_PL
|
|
|
|
#define MAPPER_C3C4C5_PL
|
|
|
|
|
2017-05-26 01:55:00 +00:00
|
|
|
/**
|
|
|
|
* One version with accented characters and one without
|
|
|
|
*/
|
2017-04-21 14:05:29 +00:00
|
|
|
#if ENABLED(DOGLCD)
|
2017-05-26 01:55:00 +00:00
|
|
|
#include "language_pl-DOGM.h"
|
2016-12-05 16:33:03 +00:00
|
|
|
#else
|
2017-05-26 01:55:00 +00:00
|
|
|
#include "language_pl-HD44780.h"
|
2017-04-21 14:05:29 +00:00
|
|
|
#endif
|
2016-12-05 16:33:03 +00:00
|
|
|
|
2014-12-18 17:31:19 +00:00
|
|
|
#endif // LANGUAGE_PL_H
|